diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index c2bc5fa8b..bf3d1fdf6 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,6 +1,57 @@ +7.7.0 + - fixed: Template parser cannot be set + - fixed #9836: Matrix: Group to Add Listings is missing + - fixed #9873: third-> first in post template help + - fixed #9892: Typo in "Default Gallery View Album" Template [TEMPLATE] + +7.6.14 + - fixed: IE6 shows Admin Bar over Asset Manager + - fixed #9808: Search i18n + - fixed #9818: deleteAttachedFiles bug (THE REVENGE) + - fixed #9809: Pagination list up to 10/20: not working correctly on last pages. + - fixed #9820: Survey: political party spelled wrong + - fixed #9819: Survey: hoverhelp showing instead of field name + - fixed #9822: Matrix: Wrong field label + - fixed #9823: Matrix: no cancel button in add/edit listing + +7.6.13 + - fixed AdSpace bug: impressions and clicks for most non-human web clients will not be counted. + - fixed #9760: DataForm not working in demo.plainblack.com + - fixed #9759: Delete Entry Button missing in Data Form + - fixed #9767: FileAsset breaks 'null' rule for FileAsset table + - fixed defaultValues of undef cause mysql5.1 to complain about columns that are set to be NOT NULL. 5.0 doesn't care. + - International text retrieval has been optimized + - fixed #9766: Thingy Pagination Broken + - fixed #9779: Gallery: js for search (datepicker?) included in album view + - fixed #9783: payment methods are not added + - fixed #9785: Delete All button not working in Account/Inbox [TEMPLATE] + - fixed #9803: Survey 2.0- Gradebook spelled wrong + - fixed #9801: Survey 2.0- Template spelled wrong + - fixed #9802: Survey Template field names to be consistent + - fixed: HTMLForm generated forms have an extra double quote in the table tag. + +7.6.12 + - fixed: During postback on a recurring transaction, the routine could error out instead of catching an error. + - fixed: Do not show the Edit entry in the More menu in the asset manager if the asset is locked. + - fixed #9677: no output from form helper template variable sticky.form and stick.label + - fixed #9738: Gallery Title [TEMPLATE] + - fixed #9739: Gallery Delete Album Template [TEMPLATE] + - fixed #9737: Upgrade Missed a Config Option + - fixed #9169: E-mail to Collab System creates invalid asset + - fixed #9746: Shop: Add a new address unneeded extra click + - fixed #9747: Account Contributions: URLs are wrong. + - fixed #9749: Account Manager: AIM link + - fixed #9751: Account Manager: problem sorting in Contributions + - fixed #9750: Account Manager: Inbox Messages per Page [TEMPLATE] + - fixed: If the Get Credentials template is deleted for the ITransact PayDriver, it now gives you an error message instead of throwing an error. + - fixed: Collaboration groupToEditPost should not be blank + - fixed: WebGUI::User->isInGroup had bad default groupId + - fixed: Fix a layout problem in the Contributions, similar to the Inbox[TEMPLATE] + 7.6.11 - - Added a switch to allow the use of non-WebGUI objects with the Workflow - engine. + - fixed: Asset Manager can generate URLs that are too long + - fixed #9629: override stringify date format to use java default format. + - Added a switch to allow the use of non-WebGUI objects with the Workflow engine. - fixed #9579: initialize keyword field because get fills it in now due to a recent code change - fixed #9596: caching now takes into account the correct parameter for pagination - fixed #9596: Articles now use a semi-unique pagination variable based on asset id diff --git a/docs/create.sql b/docs/create.sql index 712d29381..5f8a683cc 100644 --- a/docs/create.sql +++ b/docs/create.sql @@ -1,106 +1,106 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Article` ( - `linkTitle` varchar(255) default NULL, + `linkTitle` char(255) default NULL, `linkURL` text, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '3600', - `storageId` varchar(22) character set utf8 collate utf8_bin default NULL, + `storageId` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Calendar` ( - `assetId` varchar(22) NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) unsigned NOT NULL default '0', `defaultDate` enum('current','first','last') default 'current', `defaultView` enum('month','week','day','list') default 'month', `visitorCacheTimeout` int(11) unsigned default NULL, - `templateIdMonth` varchar(22) default 'CalendarMonth000000001', - `templateIdWeek` varchar(22) default 'CalendarWeek0000000001', - `templateIdDay` varchar(22) default 'CalendarDay00000000001', - `templateIdEvent` varchar(22) default 'CalendarEvent000000001', - `templateIdEventEdit` varchar(22) default 'CalendarEventEdit00001', - `templateIdSearch` varchar(22) default 'CalendarSearch00000001', - `templateIdPrintMonth` varchar(22) default 'CalendarPrintMonth0001', - `templateIdPrintWeek` varchar(22) default 'CalendarPrintWeek00001', - `templateIdPrintDay` varchar(22) default 'CalendarPrintDay000001', - `templateIdPrintEvent` varchar(22) default 'CalendarPrintEvent0001', - `groupIdEventEdit` varchar(22) default '3', - `groupIdSubscribed` varchar(22) default NULL, + `templateIdMonth` char(22) default 'CalendarMonth000000001', + `templateIdWeek` char(22) default 'CalendarWeek0000000001', + `templateIdDay` char(22) default 'CalendarDay00000000001', + `templateIdEvent` char(22) default 'CalendarEvent000000001', + `templateIdEventEdit` char(22) default 'CalendarEventEdit00001', + `templateIdSearch` char(22) default 'CalendarSearch00000001', + `templateIdPrintMonth` char(22) default 'CalendarPrintMonth0001', + `templateIdPrintWeek` char(22) default 'CalendarPrintWeek00001', + `templateIdPrintDay` char(22) default 'CalendarPrintDay000001', + `templateIdPrintEvent` char(22) default 'CalendarPrintEvent0001', + `groupIdEventEdit` char(22) default '3', + `groupIdSubscribed` char(22) default NULL, `subscriberNotifyOffset` int(11) default NULL, `sortEventsBy` enum('time','sequencenumber') default 'time', `listViewPageInterval` bigint(20) default NULL, - `templateIdList` varchar(22) default NULL, - `templateIdPrintList` varchar(22) default NULL, + `templateIdList` char(22) default NULL, + `templateIdPrintList` char(22) default NULL, `icalInterval` bigint(20) default NULL, - `workflowIdCommit` varchar(22) character set utf8 collate utf8_bin default NULL, + `workflowIdCommit` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Calendar_feeds` ( - `feedId` varchar(22) NOT NULL, - `assetId` varchar(22) NOT NULL, - `url` varchar(255) NOT NULL, + `feedId` char(22) NOT NULL, + `assetId` char(22) NOT NULL, + `url` char(255) NOT NULL, `lastUpdated` datetime default NULL, - `lastResult` varchar(255) default NULL, - `feedType` varchar(30) NOT NULL, + `lastResult` char(255) default NULL, + `feedType` char(30) NOT NULL, PRIMARY KEY (`feedId`,`assetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Collaboration` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `postGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `canStartThreadGroupId` varchar(22) NOT NULL default '2', + `assetId` char(22) NOT NULL default '', + `postGroupId` char(22) NOT NULL default '2', + `canStartThreadGroupId` char(22) NOT NULL default '2', `karmaPerPost` int(11) NOT NULL default '0', - `collaborationTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `threadTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `postFormTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `searchTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `notificationTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `sortBy` varchar(35) NOT NULL default 'assetData.revisionDate', - `sortOrder` varchar(4) NOT NULL default 'desc', + `collaborationTemplateId` char(22) NOT NULL default '', + `threadTemplateId` char(22) NOT NULL default '', + `postFormTemplateId` char(22) NOT NULL default '', + `searchTemplateId` char(22) NOT NULL default '', + `notificationTemplateId` char(22) NOT NULL default '', + `sortBy` char(35) NOT NULL default 'assetData.revisionDate', + `sortOrder` char(4) NOT NULL default 'desc', `usePreview` int(11) NOT NULL default '1', `addEditStampToPosts` int(11) NOT NULL default '0', `editTimeout` int(11) NOT NULL default '3600', `attachmentsPerPost` int(11) NOT NULL default '0', - `filterCode` varchar(30) NOT NULL default 'javascript', + `filterCode` char(30) NOT NULL default 'javascript', `useContentFilter` int(11) NOT NULL default '1', `threads` int(11) NOT NULL default '0', `views` int(11) NOT NULL default '0', `replies` int(11) NOT NULL default '0', `rating` int(11) NOT NULL default '0', - `lastPostId` varchar(22) character set utf8 collate utf8_bin default NULL, + `lastPostId` char(22) default NULL, `lastPostDate` bigint(20) default NULL, `archiveAfter` int(11) NOT NULL default '31536000', `postsPerPage` int(11) NOT NULL default '10', `threadsPerPage` int(11) NOT NULL default '30', - `subscriptionGroupId` varchar(22) character set utf8 collate utf8_bin default NULL, + `subscriptionGroupId` char(22) default NULL, `allowReplies` int(11) NOT NULL default '0', `displayLastReply` int(11) NOT NULL default '0', - `richEditor` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBrichedit000000000002', + `richEditor` char(22) NOT NULL default 'PBrichedit000000000002', `karmaRatingMultiplier` int(11) NOT NULL default '0', `karmaSpentToRate` int(11) NOT NULL default '0', `revisionDate` bigint(20) NOT NULL default '0', `avatarsEnabled` int(11) NOT NULL default '0', - `approvalWorkflow` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'pbworkflow000000000003', - `threadApprovalWorkflow` varchar(22) NOT NULL default 'pbworkflow000000000003', + `approvalWorkflow` char(22) NOT NULL default 'pbworkflow000000000003', + `threadApprovalWorkflow` char(22) NOT NULL default 'pbworkflow000000000003', `defaultKarmaScale` int(11) NOT NULL default '1', - `mailServer` varchar(255) default NULL, - `mailAccount` varchar(255) default NULL, - `mailPassword` varchar(255) default NULL, - `mailAddress` varchar(255) default NULL, - `mailPrefix` varchar(255) default NULL, + `mailServer` char(255) default NULL, + `mailAccount` char(255) default NULL, + `mailPassword` char(255) default NULL, + `mailAddress` char(255) default NULL, + `mailPrefix` char(255) default NULL, `getMail` int(11) NOT NULL default '0', `getMailInterval` int(11) NOT NULL default '300', - `getMailCronId` varchar(22) character set utf8 collate utf8_bin default NULL, + `getMailCronId` char(22) default NULL, `visitorCacheTimeout` int(11) NOT NULL default '3600', `autoSubscribeToThread` int(11) NOT NULL default '1', `requireSubscriptionForEmailPosting` int(11) NOT NULL default '1', @@ -108,20 +108,20 @@ CREATE TABLE `Collaboration` ( `maxImageSize` int(11) NOT NULL default '0', `enablePostMetaData` int(11) NOT NULL default '0', `useCaptcha` int(11) NOT NULL default '0', - `groupToEditPost` varchar(22) NOT NULL, + `groupToEditPost` char(22) NOT NULL, `archiveEnabled` int(1) default '1', - `postReceivedTemplateId` varchar(22) default 'default-post-received', + `postReceivedTemplateId` char(22) default 'default-post-received', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Dashboard` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `revisionDate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `adminsGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '4', - `usersGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'DashboardViewTmpl00001', + `assetId` char(22) NOT NULL default '', + `revisionDate` char(22) NOT NULL default '', + `adminsGroupId` char(22) NOT NULL default '4', + `usersGroupId` char(22) NOT NULL default '2', + `templateId` char(22) NOT NULL default 'DashboardViewTmpl00001', `isInitialized` tinyint(3) unsigned NOT NULL default '0', `assetsToHide` text, PRIMARY KEY (`assetId`,`revisionDate`) @@ -132,14 +132,14 @@ SET character_set_client = utf8; CREATE TABLE `DataForm` ( `acknowledgement` text, `mailData` int(11) NOT NULL default '1', - `emailTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `acknowlegementTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `listTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `emailTemplateId` char(22) NOT NULL default '', + `acknowlegementTemplateId` char(22) NOT NULL default '', + `listTemplateId` char(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `defaultView` int(11) NOT NULL default '0', `revisionDate` bigint(20) NOT NULL default '0', - `groupToViewEntries` varchar(22) NOT NULL default '7', + `groupToViewEntries` char(22) NOT NULL default '7', `mailAttachments` int(11) default '0', `useCaptcha` int(1) default '0', `storeData` int(1) default '1', @@ -152,11 +152,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `DataForm_entry` ( - `DataForm_entryId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `username` varchar(255) default NULL, - `ipAddress` varchar(255) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `DataForm_entryId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `username` char(255) default NULL, + `ipAddress` char(255) default NULL, + `assetId` char(22) NOT NULL default '', `entryData` mediumtext, `submissionDate` datetime default NULL, PRIMARY KEY (`DataForm_entryId`), @@ -167,22 +167,22 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `DataTable` ( - `assetId` varchar(22) character set latin1 collate latin1_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `data` longtext, - `templateId` varchar(22) character set latin1 collate latin1_bin default NULL, + `templateId` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSBadge` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `price` float NOT NULL default '0', `seatsAvailable` int(11) NOT NULL default '100', `relatedBadgeGroups` mediumtext, - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `templateId` char(22) NOT NULL, `earlyBirdPrice` float NOT NULL default '0', `earlyBirdPriceEndDate` bigint(20) default NULL, `preRegistrationPrice` float NOT NULL default '0', @@ -193,19 +193,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSBadgeGroup` ( - `badgeGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `emsAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(100) default NULL, + `badgeGroupId` char(22) NOT NULL, + `emsAssetId` char(22) NOT NULL, + `name` char(100) default NULL, PRIMARY KEY (`badgeGroupId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSEventMetaField` ( - `fieldId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin default NULL, - `label` varchar(100) default NULL, - `dataType` varchar(20) default NULL, + `fieldId` char(22) NOT NULL, + `assetId` char(22) default NULL, + `label` char(100) default NULL, + `dataType` char(20) default NULL, `visible` tinyint(4) default '0', `required` tinyint(4) default '0', `possibleValues` text, @@ -217,26 +217,26 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRegistrant` ( - `badgeId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, + `badgeId` char(22) NOT NULL, + `userId` char(22) default NULL, `badgeNumber` int(11) NOT NULL auto_increment, - `badgeAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `emsAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(35) character set utf8 collate utf8_bin NOT NULL, - `address1` varchar(35) default NULL, - `address2` varchar(35) default NULL, - `address3` varchar(35) default NULL, - `city` varchar(35) default NULL, - `state` varchar(35) default NULL, - `zipcode` varchar(35) default NULL, - `country` varchar(35) default NULL, - `phoneNumber` varchar(35) default NULL, - `organization` varchar(35) default NULL, - `email` varchar(255) default NULL, + `badgeAssetId` char(22) NOT NULL, + `emsAssetId` char(22) NOT NULL, + `name` char(35) NOT NULL, + `address1` char(35) default NULL, + `address2` char(35) default NULL, + `address3` char(35) default NULL, + `city` char(35) default NULL, + `state` char(35) default NULL, + `zipcode` char(35) default NULL, + `country` char(35) default NULL, + `phoneNumber` char(35) default NULL, + `organization` char(35) default NULL, + `email` char(255) default NULL, `notes` mediumtext, `purchaseComplete` tinyint(1) default NULL, `hasCheckedIn` tinyint(1) default NULL, - `transactionItemId` varchar(22) character set utf8 collate utf8_bin default NULL, + `transactionItemId` char(22) default NULL, PRIMARY KEY (`badgeId`), UNIQUE KEY `badgeNumber` (`badgeNumber`), KEY `badgeAssetId_purchaseComplete` (`badgeAssetId`,`purchaseComplete`) @@ -245,19 +245,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRegistrantRibbon` ( - `badgeId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `ribbonAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `transactionItemId` varchar(22) character set utf8 collate utf8_bin default NULL, + `badgeId` char(22) NOT NULL, + `ribbonAssetId` char(22) NOT NULL, + `transactionItemId` char(22) default NULL, PRIMARY KEY (`badgeId`,`ribbonAssetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRegistrantTicket` ( - `badgeId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `ticketAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `badgeId` char(22) NOT NULL, + `ticketAssetId` char(22) NOT NULL, `purchaseComplete` tinyint(1) default NULL, - `transactionItemId` varchar(22) character set utf8 collate utf8_bin default NULL, + `transactionItemId` char(22) default NULL, PRIMARY KEY (`badgeId`,`ticketAssetId`), KEY `ticketAssetId_purchaseComplete` (`ticketAssetId`,`purchaseComplete`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -265,8 +265,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRegistrantToken` ( - `badgeId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `tokenAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `badgeId` char(22) NOT NULL, + `tokenAssetId` char(22) NOT NULL, `quantity` int(11) default NULL, `transactionItemIds` text character set utf8 collate utf8_bin, PRIMARY KEY (`badgeId`,`tokenAssetId`) @@ -275,7 +275,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRibbon` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `percentageDiscount` float NOT NULL default '10', `price` float NOT NULL default '0', @@ -285,14 +285,14 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSTicket` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `price` float NOT NULL default '0', `seatsAvailable` int(11) NOT NULL default '100', `startDate` datetime default NULL, `duration` float NOT NULL default '1', `eventNumber` int(11) default NULL, - `location` varchar(100) default NULL, + `location` char(100) default NULL, `relatedBadgeGroups` mediumtext, `relatedRibbons` mediumtext, `eventMetaData` mediumtext, @@ -302,7 +302,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSToken` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `price` float NOT NULL default '0', PRIMARY KEY (`assetId`,`revisionDate`) @@ -311,10 +311,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Event` ( - `assetId` varchar(22) NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) unsigned NOT NULL, - `feedId` varchar(22) default NULL, - `feedUid` varchar(255) default NULL, + `feedId` char(22) default NULL, + `feedUid` char(255) default NULL, `startDate` date default NULL, `endDate` date default NULL, `userDefined1` text, @@ -322,14 +322,14 @@ CREATE TABLE `Event` ( `userDefined3` text, `userDefined4` text, `userDefined5` text, - `recurId` varchar(22) default NULL, + `recurId` char(22) default NULL, `description` longtext, `startTime` time default NULL, `endTime` time default NULL, `relatedLinks` longtext, - `location` varchar(255) default NULL, - `storageId` varchar(22) NOT NULL, - `timeZone` varchar(255) character set utf8 collate utf8_bin default 'America/Chicago', + `location` char(255) default NULL, + `storageId` char(22) NOT NULL, + `timeZone` char(255) default 'America/Chicago', `sequenceNumber` bigint(20) default NULL, `iCalSequenceNumber` int(11) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) @@ -338,52 +338,52 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EventManagementSystem` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `groupToApproveEvents` varchar(22) character set utf8 collate utf8_bin default NULL, - `timezone` varchar(30) NOT NULL default 'America/Chicago', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2rC4ErZ3c77OJzJm7O5s3w', - `badgeBuilderTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'BMybD3cEnmXVk2wQ_qEsRQ', - `lookupRegistrantTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'OOyMH33plAy6oCj_QWrxtg', - `printBadgeTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PsFn7dJt4wMwBa8hiE3hOA', - `printTicketTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'yBwydfooiLvhEFawJb0VTQ', + `groupToApproveEvents` char(22) default NULL, + `timezone` char(30) NOT NULL default 'America/Chicago', + `templateId` char(22) NOT NULL default '2rC4ErZ3c77OJzJm7O5s3w', + `badgeBuilderTemplateId` char(22) NOT NULL default 'BMybD3cEnmXVk2wQ_qEsRQ', + `lookupRegistrantTemplateId` char(22) NOT NULL default 'OOyMH33plAy6oCj_QWrxtg', + `printBadgeTemplateId` char(22) NOT NULL default 'PsFn7dJt4wMwBa8hiE3hOA', + `printTicketTemplateId` char(22) NOT NULL default 'yBwydfooiLvhEFawJb0VTQ', `badgeInstructions` mediumtext, `ribbonInstructions` mediumtext, `ticketInstructions` mediumtext, `tokenInstructions` mediumtext, - `registrationStaffGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `registrationStaffGroupId` char(22) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Event_recur` ( - `recurId` varchar(22) NOT NULL, - `recurType` varchar(16) default NULL, - `pattern` varchar(255) default NULL, + `recurId` char(22) NOT NULL, + `recurType` char(16) default NULL, + `pattern` char(255) default NULL, `startDate` date default NULL, - `endDate` varchar(10) default NULL, + `endDate` char(10) default NULL, PRIMARY KEY (`recurId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Event_relatedlink` ( - `eventlinkId` varchar(22) NOT NULL, - `assetId` varchar(22) NOT NULL, + `eventlinkId` char(22) NOT NULL, + `assetId` char(22) NOT NULL, `linkURL` tinytext, - `linktext` varchar(80) default NULL, - `groupIdView` varchar(22) NOT NULL, + `linktext` char(80) default NULL, + `groupIdView` char(22) NOT NULL, `sequenceNumber` bigint(20) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `FileAsset` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `storageId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `filename` varchar(255) NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `storageId` char(22) NOT NULL default '', + `filename` char(255) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '3600', PRIMARY KEY (`assetId`,`revisionDate`) @@ -392,9 +392,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `FlatDiscount` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '63ix2-hU0FchXGIWkG3tow', + `templateId` char(22) NOT NULL default '63ix2-hU0FchXGIWkG3tow', `mustSpend` float NOT NULL default '0', `percentageDiscount` int(3) NOT NULL default '0', `priceDiscount` float NOT NULL default '0', @@ -405,8 +405,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Folder` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `visitorCacheTimeout` int(11) NOT NULL default '3600', `sortAlphabetically` int(11) NOT NULL default '0', @@ -417,39 +417,39 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Gallery` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `groupIdAddComment` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupIdAddFile` varchar(22) character set utf8 collate utf8_bin default NULL, + `groupIdAddComment` char(22) default NULL, + `groupIdAddFile` char(22) default NULL, `imageResolutions` text, `imageViewSize` int(11) default NULL, `imageThumbnailSize` int(11) default NULL, - `maxSpacePerUser` varchar(20) default NULL, - `richEditIdComment` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdAddArchive` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdDeleteAlbum` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdDeleteFile` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdEditAlbum` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdEditFile` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdListAlbums` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdListAlbumsRss` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdListFilesForUser` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdListFilesForUserRss` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdMakeShortcut` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdSearch` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewSlideshow` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewThumbnails` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewAlbum` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewAlbumRss` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewFile` varchar(22) character set utf8 collate utf8_bin default NULL, - `viewAlbumAssetId` varchar(22) default NULL, + `maxSpacePerUser` char(20) default NULL, + `richEditIdComment` char(22) default NULL, + `templateIdAddArchive` char(22) default NULL, + `templateIdDeleteAlbum` char(22) default NULL, + `templateIdDeleteFile` char(22) default NULL, + `templateIdEditAlbum` char(22) default NULL, + `templateIdEditFile` char(22) default NULL, + `templateIdListAlbums` char(22) default NULL, + `templateIdListAlbumsRss` char(22) default NULL, + `templateIdListFilesForUser` char(22) default NULL, + `templateIdListFilesForUserRss` char(22) default NULL, + `templateIdMakeShortcut` char(22) default NULL, + `templateIdSearch` char(22) default NULL, + `templateIdViewSlideshow` char(22) default NULL, + `templateIdViewThumbnails` char(22) default NULL, + `templateIdViewAlbum` char(22) default NULL, + `templateIdViewAlbumRss` char(22) default NULL, + `templateIdViewFile` char(22) default NULL, + `viewAlbumAssetId` char(22) default NULL, `viewDefault` enum('album','list') default NULL, - `viewListOrderBy` varchar(40) default NULL, + `viewListOrderBy` char(40) default NULL, `viewListOrderDirection` enum('ASC','DESC') default NULL, - `workflowIdCommit` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdEditComment` varchar(22) character set utf8 collate utf8_bin default NULL, - `richEditIdAlbum` varchar(22) character set utf8 collate utf8_bin default NULL, - `richEditIdFile` varchar(22) character set utf8 collate utf8_bin default NULL, + `workflowIdCommit` char(22) default NULL, + `templateIdEditComment` char(22) default NULL, + `richEditIdAlbum` char(22) default NULL, + `richEditIdFile` char(22) default NULL, `defaultFilesPerPage` int(11) default NULL, `imageDensity` int(11) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) @@ -458,10 +458,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `GalleryAlbum` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `allowComments` int(11) default NULL, - `assetIdThumbnail` varchar(22) character set utf8 collate utf8_bin default NULL, + `assetIdThumbnail` char(22) default NULL, `userDefined1` text, `userDefined2` text, `userDefined3` text, @@ -474,7 +474,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `GalleryFile` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `userDefined1` longtext, `userDefined2` longtext, @@ -490,10 +490,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `GalleryFile_comment` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `commentId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, - `visitorIp` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `commentId` char(22) NOT NULL, + `userId` char(22) default NULL, + `visitorIp` char(255) default NULL, `creationDate` datetime default NULL, `bodyText` longtext, PRIMARY KEY (`assetId`,`commentId`), @@ -506,18 +506,18 @@ CREATE TABLE `HttpProxy` ( `proxiedUrl` text, `timeout` int(11) default NULL, `removeStyle` int(11) default NULL, - `filterHtml` varchar(30) default NULL, + `filterHtml` char(30) default NULL, `followExternal` int(11) default NULL, `followRedirect` int(11) default NULL, `cacheHttp` int(11) default '0', `useCache` int(11) default '0', `debug` int(11) default '0', `rewriteUrls` int(11) default NULL, - `searchFor` varchar(255) default NULL, - `stopAt` varchar(255) default NULL, - `cookieJarStorageId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `searchFor` char(255) default NULL, + `stopAt` char(255) default NULL, + `cookieJarStorageId` char(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '0', `useAmpersand` int(11) NOT NULL default '0', @@ -528,19 +528,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ITransact_recurringStatus` ( - `gatewayId` varchar(128) NOT NULL default '', + `gatewayId` char(128) NOT NULL default '', `initDate` bigint(20) NOT NULL default '0', `lastTransaction` bigint(20) NOT NULL default '0', - `status` varchar(10) NOT NULL default '', - `errorMessage` varchar(128) default NULL, - `recipe` varchar(15) NOT NULL default '', + `status` char(10) NOT NULL default '', + `errorMessage` char(128) default NULL, + `recipe` char(15) NOT NULL default '', PRIMARY KEY (`gatewayId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ImageAsset` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `thumbnailSize` int(11) NOT NULL default '50', `parameters` text, `revisionDate` bigint(20) NOT NULL default '0', @@ -550,13 +550,13 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `InOutBoard` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', `statusList` text, - `reportViewerGroup` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `inOutGroup` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `inOutTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'IOB0000000000000000001', - `reportTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'IOB0000000000000000002', + `reportViewerGroup` char(22) NOT NULL default '3', + `inOutGroup` char(22) NOT NULL default '2', + `inOutTemplateId` char(22) NOT NULL default 'IOB0000000000000000001', + `reportTemplateId` char(22) NOT NULL default 'IOB0000000000000000002', `paginateAfter` int(11) NOT NULL default '50', `reportPaginateAfter` int(11) NOT NULL default '50', PRIMARY KEY (`assetId`,`revisionDate`) @@ -565,17 +565,17 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `InOutBoard_delegates` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `delegateUserId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL + `userId` char(22) NOT NULL, + `delegateUserId` char(22) NOT NULL, + `assetId` char(22) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `InOutBoard_status` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `status` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `userId` char(22) NOT NULL, + `status` char(255) default NULL, `dateStamp` int(11) NOT NULL, `message` text ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -583,35 +583,35 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `InOutBoard_statusLog` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `status` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `userId` char(22) NOT NULL, + `status` char(255) default NULL, `dateStamp` int(11) NOT NULL, `message` text, - `createdBy` varchar(22) character set utf8 collate utf8_bin default NULL + `createdBy` char(22) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Layout` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `contentPositions` text, `assetsToHide` text, `revisionDate` bigint(20) NOT NULL default '0', - `assetOrder` varchar(20) default 'asc', + `assetOrder` char(20) default 'asc', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Matrix` ( - `detailTemplateId` varchar(22) character set utf8 collate utf8_bin default NULL, - `compareTemplateId` varchar(22) character set utf8 collate utf8_bin default NULL, - `searchTemplateId` varchar(22) character set utf8 collate utf8_bin default NULL, + `detailTemplateId` char(22) default NULL, + `compareTemplateId` char(22) default NULL, + `searchTemplateId` char(22) default NULL, `categories` text, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `maxComparisons` int(11) NOT NULL default '10', `maxComparisonsPrivileged` int(11) NOT NULL default '10', @@ -657,30 +657,30 @@ CREATE TABLE `MatrixListing_attribute` ( `matrixListingId` char(22) NOT NULL, `attributeId` char(22) NOT NULL, `value` char(255) default NULL, - PRIMARY KEY (`matrixId`,`matrixListingId`,`attributeId`) + PRIMARY KEY (`attributeId`,`matrixListingId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `MatrixListing_rating` ( `timeStamp` int(11) NOT NULL default '0', - `category` varchar(255) default NULL, + `category` char(255) default NULL, `rating` int(11) NOT NULL default '1', - `listingId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ipAddress` varchar(15) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin default NULL + `listingId` char(22) NOT NULL default '', + `ipAddress` char(15) default NULL, + `assetId` char(22) NOT NULL default '', + `userId` char(22) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `MatrixListing_ratingSummary` ( - `listingId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `category` varchar(255) NOT NULL default '', + `listingId` char(22) NOT NULL default '', + `category` char(255) NOT NULL default '', `meanValue` decimal(3,2) default NULL, `medianValue` int(11) default NULL, `countValue` int(11) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', PRIMARY KEY (`listingId`,`category`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -688,12 +688,12 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Matrix_attribute` ( `attributeId` char(22) NOT NULL, - `category` varchar(255) NOT NULL default '', - `name` varchar(255) default NULL, + `category` char(255) NOT NULL default '', + `name` char(255) default NULL, `description` text, `fieldType` char(255) NOT NULL default 'MatrixCompare', - `defaultValue` varchar(255) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `defaultValue` char(255) default NULL, + `assetId` char(22) NOT NULL default '', `options` text, PRIMARY KEY (`attributeId`), KEY `categoryIndex` (`category`) @@ -702,8 +702,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `MessageBoard` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `visitorCacheTimeout` int(11) NOT NULL default '3600', PRIMARY KEY (`assetId`,`revisionDate`) @@ -712,9 +712,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `MultiSearch` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `revisionDate` bigint(20) unsigned NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'MultiSearchTmpl0000001', + `templateId` char(22) NOT NULL default 'MultiSearchTmpl0000001', `predefinedSearches` text, `cacheTimeout` int(11) NOT NULL default '3600', PRIMARY KEY (`assetId`,`revisionDate`) @@ -723,18 +723,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Navigation` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `assetsToInclude` text, - `startType` varchar(35) default NULL, - `startPoint` varchar(255) default NULL, + `startType` char(35) default NULL, + `startPoint` char(255) default NULL, `descendantEndPoint` int(11) NOT NULL default '55', `showSystemPages` int(11) NOT NULL default '0', `showHiddenPages` int(11) NOT NULL default '0', `showUnprivilegedPages` int(11) NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `templateId` char(22) NOT NULL default '', `ancestorEndPoint` int(11) NOT NULL default '55', `revisionDate` bigint(20) NOT NULL default '0', - `mimeType` varchar(50) default 'text/html', + `mimeType` char(50) default 'text/html', `reversePageLoop` tinyint(1) default '0', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -742,10 +742,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Newsletter` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `newsletterTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'newsletter000000000001', - `mySubscriptionsTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'newslettersubscrip0001', + `newsletterTemplateId` char(22) NOT NULL default 'newsletter000000000001', + `mySubscriptionsTemplateId` char(22) NOT NULL default 'newslettersubscrip0001', `newsletterHeader` mediumtext, `newsletterFooter` mediumtext, `newsletterCategories` text, @@ -755,8 +755,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Newsletter_subscriptions` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, + `userId` char(22) NOT NULL, `subscriptions` text, `lastTimeSent` bigint(20) NOT NULL default '0', PRIMARY KEY (`assetId`,`userId`), @@ -766,42 +766,42 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `PM_project` ( - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin default NULL, - `name` varchar(255) NOT NULL, + `projectId` char(22) NOT NULL, + `assetId` char(22) default NULL, + `name` char(255) NOT NULL, `description` text, `startDate` bigint(20) default NULL, `endDate` bigint(20) default NULL, - `projectManager` varchar(22) character set utf8 collate utf8_bin default NULL, + `projectManager` char(22) default NULL, `durationUnits` enum('hours','days') default 'hours', `hoursPerDay` float default NULL, `targetBudget` float(15,2) default '0.00', `percentComplete` float NOT NULL default '0', - `parentId` varchar(22) character set utf8 collate utf8_bin default NULL, + `parentId` char(22) default NULL, `creationDate` bigint(20) NOT NULL, - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `lastUpdatedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `createdBy` char(22) NOT NULL, + `lastUpdatedBy` char(22) NOT NULL, `lastUpdateDate` bigint(20) NOT NULL, - `projectObserver` varchar(22) character set utf8 collate utf8_bin default '7', + `projectObserver` char(22) default '7', PRIMARY KEY (`projectId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `PM_task` ( - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskName` varchar(255) NOT NULL, + `taskId` char(22) NOT NULL, + `projectId` char(22) NOT NULL, + `taskName` char(255) NOT NULL, `duration` float default NULL, `startDate` bigint(20) default NULL, `endDate` bigint(20) default NULL, - `dependants` varchar(50) default NULL, - `parentId` varchar(22) character set utf8 collate utf8_bin default NULL, + `dependants` char(50) default NULL, + `parentId` char(22) default NULL, `percentComplete` float default NULL, `sequenceNumber` int(11) NOT NULL default '1', `creationDate` bigint(20) NOT NULL, - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `lastUpdatedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `createdBy` char(22) NOT NULL, + `lastUpdatedBy` char(22) NOT NULL, `lastUpdateDate` bigint(20) NOT NULL, `lagTime` bigint(20) default '0', `taskType` enum('timed','progressive','milestone') NOT NULL default 'timed', @@ -811,11 +811,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `PM_taskResource` ( - `taskResourceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `taskResourceId` char(22) NOT NULL, + `taskId` char(22) NOT NULL, `sequenceNumber` int(11) NOT NULL, `resourceKind` enum('user','group') NOT NULL, - `resourceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `resourceId` char(22) NOT NULL, PRIMARY KEY (`taskResourceId`), UNIQUE KEY `taskId` (`taskId`,`resourceKind`,`resourceId`), UNIQUE KEY `taskId_2` (`taskId`,`sequenceNumber`) @@ -824,34 +824,34 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `PM_wobject` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `projectDashboardTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0001', - `projectDisplayTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0002', - `ganttChartTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0003', - `editTaskTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0004', - `groupToAdd` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', + `assetId` char(22) NOT NULL, + `projectDashboardTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0001', + `projectDisplayTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0002', + `ganttChartTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0003', + `editTaskTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0004', + `groupToAdd` char(22) NOT NULL default '3', `revisionDate` bigint(20) NOT NULL, - `resourcePopupTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0005', - `resourceListTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0006', + `resourcePopupTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0005', + `resourceListTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0006', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Photo` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `exifData` longtext, - `location` varchar(255) default NULL, + `location` char(255) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Photo_rating` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, - `visitorIp` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `userId` char(22) default NULL, + `visitorIp` char(255) default NULL, `rating` int(11) default NULL, KEY `assetId` (`assetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -861,32 +861,32 @@ SET character_set_client = utf8; CREATE TABLE `Poll` ( `active` int(11) NOT NULL default '1', `graphWidth` int(11) NOT NULL default '150', - `voteGroup` varchar(22) default NULL, - `question` varchar(255) default NULL, - `a1` varchar(255) default NULL, - `a2` varchar(255) default NULL, - `a3` varchar(255) default NULL, - `a4` varchar(255) default NULL, - `a5` varchar(255) default NULL, - `a6` varchar(255) default NULL, - `a7` varchar(255) default NULL, - `a8` varchar(255) default NULL, - `a9` varchar(255) default NULL, - `a10` varchar(255) default NULL, - `a11` varchar(255) default NULL, - `a12` varchar(255) default NULL, - `a13` varchar(255) default NULL, - `a14` varchar(255) default NULL, - `a15` varchar(255) default NULL, - `a16` varchar(255) default NULL, - `a17` varchar(255) default NULL, - `a18` varchar(255) default NULL, - `a19` varchar(255) default NULL, - `a20` varchar(255) default NULL, + `voteGroup` char(22) default NULL, + `question` char(255) default NULL, + `a1` char(255) default NULL, + `a2` char(255) default NULL, + `a3` char(255) default NULL, + `a4` char(255) default NULL, + `a5` char(255) default NULL, + `a6` char(255) default NULL, + `a7` char(255) default NULL, + `a8` char(255) default NULL, + `a9` char(255) default NULL, + `a10` char(255) default NULL, + `a11` char(255) default NULL, + `a12` char(255) default NULL, + `a13` char(255) default NULL, + `a14` char(255) default NULL, + `a15` char(255) default NULL, + `a16` char(255) default NULL, + `a17` char(255) default NULL, + `a18` char(255) default NULL, + `a19` char(255) default NULL, + `a20` char(255) default NULL, `karmaPerVote` int(11) NOT NULL default '0', `randomizeAnswers` int(11) NOT NULL default '0', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `graphConfiguration` blob, `generateGraph` tinyint(1) default NULL, @@ -897,26 +897,26 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Poll_answer` ( `answer` char(3) default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ipAddress` varchar(50) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '' + `userId` char(22) NOT NULL default '', + `ipAddress` char(50) default NULL, + `assetId` char(22) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Post` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `threadId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `username` varchar(30) default NULL, + `assetId` char(22) NOT NULL default '', + `threadId` char(22) NOT NULL default '', + `username` char(30) default NULL, `content` mediumtext, `views` int(11) NOT NULL default '0', - `contentType` varchar(35) NOT NULL default 'mixed', + `contentType` char(35) NOT NULL default 'mixed', `userDefined1` text, `userDefined2` text, `userDefined3` text, `userDefined4` text, `userDefined5` text, - `storageId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `storageId` char(22) NOT NULL default '', `rating` int(11) NOT NULL default '0', `revisionDate` bigint(20) NOT NULL default '0', `originalEmail` mediumtext, @@ -927,9 +927,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Post_rating` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ipAddress` varchar(15) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `ipAddress` char(15) NOT NULL default '', `dateOfRating` bigint(20) default NULL, `rating` int(11) NOT NULL default '0', KEY `assetId_userId` (`assetId`,`userId`), @@ -939,14 +939,14 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Product` ( - `image1` varchar(255) default NULL, - `image2` varchar(255) default NULL, - `image3` varchar(255) default NULL, - `brochure` varchar(255) default NULL, - `manual` varchar(255) default NULL, - `warranty` varchar(255) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `image1` char(255) default NULL, + `image2` char(255) default NULL, + `image3` char(255) default NULL, + `brochure` char(255) default NULL, + `manual` char(255) default NULL, + `warranty` char(255) default NULL, + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '3600', `thankYouMessage` mediumtext, @@ -963,18 +963,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `RSSCapable` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `rssCapableRssEnabled` int(11) NOT NULL default '1', - `rssCapableRssTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBtmpl0000000000000142', - `rssCapableRssFromParentId` varchar(22) character set utf8 collate utf8_bin default NULL, + `rssCapableRssTemplateId` char(22) NOT NULL default 'PBtmpl0000000000000142', + `rssCapableRssFromParentId` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `RSSFromParent` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -982,7 +982,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `RichEdit` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `askAboutRichEdit` int(11) NOT NULL default '0', `preformatted` int(11) NOT NULL default '0', `editorWidth` int(11) NOT NULL default '0', @@ -994,8 +994,8 @@ CREATE TABLE `RichEdit` ( `removeLineBreaks` int(11) NOT NULL default '0', `npwrap` int(11) NOT NULL default '0', `directionality` char(3) NOT NULL default 'ltr', - `toolbarLocation` varchar(6) NOT NULL default 'bottom', - `cssFile` varchar(255) default NULL, + `toolbarLocation` char(6) NOT NULL default 'bottom', + `cssFile` char(255) default NULL, `validElements` mediumtext, `toolbarRow1` text, `toolbarRow2` text, @@ -1011,8 +1011,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `SQLForm_fieldOrder` ( - `assetId` varchar(22) NOT NULL default '', - `fieldId` varchar(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `fieldId` char(22) NOT NULL default '', `rank` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -1023,26 +1023,26 @@ CREATE TABLE `SQLReport` ( `paginateAfter` int(11) NOT NULL default '50', `preprocessMacros1` int(11) default '0', `debugMode` int(11) NOT NULL default '0', - `databaseLinkId1` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId1` char(22) NOT NULL default '', `placeholderParams1` text, `preprocessMacros2` int(11) default '0', `dbQuery2` text, `placeholderParams2` text, - `databaseLinkId2` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId2` char(22) NOT NULL default '', `preprocessMacros3` int(11) default '0', `dbQuery3` text, `placeholderParams3` text, - `databaseLinkId3` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId3` char(22) NOT NULL default '', `preprocessMacros4` int(11) default '0', `dbQuery4` text, `placeholderParams4` text, - `databaseLinkId4` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId4` char(22) NOT NULL default '', `preprocessMacros5` int(11) default '0', `dbQuery5` text, `placeholderParams5` text, - `databaseLinkId5` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId5` char(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '0', `prequeryStatements1` text, @@ -1050,20 +1050,20 @@ CREATE TABLE `SQLReport` ( `prequeryStatements3` text, `prequeryStatements4` text, `prequeryStatements5` text, - `downloadType` varchar(255) default NULL, - `downloadFilename` varchar(255) default NULL, - `downloadTemplateId` varchar(22) default NULL, - `downloadMimeType` varchar(255) default NULL, - `downloadUserGroup` varchar(22) default NULL, + `downloadType` char(255) default NULL, + `downloadFilename` char(255) default NULL, + `downloadTemplateId` char(22) default NULL, + `downloadMimeType` char(255) default NULL, + `downloadUserGroup` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Shelf` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'nFen0xjkZn8WkpM93C9ceQ', + `templateId` char(22) NOT NULL default 'nFen0xjkZn8WkpM93C9ceQ', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -1074,13 +1074,13 @@ CREATE TABLE `Shortcut` ( `overrideDescription` int(11) NOT NULL default '0', `overrideTemplate` int(11) NOT NULL default '0', `overrideDisplayTitle` int(11) NOT NULL default '0', - `overrideTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `overrideTemplateId` char(22) NOT NULL default '', `shortcutByCriteria` int(11) NOT NULL default '0', - `resolveMultiples` varchar(30) default 'mostRecent', + `resolveMultiples` char(30) default 'mostRecent', `shortcutCriteria` text NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `shortcutToAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', + `shortcutToAssetId` char(22) NOT NULL default '', `disableContentLock` int(11) NOT NULL default '0', `revisionDate` bigint(20) NOT NULL default '0', `prefFieldsToShow` text, @@ -1092,8 +1092,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Shortcut_overrides` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `fieldName` varchar(255) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `fieldName` char(255) NOT NULL default '', `newValue` text, PRIMARY KEY (`assetId`,`fieldName`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1101,11 +1101,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `StockData` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'StockListTMPL000000001', - `displayTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'StockListTMPL000000002', + `assetId` char(22) NOT NULL, + `templateId` char(22) NOT NULL default 'StockListTMPL000000001', + `displayTemplateId` char(22) NOT NULL default 'StockListTMPL000000002', `defaultStocks` text, - `source` varchar(50) default 'usa', + `source` char(50) default 'usa', `failover` int(11) default '1', `revisionDate` int(11) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) @@ -1114,14 +1114,14 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Subscription` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `templateId` varchar(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `thankYouMessage` mediumtext, `price` float NOT NULL default '0', - `subscriptionGroup` varchar(22) NOT NULL default '2', - `duration` varchar(12) NOT NULL default 'Monthly', - `executeOnSubscription` varchar(255) default NULL, + `subscriptionGroup` char(22) NOT NULL default '2', + `duration` char(12) NOT NULL default 'Monthly', + `executeOnSubscription` char(255) default NULL, `karma` int(6) default '0', `recurringSubscription` tinyint(1) NOT NULL default '1', `redeemSubscriptionCodeTemplateId` char(22) NOT NULL default '', @@ -1131,21 +1131,21 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Subscription_code` ( - `code` varchar(64) NOT NULL, - `batchId` varchar(22) NOT NULL, - `status` varchar(10) NOT NULL default 'Unused', + `code` char(64) NOT NULL, + `batchId` char(22) NOT NULL, + `status` char(10) NOT NULL default 'Unused', `dateUsed` bigint(20) default NULL, - `usedBy` varchar(22) default NULL, + `usedBy` char(22) default NULL, PRIMARY KEY (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Subscription_codeBatch` ( - `batchId` varchar(22) NOT NULL, - `name` varchar(255) default NULL, + `batchId` char(22) NOT NULL, + `name` char(255) default NULL, `description` mediumtext, - `subscriptionId` varchar(22) NOT NULL, + `subscriptionId` char(22) NOT NULL, `expirationDate` bigint(20) NOT NULL, `dateCreated` bigint(20) NOT NULL, PRIMARY KEY (`batchId`) @@ -1170,7 +1170,7 @@ CREATE TABLE `Survey` ( `sectionEditTemplateId` char(22) default NULL, `surveyTakeTemplateId` char(22) default NULL, `surveyQuestionsId` char(22) default NULL, - `exitURL` varchar(512) default NULL, + `exitURL` text, `surveyJSON` longtext, `timeLimit` mediumint(8) unsigned NOT NULL, `showProgress` tinyint(3) unsigned NOT NULL default '0', @@ -1180,69 +1180,6 @@ CREATE TABLE `Survey` ( SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; -CREATE TABLE `Survey_answer_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_questionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_answerId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `sequenceNumber` int(11) NOT NULL default '1', - `gotoQuestion` varchar(22) character set utf8 collate utf8_bin default NULL, - `answer` varchar(255) default NULL, - `isCorrect` int(11) NOT NULL default '0', - PRIMARY KEY (`Survey_answerId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; -CREATE TABLE `Survey_old` ( - `questionOrder` varchar(30) default NULL, - `groupToTakeSurvey` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `groupToViewReports` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `mode` varchar(30) default NULL, - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `anonymous` char(1) NOT NULL default '0', - `questionsPerPage` int(11) NOT NULL default '1', - `responseTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `overviewTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `maxResponsesPerUser` int(11) NOT NULL default '1', - `questionsPerResponse` int(11) NOT NULL default '9999999', - `gradebookTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `revisionDate` bigint(20) NOT NULL default '0', - `defaultSectionId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; -CREATE TABLE `Survey_questionResponse_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_questionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_answerId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_responseId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `response` text, - `comment` text, - `dateOfResponse` bigint(20) NOT NULL default '0', - PRIMARY KEY (`Survey_questionId`,`Survey_answerId`,`Survey_responseId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; -CREATE TABLE `Survey_question_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_questionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `question` text, - `sequenceNumber` int(11) NOT NULL default '1', - `allowComment` int(11) NOT NULL default '0', - `randomizeAnswers` int(11) NOT NULL default '0', - `answerFieldType` varchar(35) default NULL, - `gotoQuestion` varchar(22) default NULL, - `Survey_sectionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - PRIMARY KEY (`Survey_questionId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; CREATE TABLE `Survey_response` ( `assetId` char(22) character set utf8 collate utf8_bin NOT NULL, `Survey_responseId` char(22) character set utf8 collate utf8_bin NOT NULL, @@ -1252,45 +1189,21 @@ CREATE TABLE `Survey_response` ( `startDate` bigint(20) NOT NULL default '0', `endDate` bigint(20) NOT NULL default '0', `isComplete` int(11) NOT NULL default '0', - `anonId` varchar(255) default NULL, + `anonId` char(255) default NULL, `responseJSON` longtext, PRIMARY KEY (`Survey_responseId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; -CREATE TABLE `Survey_response_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_responseId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) default NULL, - `username` varchar(255) default NULL, - `ipAddress` varchar(15) default NULL, - `startDate` bigint(20) NOT NULL default '0', - `endDate` bigint(20) NOT NULL default '0', - `isComplete` int(11) NOT NULL default '0', - PRIMARY KEY (`Survey_responseId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; -CREATE TABLE `Survey_section_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_sectionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `sectionName` text, - `sequenceNumber` int(11) NOT NULL default '1', - PRIMARY KEY (`Survey_sectionId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; CREATE TABLE `Survey_tempReport` ( `assetId` char(22) NOT NULL, `Survey_responseId` char(22) NOT NULL, `order` smallint(5) unsigned NOT NULL, `sectionNumber` smallint(5) unsigned NOT NULL, - `sectionName` varchar(512) default NULL, + `sectionName` text, `questionNumber` smallint(5) unsigned NOT NULL, - `questionName` varchar(512) default NULL, + `questionName` text, `questionComment` mediumtext, `answerNumber` smallint(5) unsigned default NULL, `answerValue` mediumtext, @@ -1308,10 +1221,10 @@ SET character_set_client = utf8; CREATE TABLE `SyndicatedContent` ( `rssUrl` text, `maxHeadlines` int(11) NOT NULL default '0', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', - `hasTerms` varchar(255) NOT NULL default '', + `hasTerms` char(255) NOT NULL default '', `cacheTimeout` int(11) NOT NULL default '3600', `processMacroInRssUrl` int(11) default '0', PRIMARY KEY (`assetId`,`revisionDate`) @@ -1320,12 +1233,12 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_projectList` ( - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin default NULL, - `projectName` varchar(255) NOT NULL, + `projectId` char(22) NOT NULL, + `assetId` char(22) default NULL, + `projectName` char(255) NOT NULL, `creationDate` bigint(20) NOT NULL, - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `lastUpdatedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `createdBy` char(22) NOT NULL, + `lastUpdatedBy` char(22) NOT NULL, `lastUpdateDate` bigint(20) NOT NULL, PRIMARY KEY (`projectId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1333,57 +1246,57 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_projectResourceList` ( - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `resourceId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `projectId` char(22) NOT NULL, + `resourceId` char(22) NOT NULL default '', PRIMARY KEY (`projectId`,`resourceId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_projectTasks` ( - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskName` varchar(255) NOT NULL, + `taskId` char(22) NOT NULL, + `projectId` char(22) NOT NULL, + `taskName` char(255) NOT NULL, PRIMARY KEY (`taskId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_report` ( - `reportId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) NOT NULL, - `startDate` varchar(10) NOT NULL, - `endDate` varchar(10) NOT NULL, + `reportId` char(22) NOT NULL, + `assetId` char(22) NOT NULL, + `startDate` char(10) NOT NULL, + `endDate` char(10) NOT NULL, `reportComplete` int(11) NOT NULL default '0', - `resourceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `resourceId` char(22) NOT NULL, `creationDate` bigint(20) NOT NULL, - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `lastUpdatedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `createdBy` char(22) NOT NULL, + `lastUpdatedBy` char(22) NOT NULL, `lastUpdateDate` bigint(20) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_timeEntry` ( - `entryId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskDate` varchar(10) NOT NULL, + `entryId` char(22) NOT NULL, + `projectId` char(22) NOT NULL, + `taskId` char(22) NOT NULL, + `taskDate` char(10) NOT NULL, `hours` float default '0', `comments` text, - `reportId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `reportId` char(22) NOT NULL, PRIMARY KEY (`entryId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_wobject` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userViewTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'TimeTrackingTMPL000001', - `managerViewTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'TimeTrackingTMPL000002', - `timeRowTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'TimeTrackingTMPL000003', - `pmAssetId` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupToManage` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', + `assetId` char(22) NOT NULL, + `userViewTemplateId` char(22) NOT NULL default 'TimeTrackingTMPL000001', + `managerViewTemplateId` char(22) NOT NULL default 'TimeTrackingTMPL000002', + `timeRowTemplateId` char(22) NOT NULL default 'TimeTrackingTMPL000003', + `pmAssetId` char(22) default NULL, + `groupToManage` char(22) NOT NULL default '3', `revisionDate` bigint(20) NOT NULL, `pmIntegration` int(11) NOT NULL default '0', PRIMARY KEY (`assetId`,`revisionDate`) @@ -1392,71 +1305,71 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thingy` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `templateId` varchar(22) NOT NULL, - `defaultThingId` varchar(22) default NULL, + `templateId` char(22) NOT NULL, + `defaultThingId` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thingy_fields` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `thingId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `fieldId` varchar(22) NOT NULL, + `assetId` char(22) NOT NULL, + `thingId` char(22) NOT NULL, + `fieldId` char(22) NOT NULL, `sequenceNumber` int(11) NOT NULL, `dateCreated` bigint(20) NOT NULL, - `createdBy` varchar(22) NOT NULL, + `createdBy` char(22) NOT NULL, `dateUpdated` bigint(20) NOT NULL, - `updatedBy` varchar(22) NOT NULL, - `label` varchar(255) NOT NULL, - `fieldType` varchar(255) NOT NULL, + `updatedBy` char(22) NOT NULL, + `label` char(255) NOT NULL, + `fieldType` char(255) NOT NULL, `defaultValue` longtext, `possibleValues` text, - `subtext` varchar(255) default NULL, - `status` varchar(255) NOT NULL, + `subtext` char(255) default NULL, + `status` char(255) NOT NULL, `width` int(11) default NULL, `height` int(11) default NULL, `vertical` smallint(1) default NULL, - `extras` varchar(255) default NULL, + `extras` char(255) default NULL, `display` int(11) default NULL, `viewScreenTitle` int(11) default NULL, `displayInSearch` int(11) default NULL, `searchIn` int(11) default NULL, - `fieldInOtherThingId` varchar(22) default NULL, + `fieldInOtherThingId` char(22) default NULL, `size` int(11) default NULL, - `pretext` varchar(255) default NULL, + `pretext` char(255) default NULL, PRIMARY KEY (`fieldId`,`thingId`,`assetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thingy_things` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `thingId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `label` varchar(255) NOT NULL, - `editScreenTitle` varchar(255) NOT NULL, + `assetId` char(22) NOT NULL, + `thingId` char(22) NOT NULL, + `label` char(255) NOT NULL, + `editScreenTitle` char(255) NOT NULL, `editInstructions` text, - `groupIdAdd` varchar(22) NOT NULL, - `groupIdEdit` varchar(22) NOT NULL, - `saveButtonLabel` varchar(255) NOT NULL, - `afterSave` varchar(255) NOT NULL, - `editTemplateId` varchar(22) NOT NULL, - `onAddWorkflowId` varchar(22) default NULL, - `onEditWorkflowId` varchar(22) default NULL, - `onDeleteWorkflowId` varchar(22) default NULL, - `groupIdView` varchar(22) NOT NULL, - `viewTemplateId` varchar(22) NOT NULL, - `defaultView` varchar(255) NOT NULL, - `searchScreenTitle` varchar(255) NOT NULL, + `groupIdAdd` char(22) NOT NULL, + `groupIdEdit` char(22) NOT NULL, + `saveButtonLabel` char(255) NOT NULL, + `afterSave` char(255) NOT NULL, + `editTemplateId` char(22) NOT NULL, + `onAddWorkflowId` char(22) default NULL, + `onEditWorkflowId` char(22) default NULL, + `onDeleteWorkflowId` char(22) default NULL, + `groupIdView` char(22) NOT NULL, + `viewTemplateId` char(22) NOT NULL, + `defaultView` char(255) NOT NULL, + `searchScreenTitle` char(255) NOT NULL, `searchDescription` text, - `groupIdSearch` varchar(22) NOT NULL, - `groupIdImport` varchar(22) NOT NULL, - `groupIdExport` varchar(22) NOT NULL, - `searchTemplateId` varchar(22) NOT NULL, + `groupIdSearch` char(22) NOT NULL, + `groupIdImport` char(22) NOT NULL, + `groupIdExport` char(22) NOT NULL, + `searchTemplateId` char(22) NOT NULL, `thingsPerPage` int(11) NOT NULL default '25', - `sortBy` varchar(22) default NULL, + `sortBy` char(22) default NULL, `display` int(11) default NULL, `exportMetaData` int(11) default NULL, `maxEntriesPerUser` int(11) default NULL, @@ -1466,13 +1379,13 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thread` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `replies` int(11) NOT NULL default '0', - `lastPostId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `lastPostId` char(22) NOT NULL default '', `lastPostDate` bigint(20) default NULL, `isLocked` int(11) NOT NULL default '0', `isSticky` int(11) NOT NULL default '0', - `subscriptionGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `subscriptionGroupId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `karma` int(11) NOT NULL default '0', `karmaScale` int(11) NOT NULL default '1', @@ -1484,25 +1397,25 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thread_read` ( - `threadId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `threadId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', KEY `threadId_userId` (`threadId`,`userId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `UserList` ( - `assetId` varchar(22) NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', - `templateId` varchar(22) default NULL, - `showGroupId` varchar(22) default NULL, - `hideGroupId` varchar(22) default NULL, + `templateId` char(22) default NULL, + `showGroupId` char(22) default NULL, + `hideGroupId` char(22) default NULL, `usersPerPage` int(11) default NULL, `alphabet` text, - `alphabetSearchField` varchar(128) default NULL, + `alphabetSearchField` char(128) default NULL, `showOnlyVisibleAsNamed` int(11) default NULL, - `sortBy` varchar(128) default NULL, - `sortOrder` varchar(4) default NULL, + `sortBy` char(128) default NULL, + `sortOrder` char(4) default NULL, `overridePublicEmail` int(11) default NULL, `overridePublicProfile` int(11) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) @@ -1511,40 +1424,40 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WeatherData` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `revisionDate` bigint(20) unsigned NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WeatherDataTmpl0000001', + `templateId` char(22) NOT NULL default 'WeatherDataTmpl0000001', `locations` text, - `partnerId` varchar(100) default NULL, - `licenseKey` varchar(100) default NULL, + `partnerId` char(100) default NULL, + `licenseKey` char(100) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WikiMaster` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `groupToEditPages` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `groupToAdminister` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `richEditor` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBrichedit000000000002', - `frontPageTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiFrontTmpl000000001', - `pageTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiPageTmpl0000000001', - `pageEditTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiPageEditTmpl000001', - `recentChangesTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiRCTmpl000000000001', - `mostPopularTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiMPTmpl000000000001', - `pageHistoryTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiPHTmpl000000000001', - `searchTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiSearchTmpl00000001', + `groupToEditPages` char(22) NOT NULL default '2', + `groupToAdminister` char(22) NOT NULL default '3', + `richEditor` char(22) NOT NULL default 'PBrichedit000000000002', + `frontPageTemplateId` char(22) NOT NULL default 'WikiFrontTmpl000000001', + `pageTemplateId` char(22) NOT NULL default 'WikiPageTmpl0000000001', + `pageEditTemplateId` char(22) NOT NULL default 'WikiPageEditTmpl000001', + `recentChangesTemplateId` char(22) NOT NULL default 'WikiRCTmpl000000000001', + `mostPopularTemplateId` char(22) NOT NULL default 'WikiMPTmpl000000000001', + `pageHistoryTemplateId` char(22) NOT NULL default 'WikiPHTmpl000000000001', + `searchTemplateId` char(22) NOT NULL default 'WikiSearchTmpl00000001', `recentChangesCount` int(11) NOT NULL default '50', `recentChangesCountFront` int(11) NOT NULL default '10', `mostPopularCount` int(11) NOT NULL default '50', `mostPopularCountFront` int(11) NOT NULL default '10', `thumbnailSize` int(11) NOT NULL default '0', `maxImageSize` int(11) NOT NULL default '0', - `approvalWorkflow` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'pbworkflow000000000003', + `approvalWorkflow` char(22) NOT NULL default 'pbworkflow000000000003', `useContentFilter` int(11) default '0', - `filterCode` varchar(30) default 'javascript', - `byKeywordTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiKeyword00000000001', + `filterCode` char(30) default 'javascript', + `byKeywordTemplateId` char(22) NOT NULL default 'WikiKeyword00000000001', `allowAttachments` int(11) NOT NULL default '0', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1552,45 +1465,45 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WikiPage` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `content` mediumtext, `views` bigint(20) NOT NULL default '0', `isProtected` int(11) NOT NULL default '0', - `actionTaken` varchar(35) NOT NULL, - `actionTakenBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `actionTaken` char(35) NOT NULL, + `actionTakenBy` char(22) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Workflow` ( - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `title` varchar(255) NOT NULL default 'Untitled', + `workflowId` char(22) NOT NULL, + `title` char(255) NOT NULL default 'Untitled', `description` text, `enabled` int(11) NOT NULL default '0', - `type` varchar(255) NOT NULL default 'None', - `mode` varchar(20) NOT NULL default 'parallel', + `type` char(255) NOT NULL default 'None', + `mode` char(20) NOT NULL default 'parallel', PRIMARY KEY (`workflowId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowActivity` ( - `activityId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `title` varchar(255) NOT NULL default 'Untitled', + `activityId` char(22) NOT NULL, + `workflowId` char(22) NOT NULL, + `title` char(255) NOT NULL default 'Untitled', `description` text, `sequenceNumber` int(11) NOT NULL default '1', - `className` varchar(255) default NULL, + `className` char(255) default NULL, PRIMARY KEY (`activityId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowActivityData` ( - `activityId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) NOT NULL, + `activityId` char(22) NOT NULL, + `name` char(255) NOT NULL, `value` text, PRIMARY KEY (`activityId`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1598,24 +1511,25 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowInstance` ( - `instanceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `currentActivityId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `instanceId` char(22) NOT NULL, + `workflowId` char(22) NOT NULL, + `currentActivityId` char(22) NOT NULL, `priority` int(11) NOT NULL default '2', - `className` varchar(255) default NULL, - `methodName` varchar(255) default NULL, + `className` char(255) default NULL, + `methodName` char(255) default NULL, `parameters` text, `runningSince` bigint(20) default NULL, `lastUpdate` bigint(20) default NULL, - `lastStatus` varchar(15) default NULL, + `lastStatus` char(15) default NULL, + `noSession` tinyint(1) NOT NULL default '0', PRIMARY KEY (`instanceId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowInstanceScratch` ( - `instanceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) NOT NULL, + `instanceId` char(22) NOT NULL, + `name` char(255) NOT NULL, `value` text, PRIMARY KEY (`instanceId`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1623,18 +1537,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowSchedule` ( - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `title` varchar(255) NOT NULL default 'Untitled', + `taskId` char(22) NOT NULL, + `title` char(255) NOT NULL default 'Untitled', `enabled` int(11) NOT NULL default '0', `runOnce` int(11) NOT NULL default '0', - `minuteOfHour` varchar(25) NOT NULL default '0', - `hourOfDay` varchar(25) NOT NULL default '*', - `dayOfMonth` varchar(25) NOT NULL default '*', - `monthOfYear` varchar(25) NOT NULL default '*', - `dayOfWeek` varchar(25) NOT NULL default '*', - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `className` varchar(255) default NULL, - `methodName` varchar(255) default NULL, + `minuteOfHour` char(25) NOT NULL default '0', + `hourOfDay` char(25) NOT NULL default '*', + `dayOfMonth` char(25) NOT NULL default '*', + `monthOfYear` char(25) NOT NULL default '*', + `dayOfWeek` char(25) NOT NULL default '*', + `workflowId` char(22) NOT NULL, + `className` char(255) default NULL, + `methodName` char(255) default NULL, `priority` int(11) NOT NULL default '2', `parameters` text, PRIMARY KEY (`taskId`) @@ -1643,9 +1557,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ZipArchiveAsset` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `showPage` varchar(255) NOT NULL default 'index.html', + `assetId` char(22) NOT NULL, + `templateId` char(22) NOT NULL default '', + `showPage` char(255) NOT NULL default 'index.html', `revisionDate` bigint(20) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1653,9 +1567,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `adSpace` ( - `adSpaceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(35) NOT NULL, - `title` varchar(255) NOT NULL, + `adSpaceId` char(22) NOT NULL, + `name` char(35) NOT NULL, + `title` char(255) NOT NULL, `description` text, `costPerImpression` decimal(11,2) NOT NULL default '0.00', `minimumImpressions` int(11) NOT NULL default '1000', @@ -1663,7 +1577,7 @@ CREATE TABLE `adSpace` ( `minimumClicks` int(11) NOT NULL default '1000', `width` int(11) NOT NULL default '468', `height` int(11) NOT NULL default '60', - `groupToPurchase` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', + `groupToPurchase` char(22) NOT NULL default '3', PRIMARY KEY (`adSpaceId`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1671,19 +1585,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `address` ( - `addressId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `addressBookId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `label` varchar(35) default NULL, - `firstName` varchar(35) default NULL, - `lastName` varchar(35) default NULL, - `address1` varchar(35) default NULL, - `address2` varchar(35) default NULL, - `address3` varchar(35) default NULL, - `city` varchar(35) default NULL, - `state` varchar(35) default NULL, - `country` varchar(35) default NULL, - `code` varchar(35) default NULL, - `phoneNumber` varchar(35) default NULL, + `addressId` char(22) NOT NULL, + `addressBookId` char(22) NOT NULL, + `label` char(35) default NULL, + `firstName` char(35) default NULL, + `lastName` char(35) default NULL, + `address1` char(35) default NULL, + `address2` char(35) default NULL, + `address3` char(35) default NULL, + `city` char(35) default NULL, + `state` char(35) default NULL, + `country` char(35) default NULL, + `code` char(35) default NULL, + `phoneNumber` char(35) default NULL, `organization` char(255) default NULL, `email` char(255) default NULL, PRIMARY KEY (`addressId`), @@ -1693,9 +1607,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `addressBook` ( - `addressBookId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `sessionId` varchar(22) character set utf8 collate utf8_bin default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, + `addressBookId` char(22) NOT NULL, + `sessionId` char(22) default NULL, + `userId` char(22) default NULL, `defaultAddressId` char(22) character set utf8 collate utf8_bin default NULL, PRIMARY KEY (`addressBookId`), KEY `userId` (`sessionId`), @@ -1705,19 +1619,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `advertisement` ( - `adId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `adSpaceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `ownerUserId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `adId` char(22) NOT NULL, + `adSpaceId` char(22) NOT NULL, + `ownerUserId` char(22) NOT NULL, `isActive` int(11) NOT NULL default '0', - `title` varchar(255) NOT NULL, - `type` varchar(15) NOT NULL default 'text', - `storageId` varchar(22) character set utf8 collate utf8_bin default NULL, - `adText` varchar(255) default NULL, + `title` char(255) NOT NULL, + `type` char(15) NOT NULL default 'text', + `storageId` char(22) default NULL, + `adText` char(255) default NULL, `url` text, `richMedia` text, - `borderColor` varchar(7) NOT NULL default '#000000', - `textColor` varchar(7) NOT NULL default '#000000', - `backgroundColor` varchar(7) NOT NULL default '#ffffff', + `borderColor` char(7) NOT NULL default '#000000', + `textColor` char(7) NOT NULL default '#000000', + `backgroundColor` char(7) NOT NULL default '#ffffff', `clicks` int(11) NOT NULL default '0', `clicksBought` int(11) NOT NULL default '0', `impressions` int(11) NOT NULL default '0', @@ -1732,18 +1646,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `asset` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `parentId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `lineage` varchar(255) NOT NULL default '', - `state` varchar(35) NOT NULL default '', - `className` varchar(255) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `parentId` char(22) NOT NULL default '', + `lineage` char(255) NOT NULL default '', + `state` char(35) NOT NULL default '', + `className` char(255) NOT NULL default '', `creationDate` bigint(20) NOT NULL default '997995720', - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `stateChanged` varchar(22) NOT NULL default '997995720', - `stateChangedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `isLockedBy` varchar(22) character set utf8 collate utf8_bin default NULL, + `createdBy` char(22) NOT NULL default '3', + `stateChanged` char(22) NOT NULL default '997995720', + `stateChangedBy` char(22) NOT NULL default '3', + `isLockedBy` char(22) default NULL, `isSystem` int(11) NOT NULL default '0', - `lastExportedAs` varchar(255) default NULL, + `lastExportedAs` char(255) default NULL, PRIMARY KEY (`assetId`), UNIQUE KEY `lineage` (`lineage`), KEY `parentId` (`parentId`), @@ -1766,17 +1680,17 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetData` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', - `revisedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `tagId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `status` varchar(35) NOT NULL default 'pending', - `title` varchar(255) NOT NULL default 'untitled', - `menuTitle` varchar(255) NOT NULL default 'untitled', - `url` varchar(255) NOT NULL default '', - `ownerUserId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `groupIdView` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `groupIdEdit` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `revisedBy` char(22) NOT NULL default '', + `tagId` char(22) NOT NULL default '', + `status` char(35) NOT NULL default 'pending', + `title` char(255) NOT NULL default 'untitled', + `menuTitle` char(255) NOT NULL default 'untitled', + `url` char(255) NOT NULL default '', + `ownerUserId` char(22) NOT NULL default '', + `groupIdView` char(22) NOT NULL default '', + `groupIdEdit` char(22) NOT NULL default '', `synopsis` text, `newWindow` int(11) NOT NULL default '0', `isHidden` int(11) NOT NULL default '0', @@ -1800,29 +1714,29 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetHistory` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', `dateStamp` bigint(20) NOT NULL default '0', - `actionTaken` varchar(255) NOT NULL default '', - `url` varchar(255) default NULL + `actionTaken` char(255) NOT NULL default '', + `url` char(255) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetIndex` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `title` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `title` char(255) default NULL, `synopsis` text, - `url` varchar(255) default NULL, + `url` char(255) default NULL, `creationDate` bigint(20) default NULL, `revisionDate` bigint(20) default NULL, - `ownerUserId` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupIdView` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupIdEdit` varchar(22) character set utf8 collate utf8_bin default NULL, - `className` varchar(255) default NULL, + `ownerUserId` char(22) default NULL, + `groupIdView` char(22) default NULL, + `groupIdEdit` char(22) default NULL, + `className` char(255) default NULL, `isPublic` int(11) NOT NULL default '1', `keywords` mediumtext, - `lineage` varchar(255) default NULL, + `lineage` char(255) default NULL, PRIMARY KEY (`assetId`), FULLTEXT KEY `keywords` (`keywords`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1830,8 +1744,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetKeyword` ( - `keyword` varchar(64) NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `keyword` char(64) NOT NULL, + `assetId` char(22) NOT NULL, PRIMARY KEY (`keyword`,`assetId`), KEY `keyword` (`keyword`), KEY `assetId` (`assetId`) @@ -1840,18 +1754,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetVersionTag` ( - `tagId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `name` varchar(255) NOT NULL default '', + `tagId` char(22) NOT NULL default '', + `name` char(255) NOT NULL default '', `isCommitted` int(11) NOT NULL default '0', `creationDate` bigint(20) NOT NULL default '0', - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `createdBy` char(22) NOT NULL default '', `commitDate` bigint(20) NOT NULL default '0', - `committedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `committedBy` char(22) NOT NULL default '', `isLocked` int(11) NOT NULL default '0', - `lockedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `groupToUse` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `workflowInstanceId` varchar(22) character set utf8 collate utf8_bin default NULL, + `lockedBy` char(22) NOT NULL default '', + `groupToUse` char(22) NOT NULL default '', + `workflowId` char(22) NOT NULL default '', + `workflowInstanceId` char(22) default NULL, `comments` text, `startTime` datetime default NULL, `endTime` datetime default NULL, @@ -1862,9 +1776,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `authentication` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `authMethod` varchar(30) NOT NULL default '', - `fieldName` varchar(128) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `authMethod` char(30) NOT NULL default '', + `fieldName` char(128) NOT NULL default '', `fieldData` text, PRIMARY KEY (`userId`,`authMethod`,`fieldName`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1872,8 +1786,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cache` ( - `namespace` varchar(128) NOT NULL, - `cachekey` varchar(128) NOT NULL, + `namespace` char(128) NOT NULL, + `cachekey` char(128) NOT NULL, `expires` bigint(20) NOT NULL, `size` int(11) NOT NULL, `content` mediumblob, @@ -1884,10 +1798,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cart` ( - `cartId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `sessionId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `shippingAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, - `shipperId` varchar(22) character set utf8 collate utf8_bin default NULL, + `cartId` char(22) NOT NULL, + `sessionId` char(22) NOT NULL, + `shippingAddressId` char(22) default NULL, + `shipperId` char(22) default NULL, `posUserId` char(22) character set utf8 collate utf8_bin default NULL, PRIMARY KEY (`cartId`), KEY `sessionId` (`sessionId`) @@ -1896,13 +1810,13 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cartItem` ( - `itemId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `cartId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `itemId` char(22) NOT NULL, + `cartId` char(22) NOT NULL, + `assetId` char(22) NOT NULL, `dateAdded` datetime NOT NULL, `options` mediumtext, - `configuredTitle` varchar(255) default NULL, - `shippingAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, + `configuredTitle` char(255) default NULL, + `shippingAddressId` char(22) default NULL, `quantity` int(11) NOT NULL default '1', PRIMARY KEY (`itemId`), KEY `cartId_assetId_dateAdded` (`cartId`,`assetId`,`dateAdded`) @@ -1911,52 +1825,52 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `databaseLink` ( - `databaseLinkId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `title` varchar(255) default NULL, - `DSN` varchar(255) default NULL, - `username` varchar(255) default NULL, - `identifier` varchar(255) default NULL, + `databaseLinkId` char(22) NOT NULL default '', + `title` char(255) default NULL, + `DSN` char(255) default NULL, + `username` char(255) default NULL, + `identifier` char(255) default NULL, `allowedKeywords` text, `allowMacroAccess` int(11) NOT NULL default '0', - `additionalParameters` varchar(255) NOT NULL default '', + `additionalParameters` char(255) NOT NULL default '', PRIMARY KEY (`databaseLinkId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `donation` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `defaultPrice` float NOT NULL default '100', `thankYouMessage` mediumtext, - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `templateId` char(22) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `friendInvitations` ( - `inviteId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `inviterId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `friendId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `inviteId` char(22) NOT NULL, + `inviterId` char(22) NOT NULL, + `friendId` char(22) NOT NULL, `dateSent` datetime NOT NULL, - `comments` varchar(255) NOT NULL, - `messageId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `comments` char(255) NOT NULL, + `messageId` char(22) NOT NULL, PRIMARY KEY (`inviteId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `groupGroupings` ( - `groupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `inGroup` varchar(22) character set utf8 collate utf8_bin NOT NULL default '' + `groupId` char(22) NOT NULL default '', + `inGroup` char(22) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `groupings` ( - `groupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `groupId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', `expireDate` bigint(20) NOT NULL default '2114402400', `groupAdmin` int(11) NOT NULL default '0', PRIMARY KEY (`groupId`,`userId`), @@ -1966,9 +1880,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `groups` ( - `groupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `groupName` varchar(100) default NULL, - `description` varchar(255) default NULL, + `groupId` char(22) NOT NULL default '', + `groupName` char(100) default NULL, + `description` char(255) default NULL, `expireOffset` int(11) NOT NULL default '314496000', `karmaThreshold` int(11) NOT NULL default '1000000000', `ipFilter` text, @@ -1981,15 +1895,15 @@ CREATE TABLE `groups` ( `scratchFilter` text, `autoAdd` int(11) NOT NULL default '0', `autoDelete` int(11) NOT NULL default '0', - `databaseLinkId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId` char(22) NOT NULL default '', `groupCacheTimeout` int(11) NOT NULL default '3600', `dbQuery` text, `isEditable` int(11) NOT NULL default '1', `showInForms` int(11) NOT NULL default '1', - `ldapGroup` varchar(255) default NULL, - `ldapGroupProperty` varchar(255) default NULL, - `ldapRecursiveProperty` varchar(255) default NULL, - `ldapLinkId` varchar(22) character set utf8 collate utf8_bin default NULL, + `ldapGroup` char(255) default NULL, + `ldapGroupProperty` char(255) default NULL, + `ldapRecursiveProperty` char(255) default NULL, + `ldapLinkId` char(22) default NULL, `ldapRecursiveFilter` mediumtext, `isAdHocMailGroup` tinyint(4) NOT NULL default '0', PRIMARY KEY (`groupId`), @@ -1999,8 +1913,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imageColor` ( - `colorId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) NOT NULL default 'untitled', + `colorId` char(22) NOT NULL, + `name` char(255) NOT NULL default 'untitled', `fillTriplet` char(7) NOT NULL default '#000000', `fillAlpha` char(2) NOT NULL default '00', `strokeTriplet` char(7) NOT NULL default '#000000', @@ -2011,26 +1925,26 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imageFont` ( - `fontId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) default NULL, - `storageId` varchar(22) default NULL, - `filename` varchar(255) default NULL, + `fontId` char(22) NOT NULL, + `name` char(255) default NULL, + `storageId` char(22) default NULL, + `filename` char(255) default NULL, PRIMARY KEY (`fontId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imagePalette` ( - `paletteId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) NOT NULL default 'untitled', + `paletteId` char(22) NOT NULL, + `name` char(255) NOT NULL default 'untitled', PRIMARY KEY (`paletteId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imagePaletteColors` ( - `paletteId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `colorId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `paletteId` char(22) NOT NULL, + `colorId` char(22) NOT NULL, `paletteOrder` int(11) NOT NULL, PRIMARY KEY (`paletteId`,`paletteOrder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2038,16 +1952,16 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `inbox` ( - `messageId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `status` varchar(15) NOT NULL default 'pending', + `messageId` char(22) NOT NULL, + `status` char(15) NOT NULL default 'pending', `dateStamp` bigint(20) NOT NULL, `completedOn` bigint(20) default NULL, - `completedBy` varchar(22) character set utf8 collate utf8_bin default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupId` varchar(22) character set utf8 collate utf8_bin default NULL, - `subject` varchar(255) NOT NULL default 'No Subject', + `completedBy` char(22) default NULL, + `userId` char(22) default NULL, + `groupId` char(22) default NULL, + `subject` char(255) NOT NULL default 'No Subject', `message` mediumtext, - `sentBy` varchar(22) NOT NULL default '3', + `sentBy` char(22) NOT NULL default '3', PRIMARY KEY (`messageId`), KEY `completedOn_dateStamp` (`completedOn`,`dateStamp`), KEY `pb_userId` (`userId`), @@ -2068,7 +1982,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `incrementer` ( - `incrementerId` varchar(50) NOT NULL default '', + `incrementerId` char(50) NOT NULL default '', `nextValue` int(11) NOT NULL default '1', PRIMARY KEY (`incrementerId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2076,9 +1990,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `karmaLog` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `userId` char(22) NOT NULL default '', `amount` int(11) NOT NULL default '1', - `source` varchar(255) default NULL, + `source` char(255) default NULL, `description` text, `dateModified` bigint(20) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2086,20 +2000,20 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ldapLink` ( - `ldapLinkId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ldapLinkName` varchar(255) NOT NULL default '', - `ldapUrl` varchar(255) NOT NULL default '', - `connectDn` varchar(255) NOT NULL default '', - `identifier` varchar(255) NOT NULL default '', - `ldapUserRDN` varchar(255) default NULL, - `ldapIdentity` varchar(255) default NULL, - `ldapIdentityName` varchar(255) default NULL, - `ldapPasswordName` varchar(255) default NULL, + `ldapLinkId` char(22) NOT NULL default '', + `ldapLinkName` char(255) NOT NULL default '', + `ldapUrl` char(255) NOT NULL default '', + `connectDn` char(255) NOT NULL default '', + `identifier` char(255) NOT NULL default '', + `ldapUserRDN` char(255) default NULL, + `ldapIdentity` char(255) default NULL, + `ldapIdentityName` char(255) default NULL, + `ldapPasswordName` char(255) default NULL, `ldapSendWelcomeMessage` char(2) default NULL, `ldapWelcomeMessage` text, - `ldapAccountTemplate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ldapCreateAccountTemplate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ldapLoginTemplate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `ldapAccountTemplate` char(22) NOT NULL default '', + `ldapCreateAccountTemplate` char(22) NOT NULL default '', + `ldapLoginTemplate` char(22) NOT NULL default '', `ldapGlobalRecursiveFilter` mediumtext, PRIMARY KEY (`ldapLinkId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2107,21 +2021,21 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `mailQueue` ( - `messageId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `messageId` char(22) NOT NULL, `message` mediumtext, - `toGroup` varchar(22) character set utf8 collate utf8_bin default NULL, + `toGroup` char(22) default NULL, PRIMARY KEY (`messageId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `metaData_properties` ( - `fieldId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `fieldName` varchar(100) NOT NULL default '', + `fieldId` char(22) NOT NULL default '', + `fieldName` char(100) NOT NULL default '', `description` mediumtext NOT NULL, - `fieldType` varchar(30) default NULL, + `fieldType` char(30) default NULL, `possibleValues` text, - `defaultValue` varchar(255) default NULL, + `defaultValue` char(255) default NULL, PRIMARY KEY (`fieldId`), UNIQUE KEY `field_unique` (`fieldName`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2129,18 +2043,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `metaData_values` ( - `fieldId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `value` varchar(255) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `fieldId` char(22) NOT NULL default '', + `value` char(255) default NULL, + `assetId` char(22) NOT NULL default '', PRIMARY KEY (`fieldId`,`assetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `passiveProfileAOI` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `fieldId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `value` varchar(100) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `fieldId` char(22) NOT NULL default '', + `value` char(100) NOT NULL default '', `count` int(11) default NULL, PRIMARY KEY (`userId`,`fieldId`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2148,10 +2062,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `passiveProfileLog` ( - `passiveProfileLogId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `sessionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `passiveProfileLogId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `sessionId` char(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', `dateOfEntry` bigint(20) NOT NULL default '0', PRIMARY KEY (`passiveProfileLogId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2159,8 +2073,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `paymentGateway` ( - `paymentGatewayId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `className` varchar(255) default NULL, + `paymentGatewayId` char(22) NOT NULL, + `className` char(255) default NULL, `options` mediumtext, PRIMARY KEY (`paymentGatewayId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2168,7 +2082,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `redirect` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `redirectUrl` text, `revisionDate` bigint(20) NOT NULL default '0', `redirectType` int(11) NOT NULL default '302', @@ -2178,8 +2092,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `replacements` ( - `replacementId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `searchFor` varchar(255) default NULL, + `replacementId` char(22) NOT NULL default '', + `searchFor` char(255) default NULL, `replaceWith` text, PRIMARY KEY (`replacementId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2187,11 +2101,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `search` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', `classLimiter` text, - `searchRoot` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBasset000000000000001', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBtmpl0000000000000200', + `searchRoot` char(22) NOT NULL default 'PBasset000000000000001', + `templateId` char(22) NOT NULL default 'PBtmpl0000000000000200', `useContainers` int(11) NOT NULL default '0', `paginateAfter` int(11) NOT NULL default '25', PRIMARY KEY (`assetId`,`revisionDate`) @@ -2200,7 +2114,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `settings` ( - `name` varchar(255) NOT NULL default '', + `name` char(255) NOT NULL default '', `value` text, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2208,8 +2122,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `shipper` ( - `shipperId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `className` varchar(255) default NULL, + `shipperId` char(22) NOT NULL, + `className` char(255) default NULL, `options` mediumtext, PRIMARY KEY (`shipperId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2217,8 +2131,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `shopCredit` ( - `creditId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `creditId` char(22) NOT NULL, + `userId` char(22) NOT NULL, `amount` float NOT NULL default '0', `comment` text, `dateOfAdjustment` datetime default NULL, @@ -2229,11 +2143,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sku` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `description` mediumtext, - `sku` varchar(35) character set utf8 collate utf8_bin NOT NULL, - `vendorId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'defaultvendor000000000', + `sku` char(35) NOT NULL, + `vendorId` char(22) NOT NULL default 'defaultvendor000000000', `displayTitle` tinyint(1) NOT NULL default '1', `overrideTaxRate` tinyint(1) NOT NULL default '0', `taxRateOverride` float NOT NULL default '0', @@ -2245,10 +2159,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `snippet` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `snippet` mediumtext, `processAsTemplate` int(11) NOT NULL default '0', - `mimeType` varchar(50) NOT NULL default 'text/html', + `mimeType` char(50) NOT NULL default 'text/html', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '3600', PRIMARY KEY (`assetId`,`revisionDate`) @@ -2257,42 +2171,42 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `subscriptionCode` ( - `batchId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `code` varchar(64) character set utf8 collate utf8_bin NOT NULL default '', - `status` varchar(10) NOT NULL default 'Unused', + `batchId` char(22) NOT NULL default '', + `code` char(64) NOT NULL default '', + `status` char(10) NOT NULL default 'Unused', `dateCreated` int(11) NOT NULL default '0', `dateUsed` int(11) NOT NULL default '0', `expires` int(11) NOT NULL default '0', - `usedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `usedBy` char(22) NOT NULL default '', PRIMARY KEY (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `subscriptionCodeBatch` ( - `batchId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `name` varchar(128) default NULL, + `batchId` char(22) NOT NULL default '', + `name` char(128) default NULL, `description` mediumtext NOT NULL, - `subscriptionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `subscriptionId` char(22) NOT NULL default '', PRIMARY KEY (`batchId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `subscriptionCodeSubscriptions` ( - `code` varchar(64) character set utf8 collate utf8_bin NOT NULL default '', - `subscriptionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `code` char(64) NOT NULL default '', + `subscriptionId` char(22) NOT NULL default '', UNIQUE KEY `code` (`code`,`subscriptionId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax` ( - `taxId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `country` varchar(100) NOT NULL, - `state` varchar(100) default NULL, - `city` varchar(100) default NULL, - `code` varchar(100) default NULL, + `taxId` char(22) NOT NULL, + `country` char(100) NOT NULL, + `state` char(100) default NULL, + `city` char(100) default NULL, + `code` char(100) default NULL, `taxRate` float NOT NULL default '0', PRIMARY KEY (`taxId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2301,12 +2215,12 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `template` ( `template` mediumtext, - `namespace` varchar(35) NOT NULL default 'Page', + `namespace` char(35) NOT NULL default 'Page', `isEditable` int(11) NOT NULL default '1', `showInForms` int(11) NOT NULL default '1', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', - `parser` varchar(255) NOT NULL default 'WebGUI::Asset::Template::HTMLTemplate', + `parser` char(255) NOT NULL default 'WebGUI::Asset::Template::HTMLTemplate', `isDefault` int(1) default '0', PRIMARY KEY (`assetId`,`revisionDate`), KEY `namespace_showInForms` (`namespace`,`showInForms`) @@ -2315,42 +2229,42 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `transaction` ( - `transactionId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `originatingTransactionId` varchar(22) character set utf8 collate utf8_bin default NULL, + `transactionId` char(22) NOT NULL, + `originatingTransactionId` char(22) default NULL, `isSuccessful` tinyint(1) NOT NULL default '0', `orderNumber` int(11) NOT NULL auto_increment, - `transactionCode` varchar(100) default NULL, - `statusCode` varchar(35) default NULL, - `statusMessage` varchar(255) default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `username` varchar(35) NOT NULL, + `transactionCode` char(100) default NULL, + `statusCode` char(35) default NULL, + `statusMessage` char(255) default NULL, + `userId` char(22) NOT NULL, + `username` char(35) NOT NULL, `amount` float default NULL, `shopCreditDeduction` float default NULL, - `shippingAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, - `shippingAddressName` varchar(35) default NULL, - `shippingAddress1` varchar(35) default NULL, - `shippingAddress2` varchar(35) default NULL, - `shippingAddress3` varchar(35) default NULL, - `shippingCity` varchar(35) default NULL, - `shippingState` varchar(35) default NULL, - `shippingCountry` varchar(35) default NULL, - `shippingCode` varchar(35) default NULL, - `shippingPhoneNumber` varchar(35) default NULL, - `shippingDriverId` varchar(22) character set utf8 collate utf8_bin default NULL, - `shippingDriverLabel` varchar(35) default NULL, + `shippingAddressId` char(22) default NULL, + `shippingAddressName` char(35) default NULL, + `shippingAddress1` char(35) default NULL, + `shippingAddress2` char(35) default NULL, + `shippingAddress3` char(35) default NULL, + `shippingCity` char(35) default NULL, + `shippingState` char(35) default NULL, + `shippingCountry` char(35) default NULL, + `shippingCode` char(35) default NULL, + `shippingPhoneNumber` char(35) default NULL, + `shippingDriverId` char(22) default NULL, + `shippingDriverLabel` char(35) default NULL, `shippingPrice` float default NULL, - `paymentAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, - `paymentAddressName` varchar(35) default NULL, - `paymentAddress1` varchar(35) default NULL, - `paymentAddress2` varchar(35) default NULL, - `paymentAddress3` varchar(35) default NULL, - `paymentCity` varchar(35) default NULL, - `paymentState` varchar(35) default NULL, - `paymentCountry` varchar(35) default NULL, - `paymentCode` varchar(35) default NULL, - `paymentPhoneNumber` varchar(35) default NULL, - `paymentDriverId` varchar(22) character set utf8 collate utf8_bin default NULL, - `paymentDriverLabel` varchar(35) default NULL, + `paymentAddressId` char(22) default NULL, + `paymentAddressName` char(35) default NULL, + `paymentAddress1` char(35) default NULL, + `paymentAddress2` char(35) default NULL, + `paymentAddress3` char(35) default NULL, + `paymentCity` char(35) default NULL, + `paymentState` char(35) default NULL, + `paymentCountry` char(35) default NULL, + `paymentCode` char(35) default NULL, + `paymentPhoneNumber` char(35) default NULL, + `paymentDriverId` char(22) default NULL, + `paymentDriverLabel` char(35) default NULL, `taxes` float default NULL, `dateOfPurchase` datetime default NULL, `isRecurring` tinyint(1) default NULL, @@ -2363,27 +2277,27 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `transactionItem` ( - `itemId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `transactionId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) default NULL, - `configuredTitle` varchar(255) default NULL, + `itemId` char(22) NOT NULL, + `transactionId` char(22) NOT NULL, + `assetId` char(22) default NULL, + `configuredTitle` char(255) default NULL, `options` mediumtext, - `shippingAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, - `shippingName` varchar(35) default NULL, - `shippingAddress1` varchar(35) default NULL, - `shippingAddress2` varchar(35) default NULL, - `shippingAddress3` varchar(35) default NULL, - `shippingCity` varchar(35) default NULL, - `shippingState` varchar(35) default NULL, - `shippingCountry` varchar(35) default NULL, - `shippingCode` varchar(35) default NULL, - `shippingPhoneNumber` varchar(35) default NULL, - `shippingTrackingNumber` varchar(255) default NULL, - `orderStatus` varchar(35) NOT NULL default 'NotShipped', + `shippingAddressId` char(22) default NULL, + `shippingName` char(35) default NULL, + `shippingAddress1` char(35) default NULL, + `shippingAddress2` char(35) default NULL, + `shippingAddress3` char(35) default NULL, + `shippingCity` char(35) default NULL, + `shippingState` char(35) default NULL, + `shippingCountry` char(35) default NULL, + `shippingCode` char(35) default NULL, + `shippingPhoneNumber` char(35) default NULL, + `shippingTrackingNumber` char(255) default NULL, + `orderStatus` char(35) NOT NULL default 'NotShipped', `lastUpdated` datetime default NULL, `quantity` int(11) NOT NULL default '1', `price` float default NULL, - `vendorId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'defaultvendor000000000', + `vendorId` char(22) NOT NULL default 'defaultvendor000000000', PRIMARY KEY (`itemId`), KEY `transactionId` (`transactionId`), KEY `vendorId` (`vendorId`) @@ -2392,11 +2306,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userInvitations` ( - `inviteId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `inviteId` char(22) NOT NULL, + `userId` char(22) NOT NULL, `dateSent` date default NULL, - `email` varchar(255) NOT NULL, - `newUserId` varchar(22) character set utf8 collate utf8_bin default NULL, + `email` char(255) NOT NULL, + `newUserId` char(22) default NULL, `dateCreated` date default NULL, PRIMARY KEY (`inviteId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2404,20 +2318,20 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userLoginLog` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `status` varchar(30) default NULL, + `userId` char(22) NOT NULL default '', + `status` char(30) default NULL, `timeStamp` int(11) default NULL, - `ipAddress` varchar(128) default NULL, + `ipAddress` char(128) default NULL, `userAgent` text, - `sessionId` varchar(22) default NULL, + `sessionId` char(22) default NULL, `lastPageViewed` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userProfileCategory` ( - `profileCategoryId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `label` varchar(255) NOT NULL default 'Undefined', + `profileCategoryId` char(22) NOT NULL default '', + `label` char(255) NOT NULL default 'Undefined', `shortLabel` char(255) default NULL, `sequenceNumber` int(11) NOT NULL default '1', `visible` int(11) NOT NULL default '1', @@ -2429,54 +2343,54 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userProfileData` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `email` varchar(255) default NULL, - `firstName` varchar(255) default NULL, - `middleName` varchar(255) default NULL, - `lastName` varchar(255) default NULL, - `icq` varchar(255) default NULL, - `aim` varchar(255) default NULL, - `msnIM` varchar(255) default NULL, - `yahooIM` varchar(255) default NULL, - `cellPhone` varchar(255) default NULL, - `pager` varchar(255) default NULL, - `emailToPager` varchar(255) default NULL, - `language` varchar(255) default NULL, - `homeAddress` varchar(255) default NULL, - `homeCity` varchar(255) default NULL, - `homeState` varchar(255) default NULL, - `homeZip` varchar(255) default NULL, - `homeCountry` varchar(255) default NULL, - `homePhone` varchar(255) default NULL, - `workAddress` varchar(255) default NULL, - `workCity` varchar(255) default NULL, - `workState` varchar(255) default NULL, - `workZip` varchar(255) default NULL, - `workCountry` varchar(255) default NULL, - `workPhone` varchar(255) default NULL, - `gender` varchar(255) default NULL, + `userId` char(22) NOT NULL, + `email` char(255) default NULL, + `firstName` char(255) default NULL, + `middleName` char(255) default NULL, + `lastName` char(255) default NULL, + `icq` char(255) default NULL, + `aim` char(255) default NULL, + `msnIM` char(255) default NULL, + `yahooIM` char(255) default NULL, + `cellPhone` char(255) default NULL, + `pager` char(255) default NULL, + `emailToPager` char(255) default NULL, + `language` char(255) default NULL, + `homeAddress` char(255) default NULL, + `homeCity` char(255) default NULL, + `homeState` char(255) default NULL, + `homeZip` char(255) default NULL, + `homeCountry` char(255) default NULL, + `homePhone` char(255) default NULL, + `workAddress` char(255) default NULL, + `workCity` char(255) default NULL, + `workState` char(255) default NULL, + `workZip` char(255) default NULL, + `workCountry` char(255) default NULL, + `workPhone` char(255) default NULL, + `gender` char(255) default NULL, `birthdate` bigint(20) default NULL, - `homeURL` varchar(255) default NULL, - `workURL` varchar(255) default NULL, - `workName` varchar(255) default NULL, - `timeZone` varchar(255) default NULL, - `dateFormat` varchar(255) default NULL, - `timeFormat` varchar(255) default NULL, - `discussionLayout` varchar(255) default NULL, - `firstDayOfWeek` varchar(255) default NULL, - `uiLevel` varchar(255) default NULL, - `alias` varchar(255) default NULL, + `homeURL` char(255) default NULL, + `workURL` char(255) default NULL, + `workName` char(255) default NULL, + `timeZone` char(255) default NULL, + `dateFormat` char(255) default NULL, + `timeFormat` char(255) default NULL, + `discussionLayout` char(255) default NULL, + `firstDayOfWeek` char(255) default NULL, + `uiLevel` char(255) default NULL, + `alias` char(255) default NULL, `signature` longtext, `publicProfile` char(10) default 'none', - `toolbar` varchar(255) default NULL, - `photo` varchar(22) character set utf8 collate utf8_bin default NULL, - `avatar` varchar(22) character set utf8 collate utf8_bin default NULL, - `department` varchar(255) default NULL, + `toolbar` char(255) default NULL, + `photo` char(22) default NULL, + `avatar` char(22) default NULL, + `department` char(255) default NULL, `allowPrivateMessages` text, `ableToBeFriend` int(1) default NULL, `showMessageOnLoginSeen` bigint(20) default NULL, `showOnline` tinyint(1) default NULL, - `versionTagMode` varchar(255) default NULL, + `versionTagMode` char(255) default NULL, `wg_privacySettings` longtext, PRIMARY KEY (`userId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2484,15 +2398,15 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userProfileField` ( - `fieldName` varchar(128) NOT NULL default '', - `label` varchar(255) NOT NULL default 'Undefined', + `fieldName` char(128) NOT NULL default '', + `label` char(255) NOT NULL default 'Undefined', `visible` int(11) NOT NULL default '0', `required` int(11) NOT NULL default '0', - `fieldType` varchar(128) NOT NULL default 'text', + `fieldType` char(128) NOT NULL default 'text', `possibleValues` text, `dataDefault` text, `sequenceNumber` int(11) NOT NULL default '1', - `profileCategoryId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `profileCategoryId` char(22) NOT NULL default '', `protected` int(11) NOT NULL default '0', `editable` int(11) NOT NULL default '1', `forceImageOnly` int(11) default '1', @@ -2505,12 +2419,12 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userSession` ( - `sessionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `sessionId` char(22) NOT NULL default '', `expires` int(11) default NULL, `lastPageView` int(11) default NULL, `adminOn` int(11) NOT NULL default '0', - `lastIP` varchar(50) default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `lastIP` char(50) default NULL, + `userId` char(22) NOT NULL default '', PRIMARY KEY (`sessionId`), KEY `expires` (`expires`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2518,8 +2432,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userSessionScratch` ( - `sessionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `name` varchar(255) NOT NULL default '', + `sessionId` char(22) NOT NULL default '', + `name` char(255) NOT NULL default '', `value` text, PRIMARY KEY (`sessionId`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2527,15 +2441,15 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `username` varchar(100) default NULL, - `authMethod` varchar(30) NOT NULL default 'WebGUI', + `userId` char(22) NOT NULL default '', + `username` char(100) default NULL, + `authMethod` char(30) NOT NULL default 'WebGUI', `dateCreated` int(11) NOT NULL default '1019867418', `lastUpdated` int(11) NOT NULL default '1019867418', `karma` int(11) NOT NULL default '0', - `status` varchar(35) NOT NULL default 'Active', - `referringAffiliate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `friendsGroup` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `status` char(35) NOT NULL default 'Active', + `referringAffiliate` char(22) NOT NULL default '', + `friendsGroup` char(22) NOT NULL default '', PRIMARY KEY (`userId`), UNIQUE KEY `username_unique` (`username`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2543,13 +2457,13 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `vendor` ( - `vendorId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `vendorId` char(22) NOT NULL, `dateCreated` datetime default NULL, - `name` varchar(255) default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `preferredPaymentType` varchar(255) default NULL, + `name` char(255) default NULL, + `userId` char(22) NOT NULL default '3', + `preferredPaymentType` char(255) default NULL, `paymentInformation` text, - `paymentAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, + `paymentAddressId` char(22) default NULL, `url` text, PRIMARY KEY (`vendorId`), KEY `userId` (`userId`) @@ -2558,8 +2472,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `webguiVersion` ( - `webguiVersion` varchar(10) default NULL, - `versionType` varchar(30) default NULL, + `webguiVersion` char(10) default NULL, + `versionType` char(30) default NULL, `dateApplied` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -2568,21 +2482,21 @@ SET character_set_client = utf8; CREATE TABLE `wobject` ( `displayTitle` int(11) NOT NULL default '1', `description` mediumtext, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `styleTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `printableStyleTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `styleTemplateId` char(22) NOT NULL default '', + `printableStyleTemplateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; INSERT INTO `Article` VALUES (NULL,NULL,'NK8bqlwVRILJknqeCDPBHg','PBtmpl0000000000000002',1147642515,3600,'0jTuDoyTcQK6ju8cs8a4ew'),(NULL,NULL,'bX5rYxb6tZ9docY6sUhBlw','PBtmpl0000000000000002',1147642514,3600,'r3QdZwvuVK9o9kLb7mpHGQ'),(NULL,NULL,'OhdaFLE7sXOzo_SIP2ZUgA','PBtmpl0000000000000002',1147642513,3600,'GY5wyiuNmZZyLdgFt3zluQ'),(NULL,NULL,'IWFxZDyGhQ3-SLZhELa3qw','PBtmpl0000000000000002',1147642514,3600,'BS9OtDY_8oUnmzStD-wPmg'),(NULL,NULL,'6QuS-0rosuZTdTv11fobig','PBtmpl0000000000000002',1147642515,3600,'qDIYM6Jcmkk_LmWZIqqJ7w'),(NULL,NULL,'ix1p0AbwKAz8QWB-T-HHfg','PBtmpl0000000000000002',1147642516,3600,'gU8kZk0nV6SqcwKqSiojQQ'),(NULL,NULL,'iCYOjohB9SKvAPr6bXElKA','PBtmpl0000000000000002',1147642516,3600,'eTxnooflqjFWIwkyfE0nPQ'),(NULL,NULL,'4Yfz9hqBqM8OYMGuQK8oLw','PBtmpl0000000000000002',1147642516,3600,'x4_4U_yb-MAGELG0jxAqpQ'),(NULL,NULL,'Wl8WZ43g2rK5AYr9o4zY7w','PBtmpl0000000000000002',1147642516,3600,'QlXRvOaqkv9X2kY-eAQXKA'),(NULL,NULL,'LBuiKzg2mWwmOPS9AgV3bg','PBtmpl0000000000000002',1147642517,3600,'UYaT3bhIk9HXmX1io5MdlQ'),(NULL,NULL,'jTNggl7AoVSUc_ZzrvuCmw','PBtmpl0000000000000002',1147642517,3600,'NWhmkoojuu9dA4_zv3a4pg'),(NULL,'http://','FOvmwGC0GtZo5VTxJIL3OA','PBtmpl0000000000000002',1207068851,3600,'WOkKCSUedPrlPkYwsTgEEA'),(NULL,'http://','j_1qEqM6iLfQLiR6VKy0aA','PBtmpl0000000000000002',1215718151,3600,'2k_h890E0bVoT1Jq6s-Edg'),(NULL,'http://','diZvW4bSgZWwyyGP3qXi1g','PBtmpl0000000000000002',1215717972,3600,'kjLi5s-xRSCL63HfE8ArtA'); -INSERT INTO `Collaboration` VALUES ('pbproto000000000000002','2','2',0,'PBtmpl0000000000000208','PBtmpl0000000000000209','PBtmpl0000000000000210','','','assetData.revisionDate','desc',0,0,3600,10,'javascript',1,0,0,0,0,NULL,NULL,2592000,10,30,NULL,1,0,'PBrichedit000000000002',0,0,1163019036,0,'pbworkflow000000000003','pbworkflow000000000003',100,NULL,NULL,NULL,NULL,NULL,0,300,'NpRVTSR-NX2sD52LUc520A',3600,1,1,0,0,0,0,'',1,'default-post-received'); +INSERT INTO `Collaboration` VALUES ('pbproto000000000000002','2','2',0,'PBtmpl0000000000000208','PBtmpl0000000000000209','PBtmpl0000000000000210','','','assetData.revisionDate','desc',0,0,3600,10,'javascript',1,0,0,0,0,NULL,NULL,2592000,10,30,NULL,1,0,'PBrichedit000000000002',0,0,1163019036,0,'pbworkflow000000000003','pbworkflow000000000003',100,NULL,NULL,NULL,NULL,NULL,0,300,'NpRVTSR-NX2sD52LUc520A',3600,1,1,0,0,0,0,'12',1,'default-post-received'); INSERT INTO `DataForm` VALUES ('Thank you for telling your friends about WebGUI!',1,'PBtmpl0000000000000085','PBtmpl0000000000000104','PBtmpl0000000000000021','Szs5eev3OMssmnsyLRZmWA','PBtmpl0000000000000020',0,1213317790,'7',0,0,1,'[{\"width\":\"0\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"from\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Your Email Address\",\"type\":\"Email\",\"defaultValue\":\"\"},{\"width\":\"0\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"to\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Your Friends Email Address\",\"type\":\"Email\",\"defaultValue\":\"\"},{\"width\":\"0\",\"options\":null,\"status\":\"hidden\",\"tabId\":null,\"name\":\"cc\",\"rows\":null,\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":null,\"label\":\"Cc\",\"type\":\"Email\",\"defaultValue\":null},{\"width\":\"0\",\"options\":null,\"status\":\"hidden\",\"tabId\":null,\"name\":\"bcc\",\"rows\":null,\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":null,\"label\":\"Bcc\",\"type\":\"Email\",\"defaultValue\":null},{\"width\":\"0\",\"options\":\"\",\"status\":\"hidden\",\"tabId\":null,\"name\":\"subject\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Subject\",\"type\":\"Text\",\"defaultValue\":\"Cool CMS\"},{\"width\":\"0\",\"options\":\"\",\"status\":\"visible\",\"tabId\":null,\"name\":\"url\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"URL\",\"type\":\"Url\",\"defaultValue\":\"http://www.webgui.org\"},{\"width\":\"300\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"message\",\"rows\":\"100\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"0\",\"subtext\":\"\",\"label\":\"Message\",\"type\":\"Textarea\",\"defaultValue\":\"Hey I just wanted to tell you about this great program called WebGUI that I found: http://www.webgui.org\\r\\n\\r\\nYou should really check it out.\"}]','[]',NULL); -INSERT INTO `FileAsset` VALUES ('7.0-style0000000000002','_Vo1Pvl3sPPANyxz-IcCtA','body_bg.jpg','PBtmpl0000000000000088',1147642492,3600),('7.0-style0000000000004','Gemp7cEVjh2_M2IicUYs-g','gui_bottom.jpg','PBtmpl0000000000000088',1147642493,3600),('7.0-style0000000000005','ry-yzLVH-vxn71H9byjGXA','header.jpg','PBtmpl0000000000000088',1147642493,3600),('7.0-style0000000000006','VEPa65fhY3dok6vj-beFCA','main_bg.gif','PBtmpl0000000000000088',1147642493,3600),('7.0-style0000000000007','Cfay1MNkC-73WKJ7fX_pVw','main_bg.jpg','PBtmpl0000000000000088',1147642493,3600),('7.0-style0000000000008','iEBE--vQb_lxuZd5AP8tuw','nav1_center_on.jpg','PBtmpl0000000000000088',1147642494,3600),('7.0-style0000000000009','XR1Yjf3MkYA53TJlcpRBsw','nav1_off.jpg','PBtmpl0000000000000088',1147642494,3600),('7.0-style0000000000010','sxvAS8na-QAdY_eycd2gKw','nav1_off_center.jpg','PBtmpl0000000000000088',1147642494,3600),('7.0-style0000000000011','2lhmrXW46ZMLvpbaaX2g7Q','nav1_off_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7.0-style0000000000012','sEoRwhmonl877RBgx2nE1w','nav1_off_right.jpg','PBtmpl0000000000000088',1147642495,3600),('7.0-style0000000000013','AoSfRkPI3fl7vAooT4Fj_A','nav1_on.jpg','PBtmpl0000000000000088',1147642495,3600),('7.0-style0000000000014','MgNDJRsghd_zQZ292hqVMQ','nav1_on_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7.0-style0000000000015','aUG1FZaIqHaQHlieZ4_Mkg','nav1_on_right.jpg','PBtmpl0000000000000088',1147642496,3600),('7.0-style0000000000016','HyhLnkaJMfr8eJsLIX8XeA','nav2_center_on.jpg','PBtmpl0000000000000088',1147642496,3600),('7.0-style0000000000017','aledEnWoD-JVNURWSklfdg','nav2_off_center.jpg','PBtmpl0000000000000088',1147642496,3600),('7.0-style0000000000018','Ffd33PToWon9X7mcKZqUAQ','nav2_off_left.jpg','PBtmpl0000000000000088',1147642496,3600),('7.0-style0000000000019','B3TTkcOlr-VzcxRwQXZmyg','nav2_off_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7.0-style0000000000020','RxGSyn-8W4p64SQ-NYzNOg','nav2_on_left.jpg','PBtmpl0000000000000088',1147642497,3600),('7.0-style0000000000021','NciEByP8ssN6qDYyKcoGWw','nav2_on_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7.0-style0000000000022','9OVg_Nxo0gha5pWZsS_dmw','nav_bg.jpg','PBtmpl0000000000000088',1147642497,3600),('7.0-style0000000000023','VKtJGCmBtsMj8ZeAJ6ePNw','nav_on.jpg','PBtmpl0000000000000088',1147642498,3600),('7.0-style0000000000024','ryQb0A4YeEwYZo9hdgrCcw','orange_left01.jpg','PBtmpl0000000000000088',1147642498,3600),('7.0-style0000000000030','coew3C1i9AORof9ezjWLDg','webgui_btn.jpg','PBtmpl0000000000000088',1147642499,3600),('7.0-style0000000000032','HEySmh0CRxpkI-tjzgkDDw','context_bg.jpg','PBtmpl0000000000000088',1147642500,3600),('7.0-style0000000000034','HPn3mVDaMkn8Iu0GAq7cAw','leftCol_header.jpg','PBtmpl0000000000000088',1147642500,3600),('7.0-style0000000000035','IqaSdxJqqN_8C-7OWeyE2g','leftCol_header02.jpg','PBtmpl0000000000000088',1147642501,3600),('7.0-style0000000000036','M0cIcS1GDFIV8lwAw3U2hA','main_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7.0-style0000000000037','77rakTqCXGBihEOXoh4ZXQ','nav_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7.0-style0000000000038','5najYvfJiZBBaiCVxaNkcQ','navbar_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7.0-style0000000000039','27XAOBKNfJ2euexImD73Aw','navbar_left.jpg','PBtmpl0000000000000088',1147642502,3600),('7.0-style0000000000040','sgd1YdmVKj-n6IyIWJicXg','navbar_right.jpg','PBtmpl0000000000000088',1147642502,3600),('7.0-style0000000000041','i1oJph6lb3hxEsTNu_3Y7g','page_title.jpg','PBtmpl0000000000000088',1147642502,3600),('7.0-style0000000000042','qMwO_tp9KOya_N-kyIHDJQ','page_title_bg.jpg','PBtmpl0000000000000088',1147642502,3600),('7.0-style0000000000043','l5hF84u5R9MoqMvS9gpp6g','pb.jpg','PBtmpl0000000000000088',1147642503,3600),('7.0-style0000000000044','Eh4IRmClOEzDAU1IVn5vHQ','pb_wg.jpg','PBtmpl0000000000000088',1147642503,3600),('7.0-style0000000000045','e8yirsGt9FZEgzfeHLgRiw','pb_wg_bg.jpg','PBtmpl0000000000000088',1147642503,3600),('7.0-style0000000000046','hDmN6gu1w_jtrcxgTRN5OQ','rightCol_bg.jpg','PBtmpl0000000000000088',1147642504,3600),('7.0-style0000000000048','_QhSdbnBeA1zio6iAuGIag','wg.jpg','PBtmpl0000000000000088',1147642504,3600),('7.0-style0000000000052','VRqMCZ_-GgaJiDeOrnwlQg','footer_bg.jpg','PBtmpl0000000000000088',1147642505,3600),('7.0-style0000000000053','baxoDEB4C8eLjZbnENMs9w','footer_right.jpg','PBtmpl0000000000000088',1147642505,3600),('7.0-style0000000000054','FlivcrAW0pKW4q_2fvlVpw','header_bg.jpg','PBtmpl0000000000000088',1147642506,3600),('7.0-style0000000000055','5hgdAMRWeSmHDrRFM_qbBw','header_left.jpg','PBtmpl0000000000000088',1147642506,3600),('7.0-style0000000000056','lV6l3Sctxx8J1JmYlXwSDA','header_right.jpg','PBtmpl0000000000000088',1147642506,3600),('7.0-style0000000000057','FKGH2yiNQoC2E_FqbMYebw','main_bg.jpg','PBtmpl0000000000000088',1147642507,3600),('7.0-style0000000000058','UGtgwjDaqCtCPnEkuLPtIw','main_bottom.jpg','PBtmpl0000000000000088',1147642507,3600),('7.0-style0000000000060','XsuCCMz5vyyfC8Xr89pb1Q','main_top_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7.0-style0000000000061','is_6p2ROuy6AhCR1eJ8SdQ','nav_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7.0-style0000000000062','3rpFbJWSV14AWeDZqqPSSw','nav_bg1.jpg','PBtmpl0000000000000088',1147642508,3600),('7.0-style0000000000063','NcTFm_t9rn63ejwtBQnDQw','nav_bg1_on.jpg','PBtmpl0000000000000088',1147642508,3600),('7.0-style0000000000064','XLKBWi6Asbz5CtZdnwzZmg','nav_bg2.jpg','PBtmpl0000000000000088',1147642509,3600),('7.0-style0000000000065','02cdKPH5-SyFEb_Zo_WL8A','nav_bg2_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7.0-style0000000000066','0QQpTB8bi6JZvFrW74SOWg','nav_bg_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7.0-style0000000000067','DdhQHfqGq-yC1ukTdlqoEg','pb.jpg','PBtmpl0000000000000088',1147642509,3600),('7.0-style0000000000068','Y4AWquISZVLcwVQLzd_u7w','spacer.gif','PBtmpl0000000000000088',1147642510,3600),('7.0-style0000000000071','mJOrQFemh2R3xn2HYviQlQ','wg.jpg','PBtmpl0000000000000088',1147642511,3600),('m4YJFaqzultnB_sj1Uq0aw','JX9y6tHiSaAv3-Jq6QXHGw','advert01.swf','pbtmpl0000000000000220',1147642514,3600),('Vzv1pWpg_w6R_o-b0rM2qQ','PMKX5QYkNFvrCD15QVo8Tg','Tutorial.swf','pbtmpl0000000000000221',1147642515,3600),('bANo8aiAPA7aY_oQZKxIWw','l0vJttSGYiITS96pOJIh2Q','rss.gif','PBtmpl0000000000000088',1197330678,0),('fdd8tGExyVwHyrB8RBbKXg','H8qvtaTvDkNHOm-h0yfpAg','next.gif','PBtmpl0000000000000088',1197330839,0),('BpisgHl4ZDcSECJp6oib1w','B3fjChKsXh4QFgvs1Gf4BQ','play.gif','PBtmpl0000000000000088',1197330840,0),('zshreRgPAXtnF0DtVbQ1Yg','tYxidtXD9bXmPkEZsinI-A','previous.gif','PBtmpl0000000000000088',1197330840,0),('2ci_v2d4x4uvyjTRlC49OA','QBcmUnAdUKoMQoP9OxDdqA','moveDown.gif','PBtmpl0000000000000088',1209499188,0),('O-EsSzKgAk1KolFT-x_KsA','g8rvEQyyvxfs0sNklPNzsQ','moveUp.gif','PBtmpl0000000000000088',1209499188,0),('POVcY79vIqAHR8OfGt36aw','NGu3NiVKD4TV1Sw4N5YmIg','pagination_button.jpg','PBtmpl0000000000000088',1209499189,0),('hIB-z34r8Xl-vYVYCkKr-w','i1uZztdNddqvW9Tt_JOBzw','bar-btn-r.jpg','PBtmpl0000000000000088',1209499189,0),('-mPUoFlYcjqjPUPRLAlxNQ','X7PA2VUynp_X5b1mHRqvnA','search-field-r.jpg','PBtmpl0000000000000088',1209499189,0),('MDpUOR-N8KMyt1J7Hh_h4w','ed1kbQ8Aed2Uh09gIo5HTQ','bar-btn.jpg','PBtmpl0000000000000088',1209499189,0),('YfXKByTwDZVituMc4h13Dg','SMhIjHLxVLJSjOsSvbLcMA','pagination_bg.jpg','PBtmpl0000000000000088',1209499189,0),('esko_HSU0Gh-uJZ1h3xRmQ','av317NZvdb5ATKy1BctVyg','search-field-l.jpg','PBtmpl0000000000000088',1209499189,0),('oSqpGswzpBG_ErdfYwIO8A','gyukfQn4q_CoHrieNClI3A','top_bg.jpg','PBtmpl0000000000000088',1209499189,0),('MXJklShZvLLB_DSnZQmXrQ','fEBf-KYzxE-cPJYrKkpyHg','title_bg.jpg','PBtmpl0000000000000088',1209499189,0),('BthxD5oJ0idmsyI3ioA2FA','ZzZWC22vEsrgqSbNABaiSw','bar-btn-l.jpg','PBtmpl0000000000000088',1209499189,0),('aZ-1HYQamkRHYXvzAra8WQ','--qeq91xu4bPCfTNHQTN6g','search-field.jpg','PBtmpl0000000000000088',1209499189,0),('eRkb94OYcS5AdcrrerOP5Q','VTYx-kkmpTSFtdKzX9FRcw','rss.gif','PBtmpl0000000000000088',1209499189,0),('TbnkjAJQEASORXIpYqDkcA','rysPVifAyGtsgqtkgS6RTw','blank-image.jpg','PBtmpl0000000000000088',1209499189,0),('er-3faBjY-hhlDcc5aKqdQ','AGRuD_tUqpjUhixhisn8rA','top_bg.jpg','PBtmpl0000000000000088',1209499189,0),('8bFsu2FJUqHRUiHcozcVFw','KQJheWAz7PTd1Gl194tzcg','sub-btn-l.jpg','PBtmpl0000000000000088',1209499189,0),('34Aayx5eA320D8VfhdfDBw','qx70ceBPO3mE5H_ZqhHa3A','sub-btn-r.jpg','PBtmpl0000000000000088',1209499189,0),('TlhKOVmWblZOsAdqmhEpeg','q9zSV7MQt6cwmXLWqoRCHQ','sub-btn.jpg','PBtmpl0000000000000088',1209499189,0),('Nx0ypjO3cN6QdZUBUEE0lA','UX3aGyzXzStKrn0BME9eSQ','pic-title-bg.jpg','PBtmpl0000000000000088',1209499189,0),('CmFZLN7iPS7XXvUEsxKPKA','3rRxsOMTV6hkG8TCywAxQg','row-2.jpg','PBtmpl0000000000000088',1209499190,0),('v_XBgwwZqgW1D5s4y05qfg','SHaZ0680E30gPydYkaxPPQ','addtl-info.gif','PBtmpl0000000000000088',1209499190,0),('4TdAkKoQbSCvI7QWcW889A','JsG1nDZj8IB7zdaEpqxljQ','row-1.jpg','PBtmpl0000000000000088',1209499190,0),('SAgK6eDPCG1cgkJ59WapHQ','blLNHs44P_vzBevRm3EKVg','prev-btn.gif','PBtmpl0000000000000088',1209499190,0),('XJYLuvGy9ubF7JNKyINtpA','7Fb1GdqH0E_1Or-ltSpW5Q','play-btn.gif','PBtmpl0000000000000088',1209499190,0),('RWj7hyv2SpZuXxwj1Wocug','WPuDj1dkyhluxUfsNHnPhg','next-btn.gif','PBtmpl0000000000000088',1209499190,0),('aq8QElnlm3YufAoxRz9Pcg','sDgpNdN1VdgPUQS6h57gVw','data-bg.jpg','PBtmpl0000000000000088',1209499190,0),('_bZJ9LA_KNekZiFPaP2SeQ','RwcPC6VO-WH3HPaMNxQdxQ','shelf-titles.jpg','PBtmpl0000000000000088',1210777868,0),('hQ7z33_jOYkQ8WNX5xy9Sw','HCc0_yDJrhZIoKV__wiUDw','style-button.gif','PBtmpl0000000000000088',1209509455,0),('vWW_DcHiYSrKZOkkIfEfcQ','t_FrH8_ktSJtHQGQLDeudA','row-2.jpg','PBtmpl0000000000000088',1209509433,0),('_bPYzRA87NTAUIKlfrJMHg','EgZoQgSAhCrNP3sXjRDPkw','row-1.jpg','PBtmpl0000000000000088',1209509433,0),('nJjZHRwdDs5MAZYsAyioHw','edb4FERsJ0pU0mmnfsiCig','title-bg.jpg','PBtmpl0000000000000088',1209509433,0),('8hxfkrJPeFVRWF5piCNJ1A','hRM4w6S2cqFdDRPcUP6FIg','field-bg.jpg','PBtmpl0000000000000088',1209509433,0),('Osx7WN52iIKHZFT4vqUBHQ','Wa42mXdBWCT9B9kgqzh9CQ','search-btn.gif','PBtmpl0000000000000088',1209509433,0),('oWff8fGzRdHPyq5VNREe9Q','j-AYUZHpCRd0yYH2Youp4A','top-bg.jpg','PBtmpl0000000000000088',1209509433,0),('uqbkvb1b9443VvfkyRz95w','JXBzB0XDxTHC_KRk0jROGQ','save-button.gif','PBtmpl0000000000000088',1209509433,0),('8YiMkcz32xalkAn3WBLpag','3lttrXIB4qCFnsKxFTJoKw','go-btn.gif','PBtmpl0000000000000088',1210181860,0),('2q5fxatSFLgIhXaUX-oSvg','j5rX358i5J9yPV4DoEHwxg','bottom-left.jpg','PBtmpl0000000000000088',1204149033,0),('_d5WTkKjnwct-_Dk7gZHvQ','tpvHAIwy2uRbYM8spLAfVA','bottom-right.jpg','PBtmpl0000000000000088',1204149033,0),('Iz2mUR3jCPKyemwAea4b2g','7wvz-X76oSFQc4y88amMIA','input_bg.jpg','PBtmpl0000000000000088',1204149033,0),('JU9bjsLRoWj7GVHs__prig','hT-SRTK5QszwKt9YV7bSDg','top-left.jpg','PBtmpl0000000000000088',1204149033,0),('noOlnjQGexHg8c4bGVUo9g','itESNdKblVlX-kLwnt3qVw','top-right.jpg','PBtmpl0000000000000088',1204149033,0),('7.0-style0000000000059','QOhEl8bdecbSrml06V84iw','main_top.jpg','PBtmpl0000000000000088',1213386091,0),('o_pq_e4vRyhMOKFzs61eag','zTRhj1ZmjPc6b4ytLNIdLg','book-covers.jpg','PBtmpl0000000000000088',1215714957,0); -INSERT INTO `Folder` VALUES ('PBasset000000000000002','PBtmpl0000000000000078',1124395696,3600,0,'ASC'),('7.0-style0000000000001','PBtmpl0000000000000078',1147642492,3600,0,'ASC'),('7.0-style0000000000031','PBtmpl0000000000000078',1147642500,3600,0,'ASC'),('PBasset000000000000003','PBtmpl0000000000000078',1147642437,3600,0,'ASC'),('nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000078',1147642466,3600,0,'ASC'),('S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000078',1147642468,3600,0,'ASC'),('tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000078',1147642469,3600,0,'ASC'),('GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('VXSsbsfcfht1904EWkb1sw','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000078',1222803056,3600,0,'ASC'),('3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000078',1222803070,3600,0,'ASC'),('cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000078',1147642477,3600,0,'ASC'),('VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000078',1147642477,3600,0,'ASC'),('f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000078',1147642482,3600,0,'ASC'),('9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000078',1147642483,3600,0,'ASC'),('CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('tempspace0000000000000','PBtmpl0000000000000078',1185754574,3600,0,'ASC'),('kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000078',1197330678,3600,0,'ASC'),('Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000078',1213244777,3600,0,'ASC'),('-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000078',1209325764,3600,0,'ASC'),('4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000078',1208725439,3600,0,'ASC'),('aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000078',1213283425,3600,0,'ASC'),('TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000078',1211664878,3600,0,'ASC'),('6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000078',1210777115,3600,0,'ASC'),('gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000078',1212086102,3600,0,'ASC'),('6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000078',1209509389,3600,0,'ASC'),('C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000078',1212160830,3600,0,'ASC'),('aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000078',1213122695,3600,0,'ASC'),('gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000078',1213734379,3600,0,'ASC'),('jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000078',1216250666,3600,0,'ASC'),('1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000078',1222803099,3600,0,'ASC'),('zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000078',1222803114,3600,0,'ASC'),('tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000078',1222803200,3600,0,'ASC'),('GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000078',1222803205,3600,0,'ASC'),('tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000078',1222803213,3600,0,'ASC'),('vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000078',1222803217,3600,0,'ASC'),('hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000078',1222803234,3600,0,'ASC'),('eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000078',1222803238,3600,0,'ASC'),('5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000078',1222803244,3600,0,'ASC'),('rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000078',1222803249,3600,0,'ASC'),('V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000078',1222803253,3600,0,'ASC'),('nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000078',1222803258,3600,0,'ASC'),('y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000078',1222803264,3600,0,'ASC'),('vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000078',1222803302,3600,0,'ASC'),('lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000078',1222803309,3600,0,'ASC'),('huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000078',1222803313,3600,0,'ASC'),('9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000078',1222803338,3600,0,'ASC'),('yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000078',1222803342,3600,0,'ASC'),('pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000078',1222803347,3600,0,'ASC'),('71e17KeduiXgODLMlUxiow','PBtmpl0000000000000078',1222803352,3600,0,'ASC'),('xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000078',1222803378,3600,0,'ASC'),('0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000078',1222803383,3600,0,'ASC'),('taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000078',1222803387,3600,0,'ASC'),('K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000078',1222803391,3600,0,'ASC'),('fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000078',1222803395,3600,0,'ASC'),('oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000078',1222803399,3600,0,'ASC'),('9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000078',1222803405,3600,0,'ASC'),('_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000078',1222803409,3600,0,'ASC'),('Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000078',1222803478,3600,0,'ASC'),('NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000078',1222803638,3600,0,'ASC'),('AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000078',1222803665,3600,0,'ASC'),('F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000078',1222803673,3600,0,'ASC'),('Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000078',1222803760,3600,0,'ASC'),('BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000078',1222803871,3600,0,'ASC'),('X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000078',1222804045,3600,0,'ASC'),('iLzlwGmwrvzlGHXKzaDyjA','PBtmpl0000000000000078',1222804090,3600,0,'ASC'),('UL-ItI4L1Z6-WSuhuXVvsQ','PBtmpl0000000000000078',1225139673,3600,0,'ASC'),('7.0-style0000000000049','PBtmpl0000000000000078',1224117144,3600,0,'ASC'),('QpmlAiYZz6VsKBM-_0wXaw','PBtmpl0000000000000078',1224616691,3600,0,'ASC'),('QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000078',1227080251,3600,0,'ASC'),('HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000078',1225404573,3600,0,'ASC'),('IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000078',1226011853,3600,0,'ASC'),('K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000078',1227074310,3600,0,'ASC'),('_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000078',1226643205,3600,0,'ASC'),('AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000078',1226659753,3600,0,'ASC'),('qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000078',1227074362,3600,0,'ASC'),('5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000078',1227540002,3600,0,'ASC'),('LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000078',1232673968,3600,0,'ASC'); -INSERT INTO `ImageAsset` VALUES ('7.0-style0000000000002',50,NULL,1147642492),('7.0-style0000000000004',50,NULL,1147642493),('7.0-style0000000000005',50,NULL,1147642493),('7.0-style0000000000006',50,NULL,1147642493),('7.0-style0000000000007',50,NULL,1147642493),('7.0-style0000000000008',50,NULL,1147642494),('7.0-style0000000000009',50,NULL,1147642494),('7.0-style0000000000010',50,NULL,1147642494),('7.0-style0000000000011',50,NULL,1147642495),('7.0-style0000000000012',50,NULL,1147642495),('7.0-style0000000000013',50,NULL,1147642495),('7.0-style0000000000014',50,NULL,1147642495),('7.0-style0000000000015',50,NULL,1147642496),('7.0-style0000000000016',50,NULL,1147642496),('7.0-style0000000000017',50,NULL,1147642496),('7.0-style0000000000018',50,NULL,1147642496),('7.0-style0000000000019',50,NULL,1147642497),('7.0-style0000000000020',50,NULL,1147642497),('7.0-style0000000000021',50,NULL,1147642497),('7.0-style0000000000022',50,NULL,1147642497),('7.0-style0000000000023',50,NULL,1147642498),('7.0-style0000000000024',50,NULL,1147642498),('7.0-style0000000000030',50,NULL,1147642499),('7.0-style0000000000032',50,NULL,1147642500),('7.0-style0000000000034',50,NULL,1147642500),('7.0-style0000000000035',50,NULL,1147642501),('7.0-style0000000000036',50,NULL,1147642501),('7.0-style0000000000037',50,NULL,1147642501),('7.0-style0000000000038',50,NULL,1147642501),('7.0-style0000000000039',50,NULL,1147642502),('7.0-style0000000000040',50,NULL,1147642502),('7.0-style0000000000041',50,NULL,1147642502),('7.0-style0000000000042',50,NULL,1147642502),('7.0-style0000000000043',50,NULL,1147642503),('7.0-style0000000000044',50,NULL,1147642503),('7.0-style0000000000045',50,NULL,1147642503),('7.0-style0000000000046',50,NULL,1147642504),('7.0-style0000000000048',50,NULL,1147642504),('7.0-style0000000000052',50,'style=\"border-style:none;\"',1147642505),('7.0-style0000000000053',50,'style=\"border-style:none;\"',1147642505),('7.0-style0000000000054',50,'style=\"border-style:none;\"',1147642506),('7.0-style0000000000055',50,'style=\"border-style:none;\"',1147642506),('7.0-style0000000000056',50,'style=\"border-style:none;\"',1147642506),('7.0-style0000000000057',50,'style=\"border-style:none;\"',1147642507),('7.0-style0000000000058',50,'style=\"border-style:none;\"',1147642507),('7.0-style0000000000060',50,'style=\"border-style:none;\"',1147642508),('7.0-style0000000000061',50,'style=\"border-style:none;\"',1147642508),('7.0-style0000000000062',50,'style=\"border-style:none;\"',1147642508),('7.0-style0000000000063',50,'style=\"border-style:none;\"',1147642508),('7.0-style0000000000064',50,'style=\"border-style:none;\"',1147642509),('7.0-style0000000000065',50,'style=\"border-style:none;\"',1147642509),('7.0-style0000000000066',50,'style=\"border-style:none;\"',1147642509),('7.0-style0000000000067',50,'style=\"border-style:none;\"',1147642509),('7.0-style0000000000068',50,'style=\"border-style:none;\"',1147642510),('7.0-style0000000000071',50,'style=\"border-style:none;\"',1147642511),('bANo8aiAPA7aY_oQZKxIWw',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1197330678),('fdd8tGExyVwHyrB8RBbKXg',50,'style=\"border-style:none;\" alt=\"next.gif\"',1197330839),('BpisgHl4ZDcSECJp6oib1w',50,'style=\"border-style:none;\" alt=\"play.gif\"',1197330840),('zshreRgPAXtnF0DtVbQ1Yg',50,'style=\"border-style:none;\" alt=\"previous.gif\"',1197330840),('2ci_v2d4x4uvyjTRlC49OA',50,'style=\"border-style:none;\" alt=\"moveDown.gif\"',1209499188),('O-EsSzKgAk1KolFT-x_KsA',50,'style=\"border-style:none;\" alt=\"moveUp.gif\"',1209499188),('POVcY79vIqAHR8OfGt36aw',50,'style=\"border-style:none;\" alt=\"pagination_button.jpg\"',1209499189),('hIB-z34r8Xl-vYVYCkKr-w',50,'style=\"border-style:none;\" alt=\"bar-btn-r.jpg\"',1209499189),('-mPUoFlYcjqjPUPRLAlxNQ',50,'style=\"border-style:none;\" alt=\"search-field-r.jpg\"',1209499189),('MDpUOR-N8KMyt1J7Hh_h4w',50,'style=\"border-style:none;\" alt=\"bar-btn.jpg\"',1209499189),('YfXKByTwDZVituMc4h13Dg',50,'style=\"border-style:none;\" alt=\"pagination_bg.jpg\"',1209499189),('esko_HSU0Gh-uJZ1h3xRmQ',50,'style=\"border-style:none;\" alt=\"search-field-l.jpg\"',1209499189),('oSqpGswzpBG_ErdfYwIO8A',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1209499189),('MXJklShZvLLB_DSnZQmXrQ',50,'style=\"border-style:none;\" alt=\"title_bg.jpg\"',1209499189),('BthxD5oJ0idmsyI3ioA2FA',50,'style=\"border-style:none;\" alt=\"bar-btn-l.jpg\"',1209499189),('aZ-1HYQamkRHYXvzAra8WQ',50,'style=\"border-style:none;\" alt=\"search-field.jpg\"',1209499189),('eRkb94OYcS5AdcrrerOP5Q',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1209499189),('TbnkjAJQEASORXIpYqDkcA',50,'style=\"border-style:none;\" alt=\"blank-image.jpg\"',1209499189),('er-3faBjY-hhlDcc5aKqdQ',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1209499189),('8bFsu2FJUqHRUiHcozcVFw',50,'style=\"border-style:none;\" alt=\"sub-btn-l.jpg\"',1209499189),('34Aayx5eA320D8VfhdfDBw',50,'style=\"border-style:none;\" alt=\"sub-btn-r.jpg\"',1209499189),('TlhKOVmWblZOsAdqmhEpeg',50,'style=\"border-style:none;\" alt=\"sub-btn.jpg\"',1209499189),('Nx0ypjO3cN6QdZUBUEE0lA',50,'style=\"border-style:none;\" alt=\"pic-title-bg.jpg\"',1209499189),('CmFZLN7iPS7XXvUEsxKPKA',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209499190),('v_XBgwwZqgW1D5s4y05qfg',50,'style=\"border-style:none;\" alt=\"addtl-info.gif\"',1209499190),('4TdAkKoQbSCvI7QWcW889A',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209499190),('SAgK6eDPCG1cgkJ59WapHQ',50,'style=\"border-style:none;\" alt=\"prev-btn.gif\"',1209499190),('XJYLuvGy9ubF7JNKyINtpA',50,'style=\"border-style:none;\" alt=\"play-btn.gif\"',1209499190),('RWj7hyv2SpZuXxwj1Wocug',50,'style=\"border-style:none;\" alt=\"next-btn.gif\"',1209499190),('aq8QElnlm3YufAoxRz9Pcg',50,'style=\"border-style:none;\" alt=\"data-bg.jpg\"',1209499190),('_bZJ9LA_KNekZiFPaP2SeQ',50,'style=\"border-style:none;\" alt=\"shelf-titles.jpg\"',1210777868),('hQ7z33_jOYkQ8WNX5xy9Sw',50,'style=\"border-style:none;\" alt=\"style-button.gif\"',1209509455),('vWW_DcHiYSrKZOkkIfEfcQ',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209509433),('_bPYzRA87NTAUIKlfrJMHg',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209509433),('nJjZHRwdDs5MAZYsAyioHw',50,'style=\"border-style:none;\" alt=\"title-bg.jpg\"',1209509433),('8hxfkrJPeFVRWF5piCNJ1A',50,'style=\"border-style:none;\" alt=\"field-bg.jpg\"',1209509433),('Osx7WN52iIKHZFT4vqUBHQ',50,'style=\"border-style:none;\" alt=\"search-btn.gif\"',1209509433),('oWff8fGzRdHPyq5VNREe9Q',50,'style=\"border-style:none;\" alt=\"top-bg.jpg\"',1209509433),('uqbkvb1b9443VvfkyRz95w',50,'style=\"border-style:none;\" alt=\"save-button.gif\"',1209509433),('8YiMkcz32xalkAn3WBLpag',50,'style=\"border-style:none;\" alt=\"go-btn.gif\"',1210181860),('2q5fxatSFLgIhXaUX-oSvg',50,'style=\"border-style:none;\" alt=\"bottom-left.jpg\"',1204149033),('_d5WTkKjnwct-_Dk7gZHvQ',50,'style=\"border-style:none;\" alt=\"bottom-right.jpg\"',1204149033),('Iz2mUR3jCPKyemwAea4b2g',50,'style=\"border-style:none;\" alt=\"input_bg.jpg\"',1204149033),('JU9bjsLRoWj7GVHs__prig',50,'style=\"border-style:none;\" alt=\"top-left.jpg\"',1204149033),('noOlnjQGexHg8c4bGVUo9g',50,'style=\"border-style:none;\" alt=\"top-right.jpg\"',1204149033),('7.0-style0000000000059',50,'alt=\"main_top.jpg\"',1213386091),('o_pq_e4vRyhMOKFzs61eag',50,'style=\"border-style:none;\" alt=\"book-covers.jpg\"',1215714957); +INSERT INTO `FileAsset` VALUES ('7-0-style0000000000002','_Vo1Pvl3sPPANyxz-IcCtA','body_bg.jpg','PBtmpl0000000000000088',1147642492,3600),('7-0-style0000000000004','Gemp7cEVjh2_M2IicUYs-g','gui_bottom.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000005','ry-yzLVH-vxn71H9byjGXA','header.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000006','VEPa65fhY3dok6vj-beFCA','main_bg.gif','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000007','Cfay1MNkC-73WKJ7fX_pVw','main_bg.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000008','iEBE--vQb_lxuZd5AP8tuw','nav1_center_on.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000009','XR1Yjf3MkYA53TJlcpRBsw','nav1_off.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000010','sxvAS8na-QAdY_eycd2gKw','nav1_off_center.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000011','2lhmrXW46ZMLvpbaaX2g7Q','nav1_off_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000012','sEoRwhmonl877RBgx2nE1w','nav1_off_right.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000013','AoSfRkPI3fl7vAooT4Fj_A','nav1_on.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000014','MgNDJRsghd_zQZ292hqVMQ','nav1_on_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000015','aUG1FZaIqHaQHlieZ4_Mkg','nav1_on_right.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000016','HyhLnkaJMfr8eJsLIX8XeA','nav2_center_on.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000017','aledEnWoD-JVNURWSklfdg','nav2_off_center.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000018','Ffd33PToWon9X7mcKZqUAQ','nav2_off_left.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000019','B3TTkcOlr-VzcxRwQXZmyg','nav2_off_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000020','RxGSyn-8W4p64SQ-NYzNOg','nav2_on_left.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000021','NciEByP8ssN6qDYyKcoGWw','nav2_on_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000022','9OVg_Nxo0gha5pWZsS_dmw','nav_bg.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000023','VKtJGCmBtsMj8ZeAJ6ePNw','nav_on.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000024','ryQb0A4YeEwYZo9hdgrCcw','orange_left01.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000030','coew3C1i9AORof9ezjWLDg','webgui_btn.jpg','PBtmpl0000000000000088',1147642499,3600),('7-0-style0000000000032','HEySmh0CRxpkI-tjzgkDDw','context_bg.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000034','HPn3mVDaMkn8Iu0GAq7cAw','leftCol_header.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000035','IqaSdxJqqN_8C-7OWeyE2g','leftCol_header02.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000036','M0cIcS1GDFIV8lwAw3U2hA','main_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000037','77rakTqCXGBihEOXoh4ZXQ','nav_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000038','5najYvfJiZBBaiCVxaNkcQ','navbar_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000039','27XAOBKNfJ2euexImD73Aw','navbar_left.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000040','sgd1YdmVKj-n6IyIWJicXg','navbar_right.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000041','i1oJph6lb3hxEsTNu_3Y7g','page_title.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000042','qMwO_tp9KOya_N-kyIHDJQ','page_title_bg.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000043','l5hF84u5R9MoqMvS9gpp6g','pb.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000044','Eh4IRmClOEzDAU1IVn5vHQ','pb_wg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000045','e8yirsGt9FZEgzfeHLgRiw','pb_wg_bg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000046','hDmN6gu1w_jtrcxgTRN5OQ','rightCol_bg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000048','_QhSdbnBeA1zio6iAuGIag','wg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000052','VRqMCZ_-GgaJiDeOrnwlQg','footer_bg.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000053','baxoDEB4C8eLjZbnENMs9w','footer_right.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000054','FlivcrAW0pKW4q_2fvlVpw','header_bg.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000055','5hgdAMRWeSmHDrRFM_qbBw','header_left.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000056','lV6l3Sctxx8J1JmYlXwSDA','header_right.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000057','FKGH2yiNQoC2E_FqbMYebw','main_bg.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000058','UGtgwjDaqCtCPnEkuLPtIw','main_bottom.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000060','XsuCCMz5vyyfC8Xr89pb1Q','main_top_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000061','is_6p2ROuy6AhCR1eJ8SdQ','nav_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000062','3rpFbJWSV14AWeDZqqPSSw','nav_bg1.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000063','NcTFm_t9rn63ejwtBQnDQw','nav_bg1_on.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000064','XLKBWi6Asbz5CtZdnwzZmg','nav_bg2.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000065','02cdKPH5-SyFEb_Zo_WL8A','nav_bg2_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000066','0QQpTB8bi6JZvFrW74SOWg','nav_bg_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000067','DdhQHfqGq-yC1ukTdlqoEg','pb.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000068','Y4AWquISZVLcwVQLzd_u7w','spacer.gif','PBtmpl0000000000000088',1147642510,3600),('7-0-style0000000000071','mJOrQFemh2R3xn2HYviQlQ','wg.jpg','PBtmpl0000000000000088',1147642511,3600),('m4YJFaqzultnB_sj1Uq0aw','JX9y6tHiSaAv3-Jq6QXHGw','advert01.swf','pbtmpl0000000000000220',1147642514,3600),('Vzv1pWpg_w6R_o-b0rM2qQ','PMKX5QYkNFvrCD15QVo8Tg','Tutorial.swf','pbtmpl0000000000000221',1147642515,3600),('bANo8aiAPA7aY_oQZKxIWw','l0vJttSGYiITS96pOJIh2Q','rss.gif','PBtmpl0000000000000088',1197330678,0),('fdd8tGExyVwHyrB8RBbKXg','H8qvtaTvDkNHOm-h0yfpAg','next.gif','PBtmpl0000000000000088',1197330839,0),('BpisgHl4ZDcSECJp6oib1w','B3fjChKsXh4QFgvs1Gf4BQ','play.gif','PBtmpl0000000000000088',1197330840,0),('zshreRgPAXtnF0DtVbQ1Yg','tYxidtXD9bXmPkEZsinI-A','previous.gif','PBtmpl0000000000000088',1197330840,0),('2ci_v2d4x4uvyjTRlC49OA','QBcmUnAdUKoMQoP9OxDdqA','moveDown.gif','PBtmpl0000000000000088',1209499188,0),('O-EsSzKgAk1KolFT-x_KsA','g8rvEQyyvxfs0sNklPNzsQ','moveUp.gif','PBtmpl0000000000000088',1209499188,0),('POVcY79vIqAHR8OfGt36aw','NGu3NiVKD4TV1Sw4N5YmIg','pagination_button.jpg','PBtmpl0000000000000088',1209499189,0),('hIB-z34r8Xl-vYVYCkKr-w','i1uZztdNddqvW9Tt_JOBzw','bar-btn-r.jpg','PBtmpl0000000000000088',1209499189,0),('-mPUoFlYcjqjPUPRLAlxNQ','X7PA2VUynp_X5b1mHRqvnA','search-field-r.jpg','PBtmpl0000000000000088',1209499189,0),('MDpUOR-N8KMyt1J7Hh_h4w','ed1kbQ8Aed2Uh09gIo5HTQ','bar-btn.jpg','PBtmpl0000000000000088',1209499189,0),('YfXKByTwDZVituMc4h13Dg','SMhIjHLxVLJSjOsSvbLcMA','pagination_bg.jpg','PBtmpl0000000000000088',1209499189,0),('esko_HSU0Gh-uJZ1h3xRmQ','av317NZvdb5ATKy1BctVyg','search-field-l.jpg','PBtmpl0000000000000088',1209499189,0),('oSqpGswzpBG_ErdfYwIO8A','gyukfQn4q_CoHrieNClI3A','top_bg.jpg','PBtmpl0000000000000088',1209499189,0),('MXJklShZvLLB_DSnZQmXrQ','fEBf-KYzxE-cPJYrKkpyHg','title_bg.jpg','PBtmpl0000000000000088',1209499189,0),('BthxD5oJ0idmsyI3ioA2FA','ZzZWC22vEsrgqSbNABaiSw','bar-btn-l.jpg','PBtmpl0000000000000088',1209499189,0),('aZ-1HYQamkRHYXvzAra8WQ','--qeq91xu4bPCfTNHQTN6g','search-field.jpg','PBtmpl0000000000000088',1209499189,0),('eRkb94OYcS5AdcrrerOP5Q','VTYx-kkmpTSFtdKzX9FRcw','rss.gif','PBtmpl0000000000000088',1209499189,0),('TbnkjAJQEASORXIpYqDkcA','rysPVifAyGtsgqtkgS6RTw','blank-image.jpg','PBtmpl0000000000000088',1209499189,0),('er-3faBjY-hhlDcc5aKqdQ','AGRuD_tUqpjUhixhisn8rA','top_bg.jpg','PBtmpl0000000000000088',1209499189,0),('8bFsu2FJUqHRUiHcozcVFw','KQJheWAz7PTd1Gl194tzcg','sub-btn-l.jpg','PBtmpl0000000000000088',1209499189,0),('34Aayx5eA320D8VfhdfDBw','qx70ceBPO3mE5H_ZqhHa3A','sub-btn-r.jpg','PBtmpl0000000000000088',1209499189,0),('TlhKOVmWblZOsAdqmhEpeg','q9zSV7MQt6cwmXLWqoRCHQ','sub-btn.jpg','PBtmpl0000000000000088',1209499189,0),('Nx0ypjO3cN6QdZUBUEE0lA','UX3aGyzXzStKrn0BME9eSQ','pic-title-bg.jpg','PBtmpl0000000000000088',1209499189,0),('CmFZLN7iPS7XXvUEsxKPKA','3rRxsOMTV6hkG8TCywAxQg','row-2.jpg','PBtmpl0000000000000088',1209499190,0),('v_XBgwwZqgW1D5s4y05qfg','SHaZ0680E30gPydYkaxPPQ','addtl-info.gif','PBtmpl0000000000000088',1209499190,0),('4TdAkKoQbSCvI7QWcW889A','JsG1nDZj8IB7zdaEpqxljQ','row-1.jpg','PBtmpl0000000000000088',1209499190,0),('SAgK6eDPCG1cgkJ59WapHQ','blLNHs44P_vzBevRm3EKVg','prev-btn.gif','PBtmpl0000000000000088',1209499190,0),('XJYLuvGy9ubF7JNKyINtpA','7Fb1GdqH0E_1Or-ltSpW5Q','play-btn.gif','PBtmpl0000000000000088',1209499190,0),('RWj7hyv2SpZuXxwj1Wocug','WPuDj1dkyhluxUfsNHnPhg','next-btn.gif','PBtmpl0000000000000088',1209499190,0),('aq8QElnlm3YufAoxRz9Pcg','sDgpNdN1VdgPUQS6h57gVw','data-bg.jpg','PBtmpl0000000000000088',1209499190,0),('_bZJ9LA_KNekZiFPaP2SeQ','RwcPC6VO-WH3HPaMNxQdxQ','shelf-titles.jpg','PBtmpl0000000000000088',1210777868,0),('hQ7z33_jOYkQ8WNX5xy9Sw','HCc0_yDJrhZIoKV__wiUDw','style-button.gif','PBtmpl0000000000000088',1209509455,0),('vWW_DcHiYSrKZOkkIfEfcQ','t_FrH8_ktSJtHQGQLDeudA','row-2.jpg','PBtmpl0000000000000088',1209509433,0),('_bPYzRA87NTAUIKlfrJMHg','EgZoQgSAhCrNP3sXjRDPkw','row-1.jpg','PBtmpl0000000000000088',1209509433,0),('nJjZHRwdDs5MAZYsAyioHw','edb4FERsJ0pU0mmnfsiCig','title-bg.jpg','PBtmpl0000000000000088',1209509433,0),('8hxfkrJPeFVRWF5piCNJ1A','hRM4w6S2cqFdDRPcUP6FIg','field-bg.jpg','PBtmpl0000000000000088',1209509433,0),('Osx7WN52iIKHZFT4vqUBHQ','Wa42mXdBWCT9B9kgqzh9CQ','search-btn.gif','PBtmpl0000000000000088',1209509433,0),('oWff8fGzRdHPyq5VNREe9Q','j-AYUZHpCRd0yYH2Youp4A','top-bg.jpg','PBtmpl0000000000000088',1209509433,0),('uqbkvb1b9443VvfkyRz95w','JXBzB0XDxTHC_KRk0jROGQ','save-button.gif','PBtmpl0000000000000088',1209509433,0),('8YiMkcz32xalkAn3WBLpag','3lttrXIB4qCFnsKxFTJoKw','go-btn.gif','PBtmpl0000000000000088',1210181860,0),('2q5fxatSFLgIhXaUX-oSvg','j5rX358i5J9yPV4DoEHwxg','bottom-left.jpg','PBtmpl0000000000000088',1204149033,0),('_d5WTkKjnwct-_Dk7gZHvQ','tpvHAIwy2uRbYM8spLAfVA','bottom-right.jpg','PBtmpl0000000000000088',1204149033,0),('Iz2mUR3jCPKyemwAea4b2g','7wvz-X76oSFQc4y88amMIA','input_bg.jpg','PBtmpl0000000000000088',1204149033,0),('JU9bjsLRoWj7GVHs__prig','hT-SRTK5QszwKt9YV7bSDg','top-left.jpg','PBtmpl0000000000000088',1204149033,0),('noOlnjQGexHg8c4bGVUo9g','itESNdKblVlX-kLwnt3qVw','top-right.jpg','PBtmpl0000000000000088',1204149033,0),('7-0-style0000000000059','QOhEl8bdecbSrml06V84iw','main_top.jpg','PBtmpl0000000000000088',1213386091,0),('o_pq_e4vRyhMOKFzs61eag','zTRhj1ZmjPc6b4ytLNIdLg','book-covers.jpg','PBtmpl0000000000000088',1215714957,0),('hBpisL-_URyZnh9clR5ohA','IYUoN4EWQWHZHQj-f5ex0g','no_photo.gif','PBtmpl0000000000000088',1227634417,0),('FOBV6KkifreXa4GmEAUU4A','69Zh__B-EI01IWjf9KBDrw','no_photo_sm.gif','PBtmpl0000000000000088',1227634447,0); +INSERT INTO `Folder` VALUES ('PBasset000000000000002','PBtmpl0000000000000078',1124395696,3600,0,'ASC'),('7-0-style0000000000001','PBtmpl0000000000000078',1147642492,3600,0,'ASC'),('7-0-style0000000000031','PBtmpl0000000000000078',1147642500,3600,0,'ASC'),('PBasset000000000000003','PBtmpl0000000000000078',1147642437,3600,0,'ASC'),('nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000078',1147642466,3600,0,'ASC'),('S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000078',1147642468,3600,0,'ASC'),('tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000078',1147642469,3600,0,'ASC'),('GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000078',1222803056,3600,0,'ASC'),('3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000078',1222803070,3600,0,'ASC'),('cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000078',1147642477,3600,0,'ASC'),('VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000078',1147642477,3600,0,'ASC'),('f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000078',1147642482,3600,0,'ASC'),('9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000078',1147642483,3600,0,'ASC'),('CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('tempspace0000000000000','PBtmpl0000000000000078',1185754574,3600,0,'ASC'),('kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000078',1197330678,3600,0,'ASC'),('Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000078',1213244777,3600,0,'ASC'),('-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000078',1209325764,3600,0,'ASC'),('4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000078',1208725439,3600,0,'ASC'),('aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000078',1213283425,3600,0,'ASC'),('TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000078',1211664878,3600,0,'ASC'),('6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000078',1210777115,3600,0,'ASC'),('gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000078',1212086102,3600,0,'ASC'),('6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000078',1209509389,3600,0,'ASC'),('C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000078',1212160830,3600,0,'ASC'),('aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000078',1213122695,3600,0,'ASC'),('gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000078',1213734379,3600,0,'ASC'),('jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000078',1216250666,3600,0,'ASC'),('1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000078',1222803099,3600,0,'ASC'),('zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000078',1222803114,3600,0,'ASC'),('tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000078',1222803200,3600,0,'ASC'),('GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000078',1222803205,3600,0,'ASC'),('tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000078',1222803213,3600,0,'ASC'),('vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000078',1222803217,3600,0,'ASC'),('hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000078',1222803234,3600,0,'ASC'),('eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000078',1222803238,3600,0,'ASC'),('5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000078',1222803244,3600,0,'ASC'),('rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000078',1222803249,3600,0,'ASC'),('V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000078',1222803253,3600,0,'ASC'),('nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000078',1222803258,3600,0,'ASC'),('y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000078',1222803264,3600,0,'ASC'),('vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000078',1222803302,3600,0,'ASC'),('lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000078',1222803309,3600,0,'ASC'),('huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000078',1222803313,3600,0,'ASC'),('9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000078',1222803338,3600,0,'ASC'),('yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000078',1222803342,3600,0,'ASC'),('pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000078',1222803347,3600,0,'ASC'),('71e17KeduiXgODLMlUxiow','PBtmpl0000000000000078',1222803352,3600,0,'ASC'),('xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000078',1222803378,3600,0,'ASC'),('0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000078',1222803383,3600,0,'ASC'),('taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000078',1222803387,3600,0,'ASC'),('K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000078',1222803391,3600,0,'ASC'),('fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000078',1222803395,3600,0,'ASC'),('oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000078',1222803399,3600,0,'ASC'),('9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000078',1222803405,3600,0,'ASC'),('_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000078',1222803409,3600,0,'ASC'),('Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000078',1222803478,3600,0,'ASC'),('NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000078',1222803638,3600,0,'ASC'),('AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000078',1222803665,3600,0,'ASC'),('F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000078',1222803673,3600,0,'ASC'),('Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000078',1222803760,3600,0,'ASC'),('BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000078',1222803871,3600,0,'ASC'),('X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000078',1222804045,3600,0,'ASC'),('UL-ItI4L1Z6-WSuhuXVvsQ','PBtmpl0000000000000078',1225139673,3600,0,'ASC'),('7-0-style0000000000049','PBtmpl0000000000000078',1224117144,3600,0,'ASC'),('QpmlAiYZz6VsKBM-_0wXaw','PBtmpl0000000000000078',1224616691,3600,0,'ASC'),('HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000078',1225404573,3600,0,'ASC'),('IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000078',1226011853,3600,0,'ASC'),('K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000078',1227074310,3600,0,'ASC'),('_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000078',1226643205,3600,0,'ASC'),('AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000078',1226659753,3600,0,'ASC'),('qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000078',1227074362,3600,0,'ASC'),('5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000078',1227540002,3600,0,'ASC'),('LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000078',1232673968,3600,0,'ASC'),('QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000078',1233173545,3600,0,'ASC'),('HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000078',1227634350,3600,0,'ASC'); +INSERT INTO `ImageAsset` VALUES ('7-0-style0000000000002',50,NULL,1147642492),('7-0-style0000000000004',50,NULL,1147642493),('7-0-style0000000000005',50,NULL,1147642493),('7-0-style0000000000006',50,NULL,1147642493),('7-0-style0000000000007',50,NULL,1147642493),('7-0-style0000000000008',50,NULL,1147642494),('7-0-style0000000000009',50,NULL,1147642494),('7-0-style0000000000010',50,NULL,1147642494),('7-0-style0000000000011',50,NULL,1147642495),('7-0-style0000000000012',50,NULL,1147642495),('7-0-style0000000000013',50,NULL,1147642495),('7-0-style0000000000014',50,NULL,1147642495),('7-0-style0000000000015',50,NULL,1147642496),('7-0-style0000000000016',50,NULL,1147642496),('7-0-style0000000000017',50,NULL,1147642496),('7-0-style0000000000018',50,NULL,1147642496),('7-0-style0000000000019',50,NULL,1147642497),('7-0-style0000000000020',50,NULL,1147642497),('7-0-style0000000000021',50,NULL,1147642497),('7-0-style0000000000022',50,NULL,1147642497),('7-0-style0000000000023',50,NULL,1147642498),('7-0-style0000000000024',50,NULL,1147642498),('7-0-style0000000000030',50,NULL,1147642499),('7-0-style0000000000032',50,NULL,1147642500),('7-0-style0000000000034',50,NULL,1147642500),('7-0-style0000000000035',50,NULL,1147642501),('7-0-style0000000000036',50,NULL,1147642501),('7-0-style0000000000037',50,NULL,1147642501),('7-0-style0000000000038',50,NULL,1147642501),('7-0-style0000000000039',50,NULL,1147642502),('7-0-style0000000000040',50,NULL,1147642502),('7-0-style0000000000041',50,NULL,1147642502),('7-0-style0000000000042',50,NULL,1147642502),('7-0-style0000000000043',50,NULL,1147642503),('7-0-style0000000000044',50,NULL,1147642503),('7-0-style0000000000045',50,NULL,1147642503),('7-0-style0000000000046',50,NULL,1147642504),('7-0-style0000000000048',50,NULL,1147642504),('7-0-style0000000000052',50,'style=\"border-style:none;\"',1147642505),('7-0-style0000000000053',50,'style=\"border-style:none;\"',1147642505),('7-0-style0000000000054',50,'style=\"border-style:none;\"',1147642506),('7-0-style0000000000055',50,'style=\"border-style:none;\"',1147642506),('7-0-style0000000000056',50,'style=\"border-style:none;\"',1147642506),('7-0-style0000000000057',50,'style=\"border-style:none;\"',1147642507),('7-0-style0000000000058',50,'style=\"border-style:none;\"',1147642507),('7-0-style0000000000060',50,'style=\"border-style:none;\"',1147642508),('7-0-style0000000000061',50,'style=\"border-style:none;\"',1147642508),('7-0-style0000000000062',50,'style=\"border-style:none;\"',1147642508),('7-0-style0000000000063',50,'style=\"border-style:none;\"',1147642508),('7-0-style0000000000064',50,'style=\"border-style:none;\"',1147642509),('7-0-style0000000000065',50,'style=\"border-style:none;\"',1147642509),('7-0-style0000000000066',50,'style=\"border-style:none;\"',1147642509),('7-0-style0000000000067',50,'style=\"border-style:none;\"',1147642509),('7-0-style0000000000068',50,'style=\"border-style:none;\"',1147642510),('7-0-style0000000000071',50,'style=\"border-style:none;\"',1147642511),('bANo8aiAPA7aY_oQZKxIWw',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1197330678),('fdd8tGExyVwHyrB8RBbKXg',50,'style=\"border-style:none;\" alt=\"next.gif\"',1197330839),('BpisgHl4ZDcSECJp6oib1w',50,'style=\"border-style:none;\" alt=\"play.gif\"',1197330840),('zshreRgPAXtnF0DtVbQ1Yg',50,'style=\"border-style:none;\" alt=\"previous.gif\"',1197330840),('2ci_v2d4x4uvyjTRlC49OA',50,'style=\"border-style:none;\" alt=\"moveDown.gif\"',1209499188),('O-EsSzKgAk1KolFT-x_KsA',50,'style=\"border-style:none;\" alt=\"moveUp.gif\"',1209499188),('POVcY79vIqAHR8OfGt36aw',50,'style=\"border-style:none;\" alt=\"pagination_button.jpg\"',1209499189),('hIB-z34r8Xl-vYVYCkKr-w',50,'style=\"border-style:none;\" alt=\"bar-btn-r.jpg\"',1209499189),('-mPUoFlYcjqjPUPRLAlxNQ',50,'style=\"border-style:none;\" alt=\"search-field-r.jpg\"',1209499189),('MDpUOR-N8KMyt1J7Hh_h4w',50,'style=\"border-style:none;\" alt=\"bar-btn.jpg\"',1209499189),('YfXKByTwDZVituMc4h13Dg',50,'style=\"border-style:none;\" alt=\"pagination_bg.jpg\"',1209499189),('esko_HSU0Gh-uJZ1h3xRmQ',50,'style=\"border-style:none;\" alt=\"search-field-l.jpg\"',1209499189),('oSqpGswzpBG_ErdfYwIO8A',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1209499189),('MXJklShZvLLB_DSnZQmXrQ',50,'style=\"border-style:none;\" alt=\"title_bg.jpg\"',1209499189),('BthxD5oJ0idmsyI3ioA2FA',50,'style=\"border-style:none;\" alt=\"bar-btn-l.jpg\"',1209499189),('aZ-1HYQamkRHYXvzAra8WQ',50,'style=\"border-style:none;\" alt=\"search-field.jpg\"',1209499189),('eRkb94OYcS5AdcrrerOP5Q',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1209499189),('TbnkjAJQEASORXIpYqDkcA',50,'style=\"border-style:none;\" alt=\"blank-image.jpg\"',1209499189),('er-3faBjY-hhlDcc5aKqdQ',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1209499189),('8bFsu2FJUqHRUiHcozcVFw',50,'style=\"border-style:none;\" alt=\"sub-btn-l.jpg\"',1209499189),('34Aayx5eA320D8VfhdfDBw',50,'style=\"border-style:none;\" alt=\"sub-btn-r.jpg\"',1209499189),('TlhKOVmWblZOsAdqmhEpeg',50,'style=\"border-style:none;\" alt=\"sub-btn.jpg\"',1209499189),('Nx0ypjO3cN6QdZUBUEE0lA',50,'style=\"border-style:none;\" alt=\"pic-title-bg.jpg\"',1209499189),('CmFZLN7iPS7XXvUEsxKPKA',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209499190),('v_XBgwwZqgW1D5s4y05qfg',50,'style=\"border-style:none;\" alt=\"addtl-info.gif\"',1209499190),('4TdAkKoQbSCvI7QWcW889A',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209499190),('SAgK6eDPCG1cgkJ59WapHQ',50,'style=\"border-style:none;\" alt=\"prev-btn.gif\"',1209499190),('XJYLuvGy9ubF7JNKyINtpA',50,'style=\"border-style:none;\" alt=\"play-btn.gif\"',1209499190),('RWj7hyv2SpZuXxwj1Wocug',50,'style=\"border-style:none;\" alt=\"next-btn.gif\"',1209499190),('aq8QElnlm3YufAoxRz9Pcg',50,'style=\"border-style:none;\" alt=\"data-bg.jpg\"',1209499190),('_bZJ9LA_KNekZiFPaP2SeQ',50,'style=\"border-style:none;\" alt=\"shelf-titles.jpg\"',1210777868),('hQ7z33_jOYkQ8WNX5xy9Sw',50,'style=\"border-style:none;\" alt=\"style-button.gif\"',1209509455),('vWW_DcHiYSrKZOkkIfEfcQ',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209509433),('_bPYzRA87NTAUIKlfrJMHg',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209509433),('nJjZHRwdDs5MAZYsAyioHw',50,'style=\"border-style:none;\" alt=\"title-bg.jpg\"',1209509433),('8hxfkrJPeFVRWF5piCNJ1A',50,'style=\"border-style:none;\" alt=\"field-bg.jpg\"',1209509433),('Osx7WN52iIKHZFT4vqUBHQ',50,'style=\"border-style:none;\" alt=\"search-btn.gif\"',1209509433),('oWff8fGzRdHPyq5VNREe9Q',50,'style=\"border-style:none;\" alt=\"top-bg.jpg\"',1209509433),('uqbkvb1b9443VvfkyRz95w',50,'style=\"border-style:none;\" alt=\"save-button.gif\"',1209509433),('8YiMkcz32xalkAn3WBLpag',50,'style=\"border-style:none;\" alt=\"go-btn.gif\"',1210181860),('2q5fxatSFLgIhXaUX-oSvg',50,'style=\"border-style:none;\" alt=\"bottom-left.jpg\"',1204149033),('_d5WTkKjnwct-_Dk7gZHvQ',50,'style=\"border-style:none;\" alt=\"bottom-right.jpg\"',1204149033),('Iz2mUR3jCPKyemwAea4b2g',50,'style=\"border-style:none;\" alt=\"input_bg.jpg\"',1204149033),('JU9bjsLRoWj7GVHs__prig',50,'style=\"border-style:none;\" alt=\"top-left.jpg\"',1204149033),('noOlnjQGexHg8c4bGVUo9g',50,'style=\"border-style:none;\" alt=\"top-right.jpg\"',1204149033),('7-0-style0000000000059',50,'alt=\"main_top.jpg\"',1213386091),('o_pq_e4vRyhMOKFzs61eag',50,'style=\"border-style:none;\" alt=\"book-covers.jpg\"',1215714957),('hBpisL-_URyZnh9clR5ohA',50,'style=\"border-style:none;\" alt=\"no_photo.gif\"',1227634417),('FOBV6KkifreXa4GmEAUU4A',50,'style=\"border-style:none;\" alt=\"no_photo_sm.gif\"',1227634447); INSERT INTO `Layout` VALUES ('68sKwDgf9cGH58-NZcU4lg','PBtmpl0000000000000054','TKzUMeIxRLrZ3NAEez6CXQ,sWVXMZGibxHe2Ekj1DCldA',NULL,1124395696,'asc'),('_iHetEvMQUOoxS-T2CM0sQ','PBtmpl0000000000000054','x_WjMvFmilhX-jvZuIpinw',NULL,1124395696,'asc'),('8Bb8gu-me2mhL3ljFyiWLg','PBtmpl0000000000000094','6QuS-0rosuZTdTv11fobig.FOvmwGC0GtZo5VTxJIL3OA,ix1p0AbwKAz8QWB-T-HHfg,iCYOjohB9SKvAPr6bXElKA.4Yfz9hqBqM8OYMGuQK8oLw,Wl8WZ43g2rK5AYr9o4zY7w,LBuiKzg2mWwmOPS9AgV3bg,jTNggl7AoVSUc_ZzrvuCmw.',NULL,1124395696,'asc'),('2TqQc4OISddWCZmRY1_m8A','PBtmpl0000000000000054','fK-HMSboA3uu0c1KYkYspA',NULL,1124395696,'asc'),('Swf6L8poXKc7hUaNPkBevw','PBtmpl0000000000000054','Szs5eev3OMssmnsyLRZmWA',NULL,1124395696,'asc'),('x3OFY6OJh_qsXkZfPwug4A','PBtmpl0000000000000054','pJd5TLAjfWMVXD6sCRLwUg',NULL,1124395696,'asc'),('mTOiwwk3q4k9g5-XykXhPA','PBtmpl0000000000000054','diZvW4bSgZWwyyGP3qXi1g,o_pq_e4vRyhMOKFzs61eag,j_1qEqM6iLfQLiR6VKy0aA',NULL,1218149728,'asc'); -INSERT INTO `Navigation` VALUES ('pJd5TLAjfWMVXD6sCRLwUg','descendants','specificUrl','root',55,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000001','self\nancestors','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000093',55,1124395696,'text/html',0),('PBnav00000000000000014','pedigree','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000015','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000016','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000017','self\nsiblings','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000018','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000019','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000020','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000021','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000002','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000006','descendants','specificUrl','home',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000007','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000008','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000009','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000124',55,1124395696,'text/html',0),('PBnav00000000000000010',NULL,'relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000011','self\ndescendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000130',55,1124395696,'text/html',0),('PBnav00000000000000012','descendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000134',55,1124395696,'text/html',0),('PBnav00000000000000013','self\ndescendants','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000136',55,1124395696,'text/html',0),('7.0-style0000000000025','descendants','relativeToRoot','1',1,0,0,0,'stevenav00000000000001',55,1147642498,'text/html',0),('7.0-style0000000000026','descendants','relativeToRoot','2',1,0,0,0,'PBnav000000style01lvl2',55,1147642499,'text/html',0),('7.0-style0000000000070','descendants','relativeToRoot','1',55,0,0,0,'stevecoolmenu000000001',55,1147642510,'text/html',0),('jVKLVakT_iA2010_oEuAwg','self\ndescendants','specificUrl','department',1,0,0,0,'stevecoolmenu000000001',55,1224116526,'text/html',0),('Vch1Ww7G_JpBhOhXX07RDg','ancestors','relativeToCurrentUrl','0',55,0,0,0,'alraubvBu-YJJ614jAHD5w',1,1232664082,'text/html',0); +INSERT INTO `Navigation` VALUES ('pJd5TLAjfWMVXD6sCRLwUg','descendants','specificUrl','root',55,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000001','self\nancestors','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000093',55,1124395696,'text/html',0),('PBnav00000000000000014','pedigree','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000015','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000016','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000017','self\nsiblings','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000018','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000019','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000020','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000021','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000002','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000006','descendants','specificUrl','home',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000007','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000008','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000009','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000124',55,1124395696,'text/html',0),('PBnav00000000000000010',NULL,'relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000011','self\ndescendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000130',55,1124395696,'text/html',0),('PBnav00000000000000012','descendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000134',55,1124395696,'text/html',0),('PBnav00000000000000013','self\ndescendants','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000136',55,1124395696,'text/html',0),('7-0-style0000000000025','descendants','relativeToRoot','1',1,0,0,0,'stevenav00000000000001',55,1147642498,'text/html',0),('7-0-style0000000000026','descendants','relativeToRoot','2',1,0,0,0,'PBnav000000style01lvl2',55,1147642499,'text/html',0),('7-0-style0000000000070','descendants','relativeToRoot','1',55,0,0,0,'stevecoolmenu000000001',55,1147642510,'text/html',0),('jVKLVakT_iA2010_oEuAwg','self\ndescendants','specificUrl','department',1,0,0,0,'stevecoolmenu000000001',55,1224116526,'text/html',0),('Vch1Ww7G_JpBhOhXX07RDg','ancestors','relativeToCurrentUrl','0',55,0,1,0,'alraubvBu-YJJ614jAHD5w',1,1235705952,'text/html',0); INSERT INTO `RSSCapable` VALUES ('pbproto000000000000002',1163019036,0,'PBtmpl0000000000000142',NULL); INSERT INTO `RichEdit` VALUES ('PBrichedit000000000002',0,0,0,0,0,0,0,0,0,0,'ltr','bottom',NULL,'a[name|href|target|title],strong/b[class],em/i[class],strike[class],u[class],p[dir|class|align],ol,ul,li,br,img[class|src|border=0|alt|title|hspace|vspace|width|height|align],sub,sup,blockquote[dir|style],table[border=0|cellspacing|cellpadding|width|height|class|align],tr[class|rowspan|width|height|align|valign],td[dir|class|colspan|rowspan|width|height|align|valign],div[dir|class|align],span[class|align],pre[class|align],address[class|align],h1[dir|class|align],h2[dir|class|align],h3[dir|class|align],h4[dir|class|align],h5[dir|class|align],h6[dir|class|align],hr','bold\nitalic\nbullist\nnumlist\nlink\nunlink\nemotions',NULL,NULL,0,1124395696,0,0,NULL),('PBrichedit000000000001',0,0,0,0,600,500,0,0,0,0,'ltr','bottom',NULL,'*[*]','bold\nitalic\njustifyleft\njustifyright\njustifycenter\njustifyfull\nindent\noutdent\nsub\nsup\nformatselect\nremoveformat','bullist\nnumlist\nlink\nwgpagetree\nanchor\nunlink\nadvhr\nimage\nwginsertimage\ncharmap\nwgmacro','tablecontrols\nvisualaid\npreview\ncode\ncleanup\nreplace',1,1207240829,0,0,NULL); INSERT INTO `SyndicatedContent` VALUES ('http://www.plainblack.com/news/news?func=viewRSS',3,'fK-HMSboA3uu0c1KYkYspA','GNvjCFQWjY2AF2uf0aCM8Q',1124395696,'',3600,0); @@ -2590,10 +2504,10 @@ INSERT INTO `Workflow` VALUES ('pbworkflow000000000001','Daily Maintenance Tasks INSERT INTO `WorkflowActivity` VALUES ('pbwfactivity0000000001','pbworkflow000000000001','Delete temp files older than 24 hours',NULL,1,'WebGUI::Workflow::Activity::CleanTempStorage'),('pbwfactivity0000000002','pbworkflow000000000001','Prune file cache larger than 100MB',NULL,3,'WebGUI::Workflow::Activity::CleanFileCache'),('pbwfactivity0000000022','pbworkflow000000000001','Prune database cache larger than 100MB',NULL,4,'WebGUI::Workflow::Activity::CleanDatabaseCache'),('pbwfactivity0000000005','pbworkflow000000000001','Archive old CS threads',NULL,5,'WebGUI::Workflow::Activity::ArchiveOldThreads'),('vtagactivity0000000002','pbworkflow000000000003','Wait Until','This workflow waits until the value chosen in the \"Wait Until\" field has passed and then continues',1,'WebGUI::Workflow::Activity::WaitUntil'),('pbwfactivity0000000007','pbworkflow000000000001','deal with user groupings that have expired',NULL,6,'WebGUI::Workflow::Activity::ExpireGroupings'),('pbwfactivity0000000011','pbworkflow000000000001','Expire old subscription codes',NULL,7,'WebGUI::Workflow::Activity::ExpireSubscriptionCodes'),('pbwfactivity0000000014','pbworkflow000000000001','Summarize Passive Profiling Data',NULL,8,'WebGUI::Workflow::Activity::SummarizePassiveProfileLog'),('pbwfactivity0000000015','pbworkflow000000000001','Sync User Profiles With LDAP',NULL,9,'WebGUI::Workflow::Activity::SyncProfilesToLdap'),('pbwfactivity0000000003','pbworkflow000000000002','Delete login entries older than 90 days',NULL,1,'WebGUI::Workflow::Activity::CleanLoginHistory'),('pbwfactivity0000000004','pbworkflow000000000002','Move clipboard items older than 30 days to trash',NULL,2,'WebGUI::Workflow::Activity::TrashClipboard'),('pbwfactivity0000000008','pbworkflow000000000002','delete asset revisions older than a year from the database',NULL,3,'WebGUI::Workflow::Activity::PurgeOldAssetRevisions'),('pbwfactivity0000000010','pbworkflow000000000002','delete assets from trash that have been sitting around for 30 days',NULL,4,'WebGUI::Workflow::Activity::PurgeOldTrash'),('pbwfactivity0000000009','pbworkflow000000000004','delete expired sessions',NULL,1,'WebGUI::Workflow::Activity::DeleteExpiredSessions'),('pbwfactivity0000000012','pbworkflow000000000004','Get syndicated content',NULL,2,'WebGUI::Workflow::Activity::GetSyndicatedContent'),('vtagactivity0000000001','pbworkflow000000000005','Wait Until','This workflow waits until the value chosen in the \"Wait Until\" field has passed and then continues',2,'WebGUI::Workflow::Activity::WaitUntil'),('pbwfactivity0000000017','pbworkflow000000000005','Get Approval from Content Managers',NULL,1,'WebGUI::Workflow::Activity::RequestApprovalForVersionTag'),('pbwfactivity0000000019','pbworkflow000000000006','Unlock Version Tag',NULL,1,'WebGUI::Workflow::Activity::UnlockVersionTag'),('pbwfactivity0000000020','pbworkflow000000000006','Notify Committer of Denial',NULL,2,'WebGUI::Workflow::Activity::NotifyAboutVersionTag'),('pbwfactivity0000000021','pbworkflow000000000007','Send Queued Messages',NULL,1,'WebGUI::Workflow::Activity::SendQueuedMailMessages'),('csactivity000000000001','csworkflow000000000001','Get the mail',NULL,1,'WebGUI::Workflow::Activity::GetCsMail'),('Dl_3P-4y1OoOTf3cRwQ7EA','AuthLDAPworkflow000001','Synchronize Profile To LDAP',NULL,1,'WebGUI::Workflow::Activity::SyncProfileToLdap'),('DPWwfa2006103000000002','DPWwf20061030000000002','Delete Exported Files',NULL,1,'WebGUI::Workflow::Activity::DeleteExportedFiles'),('SWHs3shndnc8LuLpmLeeNw','pbworkflow000000000004','Update Calendar Feeds','This activity imports calendar events from calendar feeds',3,'WebGUI::Workflow::Activity::CalendarUpdateFeeds'),('pbwfactivity0000000006','pbworkflow000000000003','Commit Assets',NULL,2,'WebGUI::Workflow::Activity::CommitVersionTag'),('newslettersendactivity','pbworkflow000000000002','Send Newsletters For Newsletter Assets',NULL,5,'WebGUI::Workflow::Activity::SendNewsletters'),('unansweredfriends_____','pbworkflow000000000001','Deny Friend Requests Older Than A Month',NULL,10,'WebGUI::Workflow::Activity::DenyUnansweredFriends'),('pbwfactivity0000000016','pbworkflow000000000005','Commit Assets',NULL,3,'WebGUI::Workflow::Activity::CommitVersionTag'),('pbwfactivity0000000018','pbworkflow000000000005','Notify Committer of Approval',NULL,4,'WebGUI::Workflow::Activity::NotifyAboutVersionTag'); INSERT INTO `WorkflowActivityData` VALUES ('pbwfactivity0000000001','storageTimeout','86400'),('pbwfactivity0000000002','sizeLimit','1000000000'),('pbwfactivity0000000022','sizeLimit','1000000000'),('vtagactivity0000000002','type','startTime'),('pbwfactivity0000000003','ageToDelete','7776000'),('pbwfactivity0000000004','trashAfter','2592000'),('pbwfactivity0000000008','purgeAfter','31536000'),('pbwfactivity0000000010','purgeAfter','2592000'),('vtagactivity0000000001','type','startTime'),('pbwfactivity0000000017','message','A new version tag awaits your approval.'),('pbwfactivity0000000017','doOnDeny','pbworkflow000000000006'),('pbwfactivity0000000017','groupToApprove','4'),('pbwfactivity0000000020','message','Your version tag was denied. Please take corrective actions and recommit your changes.'),('pbwfactivity0000000020','who','committer'),('unansweredfriends_____','timeout','2592000'),('pbwfactivity0000000006','trashAfter','2592000'),('pbwfactivity0000000018','who','committer'),('pbwfactivity0000000018','message','Your version tag was approved.'); INSERT INTO `WorkflowSchedule` VALUES ('pbcron0000000000000001','Daily Maintenance',1,0,'30','23','*','*','*','pbworkflow000000000001',NULL,NULL,3,NULL),('pbcron0000000000000002','Weekly Maintenance',1,0,'30','1','*','*','0','pbworkflow000000000002',NULL,NULL,3,NULL),('pbcron0000000000000003','Hourly Maintenance',1,0,'15','*','*','*','*','pbworkflow000000000004',NULL,NULL,3,NULL),('pbcron0000000000000004','Send Queued Email Messages Every 5 Minutes',1,0,'*/5','*','*','*','*','pbworkflow000000000007',NULL,NULL,3,NULL),('NpRVTSR-NX2sD52LUc520A','Request Tracker Mail',0,0,'*/5','*','*','*','*','csworkflow000000000001','WebGUI::Asset::Wobject::Collaboration','new',2,'{\n \"parameters\" : \"pbproto000000000000002\"\n}'); -INSERT INTO `asset` VALUES ('PBasset000000000000001','infinity','000001','published','WebGUI::Asset',1124395696,'3','997995720','3',NULL,1,NULL),('PBasset000000000000002','PBasset000000000000001','000001000001','published','WebGUI::Asset::Wobject::Folder',1124395696,'3','997995720','3',NULL,1,NULL),('68sKwDgf9cGH58-NZcU4lg','PBasset000000000000001','000001000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('iCYOjohB9SKvAPr6bXElKA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000004','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('ix1p0AbwKAz8QWB-T-HHfg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000003','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('_iHetEvMQUOoxS-T2CM0sQ','68sKwDgf9cGH58-NZcU4lg','000001000002000001','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('FOvmwGC0GtZo5VTxJIL3OA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000002','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('8Bb8gu-me2mhL3ljFyiWLg','68sKwDgf9cGH58-NZcU4lg','000001000002000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('m4YJFaqzultnB_sj1Uq0aw','68sKwDgf9cGH58-NZcU4lg','000001000002000008','published','WebGUI::Asset::File',1147642514,'3','997995720','3',NULL,0,NULL),('IWFxZDyGhQ3-SLZhELa3qw','68sKwDgf9cGH58-NZcU4lg','000001000002000009','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('bX5rYxb6tZ9docY6sUhBlw','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000001','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('Vzv1pWpg_w6R_o-b0rM2qQ','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000002','published','WebGUI::Asset::File',1147642515,'3','997995720','3',NULL,0,NULL),('NK8bqlwVRILJknqeCDPBHg','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000003','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('6QuS-0rosuZTdTv11fobig','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000001','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('2TqQc4OISddWCZmRY1_m8A','68sKwDgf9cGH58-NZcU4lg','000001000002000003','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('fK-HMSboA3uu0c1KYkYspA','2TqQc4OISddWCZmRY1_m8A','000001000002000003000001','published','WebGUI::Asset::Wobject::SyndicatedContent',1124395696,'3','997995720','3',NULL,0,NULL),('Swf6L8poXKc7hUaNPkBevw','68sKwDgf9cGH58-NZcU4lg','000001000002000004','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('Szs5eev3OMssmnsyLRZmWA','Swf6L8poXKc7hUaNPkBevw','000001000002000004000001','published','WebGUI::Asset::Wobject::DataForm',1124395696,'3','997995720','3',NULL,0,NULL),('x3OFY6OJh_qsXkZfPwug4A','68sKwDgf9cGH58-NZcU4lg','000001000002000006','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('pJd5TLAjfWMVXD6sCRLwUg','x3OFY6OJh_qsXkZfPwug4A','000001000002000006000001','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000003','7.0-style0000000000001','000001000001000045000002','published','WebGUI::Asset::Snippet',1147642492,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000001','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000009','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000014','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000010','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000015','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000011','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000016','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000012','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000017','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000013','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000018','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000014','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000019','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000015','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000020','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000016','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000021','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000017','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000002','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000018','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000006','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000019','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000007','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000020','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000008','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000021','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000009','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000022','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000010','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000023','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000011','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000024','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000012','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000025','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000013','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000026','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('Wl8WZ43g2rK5AYr9o4zY7w','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000006','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('4Yfz9hqBqM8OYMGuQK8oLw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000005','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000005','7.0-style0000000000001','000001000001000045000004','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000006','7.0-style0000000000001','000001000001000045000005','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000103','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000084','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000002','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000115','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000066','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000080','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000097','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000112','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000121','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000067','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000026','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000128','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000079','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000009','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000083','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000010','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000082','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000011','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000056','TYo2Bwl7aafzTtdHlS-arQ','000001000001000025000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000135','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000131','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000054','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000024','tXwf1zaOXTvsqPn6yu-GSw','000001000001000009000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000088','tPagC0AQErZXjLFZQ6OI1g','000001000001000013000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000078','GYaFxnMu9UsEG8oanwB6TA','000001000001000010000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000125','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000118','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000109','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000094','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000133','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000012','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000065','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000055','VZK3CRgiMb8r4dBjUmCTgQ','000001000001000024000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000020','-K8Hj45mbelljN9-0CXZxg','000001000001000007000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000085','-K8Hj45mbelljN9-0CXZxg','000001000001000007000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000104','-K8Hj45mbelljN9-0CXZxg','000001000001000007000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000021','-K8Hj45mbelljN9-0CXZxg','000001000001000007000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000033','N13SD1Fpqk00UgBt1Z8ivQ','000001000001000012000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000047','cj2y4papTVGZRFdwTI-_fw','000001000001000019000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000029','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000013','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000032','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000014','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000027','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000015','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000031','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000016','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('jTNggl7AoVSUc_ZzrvuCmw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000008','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('LBuiKzg2mWwmOPS9AgV3bg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000007','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('GNvjCFQWjY2AF2uf0aCM8Q','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000068','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000017','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000099','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000018','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000114','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000019','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000092','V3l5S5TtI7wMm1WpIMhvOA','000001000001000017000009000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000044','V3l5S5TtI7wMm1WpIMhvOA','000001000001000017000009000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000059','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000036000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('IZkrow_zwvbf4FCH-taVTQ','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000002','published','WebGUI::Asset::Wobject::Folder',1226011853,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000207','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000007','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('QHn6T9rU7KsnS3Y70KCNTg','PBasset000000000000002','000001000001000053','published','WebGUI::Asset::Wobject::Folder',1227080251,'3','997995720','3',NULL,0,NULL),('HPDOcsj4gBme8D4svHodBw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000001','published','WebGUI::Asset::Wobject::Folder',1225404573,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000002','TCtybxdqmdwdvRn555zpCQ','000001000001000030000002','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000063','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000062','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000061','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000064','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000116','-K8Hj45mbelljN9-0CXZxg','000001000001000007000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000007','7.0-style0000000000001','000001000001000045000006','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000093','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000048','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000108','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000117','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000124','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000130','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000134','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000077','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000020','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000098','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000021','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000122','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000022','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000136','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000013','9M-lrlPQWeeNWfvnDnK_Xg','000001000001000003000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000010','K0q_N885Httqev1VCqUWxg','000001000001000003000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000011','fq1ZkYhH24R5tb96kuT10Q','000001000001000003000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000014','_gBYAdTcbkiyamnqi2Xskg','000001000001000003000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000012','oHk7fAFhEEkB7dHzi0QOQA','000001000001000003000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000006','taX2UYkFF21ALpFZY2rhMw','000001000001000003000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000004','xSmREZO3GNzK3M5PaueOOQ','000001000001000003000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000005','0bx-xoL8TSXXubFuqKAoVQ','000001000001000003000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000057','Ik9HHky10DIyFTKehUD1dw','000001000001000028000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000060','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('pbrobot000000000000001','PBasset000000000000002','000001000001000031','published','WebGUI::Asset::Snippet',1147642511,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000111','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000137','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000132','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000123','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000129','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000081','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000023','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000101','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000024','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000065','7.0-style0000000000049','000001000001000047000016','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('OhdaFLE7sXOzo_SIP2ZUgA','68sKwDgf9cGH58-NZcU4lg','000001000002000007','published','WebGUI::Asset::Wobject::Article',1147642513,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000113','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000025','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000037','GdkQpvjRtJqtzOUbwIIQRA','000001000001000017000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000038','tnc5iYyynX2hfdEs9D3P8w','000001000001000017000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000036','tBL7BWiQRZFed2Y-Zjo9tQ','000001000001000017000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000039','vgXdBcFTqU7h4wBG1ewdBw','000001000001000017000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000091','vgXdBcFTqU7h4wBG1ewdBw','000001000001000017000004000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000107','vgXdBcFTqU7h4wBG1ewdBw','000001000001000017000004000003','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000040','hcFlqnXlsmC1ujN6Id0F0A','000001000001000017000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000041','eRJR52fvlaxfetv3DQkQYw','000001000001000017000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000042','5HIDHq5lAWHV5gpYGS0zLg','000001000001000017000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000045','y8XkRdxIperLKkJ3bL5sSQ','000001000001000017000011000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000043','rYEFwXXo0tkGhQTcbDibvg','000001000001000017000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('7.0-style0000000000064','7.0-style0000000000049','000001000001000047000015','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000001','TCtybxdqmdwdvRn555zpCQ','000001000001000030000001','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000053','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000017','published','WebGUI::Asset::Template',1124395696,'3','1222802960','3',NULL,0,NULL),('PBtmpl0000000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000001000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000140','Da6KWn805L4B5e4HFgQRQA','000001000001000035000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000141','-K8Hj45mbelljN9-0CXZxg','000001000001000007000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000066','7.0-style0000000000049','000001000001000047000017','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000062','7.0-style0000000000049','000001000001000047000013','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000060','7.0-style0000000000049','000001000001000047000011','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000061','7.0-style0000000000049','000001000001000047000012','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000057','7.0-style0000000000049','000001000001000047000008','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000058','7.0-style0000000000049','000001000001000047000009','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000059','7.0-style0000000000049','000001000001000047000010','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000056','7.0-style0000000000049','000001000001000047000007','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000052','7.0-style0000000000049','000001000001000047000003','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000053','7.0-style0000000000049','000001000001000047000004','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000054','7.0-style0000000000049','000001000001000047000005','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000055','7.0-style0000000000049','000001000001000047000006','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('stevecoolmenu000000001','7.0-style0000000000049','000001000001000047000001','published','WebGUI::Asset::Template',1147642505,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000051','7.0-style0000000000049','000001000001000047000002','published','WebGUI::Asset::Snippet',1147642505,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000049','PBasset000000000000002','000001000001000047','published','WebGUI::Asset::Wobject::Folder',1147642504,'3','997995720','3',NULL,0,NULL),('stevestyle000000000002','7.0-style0000000000031','000001000001000046000016','published','WebGUI::Asset::Template',1147642504,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000048','7.0-style0000000000031','000001000001000046000017','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000046','7.0-style0000000000031','000001000001000046000015','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000044','7.0-style0000000000031','000001000001000046000013','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000045','7.0-style0000000000031','000001000001000046000014','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000043','7.0-style0000000000031','000001000001000046000012','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000041','7.0-style0000000000031','000001000001000046000010','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000042','7.0-style0000000000031','000001000001000046000011','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000038','7.0-style0000000000031','000001000001000046000007','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000039','7.0-style0000000000031','000001000001000046000008','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000040','7.0-style0000000000031','000001000001000046000009','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000036','7.0-style0000000000031','000001000001000046000005','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000037','7.0-style0000000000031','000001000001000046000006','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000034','7.0-style0000000000031','000001000001000046000003','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000035','7.0-style0000000000031','000001000001000046000004','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000032','7.0-style0000000000031','000001000001000046000001','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000033','7.0-style0000000000031','000001000001000046000002','published','WebGUI::Asset::Snippet',1147642500,'3','997995720','3',NULL,0,NULL),('PBnav000000style01lvl2','7.0-style0000000000001','000001000001000045000028','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000030','7.0-style0000000000001','000001000001000045000029','published','WebGUI::Asset::File::Image',1147642499,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000031','PBasset000000000000002','000001000001000046','published','WebGUI::Asset::Wobject::Folder',1147642500,'3','997995720','3',NULL,0,NULL),('stevenav00000000000001','7.0-style0000000000001','000001000001000045000027','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000025','7.0-style0000000000001','000001000001000045000024','published','WebGUI::Asset::Wobject::Navigation',1147642498,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000026','7.0-style0000000000001','000001000001000045000025','published','WebGUI::Asset::Wobject::Navigation',1147642499,'3','997995720','3',NULL,0,NULL),('stevestyle000000000001','7.0-style0000000000001','000001000001000045000026','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000023','7.0-style0000000000001','000001000001000045000022','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000024','7.0-style0000000000001','000001000001000045000023','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000022','7.0-style0000000000001','000001000001000045000021','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000021','7.0-style0000000000001','000001000001000045000020','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000018','7.0-style0000000000001','000001000001000045000017','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000019','7.0-style0000000000001','000001000001000045000018','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000020','7.0-style0000000000001','000001000001000045000019','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000017','7.0-style0000000000001','000001000001000045000016','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000016','7.0-style0000000000001','000001000001000045000015','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000015','7.0-style0000000000001','000001000001000045000014','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000014','7.0-style0000000000001','000001000001000045000013','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000012','7.0-style0000000000001','000001000001000045000011','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000013','7.0-style0000000000001','000001000001000045000012','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000010','7.0-style0000000000001','000001000001000045000009','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000011','7.0-style0000000000001','000001000001000045000010','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000009','7.0-style0000000000001','000001000001000045000008','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000008','7.0-style0000000000001','000001000001000045000007','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000067','7.0-style0000000000049','000001000001000047000018','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBtmplHelp000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000001000002','published','WebGUI::Asset::Template',1124395706,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000001','PBasset000000000000002','000001000001000045','published','WebGUI::Asset::Wobject::Folder',1147642492,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000001','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000004','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000002','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000005','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000003','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000006','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000004','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000007','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('DPUROtmpl0000000000001','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000003','trash','WebGUI::Asset::Template',1124395707,'3','1226457084','3',NULL,0,NULL),('7.0-style0000000000063','7.0-style0000000000049','000001000001000047000014','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000142','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000026','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('stevestyle000000000003','7.0-style0000000000049','000001000001000047000020','published','WebGUI::Asset::Template',1147642510,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000002','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000001','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000001','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000002','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000003','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000003','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000004','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000004','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000005','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000004','7.0-style0000000000001','000001000001000045000003','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000002','3uuBf8cYuj1sew2OJXl9tg','000001000001000015000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000001','3uuBf8cYuj1sew2OJXl9tg','000001000001000015000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('PBtmplBlankStyle000001','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('DashboardViewTmpl00001','S1A9iAwKcQQ6P20uTqw-Ew','000001000001000006000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('WeatherDataTmpl0000001','9wKWdum0_8z-OhhquWLtSQ','000001000001000044000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000002','Efe2W0UgrSRDltNJ87jlfg','000001000001000037000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000001','Efe2W0UgrSRDltNJ87jlfg','000001000001000037000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('MultiSearchTmpl0000001','bBzO4CWjqU_ile3gf5Iypw','000001000001000021000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000068','7.0-style0000000000049','000001000001000047000019','published','WebGUI::Asset::File::Image',1147642510,'3','997995720','3',NULL,0,NULL),('ZipArchiveTMPL00000001','CSN-ZON7Uwv8kxf3F1fh5Q','000001000001000049000001','published','WebGUI::Asset::Template',1133743240,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000002','7.0-style0000000000001','000001000001000045000001','published','WebGUI::Asset::File::Image',1147642492,'3','997995720','3',NULL,0,NULL),('WVtmpl0000000000000001','nqNbSUAhk9Vd1zda2SCz9A','000001000001000017000010000001','published','WebGUI::Asset::Template',1133743240,'3','1222803175','3',NULL,0,NULL),('2CS-BErrjMmESOtGT90qOg','HPDOcsj4gBme8D4svHodBw','000001000001000053000001000003','published','WebGUI::Asset::Template',1227070888,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000208','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000027','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000209','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000028','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000210','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000029','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('ProjectManagerTMPL0004','yD1SMHelczihzjEmx6eXBA','000001000001000027000002000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0003','pV7GnZdpjR3XpZaSINIoeg','000001000001000027000003000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0002','71e17KeduiXgODLMlUxiow','000001000001000027000004000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0001','9A-mg2gwWmaYi9o_1C7ArQ','000001000001000027000001000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('TimeTrackingTMPL000002','vTymIDYL2YqEh6PV50F7ew','000001000001000042000001000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000003','lo1ac3BsoJx3ijGQ3gR-bQ','000001000001000042000002000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000001','huASapWvFDzqwOSbcN-JFQ','000001000001000042000003000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('PBtmpl0000000000000200','f_tn9FfoSfKWX43F83v_3w','000001000001000032000001','published','WebGUI::Asset::Template',1147642427,'3','997995720','3',NULL,0,NULL),('PBasset000000000000003','PBasset000000000000001','000001000003','published','WebGUI::Asset::Wobject::Folder',1147642437,'3','997995720','3',NULL,1,NULL),('pbproto000000000000002','PBasset000000000000002','000001000001000029','published','WebGUI::Asset::Wobject::Collaboration',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000220','tXwf1zaOXTvsqPn6yu-GSw','000001000001000009000002','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000221','tXwf1zaOXTvsqPn6yu-GSw','000001000001000009000003','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('nbSrhXZQuxIjhWFaFPSuVA','PBasset000000000000002','000001000001000001','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('TvOZs8U1kRXLtwtmyW75pg','PBasset000000000000002','000001000001000002','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('xSmREZO3GNzK3M5PaueOOQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000001','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('0bx-xoL8TSXXubFuqKAoVQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000002','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('taX2UYkFF21ALpFZY2rhMw','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000003','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('K0q_N885Httqev1VCqUWxg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000004','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('fq1ZkYhH24R5tb96kuT10Q','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000005','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('oHk7fAFhEEkB7dHzi0QOQA','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000006','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('9M-lrlPQWeeNWfvnDnK_Xg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000007','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('_gBYAdTcbkiyamnqi2Xskg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000008','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('GNOAsX98vCsl0JRwfwL-gg','PBasset000000000000002','000001000001000005','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','997995720','3',NULL,0,NULL),('S1A9iAwKcQQ6P20uTqw-Ew','PBasset000000000000002','000001000001000006','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('-K8Hj45mbelljN9-0CXZxg','PBasset000000000000002','000001000001000007','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('tXwf1zaOXTvsqPn6yu-GSw','PBasset000000000000002','000001000001000009','published','WebGUI::Asset::Wobject::Folder',1147642469,'3','997995720','3',NULL,0,NULL),('GYaFxnMu9UsEG8oanwB6TA','PBasset000000000000002','000001000001000010','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('N13SD1Fpqk00UgBt1Z8ivQ','PBasset000000000000002','000001000001000012','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('tPagC0AQErZXjLFZQ6OI1g','PBasset000000000000002','000001000001000013','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('VXSsbsfcfht1904EWkb1sw','PBasset000000000000002','000001000001000014','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('default_post_received1','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000030','published','WebGUI::Asset::Template',1222708029,'3','1222803001','3',NULL,0,NULL),('3uuBf8cYuj1sew2OJXl9tg','PBasset000000000000002','000001000001000015','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('aNNC62qLAS6TB-0_MCYjsw','PBasset000000000000002','000001000001000016','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','997995720','3',NULL,0,NULL),('tBL7BWiQRZFed2Y-Zjo9tQ','zyWi26q9na-iiZqL4yedog','000001000001000017000001','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('GdkQpvjRtJqtzOUbwIIQRA','zyWi26q9na-iiZqL4yedog','000001000001000017000002','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('tnc5iYyynX2hfdEs9D3P8w','zyWi26q9na-iiZqL4yedog','000001000001000017000003','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('vgXdBcFTqU7h4wBG1ewdBw','zyWi26q9na-iiZqL4yedog','000001000001000017000004','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('hcFlqnXlsmC1ujN6Id0F0A','zyWi26q9na-iiZqL4yedog','000001000001000017000005','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('eRJR52fvlaxfetv3DQkQYw','zyWi26q9na-iiZqL4yedog','000001000001000017000006','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('5HIDHq5lAWHV5gpYGS0zLg','zyWi26q9na-iiZqL4yedog','000001000001000017000007','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('rYEFwXXo0tkGhQTcbDibvg','zyWi26q9na-iiZqL4yedog','000001000001000017000008','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('V3l5S5TtI7wMm1WpIMhvOA','zyWi26q9na-iiZqL4yedog','000001000001000017000009','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('nqNbSUAhk9Vd1zda2SCz9A','zyWi26q9na-iiZqL4yedog','000001000001000017000010','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('y8XkRdxIperLKkJ3bL5sSQ','zyWi26q9na-iiZqL4yedog','000001000001000017000011','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('LdiozcIUciWuvt3Z-na5Ww','PBasset000000000000002','000001000001000018','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','997995720','3',NULL,0,NULL),('cj2y4papTVGZRFdwTI-_fw','PBasset000000000000002','000001000001000019','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('bBzO4CWjqU_ile3gf5Iypw','PBasset000000000000002','000001000001000021','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('BFfNj5wA9bDw8H3cnr8pTw','PBasset000000000000002','000001000001000022','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('AgyFhx3eXlfZXNp2MkrsiQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000026000001','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803652','3',NULL,0,NULL),('F7MAQ-cpuvQ1KuC7J4P5zQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000026000002','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803653','3',NULL,0,NULL),('jEz8iTGNWEt2I05IhVV19Q','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000016','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222802937','3',NULL,0,NULL),('VZK3CRgiMb8r4dBjUmCTgQ','PBasset000000000000002','000001000001000024','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','997995720','3',NULL,0,NULL),('TYo2Bwl7aafzTtdHlS-arQ','PBasset000000000000002','000001000001000025','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','997995720','3',NULL,0,NULL),('9A-mg2gwWmaYi9o_1C7ArQ','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000001','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('yD1SMHelczihzjEmx6eXBA','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000002','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('pV7GnZdpjR3XpZaSINIoeg','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000003','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('71e17KeduiXgODLMlUxiow','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000004','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','1222803147','3',NULL,0,NULL),('Ik9HHky10DIyFTKehUD1dw','PBasset000000000000002','000001000001000028','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('f_tn9FfoSfKWX43F83v_3w','PBasset000000000000002','000001000001000032','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('Da6KWn805L4B5e4HFgQRQA','PBasset000000000000002','000001000001000035','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('bbiA9Zq5Gy2oCFBlILO3QA','PBasset000000000000002','000001000001000036','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('Efe2W0UgrSRDltNJ87jlfg','PBasset000000000000002','000001000001000037','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('RrV4aAPnn4dM0ZcU3OXnlw','PBasset000000000000002','000001000001000038','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('5bnNzteN7w3NnK9mF4XiCg','PBasset000000000000002','000001000001000039','published','WebGUI::Asset::Wobject::Folder',1147642481,'3','997995720','3',NULL,0,NULL),('oGfxez5sksyB_PcaAsEm_Q','PBasset000000000000002','000001000001000040','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','997995720','3',NULL,0,NULL),('vTymIDYL2YqEh6PV50F7ew','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000001','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('lo1ac3BsoJx3ijGQ3gR-bQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000002','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('huASapWvFDzqwOSbcN-JFQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000003','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','1222803153','3',NULL,0,NULL),('9wKWdum0_8z-OhhquWLtSQ','PBasset000000000000002','000001000001000044','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','997995720','3',NULL,0,NULL),('CSN-ZON7Uwv8kxf3F1fh5Q','PBasset000000000000002','000001000001000049','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('TCtybxdqmdwdvRn555zpCQ','PBasset000000000000002','000001000001000030','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000070','7.0-style0000000000049','000001000001000047000021','published','WebGUI::Asset::Wobject::Navigation',1147642510,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000071','7.0-style0000000000049','000001000001000047000022','published','WebGUI::Asset::File::Image',1147642511,'3','997995720','3',NULL,0,NULL),('PBnav00000000000bullet','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000027','published','WebGUI::Asset::Template',1148579524,'3','1222803972','3',NULL,0,NULL),('PBnav00000000indentnav','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000028','published','WebGUI::Asset::Template',1148579525,'3','1222803972','3',NULL,0,NULL),('PBtmpl00000000table125','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000008','published','WebGUI::Asset::Template',1148579525,'3','1222803981','3',NULL,0,NULL),('PBtmpl00000000table094','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000009','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table131','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000010','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table135','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000011','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table118','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000012','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl000000000table54','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000013','published','WebGUI::Asset::Template',1154535074,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table109','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000014','published','WebGUI::Asset::Template',1154535074,'3','1222803982','3',NULL,0,NULL),('BmLaN4rmAANkCglXUViEbg','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000005','published','WebGUI::Asset::Wobject::Folder',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0006','BmLaN4rmAANkCglXUViEbg','000001000001000027000005000001','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0005','BmLaN4rmAANkCglXUViEbg','000001000001000027000005000002','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('Q4uX_C557arTp6D_jwB1jQ','PBasset000000000000002','000001000001000048','published','WebGUI::Asset::Wobject::Folder',1165460175,'3','997995720','3',NULL,0,NULL),('WikiRCTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000001','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiFrontTmpl000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000002','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiSearchTmpl00000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000003','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPHTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000004','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageTmpl0000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000005','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageEditTmpl000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000006','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiMPTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000007','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('SQLReportDownload00001','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000036000002','published','WebGUI::Asset::Template',1171466654,'3','1222803962','3',NULL,0,NULL),('X7DrzUcj8pOKFa_6k9D5iw','PBasset000000000000002','000001000001000023','published','WebGUI::Asset::Wobject::Folder',1185754569,'3','997995720','3',NULL,0,NULL),('newsletter000000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000001','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettercs0000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000002','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettersubscrip0001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000003','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('MBmWlA_YEA2I6D29OMGtRg','HPDOcsj4gBme8D4svHodBw','000001000001000053000001000004','published','WebGUI::Asset::Template',1226542675,'3','997995720','3',NULL,0,NULL),('FJbUTvZ2nUTn65LpW6gjsA','HPDOcsj4gBme8D4svHodBw','000001000001000053000001000001','published','WebGUI::Asset::Template',1227070381,'3','997995720','3',NULL,0,NULL),('WikiKeyword00000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000008','published','WebGUI::Asset::Template',1185754571,'3','1222803956','3',NULL,0,NULL),('tempspace0000000000000','PBasset000000000000001','000001000004','published','WebGUI::Asset::Wobject::Folder',1185754574,'3','997995720','3',NULL,1,NULL),('iLzlwGmwrvzlGHXKzaDyjA','PBasset000000000000002','000001000001000020','published','WebGUI::Asset::Wobject::Folder',1199479244,'3','997995720','3',NULL,0,NULL),('75CmQgpcCSkdsL-oawdn3Q','HPDOcsj4gBme8D4svHodBw','000001000001000053000001000002','published','WebGUI::Asset::Template',1227052575,'3','997995720','3',NULL,0,NULL),('gI_TxK-5S4DNuv42wpImmw','PBasset000000000000002','000001000001000011','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('jME5BEDYVDlBZ8jIQA9-jQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000001','published','WebGUI::Asset::Template',1197927169,'3','997995720','3',NULL,0,NULL),('azCqD0IjdQSlM3ar29k5Sg','gI_TxK-5S4DNuv42wpImmw','000001000001000011000002','published','WebGUI::Asset::Template',1197881748,'3','997995720','3',NULL,0,NULL),('05FpjceLYhq4csF1Kww1KQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000003','published','WebGUI::Asset::Template',1197879361,'3','997995720','3',NULL,0,NULL),('q5O62aH4pjUXsrQR3Pq4lw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000004','published','WebGUI::Asset::Template',1197825772,'3','997995720','3',NULL,0,NULL),('KAMdiUdJykjN02CPHpyZOw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000005','published','WebGUI::Asset::Template',1197825787,'3','997995720','3',NULL,0,NULL),('OkphOEdaSGTXnFGhK4GT5A','gI_TxK-5S4DNuv42wpImmw','000001000001000011000006','published','WebGUI::Asset::Template',1197825794,'3','997995720','3',NULL,0,NULL),('TEId5V-jEvUULsZA0wuRuA','gI_TxK-5S4DNuv42wpImmw','000001000001000011000007','published','WebGUI::Asset::Template',1197989443,'3','997995720','3',NULL,0,NULL),('6X-7Twabn5KKO_AbgK3PEw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000008','published','WebGUI::Asset::Template',1197987780,'3','997995720','3',NULL,0,NULL),('7JCTAiu1U_bT9ldr655Blw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000009','published','WebGUI::Asset::Template',1197825824,'3','997995720','3',NULL,0,NULL),('0X4Q3tBWUb_thsVbsYz9xQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000010','published','WebGUI::Asset::Template',1197987372,'3','997995720','3',NULL,0,NULL),('m3IbBavqzuKDd2PGGhKPlA','gI_TxK-5S4DNuv42wpImmw','000001000001000011000011','published','WebGUI::Asset::Template',1197825845,'3','997995720','3',NULL,0,NULL),('UTNFeV7B_aSCRmmaFCq4Vw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000012','published','WebGUI::Asset::Template',1197825856,'3','997995720','3',NULL,0,NULL),('zcX-wIUct0S_np14xxOA-A','gI_TxK-5S4DNuv42wpImmw','000001000001000011000013','published','WebGUI::Asset::Template',1197825866,'3','997995720','3',NULL,0,NULL),('MBZK_LPVzqhb4TV4mMRTJg','gI_TxK-5S4DNuv42wpImmw','000001000001000011000014','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_hELmIJfgbAyXFNqPyApxQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000015','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_9_eiaPgxzF_x_upt6-PNQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000016','published','WebGUI::Asset::Snippet',1197988920,'3','997995720','3',NULL,0,NULL),('kaPRSaf8UKiskiGEgJgLAw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000017','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('bANo8aiAPA7aY_oQZKxIWw','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000001','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('2ci_v2d4x4uvyjTRlC49OA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000002','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('O-EsSzKgAk1KolFT-x_KsA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000003','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('fdd8tGExyVwHyrB8RBbKXg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000004','published','WebGUI::Asset::File::Image',1197330839,'3','997995720','3',NULL,0,NULL),('BpisgHl4ZDcSECJp6oib1w','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000005','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('zshreRgPAXtnF0DtVbQ1Yg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000006','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('mM3bjP_iG9sv5nQb4S17tQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000018','published','WebGUI::Asset::Template',1197879662,'3','997995720','3',NULL,0,NULL),('ilu5BrM-VGaOsec9Lm7M6Q','gI_TxK-5S4DNuv42wpImmw','000001000001000011000019','published','WebGUI::Asset::Template',1197878780,'3','997995720','3',NULL,0,NULL),('-ANLpoTEP-n4POAdRxCzRw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000020','published','WebGUI::Asset::Template',1197880641,'3','997995720','3',NULL,0,NULL),('OxJWQgnGsgyGohP2L3zJPQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000021','published','WebGUI::Asset::Template',1204663962,'3','997995720','3',NULL,0,NULL),('Tsg7xmPYv782j6IVz7yHFg','PBasset000000000000002','000001000001000004','published','WebGUI::Asset::Wobject::Folder',1204890713,'3','997995720','3',NULL,0,NULL),('kj3b-X3i6zRKnhLb4ZiCLw','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000001','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('uRL9qtk7Rb0YRJ41LmHOJw','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000002','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarWeek0000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000003','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarDay00000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000004','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEvent000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000005','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEventEdit00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000006','published','WebGUI::Asset::Template',1205160982,'3','997995720','3',NULL,0,NULL),('CalendarMonth000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000007','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarSearch00000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000008','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarPrintEvent0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000009','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintMonth0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000010','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintWeek00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000011','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintDay000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000012','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('jnYdqDkUR8x7Pv2eGR1qTA','PBasset000000000000002','000001000001000041','published','WebGUI::Asset::Wobject::Folder',1205431513,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000001','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000001','published','WebGUI::Asset::Template',1205003608,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000002','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000002','published','WebGUI::Asset::Template',1205003676,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000003','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000003','published','WebGUI::Asset::Template',1205003711,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000004','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000004','published','WebGUI::Asset::Template',1205158717,'3','997995720','3',NULL,0,NULL),('7fE8md51vTCcuJFOvxNaGA','gI_TxK-5S4DNuv42wpImmw','000001000001000011000022','published','WebGUI::Asset::Snippet',1205443600,'3','997995720','3',NULL,0,NULL),('1oGhfj00KkCzP1ez01AfKA','gI_TxK-5S4DNuv42wpImmw','000001000001000011000023','published','WebGUI::Asset::Snippet',1205635970,'3','997995720','3',NULL,0,NULL),('3qiVYhNTXMVC5hfsumVHgg','gI_TxK-5S4DNuv42wpImmw','000001000001000011000024','published','WebGUI::Asset::Snippet',1206743306,'3','997995720','3',NULL,0,NULL),('vrKXEtluIhbmAS9xmPukDA','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000010','published','WebGUI::Asset::Template',1212092352,'3','1222802925','3',NULL,0,NULL),('4qh0kIsFUdd4Ox-Iu1JZgg','PBasset000000000000002','000001000001000008','published','WebGUI::Asset::Wobject::Folder',1208725439,'3','997995720','3',NULL,0,NULL),('BMybD3cEnmXVk2wQ_qEsRQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000001','published','WebGUI::Asset::Template',1208530113,'3','997995720','3',NULL,0,NULL),('OOyMH33plAy6oCj_QWrxtg','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000002','published','WebGUI::Asset::Template',1207951375,'3','997995720','3',NULL,0,NULL),('2rC4ErZ3c77OJzJm7O5s3w','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000003','published','WebGUI::Asset::Template',1208721232,'3','997995720','3',NULL,0,NULL),('PsFn7dJt4wMwBa8hiE3hOA','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000004','published','WebGUI::Asset::Template',1208558071,'3','997995720','3',NULL,0,NULL),('yBwydfooiLvhEFawJb0VTQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000005','published','WebGUI::Asset::Template',1208629936,'3','997995720','3',NULL,0,NULL),('63ix2-hU0FchXGIWkG3tow','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000011','published','WebGUI::Asset::Template',1209588387,'3','1222802925','3',NULL,0,NULL),('POVcY79vIqAHR8OfGt36aw','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000007','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('hIB-z34r8Xl-vYVYCkKr-w','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000008','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('-mPUoFlYcjqjPUPRLAlxNQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000009','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MDpUOR-N8KMyt1J7Hh_h4w','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000010','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('YfXKByTwDZVituMc4h13Dg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000011','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('esko_HSU0Gh-uJZ1h3xRmQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000012','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('oSqpGswzpBG_ErdfYwIO8A','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000013','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MXJklShZvLLB_DSnZQmXrQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000014','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('BthxD5oJ0idmsyI3ioA2FA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000015','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('aZ-1HYQamkRHYXvzAra8WQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000016','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('eRkb94OYcS5AdcrrerOP5Q','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000017','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TbnkjAJQEASORXIpYqDkcA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000018','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('er-3faBjY-hhlDcc5aKqdQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000019','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('8bFsu2FJUqHRUiHcozcVFw','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000020','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('34Aayx5eA320D8VfhdfDBw','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000021','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TlhKOVmWblZOsAdqmhEpeg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000022','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('Nx0ypjO3cN6QdZUBUEE0lA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000023','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('CmFZLN7iPS7XXvUEsxKPKA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000024','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('v_XBgwwZqgW1D5s4y05qfg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000025','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('4TdAkKoQbSCvI7QWcW889A','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000026','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('SAgK6eDPCG1cgkJ59WapHQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000027','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('XJYLuvGy9ubF7JNKyINtpA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000028','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('RWj7hyv2SpZuXxwj1Wocug','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000029','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('aq8QElnlm3YufAoxRz9Pcg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000030','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('gbnRhcWNk1iQe32LFEB5eQ','PBasset000000000000002','000001000001000033','published','WebGUI::Asset::Wobject::Folder',1210779723,'3','997995720','3',NULL,0,NULL),('6tK47xsaIH-ELw0IBo0uRQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000001','published','WebGUI::Asset::Wobject::Folder',1210777115,'3','997995720','3',NULL,0,NULL),('_bZJ9LA_KNekZiFPaP2SeQ','6tK47xsaIH-ELw0IBo0uRQ','000001000001000033000001000001','published','WebGUI::Asset::File::Image',1210777868,'3','997995720','3',NULL,0,NULL),('nFen0xjkZn8WkpM93C9ceQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000002','published','WebGUI::Asset::Template',1210779326,'3','997995720','3',NULL,0,NULL),('1XOJDcg_ITRYwVM-QnIcPw','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000003','published','WebGUI::Asset::Snippet',1210779441,'3','997995720','3',NULL,0,NULL),('4e-_rNs6mSWedZhQ_V5kJA','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000004','published','WebGUI::Asset::Snippet',1210779672,'3','997995720','3',NULL,0,NULL),('eqb9sWjFEVq0yHunGV8IGw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000012','published','WebGUI::Asset::Template',1213182595,'3','1222802925','3',NULL,0,NULL),('6D4Z-oruXPS6OlH_Kx8pBg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000005','published','WebGUI::Asset::Wobject::Folder',1209509389,'3','997995720','3',NULL,0,NULL),('hQ7z33_jOYkQ8WNX5xy9Sw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000001','published','WebGUI::Asset::File::Image',1209509455,'3','997995720','3',NULL,0,NULL),('vWW_DcHiYSrKZOkkIfEfcQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000002','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('_bPYzRA87NTAUIKlfrJMHg','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000003','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('nJjZHRwdDs5MAZYsAyioHw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000004','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8hxfkrJPeFVRWF5piCNJ1A','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000005','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('Osx7WN52iIKHZFT4vqUBHQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000006','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('oWff8fGzRdHPyq5VNREe9Q','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000007','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('uqbkvb1b9443VvfkyRz95w','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000008','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8YiMkcz32xalkAn3WBLpag','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000009','published','WebGUI::Asset::File::Image',1210181860,'3','997995720','3',NULL,0,NULL),('3n3H85BsdeRQ0I08WmvlOg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000006','published','WebGUI::Asset::Snippet',1212091492,'3','997995720','3',NULL,0,NULL),('5m5I7__l40C4hhv4ydqAHQ','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000007','published','WebGUI::Asset::Snippet',1210181698,'3','997995720','3',NULL,0,NULL),('C5fPz-Wg85vkYRvCdl-Xqw','PBasset000000000000002','000001000001000043','published','WebGUI::Asset::Wobject::Folder',1212160830,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000001','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000001','published','WebGUI::Asset::Template',1212159641,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000002','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000002','published','WebGUI::Asset::Template',1212000800,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000003','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000003','published','WebGUI::Asset::Template',1212001437,'3','997995720','3',NULL,0,NULL),('usuxw9V3jN4d4pujRiEYxg','7.0-style0000000000049','000001000001000047000023','published','WebGUI::Asset::Snippet',1209494150,'3','997995720','3',NULL,0,NULL),('aNmgn0cd6tldmC1FpW4KbA','PBasset000000000000002','000001000001000034','published','WebGUI::Asset::Wobject::Folder',1213122695,'3','997995720','3',NULL,0,NULL),('2q5fxatSFLgIhXaUX-oSvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000001','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('_d5WTkKjnwct-_Dk7gZHvQ','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000002','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('Iz2mUR3jCPKyemwAea4b2g','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000003','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('JU9bjsLRoWj7GVHs__prig','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000004','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('noOlnjQGexHg8c4bGVUo9g','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000005','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('aIpCmr9Hi__vgdZnDTz1jw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000006','published','WebGUI::Asset::Template',1209921197,'3','997995720','3',NULL,0,NULL),('XNd7a_g_cTvJVYrVHcx2Mw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000007','published','WebGUI::Asset::Template',1212099009,'3','997995720','3',NULL,0,NULL),('2gtFt7c0qAFNU3BG_uvNvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000008','published','WebGUI::Asset::Template',1211824430,'3','997995720','3',NULL,0,NULL),('bPz1yk6Y9uwMDMBcmMsSCg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000009','published','WebGUI::Asset::Template',1211829604,'3','997995720','3',NULL,0,NULL),('3womoo7Teyy2YKFa25-MZg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000013','published','WebGUI::Asset::Template',1212098997,'3','1222802925','3',NULL,0,NULL),('EBlxJpZQ9o-8VBOaGQbChA','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000014','published','WebGUI::Asset::Template',1212093746,'3','1222802925','3',NULL,0,NULL),('g8W53Pd71uHB9pxaXhWf_A','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000015','published','WebGUI::Asset::Template',1213184121,'3','1222802925','3',NULL,0,NULL),('mTOiwwk3q4k9g5-XykXhPA','68sKwDgf9cGH58-NZcU4lg','000001000002000005','published','WebGUI::Asset::Wobject::Layout',1215717999,'3','1215733893','3',NULL,0,NULL),('j_1qEqM6iLfQLiR6VKy0aA','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000001','published','WebGUI::Asset::Wobject::Article',1215718151,'3','1215733893','3',NULL,0,NULL),('o_pq_e4vRyhMOKFzs61eag','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000002','published','WebGUI::Asset::File::Image',1215714957,'3','1215733893','3',NULL,0,NULL),('diZvW4bSgZWwyyGP3qXi1g','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000003','published','WebGUI::Asset::Wobject::Article',1215717972,'3','1215733893','3',NULL,0,NULL),('PBEmsBadgeTemplate0000','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000006','published','WebGUI::Asset::Template',1221077977,'3','1222802972','3',NULL,0,NULL),('-WM2dt0ZGpDasuL2wWocxg','PBasset000000000000002','000001000001000027','published','WebGUI::Asset::Wobject::Folder',1222803056,'3','997995720','3',NULL,0,NULL),('2OcUWHVsu_L1sDFzIMWYqw','PBasset000000000000002','000001000001000042','published','WebGUI::Asset::Wobject::Folder',1222803070,'3','997995720','3',NULL,0,NULL),('1z9J1O08n_7gVVlBwSRBJQ','PBasset000000000000002','000001000001000003','published','WebGUI::Asset::Wobject::Folder',1222803099,'3','997995720','3',NULL,0,NULL),('zyWi26q9na-iiZqL4yedog','PBasset000000000000002','000001000001000017','published','WebGUI::Asset::Wobject::Folder',1222803114,'3','997995720','3',NULL,0,NULL),('NywJYmGWe1f6EBXJnWg9Xg','PBasset000000000000002','000001000001000026','published','WebGUI::Asset::Wobject::Folder',1222803606,'3','997995720','3',NULL,0,NULL),('UL-ItI4L1Z6-WSuhuXVvsQ','PBasset000000000000002','000001000001000050','published','WebGUI::Asset::Wobject::Folder',1225139673,'3','997995720','3',NULL,0,NULL),('3rjnBVJRO6ZSkxlFkYh_ug','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000050000001','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('TuYPpHx7TUyk08639Pc8Bg','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000050000002','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('THQhn1C-ooj-TLlEP7aIJQ','PBasset000000000000002','000001000001000051','published','WebGUI::Asset::Snippet',1225313951,'3','997995720','3',NULL,0,NULL),('jVKLVakT_iA2010_oEuAwg','7.0-style0000000000049','000001000001000047000024','published','WebGUI::Asset::Wobject::Navigation',1224116526,'3','997995720','3',NULL,0,NULL),('QpmlAiYZz6VsKBM-_0wXaw','PBasset000000000000002','000001000001000052','published','WebGUI::Asset::Wobject::Folder',1224616691,'3','997995720','3',NULL,0,NULL),('h_T2xtOxGRQ9QJOR6ebLpQ','QpmlAiYZz6VsKBM-_0wXaw','000001000001000052000001','published','WebGUI::Asset::Template',1224616545,'3','997995720','3',NULL,0,NULL),('4Ekp0kJoJllRRRo_J1Rj6w','QpmlAiYZz6VsKBM-_0wXaw','000001000001000052000002','published','WebGUI::Asset::Template',1224616672,'3','997995720','3',NULL,0,NULL),('gfZOwaTWYjbSoVaQtHBBEw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000001','published','WebGUI::Asset::Template',1226974679,'3','997995720','3',NULL,0,NULL),('c8xrwVuu5QE0XtF9DiVzLw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000002','published','WebGUI::Asset::Template',1226894351,'3','997995720','3',NULL,0,NULL),('0n4HtbXaWa_XJHkFjetnLQ','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000003','published','WebGUI::Asset::Template',1226894994,'3','997995720','3',NULL,0,NULL),('ErEzulFiEKDkaCDVmxUavw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000004','published','WebGUI::Asset::Template',1226895484,'3','997995720','3',NULL,0,NULL),('6uQEULvXFgCYlRWnYzZsuA','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000005','published','WebGUI::Asset::Template',1226896682,'3','997995720','3',NULL,0,NULL),('DUoxlTBXhVS-Zl3CFDpt9g','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000006','published','WebGUI::Asset::Template',1226896802,'3','997995720','3',NULL,0,NULL),('1Q4Je3hKCJzeo0ZBB5YB8g','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000007','published','WebGUI::Asset::Template',1226898445,'3','997995720','3',NULL,0,NULL),('5A8Hd9zXvByTDy4x-H28qw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000008','published','WebGUI::Asset::Template',1226899462,'3','997995720','3',NULL,0,NULL),('VBkY05f-E3WJS50WpdKd1Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000009','published','WebGUI::Asset::Template',1226899241,'3','997995720','3',NULL,0,NULL),('XgcsoDrbC0duVla7N7JAdw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000010','published','WebGUI::Asset::Template',1226973330,'3','997995720','3',NULL,0,NULL),('cR0UFm7I1qUI2Wbpj--08Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000011','published','WebGUI::Asset::Template',1226964738,'3','997995720','3',NULL,0,NULL),('SVIhz68689hwUGgcDM-gWw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000012','published','WebGUI::Asset::Template',1226973314,'3','997995720','3',NULL,0,NULL),('K0YjxqOqr7RupSo6sIdcAg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000003','published','WebGUI::Asset::Wobject::Folder',1227074310,'3','997995720','3',NULL,0,NULL),('zrNpGbT3odfIkg6nFSUy8Q','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000001','published','WebGUI::Asset::Template',1226994016,'3','997995720','3',NULL,0,NULL),('1Yn_zE_dSiNuaBGNLPbxtw','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000002','published','WebGUI::Asset::Template',1226994422,'3','997995720','3',NULL,0,NULL),('AZFU33p0jpPJ-E6qLSWZng','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000003','published','WebGUI::Asset::Template',1226994865,'3','997995720','3',NULL,0,NULL),('AGJBGviWGAwjnwziiPjvDg','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000004','published','WebGUI::Asset::Template',1226995497,'3','997995720','3',NULL,0,NULL),('7Ijdd8SW32lVgg2H8R-Aqw','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000005','published','WebGUI::Asset::Template',1226995714,'3','997995720','3',NULL,0,NULL),('K8F0j_cq_jgo8dvWY_26Ag','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000006','published','WebGUI::Asset::Template',1226995643,'3','997995720','3',NULL,0,NULL),('G5V6neXIDiFXN05oL-U3AQ','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000007','published','WebGUI::Asset::Template',1226995768,'3','997995720','3',NULL,0,NULL),('_ilRXNR3s8F2vGJ_k9ePcg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000004','published','WebGUI::Asset::Wobject::Folder',1226643205,'3','997995720','3',NULL,0,NULL),('9ThW278DWLV0-Svf68ljFQ','_ilRXNR3s8F2vGJ_k9ePcg','000001000001000053000004000001','published','WebGUI::Asset::Template',1226647187,'3','997995720','3',NULL,0,NULL),('AOjPG2NHgfL9Cq6dDJ7mew','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000005','published','WebGUI::Asset::Wobject::Folder',1226659753,'3','997995720','3',NULL,0,NULL),('aUDsJ-vB9RgP-AYvPOy8FQ','AOjPG2NHgfL9Cq6dDJ7mew','000001000001000053000005000001','published','WebGUI::Asset::Template',1226660439,'3','997995720','3',NULL,0,NULL),('qaVcU0FFzzraMX_bzELqzw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000006','published','WebGUI::Asset::Wobject::Folder',1227074362,'3','997995720','3',NULL,0,NULL),('b4n3VyUIsAHyIvT-W-jziA','qaVcU0FFzzraMX_bzELqzw','000001000001000053000006000001','published','WebGUI::Asset::Template',1227074747,'3','997995720','3',NULL,0,NULL),('1IzRpX0tgW7iuCfaU2Kk0A','qaVcU0FFzzraMX_bzELqzw','000001000001000053000006000002','published','WebGUI::Asset::Template',1227079721,'3','997995720','3',NULL,0,NULL),('N716tpSna0iIQTKxS4gTWA','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000007','published','WebGUI::Asset::Template',1226604666,'3','997995720','3',NULL,0,NULL),('GRUNFctldUgop-qRLuo_DA','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000005','published','WebGUI::Asset::Template',1227254010,'3','997995720','3',NULL,0,NULL),('d8jMMMRddSQ7twP4l1ZSIw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000006','published','WebGUI::Asset::Template',1227248175,'3','997995720','3',NULL,0,NULL),('CxMpE_UPauZA3p8jdrOABw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000007','published','WebGUI::Asset::Template',1227556536,'3','997995720','3',NULL,0,NULL),('1oBRscNIcFOI-pETrCOspA','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000008','published','WebGUI::Asset::Template',1226009642,'3','997995720','3',NULL,0,NULL),('wAc4azJViVTpo-2NYOXWvg','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000009','published','WebGUI::Asset::Template',1226009650,'3','997995720','3',NULL,0,NULL),('AjhlNO3wZvN5k4i4qioWcg','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000010','published','WebGUI::Asset::Template',1226009658,'3','997995720','3',NULL,0,NULL),('itransact_credentials1','PBasset000000000000002','000001000001000054','published','WebGUI::Asset::Template',1228953856,'3','997995720','3',NULL,0,NULL),('hkj6WeChxFyqfP85UlRP8w','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000006','published','WebGUI::Asset::Snippet',1232664229,'3','997995720','3',NULL,0,NULL),('kJf77eCr9GAMiEzWrzsBTA','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000007','published','WebGUI::Asset::Snippet',1229639255,'3','997995720','3',NULL,0,NULL),('4LQT4-bGW4FkiEQLSY5gvQ','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000008','published','WebGUI::Asset::Snippet',1232400287,'3','997995720','3',NULL,0,NULL),('alraubvBu-YJJ614jAHD5w','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000009','published','WebGUI::Asset::Template',1232664015,'3','997995720','3',NULL,0,NULL),('Vch1Ww7G_JpBhOhXX07RDg','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000010','published','WebGUI::Asset::Wobject::Navigation',1232664082,'3','997995720','3',NULL,0,NULL); -INSERT INTO `assetData` VALUES ('PBasset000000000000001',1124395696,'3','pbversion0000000000001','approved','Root','Root','root','3','7','3',NULL,0,1,0,0,0,142,NULL,0,1,0,1124395696),('PBasset000000000000002',1124395696,'3','pbversion0000000000001','approved','Import Node','Import','root/import','3','7','12',NULL,0,1,0,0,0,269,NULL,0,1,0,1124395696),('68sKwDgf9cGH58-NZcU4lg',1124395696,'3','pbversion0000000000001','approved','Home','Home','home','3','7','3',NULL,0,0,0,0,0,299,NULL,0,1,0,1124395696),('_iHetEvMQUOoxS-T2CM0sQ',1124395696,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started','3','7','3',NULL,0,0,0,0,0,315,NULL,0,1,0,1124395696),('8Bb8gu-me2mhL3ljFyiWLg',1124395696,'3','pbversion0000000000001','approved','What should you do next?','Your Next Step','your_next_step','3','7','3',NULL,0,0,0,0,0,484,NULL,0,1,0,1124395696),('Vzv1pWpg_w6R_o-b0rM2qQ',1147642515,'3','pbversion0000000000001','approved','Ad','Ad','home/ad2','3','7','4',NULL,0,1,0,0,0,2155177,NULL,0,1,0,1147642515),('NK8bqlwVRILJknqeCDPBHg',1147642515,'3','pbversion0000000000001','approved','Getting Started (part 2)','Getting Started (part 2)','getting_started/getting-started-part2','3','7','4',NULL,0,1,0,0,0,1660,NULL,0,1,0,1147642515),('6QuS-0rosuZTdTv11fobig',1147642515,'3','pbversion0000000000001','approved','Talk to the Experts','Talk to the Experts','yns/experts','3','7','4',NULL,0,1,0,0,0,670,NULL,0,1,0,1147642515),('ix1p0AbwKAz8QWB-T-HHfg',1147642516,'3','pbversion0000000000001','approved','Get Support','Get Support','yns/support','3','7','4',NULL,0,1,0,0,0,706,NULL,0,1,0,1147642516),('iCYOjohB9SKvAPr6bXElKA',1147642516,'3','pbversion0000000000001','approved','Get Hosting','Get Hosting','yns/hosting','3','7','4',NULL,0,1,0,0,0,662,NULL,0,1,0,1147642516),('4Yfz9hqBqM8OYMGuQK8oLw',1147642516,'3','pbversion0000000000001','approved','Get Features','Get Features','yns/features','3','7','4',NULL,0,1,0,0,0,739,NULL,0,1,0,1147642516),('Wl8WZ43g2rK5AYr9o4zY7w',1147642516,'3','pbversion0000000000001','approved','Get Style','Get Style','yns/style','3','7','4',NULL,0,1,0,0,0,572,NULL,0,1,0,1147642516),('LBuiKzg2mWwmOPS9AgV3bg',1147642517,'3','pbversion0000000000001','approved','Get Translated','Get Translated','yns/translated','3','7','4',NULL,0,1,0,0,0,695,NULL,0,1,0,1147642517),('jTNggl7AoVSUc_ZzrvuCmw',1147642517,'3','pbversion0000000000001','approved','Get Promoted','Get Promoted','yns/promotion','3','7','4',NULL,0,1,0,0,0,688,NULL,0,1,0,1147642517),('2TqQc4OISddWCZmRY1_m8A',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news','3','7','3',NULL,0,0,0,0,0,315,NULL,0,1,0,1124395696),('fK-HMSboA3uu0c1KYkYspA',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news/the_latest_news','3','7','3',NULL,0,1,0,0,0,481,NULL,0,1,0,1124395696),('Swf6L8poXKc7hUaNPkBevw',1124395696,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend','3','7','3',NULL,0,0,0,0,0,309,NULL,0,1,0,1124395696),('x3OFY6OJh_qsXkZfPwug4A',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map','3','7','3',NULL,0,0,0,0,0,294,NULL,0,1,0,1124395696),('pJd5TLAjfWMVXD6sCRLwUg',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map/site_map','3','7','3',NULL,0,1,0,0,0,331,NULL,0,1,0,1124395696),('7.0-style0000000000003',1147642492,'3','pbversion0000000000001','approved','css01.css','css01.css','style1/css01.css','3','7','12',NULL,0,0,0,0,0,4896,NULL,0,1,0,1147642492),('PBnav00000000000000001',1124395696,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail','3','7','12',NULL,0,1,0,0,0,516,NULL,0,1,0,1124395696),('PBnav00000000000000014',1124395696,'3','pbversion0000000000001','approved','FlexMenu','FlexMenu','flexmenu','3','7','12',NULL,0,1,0,0,0,498,NULL,0,1,0,1124395696),('PBnav00000000000000015',1124395696,'3','pbversion0000000000001','approved','currentMenuVertical','currentMenuVertical','currentmenuvertical','3','7','12',NULL,0,1,0,0,0,539,NULL,0,1,0,1124395696),('PBnav00000000000000016',1124395696,'3','pbversion0000000000001','approved','currentMenuHorizontal','currentMenuHorizontal','currentmenuhorizontal','3','7','12',NULL,0,1,0,0,0,545,NULL,0,1,0,1124395696),('PBnav00000000000000017',1124395696,'3','pbversion0000000000001','approved','PreviousDropMenu','PreviousDropMenu','previousdropmenu','3','7','12',NULL,0,1,0,0,0,533,NULL,0,1,0,1124395696),('PBnav00000000000000018',1124395696,'3','pbversion0000000000001','approved','previousMenuVertical','previousMenuVertical','previousmenuvertical','3','7','12',NULL,0,1,0,0,0,543,NULL,0,1,0,1124395696),('PBnav00000000000000019',1124395696,'3','pbversion0000000000001','approved','previousMenuHorizontal','previousMenuHorizontal','previousmenuhorizontal','3','7','12',NULL,0,1,0,0,0,549,NULL,0,1,0,1124395696),('PBnav00000000000000020',1124395696,'3','pbversion0000000000001','approved','rootmenu','rootmenu','rootmenu','3','7','12',NULL,0,1,0,0,0,500,NULL,0,1,0,1124395696),('PBnav00000000000000021',1124395696,'3','pbversion0000000000001','approved','SpecificDropMenu','SpecificDropMenu','specificdropmenu','3','7','12',NULL,0,1,0,0,0,524,NULL,0,1,0,1124395696),('PBnav00000000000000002',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuVertical','SpecificSubMenuVertical','specificsubmenuvertical','3','7','12',NULL,0,1,0,0,0,545,NULL,0,1,0,1124395696),('PBnav00000000000000006',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal','specificsubmenuhorizontal','3','7','12',NULL,0,1,0,0,0,551,NULL,0,1,0,1124395696),('PBnav00000000000000007',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuVertical','TopLevelMenuVertical','toplevelmenuvertical','3','7','12',NULL,0,1,0,0,0,536,NULL,0,1,0,1124395696),('PBnav00000000000000008',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuHorizontal','TopLevelMenuHorizontal','toplevelmenuhorizontal','3','7','12',NULL,0,1,0,0,0,542,NULL,0,1,0,1124395696),('PBnav00000000000000009',1124395696,'3','pbversion0000000000001','approved','RootTab','RootTab','roottab','3','7','12',NULL,0,1,0,0,0,497,NULL,0,1,0,1124395696),('PBnav00000000000000010',1124395696,'3','pbversion0000000000001','approved','TopDropMenu','TopDropMenu','topdropmenu','3','7','12',NULL,0,1,0,0,0,483,NULL,0,1,0,1124395696),('PBnav00000000000000011',1124395696,'3','pbversion0000000000001','approved','dtree','dtree','dtree','3','7','12',NULL,0,1,0,0,0,497,NULL,0,1,0,1124395696),('PBnav00000000000000012',1124395696,'3','pbversion0000000000001','approved','coolmenu','coolmenu','coolmenu','3','7','12',NULL,0,1,0,0,0,501,NULL,0,1,0,1124395696),('PBnav00000000000000013',1124395696,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis','3','7','12',NULL,0,1,0,0,0,512,NULL,0,1,0,1124395696),('7.0-style0000000000006',1147642493,'3','pbversion0000000000001','approved','main_bg.gif','main_bg.gif','style1/main_bg.gif','3','7','12',NULL,0,0,0,0,0,1990,NULL,0,1,0,1147642493),('PBrichedit000000000002',1124395696,'3','pbversion0000000000001','approved','Forum Rich Edit','Forum Rich Edit','forum_rich_edit','3','7','12',NULL,0,0,0,0,0,246,NULL,0,1,0,1124395696),('7.0-style0000000000068',1147642510,'3','pbversion0000000000001','approved','spacer.gif','spacer.gif','style3/spacer.gif','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1147642510),('7.0-style0000000000066',1147642509,'3','pbversion0000000000001','approved','nav_bg_on.jpg','nav_bg_on.jpg','style3/nav_bg_on.jpg','3','7','12',NULL,0,0,0,0,0,647,NULL,0,1,0,1147642509),('7.0-style0000000000067',1147642509,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style3/pb.jpg','3','7','12',NULL,0,0,0,0,0,24970,NULL,0,1,0,1147642509),('7.0-style0000000000062',1147642508,'3','pbversion0000000000001','approved','nav_bg1.jpg','nav_bg1.jpg','style3/nav_bg1.jpg','3','7','12',NULL,0,0,0,0,0,661,NULL,0,1,0,1147642508),('7.0-style0000000000063',1147642508,'3','pbversion0000000000001','approved','nav_bg1_on.jpg','nav_bg1_on.jpg','style3/nav_bg1_on.jpg','3','7','12',NULL,0,0,0,0,0,672,NULL,0,1,0,1147642508),('7.0-style0000000000064',1147642509,'3','pbversion0000000000001','approved','nav_bg2.jpg','nav_bg2.jpg','style3/nav_bg2.jpg','3','7','12',NULL,0,0,0,0,0,664,NULL,0,1,0,1147642509),('7.0-style0000000000065',1147642509,'3','pbversion0000000000001','approved','nav_bg2_on.jpg','nav_bg2_on.jpg','style3/nav_bg2_on.jpg','3','7','12',NULL,0,0,0,0,0,677,NULL,0,1,0,1147642509),('7.0-style0000000000061',1147642508,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style3/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,658,NULL,0,1,0,1147642508),('7.0-style0000000000057',1147642507,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style3/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,628,NULL,0,1,0,1147642507),('7.0-style0000000000058',1147642507,'3','pbversion0000000000001','approved','main_bottom.jpg','main_bottom.jpg','style3/main_bottom.jpg','3','7','12',NULL,0,0,0,0,0,2619,NULL,0,1,0,1147642507),('7.0-style0000000000060',1147642508,'3','pbversion0000000000001','approved','main_top_bg.jpg','main_top_bg.jpg','style3/main_top_bg.jpg','3','7','12',NULL,0,0,0,0,0,676,NULL,0,1,0,1147642508),('7.0-style0000000000054',1147642506,'3','pbversion0000000000001','approved','header_bg.jpg','header_bg.jpg','style3/header_bg.jpg','3','7','12',NULL,0,0,0,0,0,704,NULL,0,1,0,1147642506),('7.0-style0000000000055',1147642506,'3','pbversion0000000000001','approved','header_left.jpg','header_left.jpg','style3/header_left.jpg','3','7','12',NULL,0,0,0,0,0,23972,NULL,0,1,0,1147642506),('7.0-style0000000000056',1147642506,'3','pbversion0000000000001','approved','header_right.jpg','header_right.jpg','style3/header_right.jpg','3','7','12',NULL,0,0,0,0,0,24746,NULL,0,1,0,1147642506),('7.0-style0000000000053',1147642505,'3','pbversion0000000000001','approved','footer_right.jpg','footer_right.jpg','style3/footer_right.jpg','3','7','12',NULL,0,0,0,0,0,2875,NULL,0,1,0,1147642505),('7.0-style0000000000052',1147642505,'3','pbversion0000000000001','approved','footer_bg.jpg','footer_bg.jpg','style3/footer_bg.jpg','3','7','12',NULL,0,0,0,0,0,669,NULL,0,1,0,1147642505),('7.0-style0000000000048',1147642504,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style2/wg.jpg','3','7','12',NULL,0,0,0,0,0,41300,NULL,0,1,0,1147642504),('7.0-style0000000000046',1147642504,'3','pbversion0000000000001','approved','rightCol_bg.jpg','rightCol_bg.jpg','style2/rightcol_bg.jpg','3','7','12',NULL,0,0,0,0,0,1118,NULL,0,1,0,1147642504),('7.0-style0000000000043',1147642503,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style2/pb.jpg','3','7','12',NULL,0,0,0,0,0,45606,NULL,0,1,0,1147642503),('7.0-style0000000000044',1147642503,'3','pbversion0000000000001','approved','pb_wg.jpg','pb_wg.jpg','style2/pb_wg.jpg','3','7','12',NULL,0,0,0,0,0,5140,NULL,0,1,0,1147642503),('7.0-style0000000000040',1147642502,'3','pbversion0000000000001','approved','navbar_right.jpg','navbar_right.jpg','style2/navbar_right.jpg','3','7','12',NULL,0,0,0,0,0,1594,NULL,0,1,0,1147642502),('7.0-style0000000000041',1147642502,'3','pbversion0000000000001','approved','page_title.jpg','page_title.jpg','style2/page_title.jpg','3','7','12',NULL,0,0,0,0,0,49390,NULL,0,1,0,1147642502),('7.0-style0000000000042',1147642502,'3','pbversion0000000000001','approved','page_title_bg.jpg','page_title_bg.jpg','style2/page_title_bg.jpg','3','7','12',NULL,0,0,0,0,0,1110,NULL,0,1,0,1147642502),('7.0-style0000000000038',1147642501,'3','pbversion0000000000001','approved','navbar_bg.jpg','navbar_bg.jpg','style2/navbar_bg.jpg','3','7','12',NULL,0,0,0,0,0,936,NULL,0,1,0,1147642501),('7.0-style0000000000039',1147642502,'3','pbversion0000000000001','approved','navbar_left.jpg','navbar_left.jpg','style2/navbar_left.jpg','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1147642502),('7.0-style0000000000036',1147642501,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style2/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1222,NULL,0,1,0,1147642501),('7.0-style0000000000037',1147642501,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style2/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,902,NULL,0,1,0,1147642501),('7.0-style0000000000033',1147642500,'3','pbversion0000000000001','approved','css02.css','css02.css','style2/css02.css','3','7','12',NULL,0,0,0,0,0,3061,NULL,0,1,0,1147642500),('7.0-style0000000000034',1147642500,'3','pbversion0000000000001','approved','leftCol_header.jpg','leftCol_header.jpg','style2/leftcol_header.jpg','3','7','12',NULL,0,0,0,0,0,21636,NULL,0,1,0,1147642500),('7.0-style0000000000035',1147642501,'3','pbversion0000000000001','approved','leftCol_header02.jpg','leftCol_header02.jpg','style2/leftcol_header02.jpg','3','7','12',NULL,0,0,0,0,0,8868,NULL,0,1,0,1147642501),('7.0-style0000000000030',1147642499,'3','pbversion0000000000001','approved','webgui_btn.jpg','webgui_btn.jpg','style1/webgui_btn.jpg','3','7','12',NULL,0,0,0,0,0,10040,NULL,0,1,0,1147642499),('7.0-style0000000000031',1147642500,'3','pbversion0000000000001','approved','WebGUI 7 Style 2','WebGUI 7 Style 2','root/import/webgui-7-style-2','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1147642500),('7.0-style0000000000032',1147642500,'3','pbversion0000000000001','approved','context_bg.jpg','context_bg.jpg','style2/context_bg.jpg','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1147642500),('PBnav000000style01lvl2',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav lvl2','untitled','style1_nav_lvl2','3','7','12',NULL,0,0,0,0,0,1015,NULL,0,1,0,1228264382),('7.0-style0000000000026',1147642499,'3','pbversion0000000000001','approved','RootTab Level 1','RootTab Level 1','roottab_level1','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1147642499),('stevenav00000000000001',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav','Style 01 Nav','style1_nav','3','7','12',NULL,0,0,0,0,0,994,NULL,0,1,0,1228264382),('7.0-style0000000000025',1147642498,'3','pbversion0000000000001','approved','RootTab Level 0','RootTab Level 0','roottab_level0','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1147642498),('7.0-style0000000000022',1147642497,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style1/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,1914,NULL,0,1,0,1147642497),('7.0-style0000000000023',1147642498,'3','pbversion0000000000001','approved','nav_on.jpg','nav_on.jpg','style1/nav_on.jpg','3','7','12',NULL,0,0,0,0,0,1536,NULL,0,1,0,1147642498),('7.0-style0000000000024',1147642498,'3','pbversion0000000000001','approved','orange_left01.jpg','orange_left01.jpg','style1/orange_left01.jpg','3','7','12',NULL,0,0,0,0,0,5810,NULL,0,1,0,1147642498),('7.0-style0000000000018',1147642496,'3','pbversion0000000000001','approved','nav2_off_left.jpg','nav2_off_left.jpg','style1/nav2_off_left.jpg','3','7','12',NULL,0,0,0,0,0,1174,NULL,0,1,0,1147642496),('7.0-style0000000000019',1147642497,'3','pbversion0000000000001','approved','nav2_off_right.jpg','nav2_off_right.jpg','style1/nav2_off_right.jpg','3','7','12',NULL,0,0,0,0,0,1162,NULL,0,1,0,1147642497),('7.0-style0000000000017',1147642496,'3','pbversion0000000000001','approved','nav2_off_center.jpg','nav2_off_center.jpg','style1/nav2_off_center.jpg','3','7','12',NULL,0,0,0,0,0,1336,NULL,0,1,0,1147642496),('7.0-style0000000000015',1147642496,'3','pbversion0000000000001','approved','nav1_on_right.jpg','nav1_on_right.jpg','style1/nav1_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1936,NULL,0,1,0,1147642496),('7.0-style0000000000014',1147642495,'3','pbversion0000000000001','approved','nav1_on_left.jpg','nav1_on_left.jpg','style1/nav1_on_left.jpg','3','7','12',NULL,0,0,0,0,0,2062,NULL,0,1,0,1147642495),('7.0-style0000000000013',1147642495,'3','pbversion0000000000001','approved','nav1_on.jpg','nav1_on.jpg','style1/nav1_on.jpg','3','7','12',NULL,0,0,0,0,0,4544,NULL,0,1,0,1147642495),('7.0-style0000000000011',1147642495,'3','pbversion0000000000001','approved','nav1_off_left.jpg','nav1_off_left.jpg','style1/nav1_off_left.jpg','3','7','12',NULL,0,0,0,0,0,2128,NULL,0,1,0,1147642495),('7.0-style0000000000012',1147642495,'3','pbversion0000000000001','approved','nav1_off_right.jpg','nav1_off_right.jpg','style1/nav1_off_right.jpg','3','7','12',NULL,0,0,0,0,0,2020,NULL,0,1,0,1147642495),('7.0-style0000000000010',1147642494,'3','pbversion0000000000001','approved','nav1_off_center.jpg','nav1_off_center.jpg','style1/nav1_off_center.jpg','3','7','12',NULL,0,0,0,0,0,2596,NULL,0,1,0,1147642494),('7.0-style0000000000009',1147642494,'3','pbversion0000000000001','approved','nav1_off.jpg','nav1_off.jpg','style1/nav1_off.jpg','3','7','12',NULL,0,0,0,0,0,4870,NULL,0,1,0,1147642494),('7.0-style0000000000007',1147642493,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style1/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1752,NULL,0,1,0,1147642493),('7.0-style0000000000001',1147642492,'3','pbversion0000000000001','approved','WebGUI 7 Style 1','WebGUI 7 Style 1','root/import/webgui-7-style-1','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1147642492),('SynConXSLT000000000001',1124395707,'3','pbversion0000000000001','approved','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT','xslt/rss0.9.xsl','3','7','12',NULL,0,0,0,0,0,2646,NULL,0,1,0,1124395707),('SynConXSLT000000000002',1124395707,'3','pbversion0000000000001','approved','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT','xslt/rss0.91.xsl','3','7','12',NULL,0,0,0,0,0,2485,NULL,0,1,0,1124395707),('SynConXSLT000000000003',1124395707,'3','pbversion0000000000001','approved','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT','xslt/rss1.0.xsl','3','7','12',NULL,0,0,0,0,0,2718,NULL,0,1,0,1124395707),('SynConXSLT000000000004',1124395707,'3','pbversion0000000000001','approved','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT','xslt/rss2.0.xsl','3','7','12',NULL,0,0,0,0,0,2551,NULL,0,1,0,1124395707),('PBtmpl0000000000000036',1129049186,'3','pbversion0000000000001','approved','Default Admin Toggle Macro','Default Admin Toggle Macro','default_admin_toggle_macro','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1228264382),('PBtmpl0000000000000037',1129049186,'3','pbversion0000000000001','approved','Default Account Macro','Default Account Macro','default_account_macro','3','7','12',NULL,0,1,0,0,0,395,NULL,0,1,0,1228264382),('PBtmpl0000000000000038',1129049186,'3','pbversion0000000000001','approved','Default Editable Toggle Macro','Default Editable Toggle Macro','default_editable_toggle_macro','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1228264382),('PBtmpl0000000000000040',1129049186,'3','pbversion0000000000001','approved','Default Group Add Macro','Default Group Add Macro','default_group_add_macro','3','7','12',NULL,0,1,0,0,0,374,NULL,0,1,0,1228264382),('PBtmpl0000000000000041',1129049186,'3','pbversion0000000000001','approved','Default Group Delete Macro','Default Group Delete Macro','default_group_delete_macro','3','7','12',NULL,0,1,0,0,0,386,NULL,0,1,0,1228264382),('PBtmpl0000000000000042',1129049186,'3','pbversion0000000000001','approved','Default Homelink','Default Homelink','default_homelink','3','7','12',NULL,0,1,0,0,0,378,NULL,0,1,0,1228264382),('PBtmpl0000000000000043',1129049186,'3','pbversion0000000000001','approved','Default LoginToggle','Default LoginToggle','default_logintoggle','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1228264382),('PBtmpl0000000000000045',1129049186,'3','pbversion0000000000001','approved','Default Make Printable','Default Make Printable','default_make_printable','3','7','12',NULL,0,1,0,0,0,408,NULL,0,1,0,1228264382),('PBtmpl0000000000000208',1147642410,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template','3','7','12',NULL,0,0,0,0,0,3992,'\n\n\n\n\n',0,1,0,1228264382),('PBtmpl0000000000000091',1129049189,'3','pbversion0000000000001','approved','File no icon','File no icon','file_no_icon','3','7','12',NULL,0,1,0,0,0,335,NULL,0,1,0,1228264382),('PBtmpl0000000000000132',1129049190,'3','pbversion0000000000001','approved','Empty','Empty','empty','3','7','12',NULL,0,1,0,0,0,271,NULL,0,1,0,1228264382),('PBtmpl0000000000000140',1129573244,'3','pbversion0000000000001','approved','Default Shortcut','Default Shortcut','pbtmpl0000000000000140','3','7','12',NULL,0,1,0,0,0,1020,NULL,0,1,0,1228264382),('PBtmplHelp000000000001',1147642410,'3','pbversion0000000000001','approved','Help','Help','help','3','7','12',NULL,0,0,0,0,0,1388,'\n\n',0,1,0,1228264382),('ProjectManagerTMPL0004',1222574693,'3','pbversion0000000000001','approved','Default Project Manager Edit Task','Default Project Manager Edit Task','default-pm-template-edit-task','3','7','12',NULL,0,0,0,0,0,5258,'\r\n',0,1,0,1228264384),('7.0-style0000000000071',1147642511,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style3/wg.jpg','3','7','12',NULL,0,0,0,0,0,27488,NULL,0,1,0,1147642511),('7.0-style0000000000070',1147642510,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','style3_coolmenu','3','7','12',NULL,0,0,0,0,0,344,NULL,0,1,0,1147642510),('7.0-style0000000000004',1147642493,'3','pbversion0000000000001','approved','gui_bottom.jpg','gui_bottom.jpg','style1/gui_bottom.jpg','3','7','12',NULL,0,0,0,0,0,21700,NULL,0,1,0,1147642493),('7.0-style0000000000002',1147642492,'3','pbversion0000000000001','approved','body_bg.jpg','body_bg.jpg','style1/body_bg.jpg','3','7','12',NULL,0,0,0,0,0,890,NULL,0,1,0,1147642492),('PBtmpl0000000000000128',1147642411,'3','pbversion0000000000001','approved','Classifieds','Classifieds','classifieds','3','7','12',NULL,0,1,0,0,0,2007,'\n\n',0,1,0,1228264382),('PBtmpl0000000000000093',1147642412,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail2','3','7','12',NULL,0,1,0,0,0,767,NULL,0,1,0,1228264382),('PBtmpl0000000000000104',1147642412,'3','pbversion0000000000001','approved','Default Acknowledgement','Default Acknowledgement','default_acknowledgement','3','7','12',NULL,0,1,0,0,0,1207,'',0,1,0,1228264382),('PBtmpl0000000000000031',1147642413,'3','pbversion0000000000001','approved','Default Forum Search','Default Forum Search','default_forum_search','3','7','12',NULL,0,1,0,0,0,2682,'',0,1,0,1228264382),('DPUROtmpl0000000000001',1147642413,'3','pbversion0000000000001','approved','Default Grouped Aggregate Feeds','Default Grouped Aggregate Feeds','templates/syndicatedcontent/default_grouped_feeds','3','7','12',NULL,0,1,0,0,0,1479,NULL,0,1,0,1228264382),('PBtmpl0000000000000006',1147642414,'3','pbversion0000000000001','approved','Default LDAP Login Template','Default LDAP Login Template','default_ldap_login_template','3','7','12',NULL,0,1,0,0,0,1180,NULL,0,1,0,1228264382),('PBtmpl0000000000000047',1147642414,'3','pbversion0000000000001','approved','Default Message Board','Default Message Board','default_message_board','3','7','12',NULL,0,1,0,0,0,3535,'',0,1,0,1228264382),('TimeTrackingTMPL000002',1147642417,'3','pbversion0000000000001','approved','Default Time Tracking Manager View','Default Time Tracking Manager View','default-tt-template-manager','3','7','12',NULL,0,0,0,0,0,381,' ',0,1,0,1228264382),('PBtmpl0000000000000066',1147642417,'3','pbversion0000000000001','approved','Default USS','Default USS','default_uss','3','7','12',NULL,0,1,0,0,0,3063,'\n\n\n',0,1,0,1228264382),('PBtmpl0000000000000013',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Login Template','Default WebGUI Login Template','default_webgui_login_template','3','7','12',NULL,0,1,0,0,0,1334,NULL,0,1,0,1228264382),('PBtmpl0000000000000012',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template','default_webgui_password_reset_template','3','7','12',NULL,0,1,0,0,0,1274,NULL,0,1,0,1228264382),('PBtmpl0000000000000057',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt','default_webgui_yes/no_prompt','3','7','12',NULL,0,1,0,0,0,561,NULL,0,1,0,1228264382),('PBtmpl0000000000000060',1147642419,'3','pbversion0000000000001','approved','Fail Safe','Fail Safe','fail_safe','3','7','12',NULL,0,1,0,0,0,1246,NULL,0,1,0,1228264382),('PBtmpl0000000000000024',1147642420,'3','pbversion0000000000001','approved','File','File','file','3','7','12',NULL,0,1,0,0,0,477,NULL,0,1,0,1228264382),('PBtmpl0000000000000078',1147642420,'3','pbversion0000000000001','approved','File Folder','File Folder','file_folder','3','7','12','',0,1,0,0,0,1954,NULL,0,1,0,1228264382),('PBtmpl0000000000000107',1147642420,'3','pbversion0000000000001','approved','File with size','File with size','file_with_size','3','7','12',NULL,0,1,0,0,0,473,NULL,0,1,0,1228264382),('PBtmpl0000000000000108',1147642421,'3','pbversion0000000000001','approved','horizontalMenu','horizontalMenu','horizontalmenu','3','7','12',NULL,0,1,0,0,0,785,NULL,0,1,0,1228264382),('PBtmpl0000000000000088',1147642421,'3','pbversion0000000000001','approved','Image','Image','image','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1228264382),('PBtmpl0000000000000123',1147642421,'3','pbversion0000000000001','approved','Item','Item','item','3','7','12',NULL,0,1,0,0,0,897,NULL,0,1,0,1228264382),('PBtmpl0000000000000129',1147642422,'3','pbversion0000000000001','approved','Item w/pop-up Links','Item w/pop-up Links','item_w/pop-up_links','3','7','12',NULL,0,1,0,0,0,970,NULL,0,1,0,1228264382),('PBtmpl0000000000000077',1147642422,'3','pbversion0000000000001','approved','Job Listing','Job Listing','job_listing','3','7','12',NULL,0,1,0,0,0,2925,'\n\n\n',0,1,0,1228264382),('WVtmpl0000000000000001',1147642426,'3','pbversion0000000000001','approved','Random Thread Macro Default Template','Random Thread Macro Default Template','randomthread-template','3','7','12',NULL,0,0,0,0,0,4783,NULL,0,1,0,1228264382),('PBtmpl0000000000000136',1147642428,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis2','3','7','12',NULL,0,1,0,0,0,852,NULL,0,1,0,1228264382),('PBtmpl0000000000000124',1147642429,'3','pbversion0000000000001','approved','Tabs','Tabs','tabs','3','7','12',NULL,0,1,0,0,0,777,NULL,0,1,0,1228264382),('PBtmpl0000000000000048',1147642431,'3','pbversion0000000000001','approved','verticalMenu','verticalMenu','verticalmenu','3','7','12',NULL,0,1,0,0,0,789,NULL,0,1,0,1228264382),('PBtmplBlankStyle000001',1147642431,'3','pbversion0000000000001','approved','WebGUI 6 Blank Style','WebGUI 6 Blank Style','pbtmplblankstyle000001','3','7','12',NULL,0,1,0,0,0,860,NULL,0,1,0,1228264382),('5A8Hd9zXvByTDy4x-H28qw',1227566395,'3','pbversion0000000000001','approved','Default Invitation Confirmation Template','Default Invitation Confirmation Template','root/import/account/inbox/default-invitation-confirmation-template','3','7','12',NULL,0,1,0,0,0,1000,NULL,0,1,0,1228264387),('7.0-style0000000000005',1147642493,'3','pbversion0000000000001','approved','header.jpg','header.jpg','style1/header.jpg','3','7','12',NULL,0,0,0,0,0,89722,NULL,0,1,0,1147642493),('7.0-style0000000000008',1147642494,'3','pbversion0000000000001','approved','nav1_center_on.jpg','nav1_center_on.jpg','style1/nav1_center_on.jpg','3','7','12',NULL,0,0,0,0,0,2428,NULL,0,1,0,1147642494),('pbrobot000000000000001',1147642511,'3','pbversion0000000000001','approved','robots.txt','robots.txt','robots.txt','3','7','12',NULL,0,0,0,0,0,292,NULL,0,1,0,1147642511),('bX5rYxb6tZ9docY6sUhBlw',1147642514,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started/getting-started','3','7','4',NULL,0,1,0,0,0,646,NULL,0,1,0,1147642514),('IWFxZDyGhQ3-SLZhELa3qw',1147642514,'3','pbversion0000000000001','approved','Key Benefits','Key Benefits','home/key-benefits','3','7','4',NULL,0,1,0,0,0,2019,NULL,0,1,0,1147642514),('m4YJFaqzultnB_sj1Uq0aw',1147642514,'3','pbversion0000000000001','approved','Ad','Ad','home/ad','3','7','4',NULL,0,1,0,0,0,92365,NULL,0,1,0,1147642514),('7.0-style0000000000045',1147642503,'3','pbversion0000000000001','approved','pb_wg_bg.jpg','pb_wg_bg.jpg','style2/pb_wg_bg.jpg','3','7','12',NULL,0,0,0,0,0,43126,NULL,0,1,0,1147642503),('7.0-style0000000000021',1147642497,'3','pbversion0000000000001','approved','nav2_on_right.jpg','nav2_on_right.jpg','style1/nav2_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1110,NULL,0,1,0,1147642497),('7.0-style0000000000020',1147642497,'3','pbversion0000000000001','approved','nav2_on_left.jpg','nav2_on_left.jpg','style1/nav2_on_left.jpg','3','7','12',NULL,0,0,0,0,0,1138,NULL,0,1,0,1147642497),('7.0-style0000000000016',1147642496,'3','pbversion0000000000001','approved','nav2_center_on.jpg','nav2_center_on.jpg','style1/nav2_center_on.jpg','3','7','12',NULL,0,0,0,0,0,1280,NULL,0,1,0,1147642496),('PBasset000000000000003',1147642437,'3','pbversion0000000000001','approved','Media','Media','media','3','7','12',NULL,0,0,0,0,0,258,NULL,0,1,0,1147642437),('OhdaFLE7sXOzo_SIP2ZUgA',1147642513,'3','pbversion0000000000001','approved','Welcome','Welcome','home/welcome','3','7','4',NULL,0,1,0,0,0,1830,NULL,0,1,0,1147642513),('pbtmpl0000000000000221',1147642465,'3','pbversion0000000000001','approved','Flash Tutorial Template','Flash Tutorial Template','flash-tutorial-template','3','7','12',NULL,0,0,0,0,0,975,NULL,0,1,0,1228264382),('nbSrhXZQuxIjhWFaFPSuVA',1147642465,'3','pbversion0000000000001','approved','AdminConsole','AdminConsole','root/import/adminconsole','3','7','12',NULL,0,0,0,0,0,275,NULL,0,1,0,1147642465),('TvOZs8U1kRXLtwtmyW75pg',1147642465,'3','pbversion0000000000001','approved','Article','Article','root/import/article','3','7','12',NULL,0,0,0,0,0,260,NULL,0,1,0,1147642465),('GNOAsX98vCsl0JRwfwL-gg',1147642466,'3','pbversion0000000000001','approved','Collaboration','Collaboration','root/import/collaboration','3','7','12',NULL,0,0,0,0,0,302,NULL,0,1,0,1147642466),('S1A9iAwKcQQ6P20uTqw-Ew',1147642468,'3','pbversion0000000000001','approved','Dashboard','Dashboard','root/import/dashboard','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642468),('71e17KeduiXgODLMlUxiow',1222803352,'3','pbversion0000000000001','approved','project','project','root/import/projectmanager/project','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803352),('tXwf1zaOXTvsqPn6yu-GSw',1147642469,'3','pbversion0000000000001','approved','FileAsset','FileAsset','root/import/fileasset','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642469),('GYaFxnMu9UsEG8oanwB6TA',1147642470,'3','pbversion0000000000001','approved','Folder','Folder','root/import/folder','3','7','12',NULL,0,0,0,0,0,257,NULL,0,1,0,1147642470),('N13SD1Fpqk00UgBt1Z8ivQ',1147642470,'3','pbversion0000000000001','approved','HttpProxy','HttpProxy','root/import/httpproxy','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642470),('tPagC0AQErZXjLFZQ6OI1g',1147642470,'3','pbversion0000000000001','approved','ImageAsset','ImageAsset','root/import/imageasset','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642470),('VXSsbsfcfht1904EWkb1sw',1147642470,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/inbox','3','7','12',NULL,0,0,0,0,0,254,NULL,0,1,0,1147642470),('3uuBf8cYuj1sew2OJXl9tg',1147642470,'3','pbversion0000000000001','approved','InOutBoard','InOutBoard','root/import/inoutboard','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642470),('ProjectManagerTMPL0002',1222574693,'3','pbversion0000000000001','approved','Default Project Display','Default Project Display','default-pm-template-project-display','3','7','12',NULL,0,0,0,0,0,10531,'\r\n\r\n\r\n',0,1,0,1228264384),('cj2y4papTVGZRFdwTI-_fw',1147642475,'3','pbversion0000000000001','approved','MessageBoard','MessageBoard','root/import/messageboard','3','7','12',NULL,0,0,0,0,0,275,NULL,0,1,0,1147642475),('bBzO4CWjqU_ile3gf5Iypw',1147642475,'3','pbversion0000000000001','approved','MultiSearch','MultiSearch','root/import/multisearch','3','7','12',NULL,0,0,0,0,0,272,NULL,0,1,0,1147642475),('BFfNj5wA9bDw8H3cnr8pTw',1147642475,'3','pbversion0000000000001','approved','Navigation','Navigation','root/import/navigation','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642475),('jEz8iTGNWEt2I05IhVV19Q',1147642477,'3','pbversion0000000000001','approved','Operation/RedeemSubscription','Operation/RedeemSubscription','root/import/operation/redeemsubscription','3','7','12',NULL,0,0,0,0,0,323,NULL,0,1,0,1147642477),('VZK3CRgiMb8r4dBjUmCTgQ',1147642477,'3','pbversion0000000000001','approved','Poll','Poll','root/import/poll','3','7','12',NULL,0,0,0,0,0,251,NULL,0,1,0,1147642477),('f_tn9FfoSfKWX43F83v_3w',1147642479,'3','pbversion0000000000001','approved','Search','Search','root/import/search','3','7','12',NULL,0,0,0,0,0,257,NULL,0,1,0,1147642479),('Da6KWn805L4B5e4HFgQRQA',1147642479,'3','pbversion0000000000001','approved','Shortcut','Shortcut','root/import/shortcut','3','7','12',NULL,0,0,0,0,0,263,NULL,0,1,0,1147642479),('bbiA9Zq5Gy2oCFBlILO3QA',1147642480,'3','pbversion0000000000001','approved','SQLReport','SQLReport','root/import/sqlreport','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642480),('Efe2W0UgrSRDltNJ87jlfg',1147642480,'3','pbversion0000000000001','approved','StockData','StockData','root/import/stockdata','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642480),('RrV4aAPnn4dM0ZcU3OXnlw',1147642480,'3','pbversion0000000000001','approved','style','style','root/import/style','3','7','12',NULL,0,0,0,0,0,254,NULL,0,1,0,1147642480),('oGfxez5sksyB_PcaAsEm_Q',1147642482,'3','pbversion0000000000001','approved','SyndicatedContent','SyndicatedContent','root/import/syndicatedcontent','3','7','12',NULL,0,0,0,0,0,290,NULL,0,1,0,1147642482),('9wKWdum0_8z-OhhquWLtSQ',1147642483,'3','pbversion0000000000001','approved','WeatherData','WeatherData','root/import/weatherdata','3','7','12',NULL,0,0,0,0,0,272,NULL,0,1,0,1147642483),('ErEzulFiEKDkaCDVmxUavw',1227566394,'3','pbversion0000000000001','approved','Default Inbox Error Template','Default Inbox Error Template','root/import/account/inbox/default-inbox-error-template','3','7','12',NULL,0,1,0,0,0,550,NULL,0,1,0,1228264387),('CSN-ZON7Uwv8kxf3F1fh5Q',1147642484,'3','pbversion0000000000001','approved','ZipArchiveAsset','ZipArchiveAsset','root/import/ziparchiveasset','3','7','12',NULL,0,0,0,0,0,284,NULL,0,1,0,1147642484),('TCtybxdqmdwdvRn555zpCQ',1147642484,'3','pbversion0000000000001','approved','RichEdit','RichEdit','root/import/richedit','3','7','12',NULL,0,0,0,0,0,263,NULL,0,1,0,1147642484),('PBtmpl0000000000000044',1148579524,'3','pbversion0000000000001','approved','Default Login Box','Default Login Box','default_login_box','3','7','12',NULL,0,1,0,0,0,1157,NULL,0,1,0,1228264382),('PBtmpl0000000000000092',1148579524,'3','pbversion0000000000001','approved','Horizontal Login Box','Horizontal Login Box','horizontal_login_box','3','7','12',NULL,0,1,0,0,0,1243,NULL,0,1,0,1228264382),('PBnav00000000000bullet',1148579524,'3','pbversion0000000000001','approved','Bulleted List','Bulleted List','bulleted_list','3','7','12',NULL,0,0,0,0,0,1488,'\n\n',0,1,0,1228264382),('pbtmpl0000000000000220',1148579525,'3','pbversion0000000000001','approved','Flash Template','Flash Template','flash-template','3','7','12',NULL,0,0,0,0,0,596,NULL,0,1,0,1228264382),('PBtmpl0000000000000133',1149286278,'3','pbversion0000000000001','approved','Guest Book','Guest Book','guest_book','3','7','12',NULL,0,1,0,0,0,1599,NULL,0,1,0,1228264382),('PBtmpl0000000000000083',1149286278,'3','pbversion0000000000001','approved','Link List','Link List','link_list','3','7','12',NULL,0,1,0,0,0,2046,NULL,0,1,0,1228264383),('PBtmpl0000000000000101',1149286278,'3','pbversion0000000000001','approved','Ordered List','Ordered List','ordered_list','3','7','12',NULL,0,1,0,0,0,2094,NULL,0,1,0,1228264383),('PBtmpl0000000000000121',1149286279,'3','pbversion0000000000001','approved','Photo Gallery','Photo Gallery','photo_gallery','3','7','12',NULL,0,1,0,0,0,2029,'\n\n',0,1,0,1228264383),('PBtmpl0000000000000081',1149286279,'3','pbversion0000000000001','approved','Q and A','Q and A','q_and_a','3','7','12',NULL,0,1,0,0,0,2952,'\n',0,1,0,1228264383),('PBtmpl0000000000000079',1149286279,'3','pbversion0000000000001','approved','Topics','Topics','topics','3','7','12',NULL,0,1,0,0,0,3517,'\n',0,1,0,1228264383),('PBtmpl0000000000000082',1149286279,'3','pbversion0000000000001','approved','Unordered List','Unordered List','unordered_list','3','7','12',NULL,0,1,0,0,0,2985,'\n',0,1,0,1228264383),('PBtmpl0000000000000112',1149286279,'3','pbversion0000000000001','approved','Weblog','Weblog','weblog','3','7','12',NULL,0,1,0,0,0,3490,'',0,1,0,1228264383),('PBtmpl0000000000000039',1154535073,'3','pbversion0000000000001','approved','Default File Macro','Default File Macro','default_file_macro','3','7','12',NULL,0,1,0,0,0,464,NULL,0,1,0,1228264383),('PBtmpl0000000000000055',1154535073,'3','pbversion0000000000001','approved','Default Poll','Default Poll','default_poll','3','7','12',NULL,0,1,0,0,0,2001,'\n',0,1,0,1228264383),('Szs5eev3OMssmnsyLRZmWA',1213317790,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend/tell_a_friend','3','7','3',NULL,0,1,0,0,0,2029,NULL,0,1,0,1213317790),('PBtmpl0000000000000111',1154535074,'3','pbversion0000000000001','approved','Make Page Printable','Make Page Printable','make_page_printable','3','7','12',NULL,0,1,0,0,0,2027,NULL,0,1,0,1228264383),('PBtmpl0000000000000053',1154535074,'3','pbversion0000000000001','approved','Subscription code redemption','Subscription code redemption','subscription_code_redemption','3','7','12',NULL,0,1,0,0,0,460,NULL,0,1,0,1228264383),('WikiPageEditTmpl000001',1221692341,'3','pbversion0000000000001','approved','Default Wiki Page Edit','Default Wiki Page Edit','default-wiki-page-edit','3','7','12',NULL,0,0,0,0,0,1316,'\n',0,1,0,1228264384),('PBtmpl0000000000000097',1154535074,'3','pbversion0000000000001','approved','Traditional with Thumbnails','Traditional with Thumbnails','traditional_with_thumbnails','3','7','12',NULL,0,1,0,0,0,4463,'\n',0,1,0,1228264383),('PBnav00000000indentnav',1154535074,'3','pbversion0000000000001','approved','Indent Nav','Indent Nav','indent_nav','3','7','12',NULL,0,0,0,0,0,1560,'\n',0,1,0,1228264383),('PBtmpl0000000000000001',1157679164,'3','pbversion0000000000001','approved','Admin Console','Admin Console','admin_console2','3','7','12',NULL,0,1,0,0,0,3232,'\n\n',0,1,0,1228264383),('ProjectManagerTMPL0006',1157679165,'3','pbversion0000000000001','approved','Default Resource List','Default Resource List','default-pm-resource-list','3','7','12',NULL,0,0,0,0,0,1100,NULL,0,1,0,1228264383),('PBtmpl0000000000000002',1159989349,'3','pbversion0000000000001','approved','Default Article','Default Article','default_article','3','7','12',NULL,0,1,0,0,0,1507,NULL,0,1,0,1228264383),('ProjectManagerTMPL0003',1159989349,'3','pbversion0000000000001','approved','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart','default-pm-template-gantt-chart','3','7','12',NULL,0,0,0,0,0,2137,NULL,0,1,0,1228264383),('pbproto000000000000002',1163019036,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-prototype','3','7','12',NULL,0,0,0,1,0,488,NULL,0,1,0,1163019036),('WikiPHTmpl000000000001',1165460175,'3','pbversion0000000000001','approved','Default Page History','Default Page History','default-wiki-page-history','3','7','12',NULL,0,0,0,0,0,486,NULL,0,1,0,1228264383),('WikiMPTmpl000000000001',1165460175,'3','pbversion0000000000001','approved','Default Most Popular','Default Most Popular','default-wiki-most-popular','3','7','12',NULL,0,0,0,0,0,675,NULL,0,1,0,1228264383),('IOB0000000000000000002',1166019641,'3','pbversion0000000000001','approved','Default InOutBoard Report Template','Default InOutBoard Report Template','iob-report-template','3','7','12',NULL,0,0,0,0,0,2116,'',0,1,0,1228264383),('WikiSearchTmpl00000001',1168480840,'3','pbversion0000000000001','approved','Default Wiki Search','Default Wiki Search','default-wiki-search','3','7','12',NULL,0,0,0,0,0,1393,'\n\n',0,1,0,1228264383),('WikiRCTmpl000000000001',1169092823,'3','pbversion0000000000001','approved','Default Recent Changes','Default Recent Changes','default-wiki-recent-changes','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1228264383),('ZipArchiveTMPL00000001',1169738426,'3','pbversion0000000000001','approved','Default Zip Archive Template','Default Zip Archive Template','zip-archive-template','3','7','12',NULL,0,0,0,0,0,706,NULL,0,1,0,1228264383),('IOB0000000000000000001',1169795123,'3','pbversion0000000000001','approved','Default InOutBoard Template','Default InOutBoard Template','iob-template','3','7','12',NULL,0,0,0,0,0,2715,'',0,1,0,1228264383),('PBtmpl0000000000000142',1171466654,'3','pbversion0000000000001','approved','Default RSS','Default RSS','pbtmpl0000000000000142','3','7','12',NULL,0,1,0,0,0,731,NULL,0,1,0,1228264383),('PBtmpl0000000000000080',1171466654,'3','pbversion0000000000001','approved','FAQ','FAQ','faqtemplate','3','7','12',NULL,0,1,0,0,0,2167,NULL,0,1,0,1228264383),('SQLReportDownload00001',1171466654,'3','pbversion0000000000001','approved','SQLReport Download Default Template','untitled','SQLReportDownload0001','3','7','12',NULL,0,0,0,0,0,3664,NULL,0,1,0,1228264383),('newsletter000000000001',1185754569,'3','pbversion0000000000001','approved',' Summary Newsletter (default)',' Summary Newsletter','newsletterdefaulttemplate','3','7','3',NULL,0,0,0,0,0,498,NULL,0,1,0,1228264383),('PBtmpl0000000000000026',1185754569,'3','pbversion0000000000001','approved','Default Forum','Default Forum','default_forum','3','7','12',NULL,0,1,0,0,0,4871,'\n\n\n',0,1,0,1228264383),('PBtmpl0000000000000068',1227480813,'3','pbversion0000000000001','approved','Default Submission Form','Default Submission Form','default_submission_form','3','7','12',NULL,0,1,0,0,0,2946,'\n',0,1,0,1228264383),('PBtmpl0000000000000010',1227026287,'3','pbversion0000000000001','approved','Default WebGUI Account Display Template','Default WebGUI Account Display Template','default_webgui_account_display_template','3','7','12',NULL,0,1,0,0,0,1616,NULL,0,1,0,1228264385),('PBtmpl0000000000000014',1227218041,'3','pbversion0000000000001','approved','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template','default_webgui_password_recovery_template','3','7','12',NULL,0,1,0,0,0,1741,NULL,0,1,0,1228264385),('PBtmpl0000000000000004',1227026214,'3','pbversion0000000000001','approved','Default LDAP Account Display Template','Default LDAP Account Display Template','default_ldap_account_display_template','3','7','12',NULL,0,1,0,0,0,898,NULL,0,1,0,1228264383),('WikiKeyword00000000001',1185754571,'3','pbversion0000000000001','approved',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword','wiki-master-by-keyword-template.tmpl','3','7','3',NULL,0,0,0,0,0,474,NULL,0,1,0,1228264383),('WikiFrontTmpl000000001',1185754572,'3','pbversion0000000000001','approved','Default Wiki Front Page','Default Wiki Front Page','default-wiki-front-page','3','7','12',NULL,0,0,0,0,0,1322,NULL,0,1,0,1228264383),('tempspace0000000000000',1185754574,'3','pbversion0000000000001','approved','Tempspace','Tempspace','tempspace','3','7','3',NULL,0,0,0,0,0,270,NULL,0,1,0,1185754574),('MBZK_LPVzqhb4TV4mMRTJg',1197330678,'3','pbversion0000000000001','approved','admin_ie7.css','admin_ie7.css','root/import/gallery-templates/admin_ie7.css','3','7','3',NULL,0,1,0,0,0,320,NULL,0,1,0,1197330678),('kaPRSaf8UKiskiGEgJgLAw',1197330678,'3','pbversion0000000000001','approved','images','images','root/import/gallery-templates/images','3','7','3',NULL,0,0,0,0,0,304,NULL,0,1,0,1197330678),('bANo8aiAPA7aY_oQZKxIWw',1197330678,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss.gif','3','7','3',NULL,0,1,0,0,0,1378,NULL,0,1,0,1197330678),('fdd8tGExyVwHyrB8RBbKXg',1197330839,'3','pbversion0000000000001','approved','next.gif','next.gif','root/import/gallery-templates/images/next.gif','3','7','3',NULL,0,1,0,0,0,1665,NULL,0,1,0,1197330839),('BpisgHl4ZDcSECJp6oib1w',1197330840,'3','pbversion0000000000001','approved','play.gif','play.gif','root/import/gallery-templates/images/play.gif','3','7','3',NULL,0,1,0,0,0,2102,NULL,0,1,0,1197330840),('zshreRgPAXtnF0DtVbQ1Yg',1197330840,'3','pbversion0000000000001','approved','previous.gif','previous.gif','root/import/gallery-templates/images/previous.gif','3','7','3',NULL,0,1,0,0,0,1671,NULL,0,1,0,1197330840),('TimeTrackingTMPL000001',1201205738,'3','pbversion0000000000001','approved','Default Time Tracking User View','Default Time Tracking User View','default-tt-template-user','3','7','12',NULL,0,0,0,0,0,10402,'\n \n',0,1,0,1228264383),('PBtmpl0000000000000085',1202884864,'3','pbversion0000000000001','approved','Default Email','Default Email','default_email','3','7','12',NULL,0,1,0,0,0,1175,NULL,0,1,0,1228264383),('CalendarEventEdit00001',1205160982,'3','pbversion0000000000001','approved','Default Calendar Event Edit','Default Calendar Event Edit','root/import/calendar-templates/default-calendar-event-edit','3','7','12',NULL,0,0,0,0,0,11817,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n',0,1,0,1228264383),('CalendarPrintMonth0001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Month','Default Calendar Print Month','root/import/calendar-templates/default-calendar-print-month','3','7','12',NULL,0,0,0,0,0,2151,' \r\n',0,1,0,1228264383),('CalendarPrintWeek00001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Week','Default Calendar Print Week','root/import/calendar-templates/default-calendar-print-week','3','7','12',NULL,0,0,0,0,0,2249,' \r\n',0,1,0,1228264383),('CalendarPrintDay000001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Day','Default Calendar Print Day','root/import/calendar-templates/default-calendar-print-day','3','7','12',NULL,0,0,0,0,0,2117,' \r\n',0,1,0,1228264383),('PBtmpl0000000000000067',1206998733,'3','pbversion0000000000001','approved','Default Submission','Default Submission','default_submission','3','7','12',NULL,0,1,0,0,0,14012,'\r\n',0,1,0,1228264383),('PBtmpl0000000000000032',1206998756,'3','pbversion0000000000001','approved','Default Thread','Default Thread','default_thread','3','7','12',NULL,0,1,0,0,0,7847,'\r\n',0,1,0,1228264383),('PBtmpl0000000000000209',1206998862,'3','pbversion0000000000001','approved','Request Tracker Thread','Request Tracker Thread','request-tracker-post-template','3','7','12',NULL,0,0,0,0,0,14030,'\r\n',0,1,0,1228264383),('FOvmwGC0GtZo5VTxJIL3OA',1207068851,'3','pbversion0000000000001','approved','Get Documentation','Get Documentation','yns/docs','3','7','4',NULL,0,1,0,0,0,595,NULL,0,1,0,1207068851),('PBrichedit000000000001',1207240829,'3','pbversion0000000000001','approved','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit','content_managers_rich_edit','3','7','12',NULL,0,0,0,0,0,538,NULL,0,1,0,1207240829),('3qiVYhNTXMVC5hfsumVHgg',1206743306,'3','pbversion0000000000001','approved','browserdetect.js','browserdetect.js','root/import/gallery-templates/browserdetect.js','3','7','3',NULL,0,1,0,0,0,2681,NULL,0,1,0,1206743306),('F7MAQ-cpuvQ1KuC7J4P5zQ',1222803673,'3','pbversion0000000000001','approved','View','View','root/import/profile/view','3','7','12',NULL,0,0,0,0,0,294,NULL,0,1,0,1222803673),('Tsg7xmPYv782j6IVz7yHFg',1213244777,'3','pbversion0000000000001','approved','Calendar Templates','Calendar Templates','root/import/calendar-templates','3','7','12',NULL,0,1,0,0,0,317,NULL,0,1,0,1213244777),('-K8Hj45mbelljN9-0CXZxg',1209325764,'3','pbversion0000000000001','approved','DataForm','DataForm','root/import/dataform','3','7','12',NULL,0,0,0,0,0,300,NULL,0,1,0,1209325764),('Q4uX_C557arTp6D_jwB1jQ',1222803760,'3','pbversion0000000000001','approved','Wiki','Wiki','root/import/wiki','3','12','12',NULL,0,0,0,0,0,280,NULL,0,1,0,1222803760),('4qh0kIsFUdd4Ox-Iu1JZgg',1208725439,'3','pbversion0000000000001','approved','EMS','EMS','root/import/ems','3','7','12',NULL,0,1,0,0,0,285,NULL,0,1,0,1208725439),('PsFn7dJt4wMwBa8hiE3hOA',1208558071,'3','pbversion0000000000001','approved','Print Badge (Default)','Print Badge (Default)','root/import/ems/print-badge-default','3','7','12',NULL,0,1,0,0,0,1417,NULL,0,1,0,1228264384),('yBwydfooiLvhEFawJb0VTQ',1208629936,'3','pbversion0000000000001','approved','Print Ticket (Default)','Print Ticket (Default)','root/import/ems/print-ticket-default','3','7','12',NULL,0,1,0,0,0,1449,NULL,0,1,0,1228264384),('aNNC62qLAS6TB-0_MCYjsw',1213283425,'3','pbversion0000000000001','approved','Layout','Layout','root/import/layout','3','7','12',NULL,0,0,0,0,0,281,NULL,0,1,0,1213283425),('NywJYmGWe1f6EBXJnWg9Xg',1222803638,'3','pbversion0000000000001','approved','Profile','Profile','root/import/profile','3','7','12',NULL,0,1,0,0,0,288,NULL,0,1,0,1222803638),('AgyFhx3eXlfZXNp2MkrsiQ',1222803665,'3','pbversion0000000000001','approved','Edit','Edit','root/import/profile/edit','3','7','12',NULL,0,0,0,0,0,294,NULL,0,1,0,1222803665),('_hELmIJfgbAyXFNqPyApxQ',1213309523,'3','pbversion0000000000001','approved','admin.css','admin.css','root/import/gallery-templates/admin.css','3','7','3',NULL,0,1,0,0,0,2031,NULL,0,1,0,1213309523),('2ci_v2d4x4uvyjTRlC49OA',1209499188,'3','pbversion0000000000001','approved','moveDown.gif','moveDown.gif','root/import/gallery-templates/images/movedown.gif','3','7','3',NULL,0,1,0,0,0,363,NULL,0,1,0,1209499188),('O-EsSzKgAk1KolFT-x_KsA',1209499188,'3','pbversion0000000000001','approved','moveUp.gif','moveUp.gif','root/import/gallery-templates/images/moveup.gif','3','7','3',NULL,0,1,0,0,0,353,NULL,0,1,0,1209499188),('POVcY79vIqAHR8OfGt36aw',1209499189,'3','pbversion0000000000001','approved','pagination_button.jpg','pagination_button.jpg','root/import/gallery-templates/images/pagination_button.jpg','3','7','12',NULL,0,1,0,0,0,1039,NULL,0,0,0,1209499189),('hIB-z34r8Xl-vYVYCkKr-w',1209499189,'3','pbversion0000000000001','approved','bar-btn-r.jpg','bar-btn-r.jpg','root/import/gallery-templates/images/bar-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,819,NULL,0,0,0,1209499189),('-mPUoFlYcjqjPUPRLAlxNQ',1209499189,'3','pbversion0000000000001','approved','search-field-r.jpg','search-field-r.jpg','root/import/gallery-templates/images/search-field-r.jpg','3','7','12',NULL,0,1,0,0,0,837,NULL,0,0,0,1209499189),('MDpUOR-N8KMyt1J7Hh_h4w',1209499189,'3','pbversion0000000000001','approved','bar-btn.jpg','bar-btn.jpg','root/import/gallery-templates/images/bar-btn.jpg','3','7','12',NULL,0,1,0,0,0,697,NULL,0,0,0,1209499189),('YfXKByTwDZVituMc4h13Dg',1209499189,'3','pbversion0000000000001','approved','pagination_bg.jpg','pagination_bg.jpg','root/import/gallery-templates/images/pagination_bg.jpg','3','7','12',NULL,0,1,0,0,0,1120,NULL,0,0,0,1209499189),('esko_HSU0Gh-uJZ1h3xRmQ',1209499189,'3','pbversion0000000000001','approved','search-field-l.jpg','search-field-l.jpg','root/import/gallery-templates/images/search-field-l.jpg','3','7','12',NULL,0,1,0,0,0,863,NULL,0,0,0,1209499189),('oSqpGswzpBG_ErdfYwIO8A',1209499189,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg.jpg','3','7','12',NULL,0,1,0,0,0,681,NULL,0,0,0,1209499189),('MXJklShZvLLB_DSnZQmXrQ',1209499189,'3','pbversion0000000000001','approved','title_bg.jpg','title_bg.jpg','root/import/gallery-templates/images/title_bg.jpg','3','7','12',NULL,0,1,0,0,0,1647,NULL,0,0,0,1209499189),('BthxD5oJ0idmsyI3ioA2FA',1209499189,'3','pbversion0000000000001','approved','bar-btn-l.jpg','bar-btn-l.jpg','root/import/gallery-templates/images/bar-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,834,NULL,0,0,0,1209499189),('aZ-1HYQamkRHYXvzAra8WQ',1209499189,'3','pbversion0000000000001','approved','search-field.jpg','search-field.jpg','root/import/gallery-templates/images/search-field.jpg','3','7','12',NULL,0,1,0,0,0,739,NULL,0,0,0,1209499189),('eRkb94OYcS5AdcrrerOP5Q',1209499189,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss2.gif','3','7','12',NULL,0,1,0,0,0,1380,NULL,0,0,0,1209499189),('TbnkjAJQEASORXIpYqDkcA',1209499189,'3','pbversion0000000000001','approved','blank-image.jpg','blank-image.jpg','root/import/gallery-templates/images/blank-image.jpg','3','7','12',NULL,0,1,0,0,0,3073,NULL,0,0,0,1209499189),('er-3faBjY-hhlDcc5aKqdQ',1209499189,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg2.jpg','3','7','12',NULL,0,1,0,0,0,682,NULL,0,0,0,1209499189),('8bFsu2FJUqHRUiHcozcVFw',1209499189,'3','pbversion0000000000001','approved','sub-btn-l.jpg','sub-btn-l.jpg','root/import/gallery-templates/images/sub-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,833,NULL,0,0,0,1209499189),('34Aayx5eA320D8VfhdfDBw',1209499189,'3','pbversion0000000000001','approved','sub-btn-r.jpg','sub-btn-r.jpg','root/import/gallery-templates/images/sub-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,813,NULL,0,0,0,1209499189),('TlhKOVmWblZOsAdqmhEpeg',1209499189,'3','pbversion0000000000001','approved','sub-btn.jpg','sub-btn.jpg','root/import/gallery-templates/images/sub-btn.jpg','3','7','12',NULL,0,1,0,0,0,691,NULL,0,0,0,1209499189),('Nx0ypjO3cN6QdZUBUEE0lA',1209499189,'3','pbversion0000000000001','approved','pic-title-bg.jpg','pic-title-bg.jpg','root/import/gallery-templates/images/pic-title-bg.jpg','3','7','12',NULL,0,1,0,0,0,854,NULL,0,0,0,1209499189),('CmFZLN7iPS7XXvUEsxKPKA',1209499190,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/gallery-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,795,NULL,0,0,0,1209499190),('v_XBgwwZqgW1D5s4y05qfg',1209499190,'3','pbversion0000000000001','approved','addtl-info.gif','addtl-info.gif','root/import/gallery-templates/images/addtl-info.gif','3','7','12',NULL,0,1,0,0,0,903,NULL,0,0,0,1209499190),('4TdAkKoQbSCvI7QWcW889A',1209499190,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/gallery-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,780,NULL,0,0,0,1209499190),('SAgK6eDPCG1cgkJ59WapHQ',1209499190,'3','pbversion0000000000001','approved','prev-btn.gif','prev-btn.gif','root/import/gallery-templates/images/prev-btn.gif','3','7','12',NULL,0,1,0,0,0,2004,NULL,0,0,0,1209499190),('XJYLuvGy9ubF7JNKyINtpA',1209499190,'3','pbversion0000000000001','approved','play-btn.gif','play-btn.gif','root/import/gallery-templates/images/play-btn.gif','3','7','12',NULL,0,1,0,0,0,2532,NULL,0,0,0,1209499190),('RWj7hyv2SpZuXxwj1Wocug',1209499190,'3','pbversion0000000000001','approved','next-btn.gif','next-btn.gif','root/import/gallery-templates/images/next-btn.gif','3','7','12',NULL,0,1,0,0,0,2034,NULL,0,0,0,1209499190),('aq8QElnlm3YufAoxRz9Pcg',1209499190,'3','pbversion0000000000001','approved','data-bg.jpg','data-bg.jpg','root/import/gallery-templates/images/data-bg.jpg','3','7','12',NULL,0,1,0,0,0,810,NULL,0,0,0,1209499190),('7fE8md51vTCcuJFOvxNaGA',1209503742,'3','pbversion0000000000001','approved','thumbnails.js','thumbnails.js','root/import/gallery-templates/thumbnails.js','3','7','3',NULL,0,1,0,0,0,3933,NULL,0,1,0,1209503742),('mTOiwwk3q4k9g5-XykXhPA',1218149728,'3','pbversion0000000000001','approved','Documentation','Documentation','documentation','3','7','3',NULL,0,0,0,0,0,506,NULL,0,1,0,1218149728),('TYo2Bwl7aafzTtdHlS-arQ',1211664878,'3','pbversion0000000000001','approved','Product','Product','root/import/product','3','7','12',NULL,0,0,0,0,0,284,NULL,0,1,0,1211664878),('gbnRhcWNk1iQe32LFEB5eQ',1212086102,'3','pbversion0000000000001','approved','Shelf','Shelf','root/import/shelf2','3','7','12',NULL,0,1,0,0,0,279,NULL,0,1,0,1212086102),('6tK47xsaIH-ELw0IBo0uRQ',1210777115,'3','pbversion0000000000001','approved','images','images','root/import/shelf2/images','3','7','12',NULL,0,1,0,0,0,294,NULL,0,1,0,1210777115),('_bZJ9LA_KNekZiFPaP2SeQ',1210777868,'3','pbversion0000000000001','approved','shelf-titles.jpg','shelf-titles.jpg','root/import/shelf2/images/shelf-titles.jpg','3','7','12',NULL,0,1,0,0,0,1027,NULL,0,0,0,1210777868),('4e-_rNs6mSWedZhQ_V5kJA',1210779672,'3','pbversion0000000000001','approved','shelf-ie.css','shelf-ie.css','root/import/shelf2/shelf-ie.css','3','7','12',NULL,0,1,0,0,0,693,NULL,0,1,0,1210779672),('6D4Z-oruXPS6OlH_Kx8pBg',1209509389,'3','pbversion0000000000001','approved','images','images','root/import/thingy-templates/images','3','7','12',NULL,0,1,0,0,0,304,NULL,0,1,0,1209509389),('hQ7z33_jOYkQ8WNX5xy9Sw',1209509455,'3','pbversion0000000000001','approved','style-button.gif','style-button.gif','root/import/thingy-templates/images/style-button.gif','3','7','12',NULL,0,1,0,0,0,912,NULL,0,0,0,1209509455),('vWW_DcHiYSrKZOkkIfEfcQ',1209509433,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/thingy-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,794,NULL,0,0,0,1209509433),('_bPYzRA87NTAUIKlfrJMHg',1209509433,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/thingy-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,779,NULL,0,0,0,1209509433),('nJjZHRwdDs5MAZYsAyioHw',1209509433,'3','pbversion0000000000001','approved','title-bg.jpg','title-bg.jpg','root/import/thingy-templates/images/title-bg.jpg','3','7','12',NULL,0,1,0,0,0,1094,NULL,0,0,0,1209509433),('8hxfkrJPeFVRWF5piCNJ1A',1209509433,'3','pbversion0000000000001','approved','field-bg.jpg','field-bg.jpg','root/import/thingy-templates/images/field-bg.jpg','3','7','12',NULL,0,1,0,0,0,710,NULL,0,0,0,1209509433),('Osx7WN52iIKHZFT4vqUBHQ',1209509433,'3','pbversion0000000000001','approved','search-btn.gif','search-btn.gif','root/import/thingy-templates/images/search-btn.gif','3','7','12',NULL,0,1,0,0,0,1252,NULL,0,0,0,1209509433),('oWff8fGzRdHPyq5VNREe9Q',1209509433,'3','pbversion0000000000001','approved','top-bg.jpg','top-bg.jpg','root/import/thingy-templates/images/top-bg.jpg','3','7','12',NULL,0,1,0,0,0,680,NULL,0,0,0,1209509433),('uqbkvb1b9443VvfkyRz95w',1209509433,'3','pbversion0000000000001','approved','save-button.gif','save-button.gif','root/import/thingy-templates/images/save-button.gif','3','7','12',NULL,0,1,0,0,0,1260,NULL,0,0,0,1209509433),('8YiMkcz32xalkAn3WBLpag',1210181860,'3','pbversion0000000000001','approved','go-btn.gif','go-btn.gif','root/import/thingy-templates/images/go-btn.gif','3','7','12',NULL,0,1,0,0,0,419,NULL,0,0,0,1210181860),('C5fPz-Wg85vkYRvCdl-Xqw',1212160830,'3','pbversion0000000000001','approved','UserList','UserList','root/import/userlist','3','7','12',NULL,0,1,0,0,0,287,NULL,0,1,0,1212160830),('usuxw9V3jN4d4pujRiEYxg',1209494150,'3','pbversion0000000000001','approved','css03-ie.css','css03-ie.css','style3/css03-ie.css','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1209494150),('aNmgn0cd6tldmC1FpW4KbA',1213122695,'3','pbversion0000000000001','approved','Shop','Shop','shopping-cart-collateral-items','3','7','3',NULL,0,1,0,0,0,288,NULL,0,0,0,1213122695),('2q5fxatSFLgIhXaUX-oSvg',1204149033,'3','pbversion0000000000001','approved','bottom-left.jpg','bottom-left.jpg','shopping-cart-collateral-items/bottom-left.jpg','3','7','3',NULL,0,1,0,0,0,32243,NULL,0,0,0,1204149033),('_d5WTkKjnwct-_Dk7gZHvQ',1204149033,'3','pbversion0000000000001','approved','bottom-right.jpg','bottom-right.jpg','shopping-cart-collateral-items/bottom-right.jpg','3','7','3',NULL,0,1,0,0,0,32247,NULL,0,0,0,1204149033),('Iz2mUR3jCPKyemwAea4b2g',1204149033,'3','pbversion0000000000001','approved','input_bg.jpg','input_bg.jpg','shopping-cart-collateral-items/input_bg.jpg','3','7','3',NULL,0,1,0,0,0,30065,NULL,0,0,0,1204149033),('JU9bjsLRoWj7GVHs__prig',1204149033,'3','pbversion0000000000001','approved','top-left.jpg','top-left.jpg','shopping-cart-collateral-items/top-left.jpg','3','7','3',NULL,0,1,0,0,0,32196,NULL,0,0,0,1204149033),('noOlnjQGexHg8c4bGVUo9g',1204149033,'3','pbversion0000000000001','approved','top-right.jpg','top-right.jpg','shopping-cart-collateral-items/top-right.jpg','3','7','3',NULL,0,1,0,0,0,32234,NULL,0,0,0,1204149033),('bPz1yk6Y9uwMDMBcmMsSCg',1211829604,'3','pbversion0000000000001','approved','Email Receipt (Default)','Email Receipt (Default)','shopping-cart-collateral-items/email-receipt-default','3','7','3',NULL,0,1,0,0,0,2895,NULL,0,1,0,1228264384),('EBlxJpZQ9o-8VBOaGQbChA',1212093746,'3','pbversion0000000000001','approved','MiniCart','MiniCart','shopping-cart-collateral-items/minicart','3','7','3',NULL,0,1,0,0,0,2295,'',0,1,0,1228264384),('iLzlwGmwrvzlGHXKzaDyjA',1222804090,'3','pbversion0000000000001','approved','Messaging','Messaging','root/import/messaging','3','12','3',NULL,0,0,0,0,0,294,NULL,0,1,0,1222804090),('WeatherDataTmpl0000001',1210711353,'3','pbversion0000000000001','approved','WeatherData Default View','WeatherData Default View','weatherdatatmpl0000001','3','7','12',NULL,0,1,0,0,0,5190,'\r\n\r\n\r\n',0,1,0,1228264384),('Ik9HHky10DIyFTKehUD1dw',1222803478,'3','pbversion0000000000001','approved','Prompt','Prompt','root/import/prompt','3','7','12',NULL,0,0,0,0,0,285,NULL,0,1,0,1222803478),('gI_TxK-5S4DNuv42wpImmw',1213734379,'3','pbversion0000000000001','approved','Gallery Templates','Gallery Templates','root/import/gallery-templates','3','7','3',NULL,0,0,0,0,0,326,NULL,0,1,0,1213734379),('BmLaN4rmAANkCglXUViEbg',1222803871,'3','pbversion0000000000001','approved','Resource','Resource','root/import/projectmanager/resource','3','12','12',NULL,0,0,0,0,0,314,NULL,0,1,0,1222803871),('X7DrzUcj8pOKFa_6k9D5iw',1222804045,'3','pbversion0000000000001','approved','Newsletter','Newsletter','root/import/newsletter','3','12','3',NULL,0,0,0,0,0,297,NULL,0,1,0,1222804045),('7.0-style0000000000059',1213386091,'3','pbversion0000000000001','approved','main_top.jpg','main_top.jpg','style3/main_top.jpg','3','7','12',NULL,0,0,0,0,0,3583,NULL,0,1,0,1213386091),('CalendarPrintEvent0001',1215396964,'3','pbversion0000000000001','approved','Default Calendar Print Event','Default Calendar Print Event','root/import/calendar-templates/default-calendar-print-event','3','7','12',NULL,0,0,0,0,0,3079,' \r\n',0,1,0,1228264384),('_gBYAdTcbkiyamnqi2Xskg',1222803409,'3','pbversion0000000000001','approved','WebGUI/Recovery','WebGUI/Recovery','root/import/auth/webgui/recovery','3','7','12',NULL,0,0,0,0,0,324,NULL,0,1,0,1222803409),('j_1qEqM6iLfQLiR6VKy0aA',1215718151,'3','pbversion0000000000001','approved','Free Documentation','Free Documentation','documentation/free-documentation','3','7','3',NULL,0,1,0,0,0,1382,NULL,0,1,0,1215718151),('o_pq_e4vRyhMOKFzs61eag',1215714957,'3','pbversion0000000000001','approved','book-covers.jpg','book-covers.jpg','documentation/book-covers.jpg','3','7','3',NULL,0,1,0,0,0,106067,NULL,0,0,0,1215714957),('diZvW4bSgZWwyyGP3qXi1g',1215717972,'3','pbversion0000000000001','approved','Commercial Documentation','Commercial Documentation','documentation/commercial-documentation','3','7','3',NULL,0,1,0,0,0,1077,NULL,0,1,0,1215717972),('oHk7fAFhEEkB7dHzi0QOQA',1222803399,'3','pbversion0000000000001','approved','WebGUI/Expired','WebGUI/Expired','root/import/auth/webgui/expired','3','7','12',NULL,0,0,0,0,0,321,NULL,0,1,0,1222803399),('fq1ZkYhH24R5tb96kuT10Q',1222803395,'3','pbversion0000000000001','approved','WebGUI/Create','WebGUI/Create','root/import/auth/webgui/create','3','7','12',NULL,0,0,0,0,0,318,NULL,0,1,0,1222803395),('63ix2-hU0FchXGIWkG3tow',1216169693,'3','pbversion0000000000001','approved','Flat Discount (Default)','Flat Discount (Default)','root/import/flat-discount-default','3','7','12',NULL,0,1,0,0,0,811,NULL,0,1,0,1228264384),('K0q_N885Httqev1VCqUWxg',1222803391,'3','pbversion0000000000001','approved','WebGUI/Account','WebGUI/Account','root/import/auth/webgui/account','3','7','12',NULL,0,0,0,0,0,321,NULL,0,1,0,1222803391),('jnYdqDkUR8x7Pv2eGR1qTA',1216250666,'3','pbversion0000000000001','approved','Thingy Templates','Thingy Templates','root/import/thingy-templates','3','7','12',NULL,0,1,0,0,0,312,NULL,0,1,0,1216250666),('taX2UYkFF21ALpFZY2rhMw',1222803387,'3','pbversion0000000000001','approved','LDAP/Login','LDAP/Login','root/import/auth/ldap/login','3','7','12',NULL,0,0,0,0,0,309,NULL,0,1,0,1222803387),('3n3H85BsdeRQ0I08WmvlOg',1216227244,'3','pbversion0000000000001','approved','thingy.css','thingy.css','root/import/thingy-templates/thingy.css','3','7','12',NULL,0,1,0,0,0,2768,NULL,0,1,0,1216227244),('5m5I7__l40C4hhv4ydqAHQ',1216227786,'3','pbversion0000000000001','approved','thingy-ie.css','thingy-ie.css','root/import/thingy-templates/thingy-ie.css','3','7','12',NULL,0,1,0,0,0,830,NULL,0,1,0,1216227786),('9M-lrlPQWeeNWfvnDnK_Xg',1222803405,'3','pbversion0000000000001','approved','WebGUI/Login','WebGUI/Login','root/import/auth/webgui/login','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1222803405),('xSmREZO3GNzK3M5PaueOOQ',1222803378,'3','pbversion0000000000001','approved','LDAP/Account','LDAP/Account','root/import/auth/ldap/account','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1222803378),('0bx-xoL8TSXXubFuqKAoVQ',1222803383,'3','pbversion0000000000001','approved','LDAP/Create','LDAP/Create','root/import/auth/ldap/create','3','7','12',NULL,0,0,0,0,0,312,NULL,0,1,0,1222803383),('1oGhfj00KkCzP1ez01AfKA',1218582812,'3','pbversion0000000000001','approved','slideshow.js','slideshow.js','root/import/gallery-templates/slideshow.js','3','7','3',NULL,0,1,0,0,0,8708,NULL,0,1,0,1218582812),('PBtmpl0000000000000130',1219072470,'3','pbversion0000000000001','approved','Tree Navigation','Tree Navigation','root/import/navigation/tree-navigation','3','7','12',NULL,0,1,0,0,0,2512,'\r\n\r\n\r\n',0,1,0,1228264384),('pV7GnZdpjR3XpZaSINIoeg',1222803347,'3','pbversion0000000000001','approved','gantt','gantt','root/import/projectmanager/gantt','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1222803347),('9A-mg2gwWmaYi9o_1C7ArQ',1222803338,'3','pbversion0000000000001','approved','dashboard','dashboard','root/import/projectmanager/dashboard','3','7','12',NULL,0,0,0,0,0,316,NULL,0,1,0,1222803338),('PBtmpl0000000000000054',1220655703,'3','pbversion0000000000001','approved','Default Page','Default Page','default_page','3','7','12',NULL,0,1,0,0,0,1193,NULL,0,1,0,1228264384),('PBtmpl000000000table54',1220655704,'3','pbversion0000000000001','approved','Default Page (Table)','Default Page (Table)','default_page_table','3','7','12',NULL,0,0,0,0,0,1258,NULL,0,1,0,1228264384),('yD1SMHelczihzjEmx6eXBA',1222803342,'3','pbversion0000000000001','approved','editTask','editTask','root/import/projectmanager/edittask','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803342),('PBtmpl0000000000000125',1220655703,'3','pbversion0000000000001','approved','Left Column','Left Column','left_column','3','7','12',NULL,0,1,0,0,0,2407,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table125',1220655705,'3','pbversion0000000000001','approved','Left Column (Table)','Left Column (Table)','left_column_table','3','7','12',NULL,0,0,0,0,0,2419,'\n',0,1,0,1228264384),('PBtmpl00000000table094',1220655704,'3','pbversion0000000000001','approved','News (Table)','News (Table)','news_table','3','7','12',NULL,0,0,0,0,0,3604,'\r\n',0,1,0,1228264384),('PBtmpl0000000000000109',1220655703,'3','pbversion0000000000001','approved','One Over Three','One Over Three','one_over_three','3','7','12',NULL,0,1,0,0,0,3851,'\n\n',0,1,0,1228264384),('PBtmpl00000000table109',1220655705,'3','pbversion0000000000001','approved','One Over Three (Table)','One Over Three (Table)','one_over_three_table','3','7','12',NULL,0,0,0,0,0,3921,'\n\n',0,1,0,1228264384),('PBtmpl0000000000000094',1220655703,'3','pbversion0000000000001','approved','News','News','plainblacknews','3','7','12',NULL,0,1,0,0,0,3564,'\r\n\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000131',1220655704,'3','pbversion0000000000001','approved','Right Column','Right Column','right_column','3','7','12',NULL,0,1,0,0,0,2421,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table131',1220655705,'3','pbversion0000000000001','approved','Right Column (Table)','Right Column (Table)','right_column_table','3','7','12',NULL,0,0,0,0,0,2415,'\n',0,1,0,1228264384),('1XOJDcg_ITRYwVM-QnIcPw',1219175575,'3','pbversion0000000000001','approved','shelf.css','shelf.css','root/import/shelf2/shelf.css','3','7','12',NULL,0,1,0,0,0,1486,NULL,0,1,0,1219175575),('PBtmpl0000000000000135',1220655704,'3','pbversion0000000000001','approved','Side By Side','Side By Side','side_by_side','3','7','12',NULL,0,1,0,0,0,2256,'\n\n',0,1,0,1228264384),('PBtmpl00000000table135',1220655706,'3','pbversion0000000000001','approved','Side By Side (Table)','Side By Side (Table)','side_by_side_table','3','7','12',NULL,0,0,0,0,0,2277,'\r\n',0,1,0,1228264384),('PBtmpl0000000000000118',1220655703,'3','pbversion0000000000001','approved','Three Over One','Three Over One','three_over_one','3','7','12',NULL,0,1,0,0,0,3814,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table118',1220655705,'3','pbversion0000000000001','approved','Three Over One (Table)','Three Over One (Table)','three_over_one_table','3','7','12',NULL,0,0,0,0,0,3936,'\r\n',0,1,0,1228264384),('huASapWvFDzqwOSbcN-JFQ',1222803313,'3','pbversion0000000000001','approved','user','user','root/import/timetracking/user','3','7','12',NULL,0,0,0,0,0,299,NULL,0,1,0,1222803313),('lo1ac3BsoJx3ijGQ3gR-bQ',1222803309,'3','pbversion0000000000001','approved','row','row','root/import/timetracking/row','3','7','12',NULL,0,0,0,0,0,296,NULL,0,1,0,1222803309),('1z9J1O08n_7gVVlBwSRBJQ',1222803099,'3','pbversion0000000000001','approved','Auth','Auth','root/import/auth','3','7','12',NULL,0,1,0,0,0,279,NULL,0,1,0,1222803099),('zyWi26q9na-iiZqL4yedog',1222803114,'3','pbversion0000000000001','approved','Macro','Macro','root/import/macro','3','7','12',NULL,0,1,0,0,0,282,NULL,0,1,0,1222803114),('tBL7BWiQRZFed2Y-Zjo9tQ',1222803200,'3','pbversion0000000000001','approved','AdminToggle','AdminToggle','root/import/macro/admintoggle','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803200),('GdkQpvjRtJqtzOUbwIIQRA',1222803205,'3','pbversion0000000000001','approved','a_account','a_account','root/import/macro/a_account','3','7','12',NULL,0,0,0,0,0,307,NULL,0,1,0,1222803205),('tnc5iYyynX2hfdEs9D3P8w',1222803213,'3','pbversion0000000000001','approved','EditableToggle','EditableToggle','root/import/macro/editabletoggle','3','7','12',NULL,0,0,0,0,0,322,NULL,0,1,0,1222803213),('vgXdBcFTqU7h4wBG1ewdBw',1222803217,'3','pbversion0000000000001','approved','File','File','root/import/macro/file','3','7','12',NULL,0,0,0,0,0,292,NULL,0,1,0,1222803217),('hcFlqnXlsmC1ujN6Id0F0A',1222803234,'3','pbversion0000000000001','approved','GroupAdd','GroupAdd','root/import/macro/groupadd','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1222803234),('eRJR52fvlaxfetv3DQkQYw',1222803238,'3','pbversion0000000000001','approved','GroupDelete','GroupDelete','root/import/macro/groupdelete','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803238),('5HIDHq5lAWHV5gpYGS0zLg',1222803244,'3','pbversion0000000000001','approved','H_homeLink','H_homeLink','root/import/macro/h_homelink','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803244),('rYEFwXXo0tkGhQTcbDibvg',1222803249,'3','pbversion0000000000001','approved','LoginToggle','LoginToggle','root/import/macro/logintoggle','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803249),('-WM2dt0ZGpDasuL2wWocxg',1222803056,'3','pbversion0000000000001','approved','ProjectManager','ProjectManager','root/import/projectmanager','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1222803056),('2OcUWHVsu_L1sDFzIMWYqw',1222803070,'3','pbversion0000000000001','approved','TimeTracking','TimeTracking','root/import/timetracking','3','7','12',NULL,0,1,0,0,0,303,NULL,0,1,0,1222803070),('vTymIDYL2YqEh6PV50F7ew',1222803302,'3','pbversion0000000000001','approved','manager','manager','root/import/timetracking/manager','3','7','12',NULL,0,0,0,0,0,308,NULL,0,1,0,1222803302),('nqNbSUAhk9Vd1zda2SCz9A',1222803258,'3','pbversion0000000000001','approved','RandomThread','RandomThread','root/import/macro/randomthread','3','7','12',NULL,0,0,0,0,0,316,NULL,0,1,0,1222803258),('y8XkRdxIperLKkJ3bL5sSQ',1222803264,'3','pbversion0000000000001','approved','r_printable','r_printable','root/import/macro/r_printable','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803264),('V3l5S5TtI7wMm1WpIMhvOA',1222803253,'3','pbversion0000000000001','approved','L_loginBox','L_loginBox','root/import/macro/l_loginbox','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803253),('aIpCmr9Hi__vgdZnDTz1jw',1227539574,'3','pbversion0000000000001','approved','Cart (Default)','Cart (Default)','default-shopping-cart-template','3','7','3',NULL,0,1,0,0,0,8125,' ',0,1,0,1228264384),('PBEmsBadgeTemplate0000',1221692339,'3','pbversion0000000000001','approved','Default EMS Badge Template','Default EMS Badge Template','default_emsbadge','3','7','4',NULL,0,0,0,0,0,1456,NULL,0,1,0,1228264384),('PBtmpl0000000000000005',1221612327,'3','pbversion0000000000001','approved','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template','default_ldap_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,5808,'\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000200',1222383245,'3','pbversion0000000000001','approved','Default Search','Default Search','default_search2','3','7','12',NULL,0,0,0,0,0,1042,NULL,0,1,0,1228264384),('PBtmpl0000000000000011',1221612288,'3','pbversion0000000000001','approved','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template','default_webgui_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,6179,'\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000134',1222574692,'3','pbversion0000000000001','approved','Hierarchical Top Nav','Hierarchical Top Nav','import/hierarchical-top-nav','3','7','12',NULL,0,1,0,0,0,2993,'\r\n\r\n\r\n\r\n\r\n\n',0,1,0,1228264384),('PBtmpl0000000000000020',1221692340,'3','pbversion0000000000001','approved','Mail Form','Mail Form','mail_form','3','7','12',NULL,0,1,0,0,0,3147,'\n',0,1,0,1228264384),('PBtmpl0000000000000029',1227480813,'3','pbversion0000000000001','approved','Default Post Form','Default Post Form','default_post_form','3','7','12',NULL,0,1,0,0,0,2375,'\n',0,1,0,1228264383),('newslettersubscrip0001',1221692339,'3','pbversion0000000000001','approved','My Subscriptions (default)',' My Subscriptions','newslettermysubscriptionstemplate','3','7','3',NULL,0,0,0,0,0,778,NULL,0,1,0,1228264384),('PBtmpl0000000000000141',1221692340,'3','pbversion0000000000001','approved','Default DataForm','Default DataForm','pbtmpl0000000000000141','3','7','12',NULL,0,1,0,0,0,4343,'\r\n',0,1,0,1228264384),('kj3b-X3i6zRKnhLb4ZiCLw',1222574694,'3','pbversion0000000000001','approved','Default Calendar List View','Default Calendar List View','root/import/calendar-templates/default-calendar-list-view','3','7','3',NULL,0,1,0,0,0,4212,'\n',0,1,0,1228264384),('eqb9sWjFEVq0yHunGV8IGw',1222574693,'3','pbversion0000000000001','approved','Subscription (Default)','Subscription (Default)','root/import/subscription-default','3','7','12',NULL,0,1,0,0,0,2113,'\n',0,1,0,1228264384),('2gtFt7c0qAFNU3BG_uvNvg',1222574694,'3','pbversion0000000000001','approved','My Purchases (Default)','My Purchases (Default)','shopping-cart-collateral-items/my-purchases-default','3','7','3',NULL,0,1,0,0,0,2535,'\n',0,1,0,1228264384),('g8W53Pd71uHB9pxaXhWf_A',1222574693,'3','pbversion0000000000001','approved','My Purchases Detail (Default)','My Purchases Detail (Default)','shopping-cart-collateral-items/my-purchases-detail-default','3','7','3',NULL,0,1,0,0,0,6039,'\n',0,1,0,1228264384),('stevestyle000000000001',1222383245,'3','pbversion0000000000001','approved','Style 01','Style 01','style_01','3','7','12',NULL,0,0,0,0,0,1618,NULL,0,1,0,1228264384),('stevestyle000000000002',1222383245,'3','pbversion0000000000001','approved','Style 02','Style 02','style_02','3','7','12',NULL,0,0,0,0,0,2603,NULL,0,1,0,1228264384),('PBtmpl0000000000000116',1221692340,'3','pbversion0000000000001','approved','Tab Form','Tab Form','tab_form','3','7','12',NULL,0,1,0,0,0,3847,'\n',0,1,0,1228264384),('ThingyTmpl000000000002',1222574693,'3','pbversion0000000000001','approved','Default Thingy View Thing','Default Thingy View Thing','templates/thingy-default-view-thing','3','7','12',NULL,0,0,0,0,0,2859,'\n',0,1,0,1228264384),('UL-ItI4L1Z6-WSuhuXVvsQ',1225139673,'3','pbversion0000000000001','approved','DataTable','DataTable','root/import/datatable','3','7','3',NULL,0,0,0,0,0,293,NULL,0,1,0,1225139673),('3rjnBVJRO6ZSkxlFkYh_ug',1225139643,'3','pbversion0000000000001','approved','Default DataTable Template (YUI)','Default DataTable Template (YUI)','root/import/datatable/default-datatable-template-yui','3','7','3',NULL,0,1,0,0,0,557,NULL,0,1,0,1228264385),('TuYPpHx7TUyk08639Pc8Bg',1225139643,'3','pbversion0000000000001','approved','Default DataTable Template (HTML)','Default DataTable Template (HTML)','root/import/datatable/default-datatable-template-html','3','7','3',NULL,0,1,0,0,0,730,NULL,0,1,0,1228264385),('BMybD3cEnmXVk2wQ_qEsRQ',1224723361,'3','pbversion0000000000001','approved','Badge Builder (Default)','Badge Builder (Default)','root/import/ems/badge-builder-default','3','7','12',NULL,0,1,0,0,0,22629,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('2rC4ErZ3c77OJzJm7O5s3w',1224723218,'3','pbversion0000000000001','approved','EMS Badge Listing (default)','EMS Badge Listing (default)','root/import/ems/ems-badge-listing-default','3','7','12',NULL,0,1,0,0,0,7157,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n',0,1,0,1228264385),('OOyMH33plAy6oCj_QWrxtg',1224724790,'3','pbversion0000000000001','approved','Lookup Registrant (Default)','Lookup Registrant (Default)','root/import/ems/lookup-registrant-default','3','7','12',NULL,0,1,0,0,0,5159,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('THQhn1C-ooj-TLlEP7aIJQ',1225313951,'3','pbversion0000000000001','approved','gallery-ie.css','gallery-ie.css','root/import/gallery-templates/gallery-ie.css','3','7','3',NULL,0,1,0,0,0,441,NULL,0,1,0,1225313951),('7.0-style0000000000049',1224117144,'3','pbversion0000000000001','approved','WebGUI 7 Style 3','WebGUI 7 Style 3','root/import/webgui-7-style-3','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1224117144),('stevecoolmenu000000001',1224116942,'3','pbversion0000000000001','approved','Site Nav','Site Nav','webgui7/style3/hierarchical-top-nav','3','7','12',NULL,0,0,0,0,0,2566,'\r\n\r\n\r\n\r\n',0,1,0,1228264385),('7.0-style0000000000051',1224117026,'3','pbversion0000000000001','approved','css03.css','css03.css','style3/css03.css','3','7','12',NULL,0,0,0,0,0,3683,NULL,0,1,0,1224117026),('jVKLVakT_iA2010_oEuAwg',1224116526,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','department_nav','3','7','12',NULL,0,0,0,0,0,354,NULL,0,1,0,1224116526),('XNd7a_g_cTvJVYrVHcx2Mw',1224606020,'3','pbversion0000000000001','approved','Address (Default)','Address (Default)','shopping-cart-collateral-items/address-default','3','7','3',NULL,0,1,0,0,0,3231,'\r\n',0,1,0,1228264385),('stevestyle000000000003',1224795533,'3','pbversion0000000000001','approved','Style 03','Style 03','style_03','3','7','12',NULL,0,0,0,0,0,1716,NULL,0,1,0,1228264385),('ThingyTmpl000000000003',1224518002,'3','pbversion0000000000001','approved','Default Thingy Edit Thing','Default Thingy Edit Thing','templates/thingy-default-edit-thing','3','7','12',NULL,0,0,0,0,0,3883,'\r\n\r\n\r\n',0,1,0,1228264385),('QpmlAiYZz6VsKBM-_0wXaw',1224616691,'3','pbversion0000000000001','approved','UsersOnline Macro','UsersOnline Macro','users-online-macro-templates','3','7','3',NULL,0,0,0,0,0,329,NULL,0,1,0,1224616691),('h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'3','pbversion0000000000001','approved','UsersOnline Default View','UsersOnline Default View','users-online-macro-templates/usersonline-default-view','3','7','3',NULL,0,1,0,0,0,1728,'\r\n\r\n',0,1,0,1228264385),('4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'3','pbversion0000000000001','approved','UsersOnline Detailed View','UsersOnline Detailed View','users-online-macro-templates/usersonline-detailed-view','3','7','3',NULL,0,1,0,0,0,2706,'\r\n\r\n',0,1,0,1228264385),('PBtmpl0000000000000065',1226457084,'3','pbversion0000000000001','approved','Default Syndicated Content','Default Syndicated Content','default_syndicated_content','3','7','12',NULL,0,1,0,0,0,1041,NULL,0,1,0,1228264385),('PBtmpl0000000000000099',1227480813,'3','pbversion0000000000001','approved','FAQ Submission Form','FAQ Submission Form','faq_submission_form','3','7','12',NULL,0,1,0,0,0,2543,'\n',0,1,0,1228264385),('PBtmpl0000000000000122',1227480813,'3','pbversion0000000000001','approved','Job Submission Form','Job Submission Form','job_submission_form','3','7','12',NULL,0,1,0,0,0,3469,'\n',0,1,0,1228264385),('PBtmpl0000000000000114',1227480813,'3','pbversion0000000000001','approved','Link List Submission Form','Link List Submission Form','link_list_submission_form','3','7','12',NULL,0,1,0,0,0,3150,'\n',0,1,0,1228264385),('newslettercs0000000001',1226896423,'3','pbversion0000000000001','approved','Newsletter Manager (default)',' Newsletter Manager','newslettercstemplate','3','7','3',NULL,0,0,0,0,0,1886,'\n',0,1,0,1228264385),('PBtmpl0000000000000210',1227480812,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template2','3','7','12',NULL,0,0,0,0,0,3285,'\n\n\n',0,1,0,1228264385),('QHn6T9rU7KsnS3Y70KCNTg',1227080251,'3','pbversion0000000000001','approved','Account','Account','root/import/account','3','7','12',NULL,0,1,0,0,0,298,NULL,0,1,0,1227556683),('HPDOcsj4gBme8D4svHodBw',1225404573,'3','pbversion0000000000001','approved','Profile','Profile','root/import/account/profile','3','7','12',NULL,0,1,0,0,0,312,NULL,0,1,0,1227556683),('FJbUTvZ2nUTn65LpW6gjsA',1227070381,'3','pbversion0000000000001','approved','Profile Account Layout','Profile Account Layout','root/import/account/profile/profile-account-layout','3','7','12',NULL,0,1,0,0,0,2735,'\r\n',0,1,0,1228264385),('75CmQgpcCSkdsL-oawdn3Q',1227052575,'3','pbversion0000000000001','approved','Default Edit Profile Template','Default Edit Profile Template','root/import/account/profile/default-edit-profile-template','3','7','12',NULL,0,1,0,0,0,2912,'\r\n\r\n\r\n\r\n',0,1,0,1228264385),('2CS-BErrjMmESOtGT90qOg',1227070888,'3','pbversion0000000000001','approved','Default View Profile Template','Default View Profile Template','root/import/account/profile/default-view-profile-template','3','7','12',NULL,0,1,0,0,0,5384,NULL,0,1,0,1228264385),('MBmWlA_YEA2I6D29OMGtRg',1226542675,'3','pbversion0000000000001','approved','Default Profile Error Template','Default Profile Error Template','root/import/account/profile/default-profile-error-template','3','7','12',NULL,0,1,0,0,0,855,NULL,0,1,0,1228264385),('IZkrow_zwvbf4FCH-taVTQ',1226011853,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/account/inbox','3','7','12',NULL,0,1,0,0,0,306,NULL,0,1,0,1227556685),('gfZOwaTWYjbSoVaQtHBBEw',1226974679,'3','pbversion0000000000001','approved','Inbox Account Layout','Inbox Account Layout','root/import/account/inbox-account-layout','3','7','12',NULL,0,1,0,0,0,2208,'\r\n',0,1,0,1228264385),('c8xrwVuu5QE0XtF9DiVzLw',1226894351,'3','pbversion0000000000001','approved','Default Inbox View Template','Default Inbox View Template','root/import/account/inbox/default-inbox-view-template','3','7','12',NULL,0,1,0,0,0,8462,'\r\n\r\n',0,1,0,1228264385),('0n4HtbXaWa_XJHkFjetnLQ',1226894994,'3','pbversion0000000000001','approved','Default Inbox View Message Template','Default Inbox View Message Template','root/import/account/inbox/default-inbox-view-message-template','3','7','12',NULL,0,1,0,0,0,3775,NULL,0,1,0,1228264385),('6uQEULvXFgCYlRWnYzZsuA',1226896682,'3','pbversion0000000000001','approved','Default Inbox Send Message Template','Default Inbox Send Message Template','root/import/account/inbox/default-inbox-send-message-template','3','7','12',NULL,0,1,0,0,0,6051,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('DUoxlTBXhVS-Zl3CFDpt9g',1226896802,'3','pbversion0000000000001','approved','Default Message Confirm Template','Default Message Confirm Template','root/import/account/inbox/default-message-confirm-template','3','7','12',NULL,0,1,0,0,0,582,NULL,0,1,0,1228264385),('1Q4Je3hKCJzeo0ZBB5YB8g',1226898445,'3','pbversion0000000000001','approved','Default Manage Invitations Template','Default Manage Invitations Template','root/import/account/inbox/default-manage-invitations-template','3','7','12',NULL,0,1,0,0,0,8013,'\r\n\r\n',0,1,0,1228264385),('VBkY05f-E3WJS50WpdKd1Q',1226899241,'3','pbversion0000000000001','approved','Default View Invitation Template','Default View Invitation Template','root/import/account/inbox/default-view-invitation-template','3','7','12',NULL,0,1,0,0,0,3009,NULL,0,1,0,1228264385),('cR0UFm7I1qUI2Wbpj--08Q',1226964738,'3','pbversion0000000000001','approved','Default Invite User Form Template','Default Invite User Form Template','root/import/account/inbox/default-invite-user-form-template','3','7','12',NULL,0,1,0,0,0,3173,NULL,0,1,0,1228264385),('SVIhz68689hwUGgcDM-gWw',1226973314,'3','pbversion0000000000001','approved','Default Invite User Confirm Template','Default Invite User Confirm Template','root/import/account/inbox/default-invite-user-confirm-template','3','7','12',NULL,0,1,0,0,0,610,NULL,0,1,0,1228264385),('K0YjxqOqr7RupSo6sIdcAg',1227074310,'3','pbversion0000000000001','approved','Friends','Friends','root/import/account/friends','3','7','12',NULL,0,1,0,0,0,312,NULL,0,1,0,1227556687),('zrNpGbT3odfIkg6nFSUy8Q',1226994016,'3','pbversion0000000000001','approved','Friends Layout Template','Friends Layout Template','root/import/account/friends/friends-layout-template','3','7','12',NULL,0,1,0,0,0,1858,'\r\n',0,1,0,1228264385),('1Yn_zE_dSiNuaBGNLPbxtw',1226994422,'3','pbversion0000000000001','approved','Default Friends View Template','Default Friends View Template','root/import/account/friends/default-friends-view-template','3','7','12',NULL,0,1,0,0,0,6481,NULL,0,1,0,1228264385),('AZFU33p0jpPJ-E6qLSWZng',1226994865,'3','pbversion0000000000001','approved','Default Friends Edit Template','Default Friends Edit Template','root/import/account/friends/default-friends-edit-template','3','7','12',NULL,0,1,0,0,0,7310,NULL,0,1,0,1228264385),('AGJBGviWGAwjnwziiPjvDg',1226995497,'3','pbversion0000000000001','approved','Default Send Request Template','Default Send Request Template','root/import/account/friends/default-send-request-template','3','7','12',NULL,0,1,0,0,0,2355,NULL,0,1,0,1228264385),('7Ijdd8SW32lVgg2H8R-Aqw',1226995714,'3','pbversion0000000000001','approved','Default Friends Error Template','Default Friends Error Template','root/import/account/friends/default-friends-error-template','3','7','12',NULL,0,1,0,0,0,585,NULL,0,1,0,1228264385),('K8F0j_cq_jgo8dvWY_26Ag',1226995643,'3','pbversion0000000000001','approved','Default Friends Confirmation Template','Default Friends Confirmation Template','root/import/account/friends/default-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,678,NULL,0,1,0,1228264385),('G5V6neXIDiFXN05oL-U3AQ',1226995768,'3','pbversion0000000000001','approved','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template','root/import/account/friends/default-remove-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,813,NULL,0,1,0,1228264385),('_ilRXNR3s8F2vGJ_k9ePcg',1226643205,'3','pbversion0000000000001','approved','User','User','root/import/account/user','3','7','12',NULL,0,1,0,0,0,303,NULL,0,1,0,1227556688),('9ThW278DWLV0-Svf68ljFQ',1226647187,'3','pbversion0000000000001','approved','Account Layout','Account Layout','root/import/account/user/account-layout','3','7','12',NULL,0,1,0,0,0,1380,'\r\n',0,1,0,1228264385),('AOjPG2NHgfL9Cq6dDJ7mew',1226659753,'3','pbversion0000000000001','approved','Shop','Shop','root/import/account/shop','3','7','12',NULL,0,1,0,0,0,303,NULL,0,1,0,1227556688),('aUDsJ-vB9RgP-AYvPOy8FQ',1226660439,'3','pbversion0000000000001','approved','Shop Account Layout','Shop Account Layout','root/import/account/shop/shop-account-layout','3','7','12',NULL,0,1,0,0,0,1737,'\r\n',0,1,0,1228264385),('qaVcU0FFzzraMX_bzELqzw',1227074362,'3','pbversion0000000000001','approved','Contributions','Contributions','root/import/account/contributions','3','7','12',NULL,0,1,0,0,0,330,NULL,0,1,0,1227556688),('b4n3VyUIsAHyIvT-W-jziA',1227074747,'3','pbversion0000000000001','approved','Contributions Layout','Contributions Layout','root/import/account/contributions/contributions-layout','3','7','12',NULL,0,1,0,0,0,1407,'\r\n',0,1,0,1228264385),('1IzRpX0tgW7iuCfaU2Kk0A',1227079721,'3','pbversion0000000000001','approved','Default Contributions View','Default Contributions View','root/import/account/contributions/default-contributions-view','3','7','12',NULL,0,1,0,0,0,6257,NULL,0,1,0,1228264385),('N716tpSna0iIQTKxS4gTWA',1226604666,'3','pbversion0000000000001','approved','Default Account Layout','Default Account Layout','root/import/account/default-account-layout2','3','7','12',NULL,0,1,0,0,0,1130,'\r\n',0,1,0,1228264385),('vrKXEtluIhbmAS9xmPukDA',1226698051,'3','pbversion0000000000001','approved','Donation (Default)','Donation (Default)','root/import/default-donation-template','3','7','12',NULL,0,1,0,0,0,1876,'\r\n',0,0,0,1228264385),('5bnNzteN7w3NnK9mF4XiCg',1227540002,'3','pbversion0000000000001','approved','Survey','Survey','root/import/survey','3','7','12',NULL,0,0,0,0,0,295,NULL,0,1,0,1227556681),('PBtmpl0000000000000061',1227252733,'3','pbversion0000000000001','approved','Default Survey','Default Survey','default_survey','3','7','12',NULL,0,1,0,0,0,1340,NULL,0,1,0,1228264385),('PBtmpl0000000000000064',1226009610,'3','pbversion0000000000001','approved','Default Response','Default Response','default_response','3','7','12',NULL,0,1,0,0,0,1981,NULL,0,1,0,1228264385),('d8jMMMRddSQ7twP4l1ZSIw',1227248175,'3','pbversion0000000000001','approved','Default Survey Take','Default Survey Take','root/import/survey/default-survey-take','3','7','12',NULL,0,1,0,0,0,2147,'\r\n\r\n',0,1,0,1228264385),('CxMpE_UPauZA3p8jdrOABw',1227556536,'3','pbversion0000000000001','approved','Default Questions','Default Questions','root/import/survey/default-questions','3','7','12',NULL,0,1,0,0,0,8628,NULL,0,1,0,1228264385),('3womoo7Teyy2YKFa25-MZg',1226703362,'3','pbversion0000000000001','approved','Address Book (Default)','Address Book (Default)','shopping-cart-collateral-items/address-book-default','3','7','3',NULL,0,1,0,0,0,2603,'\r\n',0,1,0,1228264385),('ThingyTmpl000000000004',1227044214,'3','pbversion0000000000001','approved','Default Thingy Search Thing','Default Thingy Search Thing','templates/thingy-default-search-thing','3','7','12',NULL,0,0,0,0,0,6455,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('XgcsoDrbC0duVla7N7JAdw',1227566394,'3','pbversion0000000000001','approved','Default Invite User Email Template','Default Invite User Email Template','root/import/account/inbox/default-invite-user-email-template','3','7','12',NULL,0,1,0,0,0,443,NULL,0,1,0,1228264387),('UserListTmpl0000000001',1228125743,'3','pbversion0000000000001','approved','Default UserList','Default UserList','root/import/userlist/default-userlist','3','7','12',NULL,0,1,0,0,0,2817,NULL,0,1,0,1228264387),('UserListTmpl0000000003',1228125758,'3','pbversion0000000000001','approved','UserList with multiple search keywords','UserList with multiple search keywords','root/import/userlist/userlist-with-multiple-search-keywords','3','7','12',NULL,0,1,0,0,0,2998,NULL,0,1,0,1228264387),('UserListTmpl0000000002',1228125752,'3','pbversion0000000000001','approved','UserList with search field selection','UserList with search field selection','root/import/userlist/userlist-with-search-field-selection','3','7','12',NULL,0,1,0,0,0,2804,NULL,0,1,0,1228264387),('ThingyTmpl000000000001',1227753116,'3','pbversion0000000000001','approved','Default Thingy','Default Thingy','templates/thingy-default','3','7','12',NULL,0,0,0,0,0,1442,'',0,1,0,1228264387),('matrixtmpl000000000004',1228834590,'3','pbversion0000000000001','approved','Matrix Default Edit Listing','Matrix Default Edit Listing','default-matrix-edit-listing-template','3','7','12',NULL,0,0,0,0,0,430,NULL,0,1,0,1233158077),('PBtmpl0000000000000207',1229100306,'3','pbversion0000000000001','approved','Article with Files','Article with Files','article-with-files','3','7','12',NULL,0,0,0,0,0,1232,NULL,0,1,0,1229459611),('PBtmpl0000000000000084',1229100305,'3','pbversion0000000000001','approved','Center Image','Center Image','center_image','3','7','12',NULL,0,1,0,0,0,1329,NULL,0,1,0,1229459611),('TimeTrackingTMPL000003',1229311434,'3','pbversion0000000000001','approved','Default Time Tracking Row Template','Default Time Tracking Row Template','default-tt-template-row','3','7','12',NULL,0,0,0,0,0,3170,NULL,0,1,0,1229459611),('PBtmpl0000000000000056',1228934532,'3','pbversion0000000000001','approved','Default Product','Default Product','default_product','3','7','12',NULL,0,1,0,0,0,7505,'\r\n\r\n',0,1,0,1229459611),('PBtmpl0000000000000103',1229100306,'3','pbversion0000000000001','approved','Left Align Image','Left Align Image','left_align_image','3','7','12',NULL,0,1,0,0,0,1514,NULL,0,1,0,1229459611),('PBtmpl0000000000000115',1229100306,'3','pbversion0000000000001','approved','Linked Image with Caption','Linked Image with Caption','linked_image_with_caption','3','7','12',NULL,0,1,0,0,0,1700,NULL,0,1,0,1229459611),('uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'3','pbversion0000000000001','approved','Default Calendar Print List View','Default Calendar Print List View','root/import/calendar-templates/default-calendar-print-list-view','3','7','3',NULL,0,1,0,0,0,1080,NULL,0,1,0,1229459611),('nFen0xjkZn8WkpM93C9ceQ',1229117831,'3','pbversion0000000000001','approved','Shelf (Default)','Shelf (Default)','root/import/shelf-default','3','7','12',NULL,0,1,0,0,0,2282,'\r\n',0,1,0,1229459611),('StockDataTMPL000000001',1229453697,'3','pbversion0000000000001','approved','StockData Default View','StockData Default View','stockdatatmpl000000001','3','7','12',NULL,0,1,0,0,0,5126,'\n',0,1,0,1229459611),('PBtmpl0000000000000137',1229581394,'3','pbversion0000000000001','approved','Admin Console Style','Admin Console','admin_console','3','7','12',NULL,0,1,0,0,0,806,NULL,0,1,0,1231494253),('DashboardViewTmpl00001',1230358389,'3','pbversion0000000000001','approved','Dashboard Default View','Dashboard Default View','dashboard-default-view-template','3','7','12',NULL,0,0,0,0,0,7665,'\r\n\r\n\r\n',0,1,0,1231494252),('PBtmpl0000000000000021',1230269962,'3','pbversion0000000000001','approved','Data List','Data List','data_list','3','7','12',NULL,0,1,0,0,0,2218,'',0,1,0,1231494252),('ProjectManagerTMPL0005',1229579830,'3','pbversion0000000000001','approved','Default Resource Popup','Default Resource Popup','default-pm-resource-popup','3','7','12',NULL,0,0,0,0,0,1989,NULL,0,1,0,1231494253),('ProjectManagerTMPL0001',1229579830,'3','pbversion0000000000001','approved','Default Project Management System Dashboard','Default Project Management System Dashboard','default-pm-template-dashboard','3','7','12',NULL,0,0,0,0,0,3820,'',0,1,0,1231494253),('WikiPageTmpl0000000001',1229706257,'3','pbversion0000000000001','approved','Default Wiki Page','Default Wiki Page','default-wiki-page','3','7','12',NULL,0,0,0,0,0,3566,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1231494253),('PBtmpl0000000000000027',1230159257,'3','pbversion0000000000001','approved','Default Forum Notification','Default Forum Notification','default_forum_notification','3','7','12',NULL,0,1,0,0,0,1743,NULL,0,1,0,1231494252),('PBtmpl0000000000000033',1230159454,'3','pbversion0000000000001','approved','Default HTTP Proxy','Default HTTP Proxy','default_http_proxy','3','7','12',NULL,0,1,0,0,0,1269,NULL,0,1,0,1231494253),('default_post_received1',1230356300,'3','pbversion0000000000001','approved','Default Post Received','Default Post Received','default_post_received','3','7','4',NULL,0,0,0,0,0,429,NULL,0,1,0,1231494252),('PBtmpl0000000000000059',1229907401,'3','pbversion0000000000001','approved','Default SQL Report','Default SQL Report','default_sql_report','3','7','12',NULL,0,1,0,0,0,4341,NULL,0,1,0,1231494253),('PBtmpl0000000000000117',1229581394,'3','pbversion0000000000001','approved','DropMenu','DropMenu','dropmenu','3','7','12',NULL,0,1,0,0,0,1076,NULL,0,1,0,1231494253),('PBtmpl0000000000000098',1229907401,'3','pbversion0000000000001','approved','Job','Job','job','3','7','12',NULL,0,1,0,0,0,11222,'',0,1,0,1231494252),('PBtmpl0000000000000113',1229581394,'3','pbversion0000000000001','approved','Link','Link','link','3','7','12',NULL,0,1,0,0,0,10612,'',0,1,0,1231494252),('MultiSearchTmpl0000001',1230269962,'3','pbversion0000000000001','approved','MultiSearch Default Display','MultiSearch Default Display','multisearchtmpl0000001','3','7','12',NULL,0,1,0,0,0,1963,'',0,1,0,1231494253),('CalendarDay00000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Day','Default Calendar Day','root/import/calendar-templates/default-calendar-day','3','7','12',NULL,0,0,0,0,0,8702,' ',0,1,0,1231494252),('CalendarEvent000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Event','Default Calendar Event','root/import/calendar-templates/default-calendar-event','3','7','12',NULL,0,0,0,0,0,7436,' ',0,1,0,1231494252),('CalendarMonth000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Month','Default Calendar Month','root/import/calendar-templates/default-calendar-month','3','7','12',NULL,0,0,0,0,0,10690,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1231494252),('CalendarSearch00000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Search','Default Calendar Search','root/import/calendar-templates/default-calendar-search','3','7','12',NULL,0,0,0,0,0,9346,' ',0,1,0,1231494252),('CalendarWeek0000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Week','Default Calendar Week','root/import/calendar-templates/default-calendar-week','3','7','12',NULL,0,0,0,0,0,7189,'',0,1,0,1231494252),('0X4Q3tBWUb_thsVbsYz9xQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery Add Archive','Default Gallery Add Archive','root/import/gallery-templates/default-gallery-add-archive','3','7','3',NULL,0,1,0,0,0,1858,' \r\n\r\n ',0,1,0,1231494252),('mM3bjP_iG9sv5nQb4S17tQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album RSS','Default Gallery View Album RSS','root/import/gallery-templates/default-gallery-album-rss','3','7','3',NULL,0,1,0,0,0,819,NULL,0,1,0,1231494253),('UTNFeV7B_aSCRmmaFCq4Vw',1230581176,'3','pbversion0000000000001','approved','Default Gallery Delete Album','Default Gallery Delete Album','root/import/gallery-templates/default-gallery-delete-album','3','7','3',NULL,0,1,0,0,0,2612,'\r\n \r\n\r\n\r\n',0,1,0,1231494252),('zcX-wIUct0S_np14xxOA-A',1230581176,'3','pbversion0000000000001','approved','Default Gallery Delete File','Default Gallery Delete File','root/import/gallery-templates/default-gallery-delete-file','3','7','3',NULL,0,1,0,0,0,2631,'\r\n \r\n\r\n\r\n',0,1,0,1231494252),('6X-7Twabn5KKO_AbgK3PEw',1230585542,'3','pbversion0000000000001','approved','Default Gallery Edit Album','Default Gallery Edit Album','root/import/gallery-templates/default-gallery-edit-album','3','7','3',NULL,0,1,0,0,0,3452,'\n\n',0,1,0,1231494252),('OxJWQgnGsgyGohP2L3zJPQ',1230585543,'3','pbversion0000000000001','approved','Default Gallery Edit Comment','Default Gallery Edit Comment','root/import/gallery-templates/default-gallery-edit-comment','3','7','3',NULL,0,1,0,0,0,2916,'',0,1,0,1231494253),('7JCTAiu1U_bT9ldr655Blw',1230585543,'3','pbversion0000000000001','approved','Default Gallery Edit Photo','Default Gallery Edit Photo','root/import/gallery-templates/default-gallery-edit-photo','3','7','3',NULL,0,1,0,0,0,3988,'\n\n\n\n',0,1,0,1231494252),('ilu5BrM-VGaOsec9Lm7M6Q',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Albums RSS','Default Gallery List Albums RSS','root/import/gallery-templates/default-gallery-list-albums-rss','3','7','3',NULL,0,1,0,0,0,828,NULL,0,1,0,1231494253),('azCqD0IjdQSlM3ar29k5Sg',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Albums View','Default Gallery List Albums View','root/import/gallery-templates/default-gallery-list-albums-view','3','7','3',NULL,0,1,0,0,0,3260,' \r\n \r\n ',0,1,0,1231494252),('-ANLpoTEP-n4POAdRxCzRw',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS','root/import/gallery-templates/default-gallery-list-files-for-user-rss','3','7','3',NULL,0,1,0,0,0,859,NULL,0,1,0,1231494253),('OkphOEdaSGTXnFGhK4GT5A',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Files For User','Default Gallery List Files For User','root/import/gallery-templates/default-gallery-list-files-for-user','3','7','3',NULL,0,1,0,0,0,4312,'\r\n \r\n',0,1,0,1231494252),('m3IbBavqzuKDd2PGGhKPlA',1230585543,'3','pbversion0000000000001','approved','Default Gallery Make Shortcut','Default Gallery Make Shortcut','root/import/gallery-templates/default-gallery-make-shortcut','3','7','3',NULL,0,1,0,0,0,2793,'\n\n\n\n',0,1,0,1231494252),('jME5BEDYVDlBZ8jIQA9-jQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery Search','Default Gallery Search','root/import/gallery-templates/default-gallery-search','3','7','3',NULL,0,1,0,0,0,6033,'\r\n\r\n \r\n',0,1,0,1231494252),('KAMdiUdJykjN02CPHpyZOw',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow','root/import/gallery-templates/default-gallery-view-album-slideshow','3','7','3',NULL,0,1,0,0,0,4311,'\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n',0,1,0,1231494252),('q5O62aH4pjUXsrQR3Pq4lw',1230585542,'3','pbversion0000000000001','approved','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails','root/import/gallery-templates/default-gallery-view-album-thumbnails','3','7','3',NULL,0,1,0,0,0,4260,'\n\n\n\n\n\n\n',0,1,0,1231494252),('05FpjceLYhq4csF1Kww1KQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album','Default Gallery View Album','root/import/gallery-templates/default-gallery-view-album','3','7','3',NULL,0,1,0,0,0,4261,' \r\n \r\n ',0,1,0,1231494252),('TEId5V-jEvUULsZA0wuRuA',1230702582,'3','pbversion0000000000001','approved','Default Gallery View Photo','Default Gallery View Photo','root/import/gallery-templates/default-gallery-view-photo','3','7','3',NULL,0,1,0,0,0,6878,'\r\n\r\n\r\n\r\n',0,1,0,1231494252),('_9_eiaPgxzF_x_upt6-PNQ',1230702602,'3','pbversion0000000000001','approved','gallery.css','gallery.css','root/import/gallery-templates/gallery.css','3','7','3',NULL,0,1,0,0,0,10869,NULL,0,1,0,1231494252),('itransact_credentials1',1228953856,'3','pbversion0000000000001','approved','ITransact Credentials (Default)','ITransact Credentials (Default)','shopping-cart-collateral-items/itransact-credentials','3','7','4',NULL,0,0,0,0,0,3037,'\n',0,1,0,1231494253),('StockDataTMPL000000002',1229494994,'3','pbversion0000000000001','approved','StockData Default Display','StockData Default Display','stockdatatmpl000000002','3','7','12',NULL,0,1,0,0,0,11239,NULL,0,1,0,1231494253),('GNvjCFQWjY2AF2uf0aCM8Q',1230356300,'3','pbversion0000000000001','approved','Syndicated Articles','Syndicated Articles','syndicated_articles','3','7','12',NULL,0,1,0,0,0,1063,NULL,0,1,0,1231494253),('matrixtmpl000000000002',1233132357,'3','pbversion0000000000001','approved','Matrix Default Compare','Matrix Default Compare','matrix-default-compare-template','3','7','12',NULL,0,0,0,0,0,2278,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1233158079),('LdiozcIUciWuvt3Z-na5Ww',1232673968,'3','pbversion0000000000001','approved','Matrix','Matrix','root/import/matrix','3','7','12',NULL,0,0,0,0,0,295,NULL,0,1,0,1233158078),('matrixtmpl000000000001',1232674109,'3','pbversion0000000000001','approved','Matrix Default View','Matrix Default View','matrix-default-view-template','3','7','12',NULL,0,0,0,0,0,5991,'\r\n\r\n',0,1,0,1233158079),('matrixtmpl000000000003',1232674242,'3','pbversion0000000000001','approved','Matrix Default Detailed Listing','Matrix Default Detailed Listing','matrix-default-detailed-listing','3','7','12',NULL,0,0,0,0,0,4800,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1233158079),('matrixtmpl000000000005',1232674190,'3','pbversion0000000000001','approved','Matrix Default Search','Matrix Default Search','matrix-search-template','3','7','12',NULL,0,0,0,0,0,2236,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1233158079),('hkj6WeChxFyqfP85UlRP8w',1232664229,'3','pbversion0000000000001','approved','matrix.css','matrix.css','new-matrix/matrix.css','3','7','12',NULL,0,1,0,0,0,9039,NULL,0,1,0,1233158079),('kJf77eCr9GAMiEzWrzsBTA',1229639255,'3','pbversion0000000000001','approved','matrix-ie.css','matrix-ie.css','new-matrix/matrix-ie.css','3','7','12',NULL,0,1,0,0,0,527,NULL,0,1,0,1233158079),('4LQT4-bGW4FkiEQLSY5gvQ',1232400287,'3','pbversion0000000000001','approved','show-hide.js','show-hide.js','new-matrix/show-hide.js','3','7','12',NULL,0,1,0,0,0,659,NULL,0,1,0,1233158079),('alraubvBu-YJJ614jAHD5w',1232664015,'3','pbversion0000000000001','approved','matrix-nav-tmpl','matrix-nav-tmpl','new-matrix/matrix-nav-tmpl','3','7','12',NULL,0,1,0,0,0,447,NULL,0,1,0,1233158079),('Vch1Ww7G_JpBhOhXX07RDg',1232664082,'3','pbversion0000000000001','approved','matrx-nav','matrix-nav','new-matrix/matrix-nav','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1233158079),('AjhlNO3wZvN5k4i4qioWcg',1232726656,'3','pbversion0000000000001','approved','Default Answer Edit','Default Answer Edit','root/import/survey/default-answer-edit','3','7','12',NULL,0,1,0,0,0,3855,NULL,0,1,0,1233158079),('wAc4azJViVTpo-2NYOXWvg',1232907257,'3','pbversion0000000000001','approved','Default Question Edit','Default Question Edit','root/import/survey/default-question-edit','3','7','12',NULL,0,1,0,0,0,5278,NULL,0,1,0,1233158079),('1oBRscNIcFOI-pETrCOspA',1232648656,'3','pbversion0000000000001','approved','Default Section Edit','Default Section Edit','root/import/survey/default-section-edit','3','7','12',NULL,0,1,0,0,0,5675,NULL,0,1,0,1233158079),('GRUNFctldUgop-qRLuo_DA',1232646902,'3','pbversion0000000000001','approved','Default Survey Edit','Default Survey Edit','root/import/survey/default-survey-edit','3','7','12',NULL,0,1,0,0,0,2554,NULL,0,1,0,1233158079),('PBtmpl0000000000000062',1232981641,'3','pbversion0000000000001','approved','Default Gradebook Report','Default Gradebook Report','root/import/survey/default_gradebook_report','3','7','12',NULL,0,1,0,0,0,1932,NULL,0,1,0,1233158079),('PBtmpl0000000000000063',1233156264,'3','pbversion0000000000001','approved','Default Overview Report','Default Overview Report','root/import/survey/default_overview_report','3','7','12',NULL,0,1,0,0,0,3268,NULL,0,1,0,1233158079); -INSERT INTO `assetIndex` VALUES ('PBasset000000000000003','Media','Media Media media ','media',1147642437,1147642437,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Media\'\'Media\'\'media','000001000003'),('PBtmpl0000000000000112','Weblog','Weblog Weblog weblog ','weblog',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Weblog\'\'Weblog\'\'weblog Collaboration','000001000001000005000004'),('PBtmplBlankStyle000001','WebGUI 6 Blank Style','WebGUI 6 Blank Style WebGUI 6 Blank Style pbtmplblankstyle000001 ','pbtmplblankstyle000001',1133743239,1147642431,'3','7','12','WebGUI::Asset::Template',1,'WebGUI\'\'6\'\'Blank\'\'Style\'\'WebGUI\'\'6\'\'Blank\'\'Style\'\'pbtmplblankstyle000001 style','000001000001000038000005'),('PBtmpl0000000000000048','verticalMenu','verticalMenu verticalMenu verticalmenu ','verticalmenu',1124395696,1147642431,'3','7','12','WebGUI::Asset::Template',1,'verticalMenu\'\'verticalMenu\'\'verticalmenu Navigation','000001000001000022000002'),('PBtmpl0000000000000079','Topics','Topics Topics topics ','topics',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Topics\'\'Topics\'\'topics Collaboration','000001000001000005000009'),('PBtmpl0000000000000097','Traditional with Thumbnails','Traditional with Thumbnails Traditional with Thumbnails traditional with thumbnails ','traditional_with_thumbnails',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Traditional\'\'with\'\'Thumbnails\'\'Traditional\'\'with\'\'Thumbnails\'\'traditional\'\'with\'\'thumbnails Collaboration','000001000001000005000003'),('PBtmpl0000000000000082','Unordered List','Unordered List Unordered List unordered list ','unordered_list',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Unordered\'\'List\'\'Unordered\'\'List\'\'unordered\'\'list Collaboration','000001000001000005000011'),('PBtmpl0000000000000118','Three Over One','Three Over One Three Over One three over one ','three_over_one',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Three\'\'Over\'\'One\'\'Three\'\'Over\'\'One\'\'three\'\'over\'\'one Layout','000001000001000016000005'),('PBtmpl0000000000000124','Tabs','Tabs Tabs tabs ','tabs',1124395696,1147642429,'3','7','12','WebGUI::Asset::Template',1,'Tabs\'\'Tabs\'\'tabs Navigation','000001000001000022000005'),('GNvjCFQWjY2AF2uf0aCM8Q','Syndicated Articles','Syndicated Articles Syndicated Articles syndicated articles ','syndicated_articles',1124395696,1230356300,'3','7','12','WebGUI::Asset::Template',1,'Syndicated\'\'Articles\'\'Syndicated\'\'Articles\'\'syndicated\'\'articles SyndicatedContent','000001000001000040000002'),('PBtmpl0000000000000136','Synopsis','Synopsis Synopsis synopsis2 ','synopsis2',1124395696,1147642428,'3','7','12','WebGUI::Asset::Template',1,'Synopsis\'\'Synopsis\'\'synopsis2 Navigation','000001000001000022000008'),('PBtmpl0000000000000116','Tab Form','Tab Form Tab Form tab form ','tab_form',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Tab\'\'Form\'\'Tab\'\'Form\'\'tab\'\'form DataForm','000001000001000007000005'),('GRUNFctldUgop-qRLuo_DA','Default Survey Edit','Default Survey Edit Default Survey Edit root import survey default survey edit ','root/import/survey/default-survey-edit',1227254010,1232646902,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Edit\'\'Default\'\'Survey\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'survey\'\'edit Survey\'\'/\'\'Edit','000001000001000039000005'),('ProjectManagerTMPL0004','Default Project Manager Edit Task','Default Project Manager Edit Task Default Project Manager Edit Task default pm template edit task ','default-pm-template-edit-task',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Manager\'\'Edit\'\'Task\'\'Default\'\'Project\'\'Manager\'\'Edit\'\'Task\'\'default\'\'pm\'\'template\'\'edit\'\'task ProjectManager_editTask','000001000001000027000002000001'),('ProjectManagerTMPL0002','Default Project Display','Default Project Display Default Project Display default pm template project display ','default-pm-template-project-display',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Display\'\'Default\'\'Project\'\'Display\'\'default\'\'pm\'\'template\'\'project\'\'display ProjectManager_project','000001000001000027000004000001'),('PBtmpl0000000000000137','Admin Console Style','Admin Console Style Admin Console admin console ','admin_console',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'Admin\'\'Console\'\'Style\'\'Admin\'\'Console\'\'admin\'\'console style','000001000001000038000003'),('StockDataTMPL000000001','StockData Default View','StockData Default View StockData Default View stockdatatmpl000000001 ','stockdatatmpl000000001',1133743239,1229453697,'3','7','12','WebGUI::Asset::Template',1,'StockData\'\'Default\'\'View\'\'StockData\'\'Default\'\'View\'\'stockdatatmpl000000001 StockData','000001000001000037000002'),('PBtmpl0000000000000135','Side By Side','Side By Side Side By Side side by side ','side_by_side',1124395696,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Side\'\'By\'\'Side\'\'Side\'\'By\'\'Side\'\'side\'\'by\'\'side Layout','000001000001000016000001'),('PBtmpl0000000000000200','Default Search','Default Search Default Search default search2 ','default_search2',1147642427,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Search\'\'Default\'\'Search\'\'default\'\'search2 Search','000001000001000032000001'),('PBtmpl0000000000000101','Ordered List','Ordered List Ordered List ordered list ','ordered_list',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Ordered\'\'List\'\'Ordered\'\'List\'\'ordered\'\'list Collaboration','000001000001000005000024'),('PBtmpl0000000000000121','Photo Gallery','Photo Gallery Photo Gallery photo gallery ','photo_gallery',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Photo\'\'Gallery\'\'Photo\'\'Gallery\'\'photo\'\'gallery Collaboration','000001000001000005000005'),('PBtmpl0000000000000081','Q and A','Q and A Q and A q and a ','q_and_a',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Q\'\'and\'\'A\'\'Q\'\'and\'\'A\'\'q\'\'and\'\'a Collaboration','000001000001000005000023'),('WVtmpl0000000000000001','Random Thread Macro Default Template','Random Thread Macro Default Template Random Thread Macro Default Template randomthread template ','randomthread-template',1133743240,1147642426,'3','7','12','WebGUI::Asset::Template',1,'Random\'\'Thread\'\'Macro\'\'Default\'\'Template\'\'Random\'\'Thread\'\'Macro\'\'Default\'\'Template\'\'randomthread\'\'template Macro\'\'/\'\'RandomThread','000001000001000017000010000001'),('PBtmpl0000000000000131','Right Column','Right Column Right Column right column ','right_column',1124395696,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Right\'\'Column\'\'Right\'\'Column\'\'right\'\'column Layout','000001000001000016000002'),('PBtmpl0000000000000094','News','News News plainblacknews ','plainblacknews',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'News\'\'News\'\'plainblacknews Layout','000001000001000016000007'),('matrixtmpl000000000005','Matrix Default Search','Matrix Default Search Matrix Default Search matrix search template ','matrix-search-template',1133743239,1232674190,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Search\'\'Matrix\'\'Default\'\'Search\'\'matrix\'\'search\'\'template Matrix\'\'/\'\'Search','000001000001000018000005'),('MultiSearchTmpl0000001','MultiSearch Default Display','MultiSearch Default Display MultiSearch Default Display multisearchtmpl0000001 ','multisearchtmpl0000001',1133743239,1230269962,'3','7','12','WebGUI::Asset::Template',1,'MultiSearch\'\'Default\'\'Display\'\'MultiSearch\'\'Default\'\'Display\'\'multisearchtmpl0000001 MultiSearch','000001000001000021000001'),('matrixtmpl000000000001','Matrix Default View','Matrix Default View Matrix Default View matrix default view template ','matrix-default-view-template',1133743238,1232674109,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'View\'\'Matrix\'\'Default\'\'View\'\'matrix\'\'default\'\'view\'\'template Matrix','000001000001000018000002'),('matrixtmpl000000000003','Matrix Default Detailed Listing','Matrix Default Detailed Listing Matrix Default Detailed Listing matrix default detailed listing ','matrix-default-detailed-listing',1133743238,1232674242,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Detailed\'\'Listing\'\'Matrix\'\'Default\'\'Detailed\'\'Listing\'\'matrix\'\'default\'\'detailed\'\'listing Matrix\'\'/\'\'Detail','000001000001000018000003'),('matrixtmpl000000000002','Matrix Default Compare','Matrix Default Compare Matrix Default Compare matrix default compare template ','matrix-default-compare-template',1133743238,1233132357,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Compare\'\'Matrix\'\'Default\'\'Compare\'\'matrix\'\'default\'\'compare\'\'template Matrix\'\'/\'\'Compare','000001000001000018000001'),('PBtmpl0000000000000111','Make Page Printable','Make Page Printable Make Page Printable make page printable ','make_page_printable',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Make\'\'Page\'\'Printable\'\'Make\'\'Page\'\'Printable\'\'make\'\'page\'\'printable style','000001000001000038000002'),('PBtmpl0000000000000020','Mail Form','Mail Form Mail Form mail form ','mail_form',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Mail\'\'Form\'\'Mail\'\'Form\'\'mail\'\'form DataForm','000001000001000007000001'),('PBtmpl0000000000000113','Link','Link Link link ','link',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'Link\'\'link Collaboration\'\'/\'\'Thread','000001000001000005000025'),('PBtmpl0000000000000083','Link List','Link List Link List link list ','link_list',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'List\'\'Link\'\'List\'\'link\'\'list Collaboration','000001000001000005000010'),('PBtmpl0000000000000114','Link List Submission Form','Link List Submission Form Link List Submission Form link list submission form ','link_list_submission_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'List\'\'Submission\'\'Form\'\'Link\'\'List\'\'Submission\'\'Form\'\'link\'\'list\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000019'),('PBtmpl0000000000000115','Linked Image with Caption','Linked Image with Caption Linked Image with Caption linked image with caption ','linked_image_with_caption',1124395696,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Linked\'\'Image\'\'with\'\'Caption\'\'Linked\'\'Image\'\'with\'\'Caption\'\'linked\'\'image\'\'with\'\'caption Article','000001000001000002000004'),('PBtmpl0000000000000129','Item w/pop-up Links','Item w/pop-up Links Item w/pop-up Links item w pop up links ','item_w/pop-up_links',1124395696,1147642422,'3','7','12','WebGUI::Asset::Template',1,'Item\'\'w\'\'/\'\'pop\'\'-\'\'up\'\'Links\'\'Item\'\'w\'\'/\'\'pop\'\'-\'\'up\'\'Links\'\'item\'\'w\'\'pop\'\'up\'\'links Article','000001000001000002000006'),('PBtmpl0000000000000098','Job','Job Job job ','job',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Job\'\'job Collaboration\'\'/\'\'Thread','000001000001000005000021'),('PBtmpl0000000000000077','Job Listing','Job Listing Job Listing job listing ','job_listing',1124395696,1147642422,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Listing\'\'Job\'\'Listing\'\'job\'\'listing Collaboration','000001000001000005000020'),('PBtmpl0000000000000122','Job Submission Form','Job Submission Form Job Submission Form job submission form ','job_submission_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Submission\'\'Form\'\'Job\'\'Submission\'\'Form\'\'job\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000022'),('PBtmpl0000000000000103','Left Align Image','Left Align Image Left Align Image left align image ','left_align_image',1124395696,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Align\'\'Image\'\'Left\'\'Align\'\'Image\'\'left\'\'align\'\'image Article','000001000001000002000001'),('PBtmpl0000000000000092','Horizontal Login Box','Horizontal Login Box Horizontal Login Box horizontal login box ','horizontal_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Horizontal\'\'Login\'\'Box\'\'Horizontal\'\'Login\'\'Box\'\'horizontal\'\'login\'\'box Macro\'\'/\'\'L_loginBox','000001000001000017000009000001'),('PBtmpl0000000000000108','horizontalMenu','horizontalMenu horizontalMenu horizontalmenu ','horizontalmenu',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'horizontalMenu\'\'horizontalMenu\'\'horizontalmenu Navigation','000001000001000022000003'),('PBtmpl0000000000000088','Image','Image Image image ','image',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'Image\'\'Image\'\'image ImageAsset','000001000001000013000001'),('IOB0000000000000000002','Default InOutBoard Report Template','Default InOutBoard Report Template Default InOutBoard Report Template iob report template ','iob-report-template',1133743239,1166019641,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'InOutBoard\'\'Report\'\'Template\'\'Default\'\'InOutBoard\'\'Report\'\'Template\'\'iob\'\'report\'\'template InOutBoard\'\'/\'\'Report','000001000001000015000001'),('IOB0000000000000000001','Default InOutBoard Template','Default InOutBoard Template Default InOutBoard Template iob template ','iob-template',1133743239,1169795123,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'InOutBoard\'\'Template\'\'Default\'\'InOutBoard\'\'Template\'\'iob\'\'template InOutBoard','000001000001000015000002'),('PBtmpl0000000000000123','Item','Item Item item ','item',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'Item\'\'Item\'\'item Article','000001000001000002000005'),('PBtmpl0000000000000024','File','File File file ','file',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'File\'\'file FileAsset','000001000001000009000001'),('PBtmpl0000000000000078','File Folder','File Folder File Folder file folder ','file_folder',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'Folder\'\'File\'\'Folder\'\'file\'\'folder Folder','000001000001000010000001'),('PBtmpl0000000000000107','File with size','File with size File with size file with size ','file_with_size',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'with\'\'size\'\'File\'\'with\'\'size\'\'file\'\'with\'\'size Macro\'\'/\'\'File','000001000001000017000004000003'),('PBtmpl0000000000000133','Guest Book','Guest Book Guest Book guest book ','guest_book',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Guest\'\'Book\'\'Guest\'\'Book\'\'guest\'\'book Collaboration','000001000001000005000012'),('PBtmpl0000000000000117','DropMenu','DropMenu DropMenu dropmenu ','dropmenu',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'DropMenu\'\'DropMenu\'\'dropmenu Navigation','000001000001000022000004'),('PBtmpl0000000000000130','Tree Navigation','Tree Navigation Tree Navigation root import navigation tree navigation ','root/import/navigation/tree-navigation',1124395696,1219072470,'3','7','12','WebGUI::Asset::Template',1,'Tree\'\'Navigation\'\'Tree\'\'Navigation\'\'root\'\'import\'\'navigation\'\'tree\'\'navigation Navigation','000001000001000022000006'),('PBtmpl0000000000000060','Fail Safe','Fail Safe Fail Safe fail safe ','fail_safe',1124395696,1147642419,'3','7','12','WebGUI::Asset::Template',1,'Fail\'\'Safe\'\'Fail\'\'Safe\'\'fail\'\'safe style','000001000001000038000001'),('PBtmpl0000000000000080','FAQ','FAQ FAQ faqtemplate ','faqtemplate',1124395696,1171466654,'3','7','12','WebGUI::Asset::Template',1,'FAQ\'\'FAQ\'\'faqtemplate Collaboration','000001000001000005000002'),('PBtmpl0000000000000099','FAQ Submission Form','FAQ Submission Form FAQ Submission Form faq submission form ','faq_submission_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'FAQ\'\'Submission\'\'Form\'\'FAQ\'\'Submission\'\'Form\'\'faq\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000018'),('PBtmpl0000000000000010','Default WebGUI Account Display Template','Default WebGUI Account Display Template Default WebGUI Account Display Template default webgui account display template ','default_webgui_account_display_template',1124395696,1227026287,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Account\'\'Display\'\'Template\'\'Default\'\'WebGUI\'\'Account\'\'Display\'\'Template\'\'default\'\'webgui\'\'account\'\'display\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Account','000001000001000003000004000001'),('PBtmpl0000000000000013','Default WebGUI Login Template','Default WebGUI Login Template Default WebGUI Login Template default webgui login template ','default_webgui_login_template',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Login\'\'Template\'\'Default\'\'WebGUI\'\'Login\'\'Template\'\'default\'\'webgui\'\'login\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Login','000001000001000003000007000001'),('PBtmpl0000000000000012','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template Default WebGUI Password Reset Template default webgui password reset template ','default_webgui_password_reset_template',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Password\'\'Reset\'\'Template\'\'Default\'\'WebGUI\'\'Password\'\'Reset\'\'Template\'\'default\'\'webgui\'\'password\'\'reset\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Expired','000001000001000003000006000001'),('PBtmpl0000000000000057','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt Default WebGUI Yes/No Prompt default webgui yes no prompt ','default_webgui_yes/no_prompt',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Yes\'\'/\'\'No\'\'Prompt\'\'Default\'\'WebGUI\'\'Yes\'\'/\'\'No\'\'Prompt\'\'default\'\'webgui\'\'yes\'\'no\'\'prompt prompt','000001000001000028000001'),('PBtmpl0000000000000066','Default USS','Default USS Default USS default uss ','default_uss',1124395696,1147642417,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'USS\'\'Default\'\'USS\'\'default\'\'uss Collaboration','000001000001000005000001'),('TimeTrackingTMPL000001','Default Time Tracking User View','Default Time Tracking User View Default Time Tracking User View default tt template user ','default-tt-template-user',1147642417,1201205738,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'User\'\'View\'\'Default\'\'Time\'\'Tracking\'\'User\'\'View\'\'default\'\'tt\'\'template\'\'user TimeTracking_user','000001000001000042000003000001'),('TimeTrackingTMPL000003','Default Time Tracking Row Template','Default Time Tracking Row Template Default Time Tracking Row Template default tt template row ','default-tt-template-row',1147642417,1229311434,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'Row\'\'Template\'\'Default\'\'Time\'\'Tracking\'\'Row\'\'Template\'\'default\'\'tt\'\'template\'\'row TimeTracking_row','000001000001000042000002000001'),('TimeTrackingTMPL000002','Default Time Tracking Manager View','Default Time Tracking Manager View Default Time Tracking Manager View default tt template manager ','default-tt-template-manager',1147642417,1147642417,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'Manager\'\'View\'\'Default\'\'Time\'\'Tracking\'\'Manager\'\'View\'\'default\'\'tt\'\'template\'\'manager TimeTracking_manager','000001000001000042000001000001'),('X7DrzUcj8pOKFa_6k9D5iw','Newsletter','Newsletter Newsletter root import newsletter ','root/import/newsletter',1185754569,1222804045,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Newsletter\'\'Newsletter\'\'root\'\'import\'\'newsletter','000001000001000023'),('PBtmpl0000000000000065','Default Syndicated Content','Default Syndicated Content Default Syndicated Content default syndicated content ','default_syndicated_content',1124395696,1226457084,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Syndicated\'\'Content\'\'Default\'\'Syndicated\'\'Content\'\'default\'\'syndicated\'\'content SyndicatedContent','000001000001000040000001'),('CxMpE_UPauZA3p8jdrOABw','Default Questions','Default Questions Default Questions root import survey default questions ','root/import/survey/default-questions',1227556536,1227556536,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Questions\'\'Default\'\'Questions\'\'root\'\'import\'\'survey\'\'default\'\'questions Survey\'\'/\'\'Take','000001000001000039000007'),('PBtmpl0000000000000064','Default Response','Default Response Default Response default response ','default_response',1124395696,1226009610,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Response\'\'Default\'\'Response\'\'default\'\'response Survey\'\'/\'\'Response','000001000001000039000004'),('PBtmpl0000000000000059','Default SQL Report','Default SQL Report Default SQL Report default sql report ','default_sql_report',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'SQL\'\'Report\'\'Default\'\'SQL\'\'Report\'\'default\'\'sql\'\'report SQLReport','000001000001000036000001'),('PBtmpl0000000000000067','Default Submission','Default Submission Default Submission default submission ','default_submission',1124395696,1206998733,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Submission\'\'Default\'\'Submission\'\'default\'\'submission Collaboration\'\'/\'\'Thread','000001000001000005000006'),('PBtmpl0000000000000068','Default Submission Form','Default Submission Form Default Submission Form default submission form ','default_submission_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Submission\'\'Form\'\'Default\'\'Submission\'\'Form\'\'default\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000017'),('PBtmpl0000000000000061','Default Survey','Default Survey Default Survey default survey ','default_survey',1124395696,1227252733,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Default\'\'Survey\'\'default\'\'survey Survey','000001000001000039000003'),('ProjectManagerTMPL0003','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart Default Project Manager Gantt Chart default pm template gantt chart ','default-pm-template-gantt-chart',1147642415,1159989349,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Manager\'\'Gantt\'\'Chart\'\'Default\'\'Project\'\'Manager\'\'Gantt\'\'Chart\'\'default\'\'pm\'\'template\'\'gantt\'\'chart ProjectManager_gantt','000001000001000027000003000001'),('ProjectManagerTMPL0001','Default Project Management System Dashboard','Default Project Management System Dashboard Default Project Management System Dashboard default pm template dashboard ','default-pm-template-dashboard',1147642415,1229579830,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Management\'\'System\'\'Dashboard\'\'Default\'\'Project\'\'Management\'\'System\'\'Dashboard\'\'default\'\'pm\'\'template\'\'dashboard ProjectManager_dashboard','000001000001000027000001000001'),('PBtmpl0000000000000055','Default Poll','Default Poll Default Poll default poll ','default_poll',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Poll\'\'Default\'\'Poll\'\'default\'\'poll Poll','000001000001000024000001'),('PBtmpl0000000000000029','Default Post Form','Default Post Form Default Post Form default post form ','default_post_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Post\'\'Form\'\'Default\'\'Post\'\'Form\'\'default\'\'post\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000013'),('PBtmpl0000000000000056','Default Product','Default Product Default Product default product ','default_product',1124395696,1228934532,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Product\'\'Default\'\'Product\'\'default\'\'product Product','000001000001000025000001'),('PBtmpl0000000000000033','Default HTTP Proxy','Default HTTP Proxy Default HTTP Proxy default http proxy ','default_http_proxy',1124395696,1230159454,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'HTTP\'\'Proxy\'\'Default\'\'HTTP\'\'Proxy\'\'default\'\'http\'\'proxy HttpProxy','000001000001000012000001'),('PBtmpl0000000000000004','Default LDAP Account Display Template','Default LDAP Account Display Template Default LDAP Account Display Template default ldap account display template ','default_ldap_account_display_template',1124395696,1227026214,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Account\'\'Display\'\'Template\'\'Default\'\'LDAP\'\'Account\'\'Display\'\'Template\'\'default\'\'ldap\'\'account\'\'display\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Account','000001000001000003000001000001'),('PBtmpl0000000000000006','Default LDAP Login Template','Default LDAP Login Template Default LDAP Login Template default ldap login template ','default_ldap_login_template',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Login\'\'Template\'\'Default\'\'LDAP\'\'Login\'\'Template\'\'default\'\'ldap\'\'login\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Login','000001000001000003000003000001'),('PBtmpl0000000000000044','Default Login Box','Default Login Box Default Login Box default login box ','default_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Login\'\'Box\'\'Default\'\'Login\'\'Box\'\'default\'\'login\'\'box Macro\'\'/\'\'L_loginBox','000001000001000017000009000002'),('PBtmpl0000000000000047','Default Message Board','Default Message Board Default Message Board default message board ','default_message_board',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Message\'\'Board\'\'Default\'\'Message\'\'Board\'\'default\'\'message\'\'board MessageBoard','000001000001000019000001'),('PBtmpl0000000000000054','Default Page','Default Page Default Page default page ','default_page',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'Default\'\'Page\'\'default\'\'page Layout','000001000001000016000003'),('Q4uX_C557arTp6D_jwB1jQ','Wiki','Wiki Wiki root import wiki ','root/import/wiki',1165460175,1222803760,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Wiki\'\'Wiki\'\'root\'\'import\'\'wiki','000001000001000048'),('BmLaN4rmAANkCglXUViEbg','Resource','Resource Resource root import projectmanager resource ','root/import/projectmanager/resource',1157679165,1222803871,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Resource\'\'Resource\'\'root\'\'import\'\'projectmanager\'\'resource','000001000001000027000005'),('PBtmpl0000000000000039','Default File Macro','Default File Macro Default File Macro default file macro ','default_file_macro',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'File\'\'Macro\'\'Default\'\'File\'\'Macro\'\'default\'\'file\'\'macro Macro\'\'/\'\'File','000001000001000017000004000001'),('PBtmpl0000000000000026','Default Forum','Default Forum Default Forum default forum ','default_forum',1124395696,1185754569,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Default\'\'Forum\'\'default\'\'forum Collaboration','000001000001000005000007'),('PBtmpl0000000000000031','Default Forum Search','Default Forum Search Default Forum Search default forum search ','default_forum_search',1124395696,1147642413,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Search\'\'Default\'\'Forum\'\'Search\'\'default\'\'forum\'\'search Collaboration\'\'/\'\'Search','000001000001000005000016'),('PBtmpl0000000000000093','crumbTrail','crumbTrail crumbTrail crumbtrail2 ','crumbtrail2',1124395696,1147642412,'3','7','12','WebGUI::Asset::Template',1,'crumbTrail\'\'crumbTrail\'\'crumbtrail2 Navigation','000001000001000022000001'),('DashboardViewTmpl00001','Dashboard Default View','Dashboard Default View Dashboard Default View dashboard default view template ','dashboard-default-view-template',1133743239,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Dashboard\'\'Default\'\'View\'\'Dashboard\'\'Default\'\'View\'\'dashboard\'\'default\'\'view\'\'template Dashboard','000001000001000006000001'),('PBtmpl0000000000000021','Data List','Data List Data List data list ','data_list',1124395696,1230269962,'3','7','12','WebGUI::Asset::Template',1,'Data\'\'List\'\'Data\'\'List\'\'data\'\'list DataForm\'\'/\'\'List','000001000001000007000004'),('PBtmpl0000000000000104','Default Acknowledgement','Default Acknowledgement Default Acknowledgement default acknowledgement ','default_acknowledgement',1124395696,1147642412,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Acknowledgement\'\'Default\'\'Acknowledgement\'\'default\'\'acknowledgement DataForm','000001000001000007000003'),('PBtmpl0000000000000002','Default Article','Default Article Default Article default article ','default_article',1124395696,1159989349,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Article\'\'Default\'\'Article\'\'default\'\'article Article','000001000001000002000003'),('PBtmpl0000000000000141','Default DataForm','Default DataForm Default DataForm pbtmpl0000000000000141 ','pbtmpl0000000000000141',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'DataForm\'\'Default\'\'DataForm\'\'pbtmpl0000000000000141 DataForm','000001000001000007000006'),('WikiRCTmpl000000000001','Default Recent Changes','Default Recent Changes Default Recent Changes default wiki recent changes ','default-wiki-recent-changes',1165460175,1169092823,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Recent\'\'Changes\'\'Default\'\'Recent\'\'Changes\'\'default\'\'wiki\'\'recent\'\'changes WikiMaster_recentChanges','000001000001000048000001'),('PBtmpl0000000000000084','Center Image','Center Image Center Image center image ','center_image',1124395696,1229100305,'3','7','12','WebGUI::Asset::Template',1,'Center\'\'Image\'\'Center\'\'Image\'\'center\'\'image Article','000001000001000002000002'),('PBtmpl0000000000000128','Classifieds','Classifieds Classifieds classifieds ','classifieds',1124395696,1147642411,'3','7','12','WebGUI::Asset::Template',1,'Classifieds\'\'Classifieds\'\'classifieds Collaboration','000001000001000005000008'),('PBtmpl0000000000000134','Hierarchical Top Nav','Hierarchical Top Nav Hierarchical Top Nav import hierarchical top nav ','import/hierarchical-top-nav',1124395696,1222574692,'3','7','12','WebGUI::Asset::Template',1,'Hierarchical\'\'Top\'\'Nav\'\'Hierarchical\'\'Top\'\'Nav\'\'import\'\'hierarchical\'\'top\'\'nav Navigation','000001000001000022000007'),('PBtmplHelp000000000001','Help','Help Help help ','help',1124395706,1147642410,'3','7','12','WebGUI::Asset::Template',1,'Help\'\'Help\'\'help AdminConsole','000001000001000001000002'),('PBtmpl0000000000000208','Request Tracker','Request Tracker Request Tracker request tracker template ','request-tracker-template',1147642410,1147642410,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'template Collaboration','000001000001000005000027'),('wAc4azJViVTpo-2NYOXWvg','Default Question Edit','Default Question Edit Default Question Edit root import survey default question edit ','root/import/survey/default-question-edit',1226009650,1232907257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Question\'\'Edit\'\'Default\'\'Question\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'question\'\'edit Survey\'\'/\'\'Edit','000001000001000039000009'),('1z9J1O08n_7gVVlBwSRBJQ','Auth','Auth Auth root import auth ','root/import/auth',1222803099,1222803099,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Auth\'\'Auth\'\'root\'\'import\'\'auth','000001000001000003'),('zyWi26q9na-iiZqL4yedog','Macro','Macro Macro root import macro ','root/import/macro',1222803114,1222803114,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Macro\'\'Macro\'\'root\'\'import\'\'macro','000001000001000017'),('PBtmpl0000000000000207','Article with Files','Article with Files Article with Files article with files ','article-with-files',1147642410,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Article\'\'with\'\'Files\'\'Article\'\'with\'\'Files\'\'article\'\'with\'\'files Article','000001000001000002000007'),('PBtmpl0000000000000209','Request Tracker Thread','Request Tracker Thread Request Tracker Thread request tracker post template ','request-tracker-post-template',1147642410,1206998862,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Thread\'\'Request\'\'Tracker\'\'Thread\'\'request\'\'tracker\'\'post\'\'template Collaboration\'\'/\'\'Thread','000001000001000005000028'),('PBtmpl0000000000000210','Request Tracker','Request Tracker Request Tracker request tracker template2 ','request-tracker-template2',1147642410,1227480812,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'template2 Collaboration\'\'/\'\'PostForm','000001000001000005000029'),('PBtmpl0000000000000109','One Over Three','One Over Three One Over Three one over three ','one_over_three',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'One\'\'Over\'\'Three\'\'One\'\'Over\'\'Three\'\'one\'\'over\'\'three Layout','000001000001000016000006'),('PBtmpl0000000000000001','Admin Console','Admin Console Admin Console admin console2 ','admin_console2',1124395696,1157679164,'3','7','12','WebGUI::Asset::Template',1,'Admin\'\'Console\'\'Admin\'\'Console\'\'admin\'\'console2 AdminConsole','000001000001000001000001'),('LBuiKzg2mWwmOPS9AgV3bg','Get Translated','Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of exper','yns/translated',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Translated\'\'Get\'\'Translated\'\'yns\'\'translated\'\'Let\'\'our\'\'team\'\'of\'\'professional\'\'translators\'\'bring\'\'your\'\'site\'\'to\'\'new\'\'customers\'\'by\'\'translating\'\'your\'\'content\'\'into\'\'additional\'\'languages\'\'.\'\'Our\'\'translation\'\'services\'\'are\'\'never\'\'machine\'\'automated\'\'.\'\'They\'\'\'\'\'re\'\'always\'\'done\'\'by\'\'professional\'\'translators\'\'that\'\'have\'\'years\'\'of\'\'experience\'\'reading\'\',\'\'writing\'\',\'\'and\'\'speaking\'\'many\'\'languages\'\'. ','000001000002000002000007'),('jTNggl7AoVSUc_ZzrvuCmw','Get Promoted','Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate pro','yns/promotion',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Promoted\'\'Get\'\'Promoted\'\'yns\'\'promotion\'\'Now\'\'that\'\'you\'\'have\'\'a\'\'brilliant\'\'WebGUI\'\'site\'\',\'\'you\'\'need\'\'to\'\'get\'\'people\'\'to\'\'visit\'\'it\'\'.\'\'We\'\'can\'\'help\'\'there\'\'too\'\'.\'\'Our\'\'marketing\'\'specialists\'\'can\'\'work\'\'with\'\'you\'\'to\'\'develop\'\'and\'\'execute\'\'the\'\'right\'\'combination\'\'of\'\'search\'\'engine\'\'placement\'\',\'\'advertising\'\'buys\'\',\'\'and\'\'affilliate\'\'programs\'\'to\'\'ensure\'\'your\'\'site\'\'gets\'\'the\'\'traffic\'\'it\'\'needs\'\'. ','000001000002000002000008'),('Wl8WZ43g2rK5AYr9o4zY7w','Get Style','Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site. ','yns/style',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Style\'\'Get\'\'Style\'\'yns\'\'style\'\'Not\'\'a\'\'designer\'\'?\'\'No\'\'problem\'\'!\'\'Plain\'\'Black\'\'\'\'\'s\'\'professional\'\'design\'\'team\'\'can\'\'make\'\'your\'\'site\'\'look\'\'great\'\'.\'\'Our\'\'team\'\'is\'\'fast\'\',\'\'easy\'\'to\'\'work\'\'with\'\',\'\'and\'\'can\'\'even\'\'migrate\'\'your\'\'existing\'\'content\'\'into\'\'your\'\'new\'\'WebGUI\'\'site\'\'. ','000001000002000002000006'),('ix1p0AbwKAz8QWB-T-HHfg','Get Support','Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of s','yns/support',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Support\'\'Get\'\'Support\'\'yns\'\'support\'\'Plain\'\'Black\'\'provides\'\'support\'\'packages\'\'to\'\'fit\'\'any\'\'budget\'\'or\'\'need\'\'.\'\'Start\'\'out\'\'with\'\'online\'\'support\'\'which\'\'costs\'\'only\'\'$\'\'500\'\'per\'\'year\'\'!\'\'And\'\'grow\'\'support\'\'as\'\'your\'\'needs\'\'grow\'\'.\'\'We\'\'build\'\'custom\'\'support\'\'packages\'\'to\'\'match\'\'our\'\'client\'\'\'\'\'s\'\'needs\'\'.\'\'And\'\'no\'\'matter\'\'what\'\'level\'\'of\'\'support\'\'you\'\'purchase\'\',\'\'you\'\'get\'\'WebGUI\'\'Documentation\'\'included\'\'in\'\'your\'\'purchase\'\'. ','000001000002000002000003'),('iCYOjohB9SKvAPr6bXElKA','Get Hosting','Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with host','yns/hosting',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Hosting\'\'Get\'\'Hosting\'\'yns\'\'hosting\'\'Who\'\'better\'\'to\'\'host\'\'your\'\'WebGUI\'\'sites\'\'than\'\'Plain\'\'Black\'\'.\'\'Let\'\'us\'\'deal\'\'with\'\'upgrades\'\',\'\'security\'\',\'\'and\'\'server\'\'management\'\'.\'\'Doing\'\'so\'\'lets\'\'you\'\'focus\'\'on\'\'building\'\'your\'\'WebGUI\'\'site\'\',\'\'which\'\'is\'\'where\'\'your\'\'time\'\'and\'\'expertise\'\'should\'\'be\'\'spent\'\'.\'\'And\'\'when\'\'you\'\'sign\'\'up\'\'with\'\'hosting\'\',\'\'online\'\'support\'\'is\'\'included\'\'! ','000001000002000002000004'),('4Yfz9hqBqM8OYMGuQK8oLw','Get Features','What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to cu','yns/features',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Features\'\'Get\'\'Features\'\'yns\'\'features\'\'What\'\'\'\'\'s\'\'that\'\'you\'\'say\'\'?\'\'WebGUI\'\'\'\'\'s\'\'thousands\'\'of\'\'features\'\'are\'\'still\'\'missing\'\'some\'\'important\'\'ones\'\'?\'\'No\'\'problem\'\',\'\'our\'\'professional\'\'development\'\'team\'\'can\'\'add\'\'any\'\'features\'\'you\'\'need\'\'for\'\'your\'\'site\'\'.\'\'We\'\'\'\'\'ve\'\'built\'\'hundreds\'\'of\'\'custom\'\'apps\'\'for\'\'people\'\'.\'\'From\'\'simple\'\'macros\'\',\'\'to\'\'custom\'\'single\'\'sign\'\'on\'\'systems\'\',\'\'to\'\'applications\'\'that\'\'will\'\'manage\'\'your\'\'entire\'\'company\'\',\'\'our\'\'team\'\'can\'\'do\'\'it\'\'. ','000001000002000002000005'),('Vzv1pWpg_w6R_o-b0rM2qQ','Ad','Ad Ad home ad2 ','home/ad2',1147642515,1147642515,'3','7','4','WebGUI::Asset::File',1,'Ad\'\'Ad\'\'home\'\'ad2','000001000002000001000002'),('FOvmwGC0GtZo5VTxJIL3OA','Get Documentation','WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization. ','yns/docs',1147642515,1207068851,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Documentation\'\'Get\'\'Documentation\'\'yns\'\'docs\'\'WebGUI\'\'Documentation\'\'is\'\'the\'\'ultimate\'\'compendium\'\'to\'\'WebGUI\'\'.\'\'This\'\'is\'\'a\'\'must\'\'for\'\'anyone\'\'working\'\'in\'\'WebGUI\'\',\'\'and\'\'Plain\'\'Black\'\'offers\'\'vast\'\'bulk\'\'discounts\'\'so\'\'you\'\'can\'\'give\'\'it\'\'to\'\'everyone\'\'in\'\'your\'\'organization\'\'. ','000001000002000002000002'),('6QuS-0rosuZTdTv11fobig','Talk to the Experts','Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us tod','yns/experts',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Talk\'\'to\'\'the\'\'Experts\'\'Talk\'\'to\'\'the\'\'Experts\'\'yns\'\'experts\'\'Plain\'\'Black\'\'&\'\'reg\'\';\'\'created\'\'the\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'and\'\'is\'\'here\'\'to\'\'answer\'\'your\'\'questions\'\'and\'\'provide\'\'you\'\'with\'\'services\'\'to\'\'make\'\'sure\'\'your\'\'WebGUI\'\'implementation\'\'is\'\'entirely\'\'successful\'\'.\'\'We\'\'bend\'\'over\'\'backwards\'\'to\'\'make\'\'sure\'\'you\'\'\'\'\'re\'\'a\'\'success\'\'.\'\'Contact\'\'us\'\'today\'\'to\'\'see\'\'how\'\'we\'\'can\'\'help\'\'you\'\'. ','000001000002000002000001'),('NK8bqlwVRILJknqeCDPBHg','Getting Started (part 2)','\n\nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n \n\nNow that you\'re logged in, we recommend ','getting_started/getting-started-part2',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting\'\'Started\'\'(\'\'part\'\'2\'\')\'\'Getting\'\'Started\'\'(\'\'part\'\'2\'\')\'\'getting\'\'started\'\'getting\'\'started\'\'part2\'\'Now\'\'you\'\'should\'\'log\'\'in\'\'and\'\'go\'\'into\'\'admin\'\'mode\'\'.\'\'The\'\'default\'\'username\'\'is\'\'\"\'\'admin\'\'\"\'\'and\'\'the\'\'default\'\'password\'\'is\'\'\"\'\'123qwe\'\'\"\'\',\'\'but\'\'you\'\'probably\'\'customized\'\'both\'\'of\'\'those\'\'when\'\'you\'\'visited\'\'this\'\'site\'\'for\'\'the\'\'very\'\'first\'\'time\'\'.\'\'Now\'\'that\'\'you\'\'\'\'\'re\'\'logged\'\'in\'\',\'\'we\'\'recommend\'\'that\'\'you\'\'add\'\'a\'\'new\'\'user\'\'for\'\'yourself\'\'with\'\'admin\'\'privileges\'\'just\'\'in\'\'case\'\'you\'\'forget\'\'the\'\'login\'\'information\'\'for\'\'your\'\'primary\'\'admin\'\'account\'\'.\'\'Don\'\'\'\'\'t\'\'worry\'\'if\'\'you\'\'lock\'\'yourself\'\'out\'\',\'\'you\'\'can\'\'always\'\'contact\'\'Plain\'\'Black\'\'&\'\'reg\'\';\'\'support\'\'to\'\'get\'\'instructions\'\'to\'\'get\'\'back\'\'in\'\'.\'\'NOTE\'\':\'\'If\'\'you\'\'appear\'\'to\'\'be\'\'get\'\'logged\'\'out\'\'while\'\'moving\'\'between\'\'pages\'\',\'\'this\'\'is\'\'most\'\'likely\'\'your\'\'browser\'\'displaying\'\'a\'\'cached\'\'version\'\'of\'\'the\'\'page\'\'.\'\'Click\'\'on\'\'your\'\'browser\'\'\'\'\'s\'\'refresh\'\'button\'\'to\'\'correct\'\'the\'\'problem\'\'.\'\'No\'\'doubt\'\'after\'\'you\'\'enabled\'\'admin\'\'mode\'\'you\'\'saw\'\'a\'\'menu\'\'along\'\'the\'\'left\'\'side\'\'of\'\'the\'\'screen\'\',\'\'that\'\'\'\'\'s\'\'called\'\'the\'\'Admin\'\'Bar\'\'.\'\'Use\'\'that\'\'to\'\'add\'\'content\'\'and\'\'access\'\'administrative\'\'functions\'\'.\'\'You\'\'\'\'\'re\'\'now\'\'ready\'\'to\'\'begin\'\'exploring\'\'your\'\'new\'\'WebGUI\'\'site\'\'.\'\'For\'\'more\'\'information\'\'about\'\'services\'\'related\'\'to\'\'WebGUI\'\'click\'\'here\'\'.\'\'Enjoy\'\'your\'\'new\'\'WebGUI\'\'site\'\'! ','000001000002000001000003'),('m4YJFaqzultnB_sj1Uq0aw','Ad','Ad Ad home ad ','home/ad',1147642514,1147642514,'3','7','4','WebGUI::Asset::File',1,'Ad\'\'Ad\'\'home\'\'ad','000001000002000008'),('IWFxZDyGhQ3-SLZhELa3qw','Key Benefits','\n\nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n \n\nWorkflow &','home/key-benefits',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Key\'\'Benefits\'\'Key\'\'Benefits\'\'home\'\'key\'\'benefits\'\'Easy\'\'To\'\'Use\'\'-\'\'WebGUI\'\'is\'\'absolutely\'\'easy\'\'to\'\'use\'\'.\'\'WebGUI\'\'7\'\'has\'\'a\'\'completely\'\'revamped\'\'user\'\'interface\'\'to\'\'make\'\'it\'\'even\'\'easier\'\'to\'\'use\'\'.\'\'There\'\'are\'\'lots\'\'of\'\'visual\'\'cues\'\',\'\'consistent\'\'icons\'\',\'\'helper\'\'apps\'\',\'\'and\'\'a\'\'huge\'\'repository\'\'of\'\'built\'\'-\'\'in\'\'help\'\'files\'\'.\'\'Workflow\'\'&\'\'amp\'\';\'\'Versioning\'\'-\'\'Never\'\'again\'\'worry\'\'about\'\'content\'\'getting\'\'put\'\'on\'\'your\'\'site\'\'that\'\'you\'\'don\'\'\'\'\'t\'\'want\'\'there\'\'.\'\'Never\'\'again\'\'lose\'\'your\'\'old\'\'content\'\'after\'\'making\'\'an\'\'edit\'\'.\'\'And\'\'never\'\'again\'\'push\'\'out\'\'new\'\'changes\'\'until\'\'you\'\'\'\'\'re\'\'absolutely\'\'ready\'\'to\'\'release\'\'them\'\'.\'\'WebGUI\'\'\'\'\'s\'\'workflow\'\'and\'\'versioning\'\'system\'\'is\'\'fast\'\',\'\'flexible\'\',\'\'powerful\'\',\'\'and\'\'easy\'\'to\'\'use\'\'.\'\'Everything\'\'\'\'\'s\'\'a\'\'Template\'\'-\'\'Worry\'\'nevermore\'\'about\'\'your\'\'CMS\'\'forcing\'\'you\'\'into\'\'a\'\'mould\'\'that\'\'doesn\'\'\'\'\'t\'\'suit\'\'you\'\'.\'\'With\'\'WebGUI\'\'everything\'\'a\'\'site\'\'visitor\'\'can\'\'see\'\'is\'\'a\'\'customizable\'\'template\'\',\'\'so\'\'you\'\'can\'\'make\'\'it\'\'look\'\'exactly\'\'how\'\'you\'\'want\'\'.\'\'Moreover\'\'if\'\'you\'\'\'\'\'re\'\'the\'\'type\'\'that\'\'strives\'\'for\'\'excellence\'\'rest\'\'in\'\'the\'\'knowledge\'\'that\'\'all\'\'the\'\'templates\'\'that\'\'come\'\'with\'\'WebGUI\'\'are\'\'XHTML\'\'1\'\'.\'\'0\'\'strict\'\'compliant\'\'.\'\'Localization\'\'-\'\'WebGUI\'\'\'\'\'s\'\'entire\'\'user\'\'interface\'\'is\'\'set\'\'up\'\'to\'\'be\'\'internationalized\'\'.\'\'Visit\'\'one\'\'of\'\'the\'\'WebGUI\'\'Worldwide\'\'member\'\'sites\'\'to\'\'get\'\'translations\'\'for\'\'your\'\'language\'\'.\'\'Stay\'\'there\'\'to\'\'get\'\'support\'\'and\'\'services\'\'in\'\'your\'\'native\'\'language\'\'.\'\'Feel\'\'confident\'\'in\'\'the\'\'knowledge\'\'that\'\'WebGUI\'\'will\'\'work\'\'with\'\'your\'\'native\'\'characters\'\'because\'\'it\'\'\'\'\'s\'\'UTF\'\'-\'\'8\'\'compliant\'\'.\'\'On\'\'top\'\'of\'\'that\'\'WebGUI\'\'allows\'\'you\'\'to\'\'customize\'\'dates\'\',\'\'currency\'\',\'\'and\'\'weights\'\'to\'\'match\'\'your\'\'locale\'\'.\'\'Pluggable\'\'By\'\'Design\'\'-\'\'With\'\'WebGUI\'\'7\'\'you\'\'have\'\'many\'\'plug\'\'-\'\'in\'\'points\'\'to\'\'add\'\'your\'\'own\'\'functionality\'\'.\'\'And\'\'best\'\'of\'\'all\'\',\'\'the\'\'API\'\'is\'\'stable\'\'and\'\'standardized\'\'.\'\'Write\'\'it\'\'today\'\'and\'\'it\'\'will\'\'still\'\'work\'\'years\'\'from\'\'now\'\'and\'\'survive\'\'all\'\'upgrades\'\'. ','000001000002000009'),('bX5rYxb6tZ9docY6sUhBlw','Getting Started','\n\nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n \nNOTE: Click on the green start icon on t','getting_started/getting-started',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting\'\'Started\'\'Getting\'\'Started\'\'getting\'\'started\'\'getting\'\'started\'\'If\'\'you\'\'\'\'\'re\'\'reading\'\'this\'\'message\'\'that\'\'means\'\'you\'\'\'\'\'ve\'\'successfully\'\'installed\'\'and\'\'configured\'\'the\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'.\'\'Great\'\'job\'\'!\'\'To\'\'get\'\'started\'\'with\'\'managing\'\'content\'\',\'\'watch\'\'the\'\'short\'\'instructional\'\'video\'\'below\'\'.\'\'NOTE\'\':\'\'Click\'\'on\'\'the\'\'green\'\'start\'\'icon\'\'on\'\'the\'\'video\'\'to\'\'begin\'\'your\'\'tutorial\'\'. ','000001000002000001000001'),('Szs5eev3OMssmnsyLRZmWA','Tell A Friend','Tell a friend about WebGUI.','tell_a_friend/tell_a_friend',1124395696,1213317790,'3','7','3','WebGUI::Asset::Wobject::DataForm',1,'Tell\'\'A\'\'Friend\'\'Tell\'\'A\'\'Friend\'\'tell\'\'a\'\'friend\'\'tell\'\'a\'\'friend\'\'Tell\'\'a\'\'friend\'\'about\'\'WebGUI\'\'.','000001000002000004000001'),('OhdaFLE7sXOzo_SIP2ZUgA','Welcome','The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy eno','home/welcome',1147642513,1147642513,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Welcome\'\'Welcome\'\'home\'\'welcome\'\'The\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'is\'\'a\'\'powerful\'\'and\'\'easy\'\'to\'\'use\'\'system\'\'for\'\'managing\'\'web\'\'sites\'\',\'\'and\'\'building\'\'web\'\'applications\'\'.\'\'It\'\'provides\'\'thousands\'\'of\'\'features\'\'out\'\'of\'\'the\'\'box\'\',\'\'and\'\'lots\'\'of\'\'plug\'\'-\'\'in\'\'points\'\'so\'\'you\'\'can\'\'extend\'\'it\'\'to\'\'match\'\'your\'\'needs\'\'.\'\'It\'\'\'\'\'s\'\'easy\'\'enough\'\'for\'\'the\'\'average\'\'business\'\'user\'\',\'\'but\'\'powerful\'\'enough\'\'for\'\'any\'\'large\'\'enterprise\'\'.\'\'There\'\'are\'\'thousands\'\'of\'\'small\'\'and\'\'large\'\'businesses\'\',\'\'schools\'\',\'\'universities\'\',\'\'governments\'\',\'\'associations\'\',\'\'clubs\'\',\'\'churches\'\',\'\'projects\'\',\'\'and\'\'communities\'\'using\'\'WebGUI\'\'all\'\'over\'\'the\'\'world\'\'today\'\'.\'\'A\'\'brief\'\'list\'\'of\'\'some\'\'of\'\'them\'\'can\'\'be\'\'found\'\'here\'\'.\'\'Your\'\'site\'\'should\'\'be\'\'on\'\'that\'\'list\'\'.\'\'If\'\'you\'\'\'\'\'re\'\'new\'\'to\'\'WebGUI\'\',\'\'click\'\'here\'\'to\'\'learn\'\'how\'\'to\'\'get\'\'started\'\'.\'\'If\'\'you\'\'\'\'\'re\'\'getting\'\'up\'\'to\'\'speed\'\',\'\'check\'\'out\'\'some\'\'ways\'\'you\'\'can\'\'do\'\'more\'\'faster\'\'.\'\'If\'\'this\'\'is\'\'all\'\'old\'\'hat\'\'to\'\'you\'\',\'\'then\'\'check\'\'out\'\'the\'\'latest\'\'news\'\'.\'\'No\'\'matter\'\'what\'\'level\'\'you\'\'\'\'\'re\'\'at\'\'tell\'\'your\'\'friends\'\'about\'\'WebGUI\'\'. ','000001000002000007'),('pbrobot000000000000001','robots.txt','robots.txt robots.txt robots.txt ','robots.txt',1147642511,1147642511,'3','7','12','WebGUI::Asset::Snippet',1,'robots\'\'.\'\'txt\'\'robots\'\'.\'\'txt\'\'robots\'\'.\'\'txt User\'\'-\'\'agent\'\':\'\'googlebot\'\'Disallow\'\':\'\'*\'\'?\'\'op\'\'=\'\'displayLogin\'\'Disallow\'\':\'\'*\'\'?\'\'op\'\'=\'\'makePrintable','000001000001000031'),('7.0-style0000000000071','wg.jpg','wg.jpg wg.jpg style3 wg.jpg ','style3/wg.jpg',1147642511,1147642511,'3','7','12','WebGUI::Asset::File::Image',1,'wg\'\'.\'\'jpg\'\'wg\'\'.\'\'jpg\'\'style3\'\'wg\'\'.\'\'jpg','000001000001000047000022'),('7.0-style0000000000068','spacer.gif','spacer.gif spacer.gif style3 spacer.gif ','style3/spacer.gif',1147642510,1147642510,'3','7','12','WebGUI::Asset::File::Image',1,'spacer\'\'.\'\'gif\'\'spacer\'\'.\'\'gif\'\'style3\'\'spacer\'\'.\'\'gif','000001000001000047000019'),('7.0-style0000000000070','Style3 Coolmenu','Style3 Coolmenu Style3 Coolmenu style3 coolmenu ','style3_coolmenu',1147642510,1147642510,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3\'\'Coolmenu\'\'Style3\'\'Coolmenu\'\'style3\'\'coolmenu','000001000001000047000021'),('7.0-style0000000000066','nav_bg_on.jpg','nav_bg_on.jpg nav_bg_on.jpg style3 nav bg on.jpg ','style3/nav_bg_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg_on\'\'.\'\'jpg\'\'nav_bg_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg\'\'on\'\'.\'\'jpg','000001000001000047000017'),('7.0-style0000000000064','nav_bg2.jpg','nav_bg2.jpg nav_bg2.jpg style3 nav bg2.jpg ','style3/nav_bg2.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2\'\'.\'\'jpg\'\'nav_bg2\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg2\'\'.\'\'jpg','000001000001000047000015'),('7.0-style0000000000065','nav_bg2_on.jpg','nav_bg2_on.jpg nav_bg2_on.jpg style3 nav bg2 on.jpg ','style3/nav_bg2_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2_on\'\'.\'\'jpg\'\'nav_bg2_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg2\'\'on\'\'.\'\'jpg','000001000001000047000016'),('7.0-style0000000000067','pb.jpg','pb.jpg pb.jpg style3 pb.jpg ','style3/pb.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'pb\'\'.\'\'jpg\'\'pb\'\'.\'\'jpg\'\'style3\'\'pb\'\'.\'\'jpg','000001000001000047000018'),('7.0-style0000000000063','nav_bg1_on.jpg','nav_bg1_on.jpg nav_bg1_on.jpg style3 nav bg1 on.jpg ','style3/nav_bg1_on.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1_on\'\'.\'\'jpg\'\'nav_bg1_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg1\'\'on\'\'.\'\'jpg','000001000001000047000014'),('7.0-style0000000000060','main_top_bg.jpg','main_top_bg.jpg main_top_bg.jpg style3 main top bg.jpg ','style3/main_top_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'main_top_bg\'\'.\'\'jpg\'\'main_top_bg\'\'.\'\'jpg\'\'style3\'\'main\'\'top\'\'bg\'\'.\'\'jpg','000001000001000047000011'),('7.0-style0000000000062','nav_bg1.jpg','nav_bg1.jpg nav_bg1.jpg style3 nav bg1.jpg ','style3/nav_bg1.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1\'\'.\'\'jpg\'\'nav_bg1\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg1\'\'.\'\'jpg','000001000001000047000013'),('7.0-style0000000000061','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style3 nav bg.jpg ','style3/nav_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000047000012'),('7.0-style0000000000059','main_top.jpg','main_top.jpg main_top.jpg style3 main top.jpg ','style3/main_top.jpg',1147642507,1213386091,'3','7','12','WebGUI::Asset::File::Image',1,'main_top\'\'.\'\'jpg\'\'main_top\'\'.\'\'jpg\'\'style3\'\'main\'\'top\'\'.\'\'jpg','000001000001000047000010'),('7.0-style0000000000057','main_bg.jpg','main_bg.jpg main_bg.jpg style3 main bg.jpg ','style3/main_bg.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style3\'\'main\'\'bg\'\'.\'\'jpg','000001000001000047000008'),('7.0-style0000000000058','main_bottom.jpg','main_bottom.jpg main_bottom.jpg style3 main bottom.jpg ','style3/main_bottom.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bottom\'\'.\'\'jpg\'\'main_bottom\'\'.\'\'jpg\'\'style3\'\'main\'\'bottom\'\'.\'\'jpg','000001000001000047000009'),('7.0-style0000000000055','header_left.jpg','header_left.jpg header_left.jpg style3 header left.jpg ','style3/header_left.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_left\'\'.\'\'jpg\'\'header_left\'\'.\'\'jpg\'\'style3\'\'header\'\'left\'\'.\'\'jpg','000001000001000047000006'),('7.0-style0000000000056','header_right.jpg','header_right.jpg header_right.jpg style3 header right.jpg ','style3/header_right.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_right\'\'.\'\'jpg\'\'header_right\'\'.\'\'jpg\'\'style3\'\'header\'\'right\'\'.\'\'jpg','000001000001000047000007'),('7.0-style0000000000054','header_bg.jpg','header_bg.jpg header_bg.jpg style3 header bg.jpg ','style3/header_bg.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_bg\'\'.\'\'jpg\'\'header_bg\'\'.\'\'jpg\'\'style3\'\'header\'\'bg\'\'.\'\'jpg','000001000001000047000005'),('7.0-style0000000000052','footer_bg.jpg','footer_bg.jpg footer_bg.jpg style3 footer bg.jpg ','style3/footer_bg.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_bg\'\'.\'\'jpg\'\'footer_bg\'\'.\'\'jpg\'\'style3\'\'footer\'\'bg\'\'.\'\'jpg','000001000001000047000003'),('7.0-style0000000000053','footer_right.jpg','footer_right.jpg footer_right.jpg style3 footer right.jpg ','style3/footer_right.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_right\'\'.\'\'jpg\'\'footer_right\'\'.\'\'jpg\'\'style3\'\'footer\'\'right\'\'.\'\'jpg','000001000001000047000004'),('7.0-style0000000000046','rightCol_bg.jpg','rightCol_bg.jpg rightCol_bg.jpg style2 rightcol bg.jpg ','style2/rightcol_bg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'rightCol_bg\'\'.\'\'jpg\'\'rightCol_bg\'\'.\'\'jpg\'\'style2\'\'rightcol\'\'bg\'\'.\'\'jpg','000001000001000046000015'),('stevestyle000000000002','Style 02','Style 02 Style 02 style 02 ','style_02',1147642504,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'02\'\'Style\'\'02\'\'style\'\'02 style','000001000001000046000016'),('7.0-style0000000000049','WebGUI 7 Style 3','WebGUI 7 Style 3 WebGUI 7 Style 3 root import webgui 7 style 3 ','root/import/webgui-7-style-3',1147642504,1224117144,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'3\'\'WebGUI\'\'7\'\'Style\'\'3\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'3','000001000001000047'),('7.0-style0000000000048','wg.jpg','wg.jpg wg.jpg style2 wg.jpg ','style2/wg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'wg\'\'.\'\'jpg\'\'wg\'\'.\'\'jpg\'\'style2\'\'wg\'\'.\'\'jpg','000001000001000046000017'),('7.0-style0000000000045','pb_wg_bg.jpg','pb_wg_bg.jpg pb_wg_bg.jpg style2 pb wg bg.jpg ','style2/pb_wg_bg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg_bg\'\'.\'\'jpg\'\'pb_wg_bg\'\'.\'\'jpg\'\'style2\'\'pb\'\'wg\'\'bg\'\'.\'\'jpg','000001000001000046000014'),('7.0-style0000000000044','pb_wg.jpg','pb_wg.jpg pb_wg.jpg style2 pb wg.jpg ','style2/pb_wg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg\'\'.\'\'jpg\'\'pb_wg\'\'.\'\'jpg\'\'style2\'\'pb\'\'wg\'\'.\'\'jpg','000001000001000046000013'),('7.0-style0000000000043','pb.jpg','pb.jpg pb.jpg style2 pb.jpg ','style2/pb.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb\'\'.\'\'jpg\'\'pb\'\'.\'\'jpg\'\'style2\'\'pb\'\'.\'\'jpg','000001000001000046000012'),('7.0-style0000000000042','page_title_bg.jpg','page_title_bg.jpg page_title_bg.jpg style2 page title bg.jpg ','style2/page_title_bg.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title_bg\'\'.\'\'jpg\'\'page_title_bg\'\'.\'\'jpg\'\'style2\'\'page\'\'title\'\'bg\'\'.\'\'jpg','000001000001000046000011'),('7.0-style0000000000041','page_title.jpg','page_title.jpg page_title.jpg style2 page title.jpg ','style2/page_title.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title\'\'.\'\'jpg\'\'page_title\'\'.\'\'jpg\'\'style2\'\'page\'\'title\'\'.\'\'jpg','000001000001000046000010'),('7.0-style0000000000040','navbar_right.jpg','navbar_right.jpg navbar_right.jpg style2 navbar right.jpg ','style2/navbar_right.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_right\'\'.\'\'jpg\'\'navbar_right\'\'.\'\'jpg\'\'style2\'\'navbar\'\'right\'\'.\'\'jpg','000001000001000046000009'),('7.0-style0000000000039','navbar_left.jpg','navbar_left.jpg navbar_left.jpg style2 navbar left.jpg ','style2/navbar_left.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_left\'\'.\'\'jpg\'\'navbar_left\'\'.\'\'jpg\'\'style2\'\'navbar\'\'left\'\'.\'\'jpg','000001000001000046000008'),('7.0-style0000000000036','main_bg.jpg','main_bg.jpg main_bg.jpg style2 main bg.jpg ','style2/main_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style2\'\'main\'\'bg\'\'.\'\'jpg','000001000001000046000005'),('7.0-style0000000000038','navbar_bg.jpg','navbar_bg.jpg navbar_bg.jpg style2 navbar bg.jpg ','style2/navbar_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_bg\'\'.\'\'jpg\'\'navbar_bg\'\'.\'\'jpg\'\'style2\'\'navbar\'\'bg\'\'.\'\'jpg','000001000001000046000007'),('7.0-style0000000000035','leftCol_header02.jpg','leftCol_header02.jpg leftCol_header02.jpg style2 leftcol header02.jpg ','style2/leftcol_header02.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header02\'\'.\'\'jpg\'\'leftCol_header02\'\'.\'\'jpg\'\'style2\'\'leftcol\'\'header02\'\'.\'\'jpg','000001000001000046000004'),('7.0-style0000000000037','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style2 nav bg.jpg ','style2/nav_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style2\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000046000006'),('7.0-style0000000000032','context_bg.jpg','context_bg.jpg context_bg.jpg style2 context bg.jpg ','style2/context_bg.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'context_bg\'\'.\'\'jpg\'\'context_bg\'\'.\'\'jpg\'\'style2\'\'context\'\'bg\'\'.\'\'jpg','000001000001000046000001'),('7.0-style0000000000031','WebGUI 7 Style 2','WebGUI 7 Style 2 WebGUI 7 Style 2 root import webgui 7 style 2 ','root/import/webgui-7-style-2',1147642500,1147642500,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'2\'\'WebGUI\'\'7\'\'Style\'\'2\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'2','000001000001000046'),('7.0-style0000000000033','css02.css','css02.css css02.css style2 css02.css ','style2/css02.css',1147642500,1147642500,'3','7','12','WebGUI::Asset::Snippet',1,'css02\'\'.\'\'css\'\'css02\'\'.\'\'css\'\'style2\'\'css02\'\'.\'\'css body\'\',\'\'html\'\'{\'\'height\'\':\'\'100\'\'%\'\';\'\'}\'\'body\'\'{\'\'background\'\':\'\'#\'\'7c9ab0\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'main_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'rightColumn\'\'{\'\'width\'\':\'\'20\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'background\'\':\'\'#\'\'eeeeee\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'rightCol_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'pb_wg_bg\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'pb_wg_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'pb_wg\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'pb_wg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'left\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'53px\'\';\'\'}\'\'.\'\'leftColumn\'\'{\'\'width\'\':\'\'80\'\'%\'\';\'\'background\'\':\'\'white\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'context_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'background\'\':\'\'#\'\'7c9ab0\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'leftCol_header\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'right\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'86px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title\'\',\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title_bg\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'36pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'variant\'\':\'\'small\'\'-\'\'caps\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'12px\'\';\'\'top\'\':\'\'15px\'\';\'\'left\'\':\'\'5px\'\';\'\'position\'\':\'\'absolute\'\';\'\'z\'\'-\'\'index\'\':\'\'10\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title_bg\'\'{\'\'color\'\':\'\'black\'\';\'\'z\'\'-\'\'index\'\':\'\'5\'\';\'\'top\'\':\'\'17px\'\';\'\'left\'\':\'\'7px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'{\'\'/\'\'*\'\'background\'\':\'\'#\'\'fff\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'context_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'*\'\'/\'\'width\'\':\'\'95\'\'%\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'color\'\':\'\'#\'\'242424\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\'-\'\'left\'\':\'\'1\'\'%\'\';\'\'padding\'\'-\'\'right\'\':\'\'1\'\'%\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'a\'\'{\'\'color\'\':\'\'#\'\'7C9AB0\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'page_title_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'#\'\'pageTitle\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'page_title\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'right\'\'no\'\'-\'\'repeat\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'50px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'#\'\'pageTitle\'\'h2\'\'{\'\'font\'\'-\'\'size\'\':\'\'14pt\'\';\'\'color\'\':\'\'#\'\'696969\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'2px\'\';\'\'padding\'\'-\'\'left\'\':\'\'25px\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'3px\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'{\'\'width\'\':\'\'85\'\'%\'\';\'\'background\'\':\'\'#\'\'b5b5b5\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'nav_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'#\'\'848484\'\'1px\'\';\'\'margin\'\'-\'\'left\'\':\'\'auto\'\';\'\'margin\'\'-\'\'right\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'padding\'\'-\'\'left\'\':\'\'3px\'\';\'\'padding\'\'-\'\'top\'\':\'\'7px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'7px\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'line\'\'-\'\'height\'\':\'\'8pt\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'.\'\'selectedMenuItem\'\'{\'\'color\'\':\'\'yellow\'\';\'\'}\'\'#\'\'loginStyles\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'25px\'\';\'\'}\'\'#\'\'loginStyles\'\'a\'\'{\'\'color\'\':\'\'#\'\'89ACCF\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'transparent\'\'2px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'loginStyles\'\'a\'\':\'\'hover\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dotted\'\'#\'\'B2C9D9\'\'2px\'\';\'\'}\'\'.\'\'copyright\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'3px\'\';\'\'background\'\'-\'\'color\'\':\'\'gray\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'color\'\':\'\'silver\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}','000001000001000046000002'),('7.0-style0000000000034','leftCol_header.jpg','leftCol_header.jpg leftCol_header.jpg style2 leftcol header.jpg ','style2/leftcol_header.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header\'\'.\'\'jpg\'\'leftCol_header\'\'.\'\'jpg\'\'style2\'\'leftcol\'\'header\'\'.\'\'jpg','000001000001000046000003'),('stevenav00000000000001','Style 01 Nav','Style 01 Nav Style 01 Nav style1 nav ','style1_nav',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Nav\'\'Style\'\'01\'\'Nav\'\'style1\'\'nav Navigation','000001000001000045000027'),('PBnav000000style01lvl2','Style 01 Nav lvl2','Style 01 Nav lvl2 untitled style1 nav lvl2 ','style1_nav_lvl2',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Nav\'\'lvl2\'\'untitled\'\'style1\'\'nav\'\'lvl2 Navigation','000001000001000045000028'),('7.0-style0000000000030','webgui_btn.jpg','webgui_btn.jpg webgui_btn.jpg style1 webgui btn.jpg ','style1/webgui_btn.jpg',1147642499,1147642499,'3','7','12','WebGUI::Asset::File::Image',1,'webgui_btn\'\'.\'\'jpg\'\'webgui_btn\'\'.\'\'jpg\'\'style1\'\'webgui\'\'btn\'\'.\'\'jpg','000001000001000045000029'),('stevestyle000000000001','Style 01','Style 01 Style 01 style 01 ','style_01',1147642499,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Style\'\'01\'\'style\'\'01 style','000001000001000045000026'),('7.0-style0000000000026','RootTab Level 1','RootTab Level 1 RootTab Level 1 roottab level1 ','roottab_level1',1147642499,1147642499,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'Level\'\'1\'\'RootTab\'\'Level\'\'1\'\'roottab\'\'level1','000001000001000045000025'),('7.0-style0000000000024','orange_left01.jpg','orange_left01.jpg orange_left01.jpg style1 orange left01.jpg ','style1/orange_left01.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'orange_left01\'\'.\'\'jpg\'\'orange_left01\'\'.\'\'jpg\'\'style1\'\'orange\'\'left01\'\'.\'\'jpg','000001000001000045000023'),('7.0-style0000000000023','nav_on.jpg','nav_on.jpg nav_on.jpg style1 nav on.jpg ','style1/nav_on.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'nav_on\'\'.\'\'jpg\'\'nav_on\'\'.\'\'jpg\'\'style1\'\'nav\'\'on\'\'.\'\'jpg','000001000001000045000022'),('7.0-style0000000000025','RootTab Level 0','RootTab Level 0 RootTab Level 0 roottab level0 ','roottab_level0',1147642498,1147642498,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'Level\'\'0\'\'RootTab\'\'Level\'\'0\'\'roottab\'\'level0','000001000001000045000024'),('7.0-style0000000000019','nav2_off_right.jpg','nav2_off_right.jpg nav2_off_right.jpg style1 nav2 off right.jpg ','style1/nav2_off_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_right\'\'.\'\'jpg\'\'nav2_off_right\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'right\'\'.\'\'jpg','000001000001000045000018'),('7.0-style0000000000020','nav2_on_left.jpg','nav2_on_left.jpg nav2_on_left.jpg style1 nav2 on left.jpg ','style1/nav2_on_left.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_left\'\'.\'\'jpg\'\'nav2_on_left\'\'.\'\'jpg\'\'style1\'\'nav2\'\'on\'\'left\'\'.\'\'jpg','000001000001000045000019'),('7.0-style0000000000022','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style1 nav bg.jpg ','style1/nav_bg.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style1\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000045000021'),('7.0-style0000000000021','nav2_on_right.jpg','nav2_on_right.jpg nav2_on_right.jpg style1 nav2 on right.jpg ','style1/nav2_on_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_right\'\'.\'\'jpg\'\'nav2_on_right\'\'.\'\'jpg\'\'style1\'\'nav2\'\'on\'\'right\'\'.\'\'jpg','000001000001000045000020'),('7.0-style0000000000017','nav2_off_center.jpg','nav2_off_center.jpg nav2_off_center.jpg style1 nav2 off center.jpg ','style1/nav2_off_center.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_center\'\'.\'\'jpg\'\'nav2_off_center\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'center\'\'.\'\'jpg','000001000001000045000016'),('7.0-style0000000000016','nav2_center_on.jpg','nav2_center_on.jpg nav2_center_on.jpg style1 nav2 center on.jpg ','style1/nav2_center_on.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_center_on\'\'.\'\'jpg\'\'nav2_center_on\'\'.\'\'jpg\'\'style1\'\'nav2\'\'center\'\'on\'\'.\'\'jpg','000001000001000045000015'),('7.0-style0000000000018','nav2_off_left.jpg','nav2_off_left.jpg nav2_off_left.jpg style1 nav2 off left.jpg ','style1/nav2_off_left.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_left\'\'.\'\'jpg\'\'nav2_off_left\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'left\'\'.\'\'jpg','000001000001000045000017'),('7.0-style0000000000015','nav1_on_right.jpg','nav1_on_right.jpg nav1_on_right.jpg style1 nav1 on right.jpg ','style1/nav1_on_right.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_right\'\'.\'\'jpg\'\'nav1_on_right\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'right\'\'.\'\'jpg','000001000001000045000014'),('7.0-style0000000000014','nav1_on_left.jpg','nav1_on_left.jpg nav1_on_left.jpg style1 nav1 on left.jpg ','style1/nav1_on_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_left\'\'.\'\'jpg\'\'nav1_on_left\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'left\'\'.\'\'jpg','000001000001000045000013'),('7.0-style0000000000013','nav1_on.jpg','nav1_on.jpg nav1_on.jpg style1 nav1 on.jpg ','style1/nav1_on.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on\'\'.\'\'jpg\'\'nav1_on\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'.\'\'jpg','000001000001000045000012'),('7.0-style0000000000011','nav1_off_left.jpg','nav1_off_left.jpg nav1_off_left.jpg style1 nav1 off left.jpg ','style1/nav1_off_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_left\'\'.\'\'jpg\'\'nav1_off_left\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'left\'\'.\'\'jpg','000001000001000045000010'),('7.0-style0000000000012','nav1_off_right.jpg','nav1_off_right.jpg nav1_off_right.jpg style1 nav1 off right.jpg ','style1/nav1_off_right.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_right\'\'.\'\'jpg\'\'nav1_off_right\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'right\'\'.\'\'jpg','000001000001000045000011'),('7.0-style0000000000009','nav1_off.jpg','nav1_off.jpg nav1_off.jpg style1 nav1 off.jpg ','style1/nav1_off.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off\'\'.\'\'jpg\'\'nav1_off\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'.\'\'jpg','000001000001000045000008'),('7.0-style0000000000010','nav1_off_center.jpg','nav1_off_center.jpg nav1_off_center.jpg style1 nav1 off center.jpg ','style1/nav1_off_center.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_center\'\'.\'\'jpg\'\'nav1_off_center\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'center\'\'.\'\'jpg','000001000001000045000009'),('7.0-style0000000000008','nav1_center_on.jpg','nav1_center_on.jpg nav1_center_on.jpg style1 nav1 center on.jpg ','style1/nav1_center_on.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_center_on\'\'.\'\'jpg\'\'nav1_center_on\'\'.\'\'jpg\'\'style1\'\'nav1\'\'center\'\'on\'\'.\'\'jpg','000001000001000045000007'),('7.0-style0000000000006','main_bg.gif','main_bg.gif main_bg.gif style1 main bg.gif ','style1/main_bg.gif',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'gif\'\'main_bg\'\'.\'\'gif\'\'style1\'\'main\'\'bg\'\'.\'\'gif','000001000001000045000005'),('7.0-style0000000000007','main_bg.jpg','main_bg.jpg main_bg.jpg style1 main bg.jpg ','style1/main_bg.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style1\'\'main\'\'bg\'\'.\'\'jpg','000001000001000045000006'),('7.0-style0000000000004','gui_bottom.jpg','gui_bottom.jpg gui_bottom.jpg style1 gui bottom.jpg ','style1/gui_bottom.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'gui_bottom\'\'.\'\'jpg\'\'gui_bottom\'\'.\'\'jpg\'\'style1\'\'gui\'\'bottom\'\'.\'\'jpg','000001000001000045000003'),('7.0-style0000000000005','header.jpg','header.jpg header.jpg style1 header.jpg ','style1/header.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'header\'\'.\'\'jpg\'\'header\'\'.\'\'jpg\'\'style1\'\'header\'\'.\'\'jpg','000001000001000045000004'),('7.0-style0000000000001','WebGUI 7 Style 1','WebGUI 7 Style 1 WebGUI 7 Style 1 root import webgui 7 style 1 ','root/import/webgui-7-style-1',1147642492,1147642492,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'1\'\'WebGUI\'\'7\'\'Style\'\'1\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'1','000001000001000045'),('7.0-style0000000000002','body_bg.jpg','body_bg.jpg body_bg.jpg style1 body bg.jpg ','style1/body_bg.jpg',1147642492,1147642492,'3','7','12','WebGUI::Asset::File::Image',1,'body_bg\'\'.\'\'jpg\'\'body_bg\'\'.\'\'jpg\'\'style1\'\'body\'\'bg\'\'.\'\'jpg','000001000001000045000001'),('7.0-style0000000000003','css01.css','css01.css css01.css style1 css01.css ','style1/css01.css',1147642492,1147642492,'3','7','12','WebGUI::Asset::Snippet',1,'css01\'\'.\'\'css\'\'css01\'\'.\'\'css\'\'style1\'\'css01\'\'.\'\'css body\'\',\'\'html\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'494949\'\';\'\'}\'\'#\'\'main\'\'{\'\'width\'\':\'\'800px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'main_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'margin\'\'-\'\'left\'\':\'\'auto\'\';\'\'margin\'\'-\'\'right\'\':\'\'auto\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'body\'\'>\'\'#\'\'main\'\'{\'\'height\'\':\'\'auto\'\';\'\'min\'\'-\'\'height\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'{\'\'width\'\':\'\'800px\'\';\'\'height\'\':\'\'133px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'header\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'top\'\'left\'\'no\'\'-\'\'repeat\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'#\'\'title\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'23px\'\';\'\'left\'\':\'\'145px\'\';\'\'font\'\'-\'\'size\'\':\'\'32pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'#\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'orange_left01\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'left\'\'top\'\'no\'\'-\'\'repeat\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'red\'\'0px\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainContent\'\'{\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainContent\'\'>\'\'p\'\'{\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'#\'\'mainText\'\'a\'\':\'\'link\'\'{\'\'color\'\':\'\'#\'\'FF7F23\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'#\'\'mainText\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'D25900\'\';\'\'}\'\'/\'\'*\'\'LEVEL\'\'1\'\'AND\'\'2\'\'NAVIGATION\'\'*\'\'/\'\'#\'\'main\'\'.\'\'mainNav_1\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dashed\'\'#\'\'DADADA\'\'1px\'\';\'\'width\'\':\'\'621px\'\';\'\'height\'\':\'\'25px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'position\'\':\'\'relative\'\';\'\'margin\'\'-\'\'left\'\':\'\'137px\'\';\'\'clear\'\':\'\'both\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'visited\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'top\'\':\'\'5px\'\';\'\'position\'\':\'\'relative\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'hover\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'left\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'left\'\'{\'\'width\'\':\'\'12px\'\';\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'center\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'center\'\'{\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_center\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\',\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_center\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'right\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'right\'\'{\'\'width\'\':\'\'10px\'\';\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_on_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_center_on\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_on_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_on_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_center_on\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_on_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'visited\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'/\'\'*\'\'ENDOF\'\'LEVEL\'\'1\'\'AND\'\'2\'\'NAVIGATION\'\'*\'\'/\'\'#\'\'main\'\'#\'\'crumbTrail\'\'{\'\'margin\'\'-\'\'left\'\':\'\'177px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'color\'\':\'\'gray\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'visited\'\',\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'link\'\'{\'\'color\'\':\'\'silver\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'hover\'\'{\'\'color\'\':\'\'gray\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainText\'\'{\'\'padding\'\'-\'\'left\'\':\'\'150px\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'width\'\':\'\'600px\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'{\'\'bottom\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'position\'\':\'\'absolute\'\';\'\'width\'\':\'\'135px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'{\'\'padding\'\'-\'\'right\'\':\'\'12px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'width\'\':\'\'100px\'\';\'\'float\'\':\'\'right\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'.\'\'loginBoxField\'\'{\'\'width\'\':\'\'75px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'.\'\'loginBoxButton\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'D65501\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'white\'\'2px\'\';\'\'margin\'\'-\'\'top\'\':\'\'4px\'\';\'\'font\'\'-\'\'variant\'\':\'\'small\'\'-\'\'caps\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'copyright\'\'{\'\'color\'\':\'\'#\'\'fff\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'110px\'\';\'\'right\'\':\'\'40px\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'2D2D2D\'\';\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'-\'\'moz\'\'-\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'-\'\'khtml\'\'-\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'*\'\'html\'\'#\'\'copyright\'\'{\'\'background\'\':\'\'transparent\'\';\'\'}','000001000001000045000002'),('CSN-ZON7Uwv8kxf3F1fh5Q','ZipArchiveAsset','ZipArchiveAsset ZipArchiveAsset root import ziparchiveasset ','root/import/ziparchiveasset',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ZipArchiveAsset\'\'ZipArchiveAsset\'\'root\'\'import\'\'ziparchiveasset','000001000001000049'),('TCtybxdqmdwdvRn555zpCQ','RichEdit','RichEdit RichEdit root import richedit ','root/import/richedit',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RichEdit\'\'RichEdit\'\'root\'\'import\'\'richedit','000001000001000030'),('NywJYmGWe1f6EBXJnWg9Xg','Profile','Profile Profile root import profile ','root/import/profile',1222803606,1222803638,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile\'\'Profile\'\'root\'\'import\'\'profile','000001000001000026'),('9wKWdum0_8z-OhhquWLtSQ','WeatherData','WeatherData WeatherData root import weatherdata ','root/import/weatherdata',1147642483,1147642483,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WeatherData\'\'WeatherData\'\'root\'\'import\'\'weatherdata','000001000001000044'),('AgyFhx3eXlfZXNp2MkrsiQ','Edit','Edit Edit root import profile edit ','root/import/profile/edit',1147642477,1222803665,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Edit\'\'Edit\'\'root\'\'import\'\'profile\'\'edit','000001000001000026000001'),('F7MAQ-cpuvQ1KuC7J4P5zQ','View','View View root import profile view ','root/import/profile/view',1147642477,1222803673,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'View\'\'View\'\'root\'\'import\'\'profile\'\'view','000001000001000026000002'),('oGfxez5sksyB_PcaAsEm_Q','SyndicatedContent','SyndicatedContent SyndicatedContent root import syndicatedcontent ','root/import/syndicatedcontent',1147642482,1147642482,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SyndicatedContent\'\'SyndicatedContent\'\'root\'\'import\'\'syndicatedcontent','000001000001000040'),('5bnNzteN7w3NnK9mF4XiCg','Survey','Survey Survey root import survey ','root/import/survey',1147642481,1227540002,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Survey\'\'Survey\'\'root\'\'import\'\'survey','000001000001000039'),('Efe2W0UgrSRDltNJ87jlfg','StockData','StockData StockData root import stockdata ','root/import/stockdata',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'StockData\'\'StockData\'\'root\'\'import\'\'stockdata','000001000001000037'),('bbiA9Zq5Gy2oCFBlILO3QA','SQLReport','SQLReport SQLReport root import sqlreport ','root/import/sqlreport',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SQLReport\'\'SQLReport\'\'root\'\'import\'\'sqlreport','000001000001000036'),('RrV4aAPnn4dM0ZcU3OXnlw','style','style style root import style ','root/import/style',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'style\'\'style\'\'root\'\'import\'\'style','000001000001000038'),('Ik9HHky10DIyFTKehUD1dw','Prompt','Prompt Prompt root import prompt ','root/import/prompt',1147642479,1222803478,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Prompt\'\'Prompt\'\'root\'\'import\'\'prompt','000001000001000028'),('f_tn9FfoSfKWX43F83v_3w','Search','Search Search root import search ','root/import/search',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Search\'\'Search\'\'root\'\'import\'\'search','000001000001000032'),('Da6KWn805L4B5e4HFgQRQA','Shortcut','Shortcut Shortcut root import shortcut ','root/import/shortcut',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shortcut\'\'Shortcut\'\'root\'\'import\'\'shortcut','000001000001000035'),('TYo2Bwl7aafzTtdHlS-arQ','Product','Product Product root import product ','root/import/product',1147642478,1211664878,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Product\'\'Product\'\'root\'\'import\'\'product','000001000001000025'),('VZK3CRgiMb8r4dBjUmCTgQ','Poll','Poll Poll root import poll ','root/import/poll',1147642477,1147642477,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Poll\'\'Poll\'\'root\'\'import\'\'poll','000001000001000024'),('jEz8iTGNWEt2I05IhVV19Q','Operation/RedeemSubscription','Operation/RedeemSubscription Operation/RedeemSubscription root import operation redeemsubscription ','root/import/operation/redeemsubscription',1147642477,1147642477,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Operation\'\'/\'\'RedeemSubscription\'\'Operation\'\'/\'\'RedeemSubscription\'\'root\'\'import\'\'operation\'\'redeemsubscription','000001000001000034000016'),('BFfNj5wA9bDw8H3cnr8pTw','Navigation','Navigation Navigation root import navigation ','root/import/navigation',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Navigation\'\'Navigation\'\'root\'\'import\'\'navigation','000001000001000022'),('bBzO4CWjqU_ile3gf5Iypw','MultiSearch','MultiSearch MultiSearch root import multisearch ','root/import/multisearch',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MultiSearch\'\'MultiSearch\'\'root\'\'import\'\'multisearch','000001000001000021'),('cj2y4papTVGZRFdwTI-_fw','MessageBoard','MessageBoard MessageBoard root import messageboard ','root/import/messageboard',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MessageBoard\'\'MessageBoard\'\'root\'\'import\'\'messageboard','000001000001000019'),('3womoo7Teyy2YKFa25-MZg','Address Book (Default)','Address Book (Default) Address Book (Default) shopping cart collateral items address book default ','shopping-cart-collateral-items/address-book-default',1212098997,1226703362,'3','7','3','WebGUI::Asset::Template',1,'Address\'\'Book\'\'(\'\'Default\'\')\'\'Address\'\'Book\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'address\'\'book\'\'default Shop\'\'/\'\'AddressBook','000001000001000034000013'),('g8W53Pd71uHB9pxaXhWf_A','My Purchases Detail (Default)','My Purchases Detail (Default) My Purchases Detail (Default) shopping cart collateral items my purchases detail default ','shopping-cart-collateral-items/my-purchases-detail-default',1213184121,1222574693,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Purchases\'\'Detail\'\'(\'\'Default\'\')\'\'My\'\'Purchases\'\'Detail\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'my\'\'purchases\'\'detail\'\'default Shop\'\'/\'\'MyPurchasesDetail','000001000001000034000015'),('-WM2dt0ZGpDasuL2wWocxg','ProjectManager','ProjectManager ProjectManager root import projectmanager ','root/import/projectmanager',1222803056,1222803056,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ProjectManager\'\'ProjectManager\'\'root\'\'import\'\'projectmanager','000001000001000027'),('LdiozcIUciWuvt3Z-na5Ww','Matrix','Matrix Matrix root import matrix ','root/import/matrix',1147642474,1232673968,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Matrix\'\'Matrix\'\'root\'\'import\'\'matrix','000001000001000018'),('default_post_received1','Default Post Received','Default Post Received Default Post Received default post received ','default_post_received',1222708029,1230356300,'3','7','4','WebGUI::Asset::Template',1,'Default\'\'Post\'\'Received\'\'Default\'\'Post\'\'Received\'\'default\'\'post\'\'received Collaboration\'\'/\'\'PostReceived','000001000001000005000030'),('aNNC62qLAS6TB-0_MCYjsw','Layout','Layout Layout root import layout ','root/import/layout',1147642471,1213283425,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Layout\'\'Layout\'\'root\'\'import\'\'layout','000001000001000016'),('GYaFxnMu9UsEG8oanwB6TA','Folder','Folder Folder root import folder ','root/import/folder',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Folder\'\'Folder\'\'root\'\'import\'\'folder','000001000001000010'),('N13SD1Fpqk00UgBt1Z8ivQ','HttpProxy','HttpProxy HttpProxy root import httpproxy ','root/import/httpproxy',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'HttpProxy\'\'HttpProxy\'\'root\'\'import\'\'httpproxy','000001000001000012'),('tPagC0AQErZXjLFZQ6OI1g','ImageAsset','ImageAsset ImageAsset root import imageasset ','root/import/imageasset',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ImageAsset\'\'ImageAsset\'\'root\'\'import\'\'imageasset','000001000001000013'),('3uuBf8cYuj1sew2OJXl9tg','InOutBoard','InOutBoard InOutBoard root import inoutboard ','root/import/inoutboard',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'InOutBoard\'\'InOutBoard\'\'root\'\'import\'\'inoutboard','000001000001000015'),('PBtmpl0000000000000005','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template Default LDAP Anonymous Registration Template default ldap anonymous registration template ','default_ldap_anonymous_registration_template',1124395696,1221612327,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Anonymous\'\'Registration\'\'Template\'\'Default\'\'LDAP\'\'Anonymous\'\'Registration\'\'Template\'\'default\'\'ldap\'\'anonymous\'\'registration\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Create','000001000001000003000002000001'),('PBtmpl0000000000000011','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template Default WebGUI Anonymous Registration Template default webgui anonymous registration template ','default_webgui_anonymous_registration_template',1124395696,1221612288,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Anonymous\'\'Registration\'\'Template\'\'Default\'\'WebGUI\'\'Anonymous\'\'Registration\'\'Template\'\'default\'\'webgui\'\'anonymous\'\'registration\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Create','000001000001000003000005000001'),('VXSsbsfcfht1904EWkb1sw','Inbox','Inbox Inbox root import inbox ','root/import/inbox',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox\'\'Inbox\'\'root\'\'import\'\'inbox','000001000001000014'),('tXwf1zaOXTvsqPn6yu-GSw','FileAsset','FileAsset FileAsset root import fileasset ','root/import/fileasset',1147642469,1147642469,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'FileAsset\'\'FileAsset\'\'root\'\'import\'\'fileasset','000001000001000009'),('S1A9iAwKcQQ6P20uTqw-Ew','Dashboard','Dashboard Dashboard root import dashboard ','root/import/dashboard',1147642468,1147642468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Dashboard\'\'Dashboard\'\'root\'\'import\'\'dashboard','000001000001000006'),('-K8Hj45mbelljN9-0CXZxg','DataForm',' ','root/import/dataform',1147642468,1209325764,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'DataForm\'\'DataForm\'\'root\'\'import\'\'dataform','000001000001000007'),('GNOAsX98vCsl0JRwfwL-gg','Collaboration','Collaboration Collaboration root import collaboration ','root/import/collaboration',1147642466,1147642466,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Collaboration\'\'Collaboration\'\'root\'\'import\'\'collaboration','000001000001000005'),('pbproto000000000000002','Request Tracker','Request Tracker Request Tracker request tracker prototype ','request-tracker-prototype',1147642465,1163019036,'3','7','12','WebGUI::Asset::Wobject::Collaboration',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'prototype','000001000001000029'),('pbtmpl0000000000000220','Flash Template','Flash Template Flash Template flash template ','flash-template',1147642465,1148579525,'3','7','12','WebGUI::Asset::Template',1,'Flash\'\'Template\'\'Flash\'\'Template\'\'flash\'\'template FileAsset','000001000001000009000002'),('pbtmpl0000000000000221','Flash Tutorial Template','Flash Tutorial Template Flash Tutorial Template flash tutorial template ','flash-tutorial-template',1147642465,1147642465,'3','7','12','WebGUI::Asset::Template',1,'Flash\'\'Tutorial\'\'Template\'\'Flash\'\'Tutorial\'\'Template\'\'flash\'\'tutorial\'\'template FileAsset','000001000001000009000003'),('nbSrhXZQuxIjhWFaFPSuVA','AdminConsole','AdminConsole AdminConsole root import adminconsole ','root/import/adminconsole',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminConsole\'\'AdminConsole\'\'root\'\'import\'\'adminconsole','000001000001000001'),('TvOZs8U1kRXLtwtmyW75pg','Article','Article Article root import article ','root/import/article',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Article\'\'Article\'\'root\'\'import\'\'article','000001000001000002'),('PBtmpl0000000000000027','Default Forum Notification','Default Forum Notification Default Forum Notification default forum notification ','default_forum_notification',1124395696,1230159257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Notification\'\'Default\'\'Forum\'\'Notification\'\'default\'\'forum\'\'notification Collaboration\'\'/\'\'Notification','000001000001000005000015'),('PBtmpl00000000table118','Three Over One (Table)','Three Over One (Table) Three Over One (Table) three over one table ','three_over_one_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Three\'\'Over\'\'One\'\'(\'\'Table\'\')\'\'Three\'\'Over\'\'One\'\'(\'\'Table\'\')\'\'three\'\'over\'\'one\'\'table Layout','000001000001000016000012'),('PBtmpl00000000table135','Side By Side (Table)','Side By Side (Table) Side By Side (Table) side by side table ','side_by_side_table',1148579525,1220655706,'3','7','12','WebGUI::Asset::Template',1,'Side\'\'By\'\'Side\'\'(\'\'Table\'\')\'\'Side\'\'By\'\'Side\'\'(\'\'Table\'\')\'\'side\'\'by\'\'side\'\'table Layout','000001000001000016000011'),('PBtmpl00000000table131','Right Column (Table)','Right Column (Table) Right Column (Table) right column table ','right_column_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Right\'\'Column\'\'(\'\'Table\'\')\'\'Right\'\'Column\'\'(\'\'Table\'\')\'\'right\'\'column\'\'table Layout','000001000001000016000010'),('PBtmpl00000000table094','News (Table)','News (Table) News (Table) news table ','news_table',1148579525,1220655704,'3','7','12','WebGUI::Asset::Template',1,'News\'\'(\'\'Table\'\')\'\'News\'\'(\'\'Table\'\')\'\'news\'\'table Layout','000001000001000016000009'),('PBtmpl00000000table125','Left Column (Table)','Left Column (Table) Left Column (Table) left column table ','left_column_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Column\'\'(\'\'Table\'\')\'\'Left\'\'Column\'\'(\'\'Table\'\')\'\'left\'\'column\'\'table Layout','000001000001000016000008'),('PBnav00000000indentnav','Indent Nav','Indent Nav Indent Nav indent nav ','indent_nav',1148579525,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Indent\'\'Nav\'\'Indent\'\'Nav\'\'indent\'\'nav Navigation','000001000001000022000028'),('PBtmpl0000000000000085','Default Email','Default Email Default Email default email ','default_email',1124395696,1202884864,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Email\'\'Default\'\'Email\'\'default\'\'email DataForm','000001000001000007000002'),('PBnav00000000000bullet','Bulleted List','Bulleted List Bulleted List bulleted list ','bulleted_list',1148579524,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Bulleted\'\'List\'\'Bulleted\'\'List\'\'bulleted\'\'list Navigation','000001000001000022000027'),('StockDataTMPL000000002','StockData Default Display','StockData Default Display StockData Default Display stockdatatmpl000000002 ','stockdatatmpl000000002',1133743239,1229494994,'3','7','12','WebGUI::Asset::Template',1,'StockData\'\'Default\'\'Display\'\'StockData\'\'Default\'\'Display\'\'stockdatatmpl000000002 StockData\'\'/\'\'Display','000001000001000037000001'),('2OcUWHVsu_L1sDFzIMWYqw','TimeTracking','TimeTracking TimeTracking root import timetracking ','root/import/timetracking',1222803070,1222803070,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'TimeTracking\'\'TimeTracking\'\'root\'\'import\'\'timetracking','000001000001000042'),('PBtmpl000000000table54','Default Page (Table)','Default Page (Table) Default Page (Table) default page table ','default_page_table',1154535074,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'(\'\'Table\'\')\'\'Default\'\'Page\'\'(\'\'Table\'\')\'\'default\'\'page\'\'table Layout','000001000001000016000013'),('PBtmpl00000000table109','One Over Three (Table)','One Over Three (Table) One Over Three (Table) one over three table ','one_over_three_table',1154535074,1220655705,'3','7','12','WebGUI::Asset::Template',1,'One\'\'Over\'\'Three\'\'(\'\'Table\'\')\'\'One\'\'Over\'\'Three\'\'(\'\'Table\'\')\'\'one\'\'over\'\'three\'\'table Layout','000001000001000016000014'),('PBtmpl0000000000000014','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template Default WebGUI Password Recovery Template default webgui password recovery template ','default_webgui_password_recovery_template',1124395696,1227218041,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Password\'\'Recovery\'\'Template\'\'Default\'\'WebGUI\'\'Password\'\'Recovery\'\'Template\'\'default\'\'webgui\'\'password\'\'recovery\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Recovery2','000001000001000003000008000001'),('ProjectManagerTMPL0006','Default Resource List','Default Resource List Default Resource List default pm resource list ','default-pm-resource-list',1157679165,1157679165,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Resource\'\'List\'\'Default\'\'Resource\'\'List\'\'default\'\'pm\'\'resource\'\'list ProjectManager_resourceList','000001000001000027000005000001'),('ProjectManagerTMPL0005','Default Resource Popup','Default Resource Popup Default Resource Popup default pm resource popup ','default-pm-resource-popup',1157679165,1229579830,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Resource\'\'Popup\'\'Default\'\'Resource\'\'Popup\'\'default\'\'pm\'\'resource\'\'popup ProjectManager_resourcePopup','000001000001000027000005000002'),('PBtmpl0000000000000032','Default Thread','Default Thread Default Thread default thread ','default_thread',1124395696,1206998756,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thread\'\'Default\'\'Thread\'\'default\'\'thread Collaboration\'\'/\'\'Thread','000001000001000005000014'),('WeatherDataTmpl0000001','WeatherData Default View','WeatherData Default View WeatherData Default View weatherdatatmpl0000001 ','weatherdatatmpl0000001',1133743239,1210711353,'3','7','12','WebGUI::Asset::Template',1,'WeatherData\'\'Default\'\'View\'\'WeatherData\'\'Default\'\'View\'\'weatherdatatmpl0000001 WeatherData','000001000001000044000001'),('PBasset000000000000001','Root','Root Root root ','root',1124395696,1124395696,'3','7','3','WebGUI::Asset',1,'Root\'\'Root\'\'root','000001'),('PBrichedit000000000001','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit Content Manager\'s Rich Edit content managers rich edit ','content_managers_rich_edit',1124395696,1207240829,'3','7','12','WebGUI::Asset::RichEdit',1,'Content\'\'Manager\'\'\'\'\'s\'\'Rich\'\'Edit\'\'Content\'\'Manager\'\'\'\'\'s\'\'Rich\'\'Edit\'\'content\'\'managers\'\'rich\'\'edit','000001000001000030000001'),('PBrichedit000000000002','Forum Rich Edit','Forum Rich Edit Forum Rich Edit forum rich edit ','forum_rich_edit',1124395696,1124395696,'3','7','12','WebGUI::Asset::RichEdit',1,'Forum\'\'Rich\'\'Edit\'\'Forum\'\'Rich\'\'Edit\'\'forum\'\'rich\'\'edit','000001000001000030000002'),('SynConXSLT000000000001','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT Stylesheet RSS 0.9 XSLT xslt rss0.9.xsl ','xslt/rss0.9.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'0\'\'.\'\'9\'\'XSLT\'\'Stylesheet\'\'RSS\'\'0\'\'.\'\'9\'\'XSLT\'\'xslt\'\'rss0\'\'.\'\'9\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'0\'\'.\'\'9\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.','000001000001000040000004'),('SynConXSLT000000000002','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT Stylesheet RSS 0.91 XSLT xslt rss0.91.xsl ','xslt/rss0.91.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'0\'\'.\'\'91\'\'XSLT\'\'Stylesheet\'\'RSS\'\'0\'\'.\'\'91\'\'XSLT\'\'xslt\'\'rss0\'\'.\'\'91\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'0\'\'.\'\'91\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.','000001000001000040000005'),('SynConXSLT000000000003','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT Stylesheet RSS 1.0 XSLT xslt rss1.0.xsl ','xslt/rss1.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'1\'\'.\'\'0\'\'XSLT\'\'Stylesheet\'\'RSS\'\'1\'\'.\'\'0\'\'XSLT\'\'xslt\'\'rss1\'\'.\'\'0\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'1\'\'.\'\'0\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.\'\'(\'\')','000001000001000040000006'),('SynConXSLT000000000004','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT Stylesheet RSS 2.0 XSLT xslt rss2.0.xsl ','xslt/rss2.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'2\'\'.\'\'0\'\'XSLT\'\'Stylesheet\'\'RSS\'\'2\'\'.\'\'0\'\'XSLT\'\'xslt\'\'rss2\'\'.\'\'0\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'2\'\'.\'\'0\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.\'\'(\'\')','000001000001000040000007'),('vrKXEtluIhbmAS9xmPukDA','Donation (Default)','Donation (Default) Donation (Default) root import default donation template ','root/import/default-donation-template',1212092352,1226698051,'3','7','12','WebGUI::Asset::Template',1,'Donation\'\'(\'\'Default\'\')\'\'Donation\'\'(\'\'Default\'\')\'\'root\'\'import\'\'default\'\'donation\'\'template Donation','000001000001000034000010'),('eqb9sWjFEVq0yHunGV8IGw','Subscription (Default)','Subscription (Default) Subscription (Default) root import subscription default ','root/import/subscription-default',1213182595,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Subscription\'\'(\'\'Default\'\')\'\'Subscription\'\'(\'\'Default\'\')\'\'root\'\'import\'\'subscription\'\'default Subscription','000001000001000034000012'),('PBtmpl0000000000000036','Default Admin Toggle Macro','Default Admin Toggle Macro Default Admin Toggle Macro default admin toggle macro ','default_admin_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Admin\'\'Toggle\'\'Macro\'\'Default\'\'Admin\'\'Toggle\'\'Macro\'\'default\'\'admin\'\'toggle\'\'macro Macro\'\'/\'\'AdminToggle','000001000001000017000001000001'),('PBtmpl0000000000000037','Default Account Macro','Default Account Macro Default Account Macro default account macro ','default_account_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Account\'\'Macro\'\'Default\'\'Account\'\'Macro\'\'default\'\'account\'\'macro Macro\'\'/\'\'a_account','000001000001000017000002000001'),('PBtmpl0000000000000038','Default Editable Toggle Macro','Default Editable Toggle Macro Default Editable Toggle Macro default editable toggle macro ','default_editable_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Editable\'\'Toggle\'\'Macro\'\'Default\'\'Editable\'\'Toggle\'\'Macro\'\'default\'\'editable\'\'toggle\'\'macro Macro\'\'/\'\'EditableToggle','000001000001000017000003000001'),('PBtmpl0000000000000040','Default Group Add Macro','Default Group Add Macro Default Group Add Macro default group add macro ','default_group_add_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Group\'\'Add\'\'Macro\'\'Default\'\'Group\'\'Add\'\'Macro\'\'default\'\'group\'\'add\'\'macro Macro\'\'/\'\'GroupAdd','000001000001000017000005000001'),('PBtmpl0000000000000041','Default Group Delete Macro','Default Group Delete Macro Default Group Delete Macro default group delete macro ','default_group_delete_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Group\'\'Delete\'\'Macro\'\'Default\'\'Group\'\'Delete\'\'Macro\'\'default\'\'group\'\'delete\'\'macro Macro\'\'/\'\'GroupDelete','000001000001000017000006000001'),('PBtmpl0000000000000042','Default Homelink','Default Homelink Default Homelink default homelink ','default_homelink',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Homelink\'\'Default\'\'Homelink\'\'default\'\'homelink Macro\'\'/\'\'H_homeLink','000001000001000017000007000001'),('PBtmpl0000000000000043','Default LoginToggle','Default LoginToggle Default LoginToggle default logintoggle ','default_logintoggle',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LoginToggle\'\'Default\'\'LoginToggle\'\'default\'\'logintoggle Macro\'\'/\'\'LoginToggle','000001000001000017000008000001'),('PBtmpl0000000000000045','Default Make Printable','Default Make Printable Default Make Printable default make printable ','default_make_printable',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Make\'\'Printable\'\'Default\'\'Make\'\'Printable\'\'default\'\'make\'\'printable Macro\'\'/\'\'r_printable','000001000001000017000011000001'),('PBtmpl0000000000000091','File no icon','File no icon File no icon file no icon ','file_no_icon',1124395696,1129049189,'3','7','12','WebGUI::Asset::Template',1,'File\'\'no\'\'icon\'\'File\'\'no\'\'icon\'\'file\'\'no\'\'icon Macro\'\'/\'\'File','000001000001000017000004000002'),('PBtmpl0000000000000125','Left Column','Left Column Left Column left column ','left_column',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Column\'\'Left\'\'Column\'\'left\'\'column Layout','000001000001000016000004'),('PBtmpl0000000000000132','Empty','Empty Empty empty ','empty',1124395696,1129049190,'3','7','12','WebGUI::Asset::Template',1,'Empty\'\'Empty\'\'empty style','000001000001000038000004'),('PBtmpl0000000000000140','Default Shortcut','Default Shortcut Default Shortcut pbtmpl0000000000000140 ','pbtmpl0000000000000140',1124395696,1129573244,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Shortcut\'\'Default\'\'Shortcut\'\'pbtmpl0000000000000140 Shortcut','000001000001000035000001'),('PBtmpl0000000000000142','Default RSS','Default RSS Default RSS pbtmpl0000000000000142 ','pbtmpl0000000000000142',1133743238,1171466654,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'RSS\'\'Default\'\'RSS\'\'pbtmpl0000000000000142 RSSCapable\'\'/\'\'RSS','000001000001000005000026'),('ZipArchiveTMPL00000001','Default Zip Archive Template','Default Zip Archive Template Default Zip Archive Template zip archive template ','zip-archive-template',1133743240,1169738426,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Zip\'\'Archive\'\'Template\'\'Default\'\'Zip\'\'Archive\'\'Template\'\'zip\'\'archive\'\'template ZipArchiveAsset','000001000001000049000001'),('PBasset000000000000002','Import Node','Import Node Import root import ','root/import',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Import\'\'Node\'\'Import\'\'root\'\'import','000001000001'),('2TqQc4OISddWCZmRY1_m8A','The Latest News','The Latest News The Latest News the latest news ','the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'The\'\'Latest\'\'News\'\'The\'\'Latest\'\'News\'\'the\'\'latest\'\'news','000001000002000003'),('68sKwDgf9cGH58-NZcU4lg','Home','Home Home home ','home',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Home\'\'Home\'\'home','000001000002'),('8Bb8gu-me2mhL3ljFyiWLg','What should you do next?','What should you do next? Your Next Step your next step ','your_next_step',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'What\'\'should\'\'you\'\'do\'\'next\'\'?\'\'Your\'\'Next\'\'Step\'\'your\'\'next\'\'step','000001000002000002'),('Swf6L8poXKc7hUaNPkBevw','Tell A Friend','Tell A Friend Tell A Friend tell a friend ','tell_a_friend',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Tell\'\'A\'\'Friend\'\'Tell\'\'A\'\'Friend\'\'tell\'\'a\'\'friend','000001000002000004'),('_iHetEvMQUOoxS-T2CM0sQ','Getting Started','Getting Started Getting Started getting started ','getting_started',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Getting\'\'Started\'\'Getting\'\'Started\'\'getting\'\'started','000001000002000001'),('x3OFY6OJh_qsXkZfPwug4A','Site Map','Site Map Site Map site map ','site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Site\'\'Map\'\'Site\'\'Map\'\'site\'\'map','000001000002000006'),('PBnav00000000000000001','crumbTrail','crumbTrail crumbTrail crumbtrail ','crumbtrail',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crumbTrail\'\'crumbTrail\'\'crumbtrail','000001000001000022000009'),('PBnav00000000000000002','SpecificSubMenuVertical','SpecificSubMenuVertical SpecificSubMenuVertical specificsubmenuvertical ','specificsubmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuVertical\'\'SpecificSubMenuVertical\'\'specificsubmenuvertical','000001000001000022000018'),('PBnav00000000000000006','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal SpecificSubMenuHorizontal specificsubmenuhorizontal ','specificsubmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuHorizontal\'\'SpecificSubMenuHorizontal\'\'specificsubmenuhorizontal','000001000001000022000019'),('PBnav00000000000000007','TopLevelMenuVertical','TopLevelMenuVertical TopLevelMenuVertical toplevelmenuvertical ','toplevelmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuVertical\'\'TopLevelMenuVertical\'\'toplevelmenuvertical','000001000001000022000020'),('PBnav00000000000000008','TopLevelMenuHorizontal','TopLevelMenuHorizontal TopLevelMenuHorizontal toplevelmenuhorizontal ','toplevelmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuHorizontal\'\'TopLevelMenuHorizontal\'\'toplevelmenuhorizontal','000001000001000022000021'),('PBnav00000000000000009','RootTab','RootTab RootTab roottab ','roottab',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'RootTab\'\'roottab','000001000001000022000022'),('PBnav00000000000000010','TopDropMenu','TopDropMenu TopDropMenu topdropmenu ','topdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopDropMenu\'\'TopDropMenu\'\'topdropmenu','000001000001000022000023'),('PBnav00000000000000011','dtree','dtree dtree dtree ','dtree',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'dtree\'\'dtree\'\'dtree','000001000001000022000024'),('PBnav00000000000000012','coolmenu','coolmenu coolmenu coolmenu ','coolmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'coolmenu\'\'coolmenu\'\'coolmenu','000001000001000022000025'),('PBnav00000000000000013','Synopsis','Synopsis Synopsis synopsis ','synopsis',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Synopsis\'\'Synopsis\'\'synopsis','000001000001000022000026'),('PBnav00000000000000014','FlexMenu','FlexMenu FlexMenu flexmenu ','flexmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'FlexMenu\'\'FlexMenu\'\'flexmenu','000001000001000022000010'),('PBnav00000000000000015','currentMenuVertical','currentMenuVertical currentMenuVertical currentmenuvertical ','currentmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuVertical\'\'currentMenuVertical\'\'currentmenuvertical','000001000001000022000011'),('PBnav00000000000000016','currentMenuHorizontal','currentMenuHorizontal currentMenuHorizontal currentmenuhorizontal ','currentmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuHorizontal\'\'currentMenuHorizontal\'\'currentmenuhorizontal','000001000001000022000012'),('PBnav00000000000000017','PreviousDropMenu','PreviousDropMenu PreviousDropMenu previousdropmenu ','previousdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'PreviousDropMenu\'\'PreviousDropMenu\'\'previousdropmenu','000001000001000022000013'),('PBnav00000000000000018','previousMenuVertical','previousMenuVertical previousMenuVertical previousmenuvertical ','previousmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuVertical\'\'previousMenuVertical\'\'previousmenuvertical','000001000001000022000014'),('PBnav00000000000000019','previousMenuHorizontal','previousMenuHorizontal previousMenuHorizontal previousmenuhorizontal ','previousmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuHorizontal\'\'previousMenuHorizontal\'\'previousmenuhorizontal','000001000001000022000015'),('PBnav00000000000000020','rootmenu','rootmenu rootmenu rootmenu ','rootmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'rootmenu\'\'rootmenu\'\'rootmenu','000001000001000022000016'),('PBnav00000000000000021','SpecificDropMenu','SpecificDropMenu SpecificDropMenu specificdropmenu ','specificdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificDropMenu\'\'SpecificDropMenu\'\'specificdropmenu','000001000001000022000017'),('pJd5TLAjfWMVXD6sCRLwUg','Site Map','Site Map Site Map site map site map ','site_map/site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Site\'\'Map\'\'Site\'\'Map\'\'site\'\'map\'\'site\'\'map','000001000002000006000001'),('fK-HMSboA3uu0c1KYkYspA','The Latest News','This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','the_latest_news/the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::SyndicatedContent',1,'The\'\'Latest\'\'News\'\'The\'\'Latest\'\'News\'\'the\'\'latest\'\'news\'\'the\'\'latest\'\'news\'\'This\'\'is\'\'the\'\'latest\'\'news\'\'from\'\'Plain\'\'Black\'\'and\'\'WebGUI\'\'pulled\'\'directly\'\'from\'\'the\'\'site\'\'every\'\'hour\'\'.','000001000002000003000001'),('WikiFrontTmpl000000001','Default Wiki Front Page','Default Wiki Front Page Default Wiki Front Page default wiki front page ','default-wiki-front-page',1165460175,1185754572,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Front\'\'Page\'\'Default\'\'Wiki\'\'Front\'\'Page\'\'default\'\'wiki\'\'front\'\'page WikiMaster_front','000001000001000048000002'),('WikiSearchTmpl00000001','Default Wiki Search','Default Wiki Search Default Wiki Search default wiki search ','default-wiki-search',1165460175,1168480840,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Search\'\'Default\'\'Wiki\'\'Search\'\'default\'\'wiki\'\'search WikiMaster_search','000001000001000048000003'),('WikiPHTmpl000000000001','Default Page History','Default Page History Default Page History default wiki page history ','default-wiki-page-history',1165460175,1165460175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'History\'\'Default\'\'Page\'\'History\'\'default\'\'wiki\'\'page\'\'history WikiPage_pageHistory','000001000001000048000004'),('WikiPageTmpl0000000001','Default Wiki Page','Default Wiki Page Default Wiki Page default wiki page ','default-wiki-page',1165460175,1229706257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Page\'\'Default\'\'Wiki\'\'Page\'\'default\'\'wiki\'\'page WikiPage','000001000001000048000005'),('WikiPageEditTmpl000001','Default Wiki Page Edit','Default Wiki Page Edit Default Wiki Page Edit default wiki page edit ','default-wiki-page-edit',1165460175,1221692341,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Page\'\'Edit\'\'Default\'\'Wiki\'\'Page\'\'Edit\'\'default\'\'wiki\'\'page\'\'edit WikiPage_edit','000001000001000048000006'),('WikiMPTmpl000000000001','Default Most Popular','Default Most Popular Default Most Popular default wiki most popular ','default-wiki-most-popular',1165460175,1165460175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Most\'\'Popular\'\'Default\'\'Most\'\'Popular\'\'default\'\'wiki\'\'most\'\'popular WikiMaster_mostPopular','000001000001000048000007'),('SQLReportDownload00001','SQLReport Download Default Template','SQLReport Download Default Template untitled SQLReportDownload0001 ','SQLReportDownload0001',1171466654,1171466654,'3','7','12','WebGUI::Asset::Template',1,'SQLReport\'\'Download\'\'Default\'\'Template\'\'untitled\'\'SQLReportDownload0001 SQLReport\'\'/\'\'Download','000001000001000036000002'),('newsletter000000000001',' Summary Newsletter (default)',' Summary Newsletter (default) Summary Newsletter newsletterdefaulttemplate ','newsletterdefaulttemplate',1185754569,1185754569,'3','7','3','WebGUI::Asset::Template',1,'Summary\'\'Newsletter\'\'(\'\'default\'\')\'\'Summary\'\'Newsletter\'\'newsletterdefaulttemplate newsletter','000001000001000023000001'),('newslettercs0000000001','Newsletter Manager (default)','Newsletter Manager (default) Newsletter Manager newslettercstemplate ','newslettercstemplate',1185754569,1226896423,'3','7','3','WebGUI::Asset::Template',1,'Newsletter\'\'Manager\'\'(\'\'default\'\')\'\'Newsletter\'\'Manager\'\'newslettercstemplate newsletter','000001000001000023000002'),('newslettersubscrip0001','My Subscriptions (default)','My Subscriptions (default) My Subscriptions newslettermysubscriptionstemplate ','newslettermysubscriptionstemplate',1185754569,1221692339,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Subscriptions\'\'(\'\'default\'\')\'\'My\'\'Subscriptions\'\'newslettermysubscriptionstemplate newsletter\'\'/\'\'mysubscriptions','000001000001000023000003'),('AjhlNO3wZvN5k4i4qioWcg','Default Answer Edit','Default Answer Edit Default Answer Edit root import survey default answer edit ','root/import/survey/default-answer-edit',1226009658,1232726656,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Answer\'\'Edit\'\'Default\'\'Answer\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'answer\'\'edit Survey\'\'/\'\'Edit','000001000001000039000010'),('QHn6T9rU7KsnS3Y70KCNTg','Account','Account Account root import account ','root/import/account',1227080251,1227080251,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Account\'\'Account\'\'root\'\'import\'\'account','000001000001000053'),('HPDOcsj4gBme8D4svHodBw','Profile','Profile Profile root import account profile ','root/import/account/profile',1225404573,1225404573,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile\'\'Profile\'\'root\'\'import\'\'account\'\'profile','000001000001000053000001'),('d8jMMMRddSQ7twP4l1ZSIw','Default Survey Take','Default Survey Take Default Survey Take root import survey default survey take ','root/import/survey/default-survey-take',1227248175,1227248175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Take\'\'Default\'\'Survey\'\'Take\'\'root\'\'import\'\'survey\'\'default\'\'survey\'\'take Survey\'\'/\'\'Take','000001000001000039000006'),('WikiKeyword00000000001',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword (default) Wiki Pages By Keyword wiki master by keyword template.tmpl ','wiki-master-by-keyword-template.tmpl',1185754571,1185754571,'3','7','3','WebGUI::Asset::Template',1,'Wiki\'\'Pages\'\'By\'\'Keyword\'\'(\'\'default\'\')\'\'Wiki\'\'Pages\'\'By\'\'Keyword\'\'wiki\'\'master\'\'by\'\'keyword\'\'template\'\'.\'\'tmpl WikiMaster_byKeyword','000001000001000048000008'),('tempspace0000000000000','Tempspace','Tempspace Tempspace tempspace ','tempspace',1185754574,1185754574,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Tempspace\'\'Tempspace\'\'tempspace','000001000004'),('iLzlwGmwrvzlGHXKzaDyjA','Messaging','Messaging Messaging root import messaging ','root/import/messaging',1199479244,1222804090,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Messaging\'\'Messaging\'\'root\'\'import\'\'messaging','000001000001000020'),('1oBRscNIcFOI-pETrCOspA','Default Section Edit','Default Section Edit Default Section Edit root import survey default section edit ','root/import/survey/default-section-edit',1226009642,1232648656,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Section\'\'Edit\'\'Default\'\'Section\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'section\'\'edit Survey\'\'/\'\'Edit','000001000001000039000008'),('gI_TxK-5S4DNuv42wpImmw','Gallery Templates',' ','root/import/gallery-templates',1197330678,1213734379,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Gallery\'\'Templates\'\'Gallery\'\'Templates\'\'root\'\'import\'\'gallery\'\'templates','000001000001000011'),('jME5BEDYVDlBZ8jIQA9-jQ','Default Gallery Search','Default Gallery Search Default Gallery Search root import gallery templates default gallery search ','root/import/gallery-templates/default-gallery-search',1197927169,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Search\'\'Default\'\'Gallery\'\'Search\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'search Gallery\'\'/\'\'Search','000001000001000011000001'),('azCqD0IjdQSlM3ar29k5Sg','Default Gallery List Albums View','Default Gallery List Albums View Default Gallery List Albums View root import gallery templates default gallery list albums view ','root/import/gallery-templates/default-gallery-list-albums-view',1197881748,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Albums\'\'View\'\'Default\'\'Gallery\'\'List\'\'Albums\'\'View\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'albums\'\'view Gallery\'\'/\'\'ListAlbums','000001000001000011000002'),('05FpjceLYhq4csF1Kww1KQ','Default Gallery View Album','Default Gallery View Album Default Gallery View Album root import gallery templates default gallery view album ','root/import/gallery-templates/default-gallery-view-album',1197879361,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Default\'\'Gallery\'\'View\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album GalleryAlbum\'\'/\'\'View','000001000001000011000003'),('q5O62aH4pjUXsrQR3Pq4lw','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails Default Gallery View Album Thumbnails root import gallery templates default gallery view album thumbnails ','root/import/gallery-templates/default-gallery-view-album-thumbnails',1197825772,1230585542,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Thumbnails\'\'Default\'\'Gallery\'\'View\'\'Album\'\'Thumbnails\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album\'\'thumbnails GalleryAlbum\'\'/\'\'ViewThumbnails','000001000001000011000004'),('KAMdiUdJykjN02CPHpyZOw','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow Default Gallery View Album Slideshow root import gallery templates default gallery view album slideshow ','root/import/gallery-templates/default-gallery-view-album-slideshow',1197825787,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Slideshow\'\'Default\'\'Gallery\'\'View\'\'Album\'\'Slideshow\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album\'\'slideshow GalleryAlbum\'\'/\'\'ViewSlideshow','000001000001000011000005'),('OkphOEdaSGTXnFGhK4GT5A','Default Gallery List Files For User','Default Gallery List Files For User Default Gallery List Files For User root import gallery templates default gallery list files for user ','root/import/gallery-templates/default-gallery-list-files-for-user',1197825794,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'files\'\'for\'\'user Gallery\'\'/\'\'ListFilesForUser','000001000001000011000006'),('TEId5V-jEvUULsZA0wuRuA','Default Gallery View Photo','Default Gallery View Photo Default Gallery View Photo root import gallery templates default gallery view photo ','root/import/gallery-templates/default-gallery-view-photo',1197989443,1230702582,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Photo\'\'Default\'\'Gallery\'\'View\'\'Photo\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'photo GalleryFile\'\'/\'\'View','000001000001000011000007'),('6X-7Twabn5KKO_AbgK3PEw','Default Gallery Edit Album','Default Gallery Edit Album Default Gallery Edit Album root import gallery templates default gallery edit album ','root/import/gallery-templates/default-gallery-edit-album',1197987780,1230585542,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Album\'\'Default\'\'Gallery\'\'Edit\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'album GalleryAlbum\'\'/\'\'Edit','000001000001000011000008'),('7JCTAiu1U_bT9ldr655Blw','Default Gallery Edit Photo','Default Gallery Edit Photo Default Gallery Edit Photo root import gallery templates default gallery edit photo ','root/import/gallery-templates/default-gallery-edit-photo',1197825824,1230585543,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Photo\'\'Default\'\'Gallery\'\'Edit\'\'Photo\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'photo GalleryFile\'\'/\'\'Edit','000001000001000011000009'),('0X4Q3tBWUb_thsVbsYz9xQ','Default Gallery Add Archive','Default Gallery Add Archive Default Gallery Add Archive root import gallery templates default gallery add archive ','root/import/gallery-templates/default-gallery-add-archive',1197987372,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Add\'\'Archive\'\'Default\'\'Gallery\'\'Add\'\'Archive\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'add\'\'archive GalleryAlbum\'\'/\'\'AddArchive','000001000001000011000010'),('m3IbBavqzuKDd2PGGhKPlA','Default Gallery Make Shortcut','Default Gallery Make Shortcut Default Gallery Make Shortcut root import gallery templates default gallery make shortcut ','root/import/gallery-templates/default-gallery-make-shortcut',1197825845,1230585543,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Make\'\'Shortcut\'\'Default\'\'Gallery\'\'Make\'\'Shortcut\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'make\'\'shortcut GalleryFile\'\'/\'\'MakeShortcut','000001000001000011000011'),('UTNFeV7B_aSCRmmaFCq4Vw','Default Gallery Delete Album','Default Gallery Delete Album Default Gallery Delete Album root import gallery templates default gallery delete album ','root/import/gallery-templates/default-gallery-delete-album',1197825856,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Delete\'\'Album\'\'Default\'\'Gallery\'\'Delete\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'delete\'\'album GalleryAlbum\'\'/\'\'Delete','000001000001000011000012'),('zcX-wIUct0S_np14xxOA-A','Default Gallery Delete File','Default Gallery Delete File Default Gallery Delete File root import gallery templates default gallery delete file ','root/import/gallery-templates/default-gallery-delete-file',1197825866,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Delete\'\'File\'\'Default\'\'Gallery\'\'Delete\'\'File\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'delete\'\'file GalleryFile\'\'/\'\'Delete','000001000001000011000013'),('MBZK_LPVzqhb4TV4mMRTJg','admin_ie7.css','admin_ie7.css admin_ie7.css root import gallery templates admin ie7.css ','root/import/gallery-templates/admin_ie7.css',1197330678,1197330678,'3','7','3','WebGUI::Asset::Snippet',1,'admin_ie7\'\'.\'\'css\'\'admin_ie7\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'admin\'\'ie7\'\'.\'\'css input\'\'.\'\'captionEnter\'\'{\'\'margin\'\'-\'\'left\'\':\'\'-\'\'5px\'\';\'\'width\'\':\'\'92px\'\';\'\'}','000001000001000011000014'),('_hELmIJfgbAyXFNqPyApxQ','admin.css','admin.css admin.css root import gallery templates admin.css ','root/import/gallery-templates/admin.css',1197330678,1213309523,'3','7','3','WebGUI::Asset::Snippet',1,'admin\'\'.\'\'css\'\'admin\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'admin\'\'.\'\'css #\'\'adminWrapper\'\'{\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'2\'\';\'\'}\'\'h2\'\'{\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'}\'\'.\'\'messageStyle\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'8px\'\';\'\'}\'\'.\'\'adminButton\'\'{\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'e0e0e0\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'padding\'\':\'\'0\'\'.\'\'5em\'\'1em\'\';\'\'}\'\'.\'\'adminTable\'\'{\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'F0F0F0\'\';\'\'color\'\':\'\'black\'\';\'\'width\'\':\'\'320px\'\';\'\'padding\'\':\'\'5px\'\';\'\'}\'\'.\'\'adminTable\'\'select\'\',\'\'.\'\'adminTable\'\'input\'\',\'\'.\'\'adminTable\'\'textarea\'\'{\'\'border\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'.\'\'label\'\'{\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'1px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'galleryOrg\'\'{\'\'position\'\':\'\'relative\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'border\'\':\'\'gray\'\'solid\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\'-\'\'top\'\':\'\'3px\'\';\'\'width\'\':\'\'95\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'DEDEDE\'\'}\'\'.\'\'galleryOrg\'\'.\'\'left\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'36\'\'%\'\';\'\'}\'\'.\'\'galleryOrg\'\'.\'\'right\'\'{\'\'width\'\':\'\'63\'\'%\'\';\'\'}\'\'.\'\'galleryOrg\'\'img\'\'{\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'150px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'}\'\'.\'\'promote\'\'{\'\'margin\'\'-\'\'left\'\':\'\'3px\'\';\'\'}\'\'.\'\'promote\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'width\'\':\'\'16px\'\';\'\'}\'\'.\'\'demote\'\'{\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'}\'\'.\'\'demote\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'width\'\':\'\'16px\'\';\'\'}\'\'.\'\'delete\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'}\'\'.\'\'numbering\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'padding\'\':\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomRight\'\':\'\'5px\'\'}\'\'input\'\'.\'\'captionEnter\'\'{\'\'width\'\':\'\'93px\'\';\'\'clear\'\':\'\'both\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'3px\'\'}\'\'.\'\'galleryOrg\'\'button\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\':\'\'none\'\';\'\'}\'\'.\'\'galleryOrg\'\'button\'\'img\'\'{\'\'width\'\':\'\'16px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'galleryOrg\'\'.\'\'synopsis\'\'input\'\'{\'\'width\'\':\'\'80px\'\';\'\'}','000001000001000011000015'),('kaPRSaf8UKiskiGEgJgLAw','images','images images root import gallery templates images ','root/import/gallery-templates/images',1197330678,1197330678,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'gallery\'\'templates\'\'images','000001000001000011000017'),('bANo8aiAPA7aY_oQZKxIWw','rss.gif','rss.gif rss.gif root import gallery templates images rss.gif ','root/import/gallery-templates/images/rss.gif',1197330678,1197330678,'3','7','3','WebGUI::Asset::File::Image',1,'rss\'\'.\'\'gif\'\'rss\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'rss\'\'.\'\'gif','000001000001000011000017000001'),('2ci_v2d4x4uvyjTRlC49OA','moveDown.gif','moveDown.gif moveDown.gif root import gallery templates images movedown.gif ','root/import/gallery-templates/images/movedown.gif',1197330678,1209499188,'3','7','3','WebGUI::Asset::File::Image',1,'moveDown\'\'.\'\'gif\'\'moveDown\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'movedown\'\'.\'\'gif','000001000001000011000017000002'),('O-EsSzKgAk1KolFT-x_KsA','moveUp.gif','moveUp.gif moveUp.gif root import gallery templates images moveup.gif ','root/import/gallery-templates/images/moveup.gif',1197330678,1209499188,'3','7','3','WebGUI::Asset::File::Image',1,'moveUp\'\'.\'\'gif\'\'moveUp\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'moveup\'\'.\'\'gif','000001000001000011000017000003'),('fdd8tGExyVwHyrB8RBbKXg','next.gif','next.gif next.gif root import gallery templates images next.gif ','root/import/gallery-templates/images/next.gif',1197330839,1197330839,'3','7','3','WebGUI::Asset::File::Image',1,'next\'\'.\'\'gif\'\'next\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'next\'\'.\'\'gif','000001000001000011000017000004'),('BpisgHl4ZDcSECJp6oib1w','play.gif','play.gif play.gif root import gallery templates images play.gif ','root/import/gallery-templates/images/play.gif',1197330840,1197330840,'3','7','3','WebGUI::Asset::File::Image',1,'play\'\'.\'\'gif\'\'play\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'play\'\'.\'\'gif','000001000001000011000017000005'),('zshreRgPAXtnF0DtVbQ1Yg','previous.gif','previous.gif previous.gif root import gallery templates images previous.gif ','root/import/gallery-templates/images/previous.gif',1197330840,1197330840,'3','7','3','WebGUI::Asset::File::Image',1,'previous\'\'.\'\'gif\'\'previous\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'previous\'\'.\'\'gif','000001000001000011000017000006'),('mM3bjP_iG9sv5nQb4S17tQ','Default Gallery View Album RSS','Default Gallery View Album RSS Default Gallery View Album RSS root import gallery templates default gallery album rss ','root/import/gallery-templates/default-gallery-album-rss',1197879662,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'RSS\'\'Default\'\'Gallery\'\'View\'\'Album\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'album\'\'rss GalleryAlbum\'\'/\'\'ViewRss','000001000001000011000018'),('ilu5BrM-VGaOsec9Lm7M6Q','Default Gallery List Albums RSS','Default Gallery List Albums RSS Default Gallery List Albums RSS root import gallery templates default gallery list albums rss ','root/import/gallery-templates/default-gallery-list-albums-rss',1197878780,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Albums\'\'RSS\'\'Default\'\'Gallery\'\'List\'\'Albums\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'albums\'\'rss Gallery\'\'/\'\'ListAlbumsRss','000001000001000011000019'),('-ANLpoTEP-n4POAdRxCzRw','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS Default Gallery List Files For User RSS root import gallery templates default gallery list files for user rss ','root/import/gallery-templates/default-gallery-list-files-for-user-rss',1197880641,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'RSS\'\'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'files\'\'for\'\'user\'\'rss Gallery\'\'/\'\'ListFilesForUserRss','000001000001000011000020'),('OxJWQgnGsgyGohP2L3zJPQ','Default Gallery Edit Comment','Default Gallery Edit Comment Default Gallery Edit Comment root import gallery templates default gallery edit comment ','root/import/gallery-templates/default-gallery-edit-comment',1204663962,1230585543,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Comment\'\'Default\'\'Gallery\'\'Edit\'\'Comment\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'comment GalleryFile\'\'/\'\'EditComment','000001000001000011000021'),('Tsg7xmPYv782j6IVz7yHFg','Calendar Templates','Calendar Templates Calendar Templates root import calendar templates ','root/import/calendar-templates',1204890713,1213244777,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Calendar\'\'Templates\'\'Calendar\'\'Templates\'\'root\'\'import\'\'calendar\'\'templates','000001000001000004'),('kj3b-X3i6zRKnhLb4ZiCLw','Default Calendar List View','Default Calendar List View Default Calendar List View root import calendar templates default calendar list view ','root/import/calendar-templates/default-calendar-list-view',1204890713,1222574694,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'List\'\'View\'\'Default\'\'Calendar\'\'List\'\'View\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'list\'\'view Calendar\'\'/\'\'List','000001000001000004000001'),('uRL9qtk7Rb0YRJ41LmHOJw','Default Calendar Print List View','Default Calendar Print List View Default Calendar Print List View root import calendar templates default calendar print list view ','root/import/calendar-templates/default-calendar-print-list-view',1204890713,1229311072,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'List\'\'View\'\'Default\'\'Calendar\'\'Print\'\'List\'\'View\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'list\'\'view Calendar\'\'/\'\'Print\'\'/\'\'List','000001000001000004000002'),('CalendarWeek0000000001','Default Calendar Week','Default Calendar Week Default Calendar Week root import calendar templates default calendar week ','root/import/calendar-templates/default-calendar-week',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Week\'\'Default\'\'Calendar\'\'Week\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'week Calendar\'\'/\'\'Week','000001000001000004000003'),('CalendarDay00000000001','Default Calendar Day','Default Calendar Day Default Calendar Day root import calendar templates default calendar day ','root/import/calendar-templates/default-calendar-day',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Day\'\'Default\'\'Calendar\'\'Day\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'day Calendar\'\'/\'\'Day','000001000001000004000004'),('CalendarEvent000000001','Default Calendar Event','Default Calendar Event Default Calendar Event root import calendar templates default calendar event ','root/import/calendar-templates/default-calendar-event',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Event\'\'Default\'\'Calendar\'\'Event\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'event Calendar\'\'/\'\'Event','000001000001000004000005'),('CalendarEventEdit00001','Default Calendar Event Edit','Default Calendar Event Edit Default Calendar Event Edit root import calendar templates default calendar event edit ','root/import/calendar-templates/default-calendar-event-edit',1205160982,1205160982,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Event\'\'Edit\'\'Default\'\'Calendar\'\'Event\'\'Edit\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'event\'\'edit Calendar\'\'/\'\'EventEdit','000001000001000004000006'),('CalendarMonth000000001','Default Calendar Month','Default Calendar Month Default Calendar Month root import calendar templates default calendar month ','root/import/calendar-templates/default-calendar-month',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Month\'\'Default\'\'Calendar\'\'Month\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'month Calendar\'\'/\'\'Month','000001000001000004000007'),('CalendarSearch00000001','Default Calendar Search','Default Calendar Search Default Calendar Search root import calendar templates default calendar search ','root/import/calendar-templates/default-calendar-search',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Search\'\'Default\'\'Calendar\'\'Search\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'search Calendar\'\'/\'\'Search','000001000001000004000008'),('CalendarPrintEvent0001','Default Calendar Print Event','Default Calendar Print Event Default Calendar Print Event root import calendar templates default calendar print event ','root/import/calendar-templates/default-calendar-print-event',1204890714,1215396964,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Event\'\'Default\'\'Calendar\'\'Print\'\'Event\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'event Calendar\'\'/\'\'Print\'\'/\'\'Event','000001000001000004000009'),('CalendarPrintMonth0001','Default Calendar Print Month','Default Calendar Print Month Default Calendar Print Month root import calendar templates default calendar print month ','root/import/calendar-templates/default-calendar-print-month',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Month\'\'Default\'\'Calendar\'\'Print\'\'Month\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'month Calendar\'\'/\'\'Print\'\'/\'\'Month','000001000001000004000010'),('CalendarPrintWeek00001','Default Calendar Print Week','Default Calendar Print Week Default Calendar Print Week root import calendar templates default calendar print week ','root/import/calendar-templates/default-calendar-print-week',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Week\'\'Default\'\'Calendar\'\'Print\'\'Week\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'week Calendar\'\'/\'\'Print\'\'/\'\'Week','000001000001000004000011'),('CalendarPrintDay000001','Default Calendar Print Day','Default Calendar Print Day Default Calendar Print Day root import calendar templates default calendar print day ','root/import/calendar-templates/default-calendar-print-day',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Day\'\'Default\'\'Calendar\'\'Print\'\'Day\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'day Calendar\'\'/\'\'Print\'\'/\'\'Day','000001000001000004000012'),('jnYdqDkUR8x7Pv2eGR1qTA','Thingy Templates','Thingy Templates Thingy Templates root import thingy templates ','root/import/thingy-templates',1205431513,1216250666,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Thingy\'\'Templates\'\'Thingy\'\'Templates\'\'root\'\'import\'\'thingy\'\'templates','000001000001000041'),('ThingyTmpl000000000001','Default Thingy','Default Thingy Default Thingy templates thingy default ','templates/thingy-default',1205003608,1227753116,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Default\'\'Thingy\'\'templates\'\'thingy\'\'default Thingy','000001000001000041000001'),('ThingyTmpl000000000002','Default Thingy View Thing','Default Thingy View Thing Default Thingy View Thing templates thingy default view thing ','templates/thingy-default-view-thing',1205003676,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'View\'\'Thing\'\'Default\'\'Thingy\'\'View\'\'Thing\'\'templates\'\'thingy\'\'default\'\'view\'\'thing Thingy\'\'/\'\'ViewThing','000001000001000041000002'),('ThingyTmpl000000000003','Default Thingy Edit Thing','Default Thingy Edit Thing Default Thingy Edit Thing templates thingy default edit thing ','templates/thingy-default-edit-thing',1205003711,1224518002,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Edit\'\'Thing\'\'Default\'\'Thingy\'\'Edit\'\'Thing\'\'templates\'\'thingy\'\'default\'\'edit\'\'thing Thingy\'\'/\'\'EditThing','000001000001000041000003'),('ThingyTmpl000000000004','Default Thingy Search Thing','Default Thingy Search Thing Default Thingy Search Thing templates thingy default search thing ','templates/thingy-default-search-thing',1205158717,1227044214,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Search\'\'Thing\'\'Default\'\'Thingy\'\'Search\'\'Thing\'\'templates\'\'thingy\'\'default\'\'search\'\'thing Thingy\'\'/\'\'SearchThing','000001000001000041000004'),('7fE8md51vTCcuJFOvxNaGA','thumbnails.js','thumbnails.js thumbnails.js root import gallery templates thumbnails.js ','root/import/gallery-templates/thumbnails.js',1205443600,1209503742,'3','7','3','WebGUI::Asset::Snippet',1,'thumbnails\'\'.\'\'js\'\'thumbnails\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'thumbnails\'\'.\'\'js /\'\'/\'\'Depends\'\'on\'\'BrowserDetect\'\'.\'\'js\'\'/\'\'/\'\'Make\'\'the\'\'thumbnails\'\'a\'\'little\'\'bigger\'\'while\'\'the\'\'mouse\'\'is\'\'over\'\'them\'\'function\'\'scaleThumbUp\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'/\'\'/\'\'IE6\'\'doesn\'\'\'\'\'t\'\'like\'\'to\'\'do\'\'the\'\'right\'\'thing\'\'with\'\'the\'\'CSS\'\'stuff\'\'below\'\',\'\'exclude\'\'it\'\'if\'\'(\'\'BrowserDetect\'\')\'\'{\'\'if\'\'(\'\'BrowserDetect\'\'.\'\'browser\'\'=\'\'=\'\'\"\'\'Explorer\'\'\"\'\'&\'\'&\'\'BrowserDetect\'\'.\'\'version\'\'<\'\'7\'\')\'\'{\'\'return\'\';\'\'}\'\'}\'\'/\'\'/\'\'Make\'\'a\'\'new\'\'image\'\'with\'\'the\'\'same\'\'image\'\'src\'\'as\'\'the\'\'anchor\'\'var\'\'oldImage\'\'=\'\'anchor\'\'.\'\'getElementsByTagName\'\'(\'\'\"\'\'img\'\'\"\'\')\'\'[0]\'\';\'\'var\'\'newContainer\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'div\'\'\"\'\')\'\';\'\'newContainer\'\'.\'\'className\'\'=\'\'\"\'\'thumb\'\'-\'\'popup\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'position\'\'=\'\'\"\'\'absolute\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'zIndex\'\'=\'\'\"\'\'1\'\'\"\'\';\'\'var\'\'newWidth\'\'=\'\'oldImage\'\'.\'\'offsetWidth\'\'*\'\'3\'\';\'\'var\'\'newHeight\'\'=\'\'oldImage\'\'.\'\'offsetHeight\'\'*\'\'3\'\';\'\'var\'\'newLeft\'\'=\'\'(\'\'(\'\'anchor\'\'.\'\'offsetLeft\'\'+\'\'(\'\'anchor\'\'.\'\'offsetWidth\'\'/\'\'2\'\')\'\')\'\'-\'\'(\'\'newWidth\'\'/\'\'2\'\')\'\')\'\';\'\'var\'\'newTop\'\'=\'\'(\'\'(\'\'anchor\'\'.\'\'offsetTop\'\'+\'\'(\'\'anchor\'\'.\'\'offsetHeight\'\'/\'\'2\'\')\'\')\'\'-\'\'(\'\'newHeight\'\'/\'\'2\'\')\'\')\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'left\'\'=\'\'newLeft\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'top\'\'=\'\'newTop\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'width\'\'=\'\'newWidth\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'height\'\'=\'\'newHeight\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'var\'\'newImage\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'img\'\'\"\'\')\'\';\'\'newImage\'\'.\'\'src\'\'=\'\'oldImage\'\'.\'\'src\'\';\'\'newImage\'\'.\'\'style\'\'.\'\'width\'\'=\'\'\"\'\'100\'\'%\'\'\"\'\';\'\'newImage\'\'.\'\'style\'\'.\'\'height\'\'=\'\'\"\'\'100\'\'%\'\'\"\'\';\'\'newContainer\'\'.\'\'appendChild\'\'(\'\'newImage\'\')\'\';\'\'/\'\'/\'\'Make\'\'some\'\'text\'\'for\'\'the\'\'caption\'\'var\'\'caption\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'div\'\'\"\'\')\'\';\'\'caption\'\'.\'\'appendChild\'\'(\'\'document\'\'.\'\'createTextNode\'\'(\'\'anchor\'\'.\'\'title\'\')\'\')\'\';\'\'caption\'\'.\'\'className\'\'=\'\'\"\'\'caption\'\'\"\'\';\'\'newContainer\'\'.\'\'appendChild\'\'(\'\'caption\'\')\'\';\'\'var\'\'newBox\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'a\'\'\"\'\')\'\';\'\'newBox\'\'.\'\'href\'\'=\'\'anchor\'\'.\'\'href\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'position\'\'=\'\'\"\'\'absolute\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'zIndex\'\'=\'\'\"\'\'10\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'left\'\'=\'\'(\'\'anchor\'\'.\'\'offsetLeft\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'top\'\'=\'\'(\'\'anchor\'\'.\'\'offsetTop\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'height\'\'=\'\'(\'\'anchor\'\'.\'\'offsetHeight\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'width\'\'=\'\'(\'\'anchor\'\'.\'\'offsetWidth\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'border\'\'=\'\'\"\'\'1px\'\'solid\'\'transparent\'\'\"\'\';\'\'anchor\'\'.\'\'parentNode\'\'.\'\'appendChild\'\'(\'\'newContainer\'\')\'\';\'\'anchor\'\'.\'\'parentNode\'\'.\'\'appendChild\'\'(\'\'newBox\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newBox\'\',\'\'\"\'\'click\'\'\"\'\',\'\'function\'\'(\'\')\'\'{\'\'window\'\'.\'\'location\'\'.\'\'href\'\'=\'\'anchor\'\'.\'\'href\'\'}\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newContainer\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'scaleThumbDown\'\',\'\'[\'\'newBox\'\',\'\'newContainer\'\',\'\'caption\'\']\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newBox\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'scaleThumbDown\'\',\'\'[\'\'newBox\'\',\'\'newContainer\'\',\'\'caption\'\']\'\')\'\';\'\'}\'\'function\'\'scaleThumbDown\'\'(\'\'e\'\',\'\'elements\'\')\'\'{\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'elements\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'elements[i]\'\'.\'\'parentNode\'\'.\'\'removeChild\'\'(\'\'elements[i]\'\')\'\';\'\'}\'\'}\'\'var\'\'anchorTimeout\'\';\'\'function\'\'enterAnchor\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'if\'\'(\'\'typeof\'\'anchorTimeout\'\'!\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'clearTimeout\'\'(\'\'anchorTimeout\'\')\'\';\'\'}\'\'anchorTimeout\'\'=\'\'setTimeout\'\'(\'\'function\'\'(\'\')\'\'{\'\'scaleThumbUp\'\'(\'\'e\'\',\'\'anchor\'\')\'\';\'\'}\'\',\'\'150\'\')\'\';\'\'}\'\'function\'\'leaveAnchor\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'if\'\'(\'\'typeof\'\'anchorTimeout\'\'!\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'clearTimeout\'\'(\'\'anchorTimeout\'\')\'\';\'\'}\'\'}\'\'function\'\'initThumb\'\'(\'\')\'\'{\'\'var\'\'anchors\'\'=\'\'YAHOO\'\'.\'\'util\'\'.\'\'Dom\'\'.\'\'getElementsByClassName\'\'(\'\'\"\'\'thumb\'\'\"\'\')\'\';\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'anchors\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'anchors[i]\'\',\'\'\"\'\'mouseover\'\'\"\'\',\'\'enterAnchor\'\',\'\'anchors[i]\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'anchors[i]\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'leaveAnchor\'\',\'\'anchors[i]\'\')\'\';\'\'}\'\'}\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'onDOMReady\'\'(\'\'initThumb\'\')\'\';','000001000001000011000022'),('1oGhfj00KkCzP1ez01AfKA','slideshow.js','slideshow.js slideshow.js root import gallery templates slideshow.js ','root/import/gallery-templates/slideshow.js',1205635970,1218582812,'3','7','3','WebGUI::Asset::Snippet',1,'slideshow\'\'.\'\'js\'\'slideshow\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'slideshow\'\'.\'\'js if\'\'(\'\'typeof\'\'WebGUI\'\'=\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'WebGUI\'\'=\'\'{\'\'}\'\';\'\'}\'\'/\'\'*\'\'*\'\'WebGUI\'\'.\'\'Slideshow\'\'(\'\'config\'\')\'\'Configure\'\'and\'\'return\'\'a\'\'new\'\'Slideshow\'\'object\'\'.\'\'config\'\'is\'\'an\'\'object\'\'with\'\'the\'\'following\'\'properties\'\':\'\'containerId\'\'-\'\'The\'\'ID\'\'of\'\'the\'\'element\'\'that\'\'contains\'\'the\'\'Slideshow\'\'items\'\'.\'\'Defaults\'\'to\'\'\"\'\'slideshow\'\'-\'\'container\'\'\"\'\'currentIndex\'\'-\'\'The\'\'index\'\'of\'\'the\'\'first\'\'item\'\'in\'\'the\'\'Slideshow\'\'.\'\'Defaults\'\'to\'\'0\'\'isPlaying\'\'-\'\'If\'\'true\'\',\'\'the\'\'slideshow\'\'will\'\'begin\'\'immediately\'\'itemClassName\'\'-\'\'The\'\'class\'\'name\'\'of\'\'the\'\'slideshow\'\'items\'\'.\'\'Defaults\'\'to\'\'\"\'\'slideshow\'\'-\'\'item\'\'\"\'\'nextButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'go\'\'to\'\'the\'\'next\'\'item\'\'pauseImageSrc\'\'-\'\'The\'\'URL\'\'to\'\'the\'\'pause\'\'button\'\'image\'\'playDelay\'\'-\'\'The\'\'delay\'\'(\'\'in\'\'milliseconds\'\')\'\'between\'\'slides\'\'.\'\'Defaults\'\'to\'\'5000\'\'playImageSrc\'\'-\'\'The\'\'URL\'\'to\'\'the\'\'play\'\'button\'\'image\'\'playPauseButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'toggle\'\'between\'\'play\'\'and\'\'pause\'\'previousButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'go\'\'to\'\'the\'\'previous\'\'item\'\'wrap\'\'-\'\'If\'\'true\'\',\'\'the\'\'slideshow\'\'will\'\'wrap\'\'around\'\'*\'\'*\'\'*\'\'Control\'\'the\'\'slideshow\'\'To\'\'control\'\'the\'\'slideshow\'\',\'\'you\'\'can\'\'use\'\'the\'\'following\'\'methods\'\':\'\'next\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'next\'\'slide\'\'previous\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'previous\'\'slide\'\'play\'\'(\'\')\'\'-\'\'Play\'\'the\'\'slideshow\'\'pause\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'togglePlay\'\'(\'\')\'\'-\'\'If\'\'it\'\'\'\'\'s\'\'playing\'\',\'\'pause\'\'it\'\'.\'\'If\'\'it\'\'\'\'\'s\'\'paused\'\',\'\'play\'\'it\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'=\'\'function\'\'(\'\'config\'\')\'\'{\'\'this\'\'.\'\'containerId\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'containerId\'\'?\'\'config\'\'.\'\'containerId\'\':\'\'\"\'\'slideshow\'\'-\'\'container\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'currentIndex\'\'?\'\'config\'\'.\'\'currentIndex\'\':\'\'0\'\';\'\'this\'\'.\'\'isPlaying\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'isPlaying\'\'?\'\'config\'\'.\'\'isPlaying\'\':\'\'false\'\';\'\'this\'\'.\'\'itemClassName\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'itemClassName\'\'?\'\'config\'\'.\'\'itemClassName\'\':\'\'\"\'\'slideshow\'\'-\'\'item\'\'\"\'\';\'\'this\'\'.\'\'nextButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'nextButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'pauseImageSrc\'\'=\'\'config\'\'?\'\'config\'\'.\'\'pauseImageSrc\'\':\'\'undefined\'\';\'\'this\'\'.\'\'playDelay\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'playDelay\'\'?\'\'config\'\'.\'\'playDelay\'\':\'\'5000\'\';\'\'this\'\'.\'\'playImageSrc\'\'=\'\'config\'\'?\'\'config\'\'.\'\'playImageSrc\'\':\'\'undefined\'\';\'\'this\'\'.\'\'playPauseButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'playPauseButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'previousButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'previousButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'wrap\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'wrap\'\'?\'\'config\'\'.\'\'wrap\'\':\'\'false\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'onDOMReady\'\'(\'\'this\'\'.\'\'init\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'clearPlayTimeout\'\'(\'\')\'\'Clears\'\'the\'\'timeout\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'clearPlayTimeout\'\'=\'\'function\'\'(\'\')\'\'{\'\'clearTimeout\'\'(\'\'this\'\'.\'\'playTimeout\'\')\'\';\'\'this\'\'.\'\'playTimeout\'\'=\'\'undefined\'\';\'\'}\'\'/\'\'*\'\'*\'\'doPlayTick\'\'(\'\'self\'\')\'\'Performs\'\'the\'\'action\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'and\'\'start\'\'a\'\'new\'\'timeout\'\'.\'\'self\'\'is\'\'a\'\'new\'\'reference\'\'to\'\'the\'\'object\'\'to\'\'get\'\'around\'\'the\'\'scoping\'\'issues\'\'with\'\'setTimeout\'\'(\'\')\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'doPlayTick\'\'=\'\'function\'\'(\'\'self\'\')\'\'{\'\'self\'\'.\'\'showNext\'\'(\'\')\'\';\'\'self\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'getSlideshowContainer\'\'(\'\')\'\'Returns\'\'the\'\'HTMLElement\'\'for\'\'the\'\'Slideshow\'\'container\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'getSlideshowContainer\'\'=\'\'function\'\'(\'\')\'\'{\'\'return\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'containerId\'\')\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'getSlideshowItems\'\'(\'\')\'\'Returns\'\'an\'\'array\'\'of\'\'HTMLElements\'\'for\'\'the\'\'Slideshow\'\'\'\'\'s\'\'items\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'getSlideshowItems\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'YAHOO\'\'.\'\'util\'\'.\'\'Dom\'\'.\'\'getElementsByClassName\'\'(\'\'this\'\'.\'\'itemClassName\'\',\'\'undefined\'\',\'\'this\'\'.\'\'getSlideshowContainer\'\'(\'\')\'\')\'\';\'\'return\'\'items\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'init\'\'(\'\')\'\'Initialize\'\'the\'\'slideshow\'\'.\'\'Performed\'\'after\'\'the\'\'DOM\'\'is\'\'ready\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'init\'\'=\'\'function\'\'(\'\')\'\'{\'\'/\'\'/\'\'Add\'\'handlers\'\'to\'\'buttons\'\'if\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'togglePlay\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'if\'\'(\'\'this\'\'.\'\'nextButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'nextButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'next\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'if\'\'(\'\'this\'\'.\'\'previousButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'previousButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'previous\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'/\'\'/\'\'Hide\'\'all\'\'but\'\'the\'\'currentIndex\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'items\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'if\'\'(\'\'i\'\'!\'\'=\'\'this\'\'.\'\'currentIndex\'\')\'\'{\'\'items[\'\'i\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'}\'\'else\'\'{\'\'items[\'\'i\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'}\'\'}\'\'/\'\'/\'\'Start\'\'it\'\'off\'\'if\'\'necessary\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'next\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'next\'\'=\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'this\'\'.\'\'showNext\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'play\'\'(\'\')\'\'Start\'\'the\'\'slideshow\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'play\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'!\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'isPlaying\'\'=\'\'true\'\';\'\'this\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\'/\'\'*\'\'*\'\'previous\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'and\'\'show\'\'the\'\'previous\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'previous\'\'=\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'this\'\'.\'\'showPrevious\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'pause\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'pause\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'isPlaying\'\'=\'\'false\'\';\'\'this\'\'.\'\'clearPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\'/\'\'*\'\'*\'\'setPlayTimeout\'\'(\'\')\'\'Sets\'\'the\'\'timeout\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'setPlayTimeout\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'self\'\'=\'\'this\'\';\'\'this\'\'.\'\'playTimeout\'\'=\'\'setTimeout\'\'(\'\'function\'\'(\'\')\'\'{\'\'self\'\'.\'\'doPlayTick\'\'(\'\'self\'\')\'\'}\'\',\'\'this\'\'.\'\'playDelay\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'showNext\'\'(\'\')\'\'Show\'\'the\'\'next\'\'slide\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'showNext\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'var\'\'hideIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\';\'\'var\'\'showIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\'+\'\'1\'\';\'\'/\'\'/\'\'Wrap\'\'around\'\'if\'\'(\'\'this\'\'.\'\'wrap\'\'&\'\'&\'\'showIndex\'\'>\'\'=\'\'items\'\'.\'\'length\'\')\'\'{\'\'showIndex\'\'=\'\'0\'\';\'\'}\'\'/\'\'/\'\'Don\'\'\'\'\'t\'\'allow\'\'going\'\'past\'\'the\'\'last\'\'item\'\'else\'\'if\'\'(\'\'showIndex\'\'>\'\'=\'\'items\'\'.\'\'length\'\')\'\'{\'\'return\'\';\'\'}\'\'/\'\'/\'\'Do\'\'the\'\'switch\'\'if\'\'(\'\'items[\'\'hideIndex\'\']\'\')\'\'items[\'\'hideIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'if\'\'(\'\'items[\'\'showIndex\'\']\'\')\'\'{\'\'items[\'\'showIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'showIndex\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'showPrevious\'\'(\'\')\'\'Show\'\'the\'\'previous\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'showPrevious\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'var\'\'hideIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\';\'\'var\'\'showIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\'-\'\'1\'\';\'\'/\'\'/\'\'Wrap\'\'around\'\'if\'\'(\'\'this\'\'.\'\'wrap\'\'&\'\'&\'\'showIndex\'\'<\'\'0\'\')\'\'{\'\'showIndex\'\'=\'\'items\'\'.\'\'length\'\'-\'\'1\'\';\'\'}\'\'/\'\'/\'\'Don\'\'\'\'\'t\'\'allow\'\'going\'\'past\'\'the\'\'last\'\'item\'\'else\'\'if\'\'(\'\'showIndex\'\'<\'\'0\'\')\'\'{\'\'return\'\';\'\'}\'\'/\'\'/\'\'Do\'\'the\'\'switch\'\'items[\'\'hideIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'items[\'\'showIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'showIndex\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'togglePlay\'\'(\'\')\'\'If\'\'it\'\'\'\'\'s\'\'paused\'\',\'\'play\'\'it\'\'.\'\'If\'\'it\'\'\'\'\'s\'\'playing\'\',\'\'pause\'\'it\'\'.\'\'Return\'\'true\'\'if\'\'the\'\'slideshow\'\'is\'\'now\'\'playing\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'togglePlay\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\'=\'\'=\'\'false\'\')\'\'{\'\'this\'\'.\'\'play\'\'(\'\')\'\';\'\'return\'\'true\'\';\'\'}\'\'else\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'updatePlayPauseButton\'\'(\'\')\'\'Update\'\'the\'\'Play\'\'/\'\'Pause\'\'button\'\'to\'\'have\'\'the\'\'correct\'\'image\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'updatePlayPauseButton\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\'&\'\'&\'\'this\'\'.\'\'playImageSrc\'\')\'\'{\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'.\'\'src\'\'=\'\'this\'\'.\'\'pauseImageSrc\'\';\'\'}\'\'else\'\'if\'\'(\'\'this\'\'.\'\'pauseImageSrc\'\')\'\'{\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'.\'\'src\'\'=\'\'this\'\'.\'\'playImageSrc\'\';\'\'}\'\'}\'\'}\'\';','000001000001000011000023'),('3qiVYhNTXMVC5hfsumVHgg','browserdetect.js','browserdetect.js browserdetect.js root import gallery templates browserdetect.js ','root/import/gallery-templates/browserdetect.js',1206743306,1206743306,'3','7','3','WebGUI::Asset::Snippet',1,'browserdetect\'\'.\'\'js\'\'browserdetect\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'browserdetect\'\'.\'\'js var\'\'BrowserDetect\'\'=\'\'{\'\'init\'\':\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'browser\'\'=\'\'this\'\'.\'\'searchString\'\'(\'\'this\'\'.\'\'dataBrowser\'\')\'\'||\'\'\"\'\'An\'\'unknown\'\'browser\'\'\"\'\';\'\'this\'\'.\'\'version\'\'=\'\'this\'\'.\'\'searchVersion\'\'(\'\'navigator\'\'.\'\'userAgent\'\')\'\'||\'\'this\'\'.\'\'searchVersion\'\'(\'\'navigator\'\'.\'\'appVersion\'\')\'\'||\'\'\"\'\'an\'\'unknown\'\'version\'\'\"\'\';\'\'this\'\'.\'\'OS\'\'=\'\'this\'\'.\'\'searchString\'\'(\'\'this\'\'.\'\'dataOS\'\')\'\'||\'\'\"\'\'an\'\'unknown\'\'OS\'\'\"\'\';\'\'}\'\',\'\'searchString\'\':\'\'function\'\'(\'\'data\'\')\'\'{\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i','000001000001000011000024'),('usuxw9V3jN4d4pujRiEYxg','css03-ie.css','css03-ie.css css03-ie.css style3 css03 ie.css ','style3/css03-ie.css',1209494150,1209494150,'3','7','12','WebGUI::Asset::Snippet',1,'css03\'\'-\'\'ie\'\'.\'\'css\'\'css03\'\'-\'\'ie\'\'.\'\'css\'\'style3\'\'css03\'\'ie\'\'.\'\'css #\'\'contentArea\'\'{\'\'height\'\':\'\'500px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'300px\'\';\'\'}','000001000001000047000023'),('POVcY79vIqAHR8OfGt36aw','pagination_button.jpg','pagination_button.jpg pagination_button.jpg root import gallery templates images pagination button.jpg ','root/import/gallery-templates/images/pagination_button.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_button\'\'.\'\'jpg\'\'pagination_button\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pagination\'\'button\'\'.\'\'jpg','000001000001000011000017000007'),('hIB-z34r8Xl-vYVYCkKr-w','bar-btn-r.jpg','bar-btn-r.jpg bar-btn-r.jpg root import gallery templates images bar btn r.jpg ','root/import/gallery-templates/images/bar-btn-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'r\'\'.\'\'jpg','000001000001000011000017000008'),('-mPUoFlYcjqjPUPRLAlxNQ','search-field-r.jpg','search-field-r.jpg search-field-r.jpg root import gallery templates images search field r.jpg ','root/import/gallery-templates/images/search-field-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'-\'\'r\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'r\'\'.\'\'jpg','000001000001000011000017000009'),('MDpUOR-N8KMyt1J7Hh_h4w','bar-btn.jpg','bar-btn.jpg bar-btn.jpg root import gallery templates images bar btn.jpg ','root/import/gallery-templates/images/bar-btn.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'.\'\'jpg','000001000001000011000017000010'),('YfXKByTwDZVituMc4h13Dg','pagination_bg.jpg','pagination_bg.jpg pagination_bg.jpg root import gallery templates images pagination bg.jpg ','root/import/gallery-templates/images/pagination_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_bg\'\'.\'\'jpg\'\'pagination_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pagination\'\'bg\'\'.\'\'jpg','000001000001000011000017000011'),('esko_HSU0Gh-uJZ1h3xRmQ','search-field-l.jpg','search-field-l.jpg search-field-l.jpg root import gallery templates images search field l.jpg ','root/import/gallery-templates/images/search-field-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'-\'\'l\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'l\'\'.\'\'jpg','000001000001000011000017000012'),('oSqpGswzpBG_ErdfYwIO8A','top_bg.jpg','top_bg.jpg top_bg.jpg root import gallery templates images top bg.jpg ','root/import/gallery-templates/images/top_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg\'\'.\'\'jpg\'\'top_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'top\'\'bg\'\'.\'\'jpg','000001000001000011000017000013'),('MXJklShZvLLB_DSnZQmXrQ','title_bg.jpg','title_bg.jpg title_bg.jpg root import gallery templates images title bg.jpg ','root/import/gallery-templates/images/title_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'title_bg\'\'.\'\'jpg\'\'title_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'title\'\'bg\'\'.\'\'jpg','000001000001000011000017000014'),('BthxD5oJ0idmsyI3ioA2FA','bar-btn-l.jpg','bar-btn-l.jpg bar-btn-l.jpg root import gallery templates images bar btn l.jpg ','root/import/gallery-templates/images/bar-btn-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'l\'\'.\'\'jpg','000001000001000011000017000015'),('aZ-1HYQamkRHYXvzAra8WQ','search-field.jpg','search-field.jpg search-field.jpg root import gallery templates images search field.jpg ','root/import/gallery-templates/images/search-field.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'.\'\'jpg','000001000001000011000017000016'),('eRkb94OYcS5AdcrrerOP5Q','rss.gif','rss.gif rss.gif root import gallery templates images rss2.gif ','root/import/gallery-templates/images/rss2.gif',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'rss\'\'.\'\'gif\'\'rss\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'rss2\'\'.\'\'gif','000001000001000011000017000017'),('TbnkjAJQEASORXIpYqDkcA','blank-image.jpg','blank-image.jpg blank-image.jpg root import gallery templates images blank image.jpg ','root/import/gallery-templates/images/blank-image.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'blank\'\'-\'\'image\'\'.\'\'jpg\'\'blank\'\'-\'\'image\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'blank\'\'image\'\'.\'\'jpg','000001000001000011000017000018'),('er-3faBjY-hhlDcc5aKqdQ','top_bg.jpg','top_bg.jpg top_bg.jpg root import gallery templates images top bg2.jpg ','root/import/gallery-templates/images/top_bg2.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg\'\'.\'\'jpg\'\'top_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'top\'\'bg2\'\'.\'\'jpg','000001000001000011000017000019'),('8bFsu2FJUqHRUiHcozcVFw','sub-btn-l.jpg','sub-btn-l.jpg sub-btn-l.jpg root import gallery templates images sub btn l.jpg ','root/import/gallery-templates/images/sub-btn-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'l\'\'.\'\'jpg','000001000001000011000017000020'),('34Aayx5eA320D8VfhdfDBw','sub-btn-r.jpg','sub-btn-r.jpg sub-btn-r.jpg root import gallery templates images sub btn r.jpg ','root/import/gallery-templates/images/sub-btn-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'r\'\'.\'\'jpg','000001000001000011000017000021'),('TlhKOVmWblZOsAdqmhEpeg','sub-btn.jpg','sub-btn.jpg sub-btn.jpg root import gallery templates images sub btn.jpg ','root/import/gallery-templates/images/sub-btn.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'.\'\'jpg','000001000001000011000017000022'),('Nx0ypjO3cN6QdZUBUEE0lA','pic-title-bg.jpg','pic-title-bg.jpg pic-title-bg.jpg root import gallery templates images pic title bg.jpg ','root/import/gallery-templates/images/pic-title-bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pic\'\'-\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'pic\'\'-\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pic\'\'title\'\'bg\'\'.\'\'jpg','000001000001000011000017000023'),('CmFZLN7iPS7XXvUEsxKPKA','row-2.jpg','row-2.jpg row-2.jpg root import gallery templates images row 2.jpg ','root/import/gallery-templates/images/row-2.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'2\'\'.\'\'jpg\'\'row\'\'-\'\'2\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'row\'\'2\'\'.\'\'jpg','000001000001000011000017000024'),('v_XBgwwZqgW1D5s4y05qfg','addtl-info.gif','addtl-info.gif addtl-info.gif root import gallery templates images addtl info.gif ','root/import/gallery-templates/images/addtl-info.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'addtl\'\'-\'\'info\'\'.\'\'gif\'\'addtl\'\'-\'\'info\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'addtl\'\'info\'\'.\'\'gif','000001000001000011000017000025'),('4TdAkKoQbSCvI7QWcW889A','row-1.jpg','row-1.jpg row-1.jpg root import gallery templates images row 1.jpg ','root/import/gallery-templates/images/row-1.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'1\'\'.\'\'jpg\'\'row\'\'-\'\'1\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'row\'\'1\'\'.\'\'jpg','000001000001000011000017000026'),('SAgK6eDPCG1cgkJ59WapHQ','prev-btn.gif','prev-btn.gif prev-btn.gif root import gallery templates images prev btn.gif ','root/import/gallery-templates/images/prev-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'prev\'\'-\'\'btn\'\'.\'\'gif\'\'prev\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'prev\'\'btn\'\'.\'\'gif','000001000001000011000017000027'),('XJYLuvGy9ubF7JNKyINtpA','play-btn.gif','play-btn.gif play-btn.gif root import gallery templates images play btn.gif ','root/import/gallery-templates/images/play-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'play\'\'-\'\'btn\'\'.\'\'gif\'\'play\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'play\'\'btn\'\'.\'\'gif','000001000001000011000017000028'),('RWj7hyv2SpZuXxwj1Wocug','next-btn.gif','next-btn.gif next-btn.gif root import gallery templates images next btn.gif ','root/import/gallery-templates/images/next-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'next\'\'-\'\'btn\'\'.\'\'gif\'\'next\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'next\'\'btn\'\'.\'\'gif','000001000001000011000017000029'),('aq8QElnlm3YufAoxRz9Pcg','data-bg.jpg','data-bg.jpg data-bg.jpg root import gallery templates images data bg.jpg ','root/import/gallery-templates/images/data-bg.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'data\'\'-\'\'bg\'\'.\'\'jpg\'\'data\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'data\'\'bg\'\'.\'\'jpg','000001000001000011000017000030'),('6D4Z-oruXPS6OlH_Kx8pBg','images','images images root import thingy templates images ','root/import/thingy-templates/images',1209509389,1209509389,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'thingy\'\'templates\'\'images','000001000001000041000005'),('hQ7z33_jOYkQ8WNX5xy9Sw','style-button.gif','style-button.gif style-button.gif root import thingy templates images style button.gif ','root/import/thingy-templates/images/style-button.gif',1209509455,1209509455,'3','7','12','WebGUI::Asset::File::Image',1,'style\'\'-\'\'button\'\'.\'\'gif\'\'style\'\'-\'\'button\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'style\'\'button\'\'.\'\'gif','000001000001000041000005000001'),('vWW_DcHiYSrKZOkkIfEfcQ','row-2.jpg','row-2.jpg row-2.jpg root import thingy templates images row 2.jpg ','root/import/thingy-templates/images/row-2.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'2\'\'.\'\'jpg\'\'row\'\'-\'\'2\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'row\'\'2\'\'.\'\'jpg','000001000001000041000005000002'),('_bPYzRA87NTAUIKlfrJMHg','row-1.jpg','row-1.jpg row-1.jpg root import thingy templates images row 1.jpg ','root/import/thingy-templates/images/row-1.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'1\'\'.\'\'jpg\'\'row\'\'-\'\'1\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'row\'\'1\'\'.\'\'jpg','000001000001000041000005000003'),('nJjZHRwdDs5MAZYsAyioHw','title-bg.jpg','title-bg.jpg title-bg.jpg root import thingy templates images title bg.jpg ','root/import/thingy-templates/images/title-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'title\'\'-\'\'bg\'\'.\'\'jpg\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'title\'\'bg\'\'.\'\'jpg','000001000001000041000005000004'),('8hxfkrJPeFVRWF5piCNJ1A','field-bg.jpg','field-bg.jpg field-bg.jpg root import thingy templates images field bg.jpg ','root/import/thingy-templates/images/field-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'field\'\'-\'\'bg\'\'.\'\'jpg\'\'field\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'field\'\'bg\'\'.\'\'jpg','000001000001000041000005000005'),('Osx7WN52iIKHZFT4vqUBHQ','search-btn.gif','search-btn.gif search-btn.gif root import thingy templates images search btn.gif ','root/import/thingy-templates/images/search-btn.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'btn\'\'.\'\'gif\'\'search\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'search\'\'btn\'\'.\'\'gif','000001000001000041000005000006'),('oWff8fGzRdHPyq5VNREe9Q','top-bg.jpg','top-bg.jpg top-bg.jpg root import thingy templates images top bg.jpg ','root/import/thingy-templates/images/top-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'top\'\'-\'\'bg\'\'.\'\'jpg\'\'top\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'top\'\'bg\'\'.\'\'jpg','000001000001000041000005000007'),('uqbkvb1b9443VvfkyRz95w','save-button.gif','save-button.gif save-button.gif root import thingy templates images save button.gif ','root/import/thingy-templates/images/save-button.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'save\'\'-\'\'button\'\'.\'\'gif\'\'save\'\'-\'\'button\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'save\'\'button\'\'.\'\'gif','000001000001000041000005000008'),('8YiMkcz32xalkAn3WBLpag','go-btn.gif','go-btn.gif go-btn.gif root import thingy templates images go btn.gif ','root/import/thingy-templates/images/go-btn.gif',1210181860,1210181860,'3','7','12','WebGUI::Asset::File::Image',1,'go\'\'-\'\'btn\'\'.\'\'gif\'\'go\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'go\'\'btn\'\'.\'\'gif','000001000001000041000005000009'),('3n3H85BsdeRQ0I08WmvlOg','thingy.css','thingy.css thingy.css root import thingy templates thingy.css ','root/import/thingy-templates/thingy.css',1212091492,1216227244,'3','7','12','WebGUI::Asset::Snippet',1,'thingy\'\'.\'\'css\'\'thingy\'\'.\'\'css\'\'root\'\'import\'\'thingy\'\'templates\'\'thingy\'\'.\'\'css .\'\'wgThingy\'\'{\'\'margin\'\':\'\'5px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'styleButton\'\'{\'\'color\'\':\'\'black\'\';\'\'margin\'\':\'\'0px\'\'5px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'spacerOne\'\'{\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'rowOne\'\',\'\'.\'\'wgThingy\'\'*\'\'tr\'\'.\'\'rowOne\'\'td\'\'{\'\'background\'\':\'\'#\'\'EEEEEE\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'color\'\':\'\'#\'\'000\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'rowTwo\'\',\'\'.\'\'wgThingy\'\'*\'\'tr\'\'.\'\'rowTwo\'\'td\'\'{\'\'background\'\':\'\'#\'\'DBDBDB\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'DDDDDD\'\'1px\'\';\'\'color\'\':\'\'#\'\'000\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgThingsWrapper\'\'img\'\'{\'\'display\'\':\'\'block\'\';\'\'vertical\'\'-\'\'align\'\':\'\'center\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgThingsWrapper\'\'.\'\'label\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'}\'\'.\'\'wgThingy\'\'h2\'\'.\'\'title\'\'{\'\'background\'\':\'\'#\'\'000\'\';\'\'height\'\':\'\'42px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'span\'\'.\'\'smaller\'\'{\'\'font\'\'-\'\'size\'\':\'\'13px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'wgThingy\'\'.\'\'controls\'\'{\'\'line\'\'-\'\'height\'\':\'\'35px\'\';\'\'height\'\':\'\'35px\'\';\'\'background\'\':\'\'#\'\'f1f1f1\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'label\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'.\'\'wgThingy\'\'.\'\'label\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'searchTable\'\'*\'\'input\'\',\'\'.\'\'editThing\'\'*\'\'input\'\'{\'\'background\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'}\'\'.\'\'editThing\'\'{\'\'margin\'\'-\'\'top\'\':\'\'15px\'\';\'\'}\'\'#\'\'thingyList\'\',\'\'#\'\'thingyList\'\'*\'\'{\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'#\'\'thingyList\'\'{\'\'position\'\':\'\'relative\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'visited\'\'{\'\'padding\'\':\'\'2px\'\'25px\'\'2px\'\'2px\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'thingy\'\'-\'\'templates\'\'/\'\'images\'\'/\'\'go\'\'-\'\'btn\'\'.\'\'gif\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\'right\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\',\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'0px\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'width\'\':\'\'300px\'\';\'\'z\'\'-\'\'index\'\':\'\'5000\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'27px\'\';\'\'left\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'727272\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'12px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'12px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}','000001000001000041000006'),('5m5I7__l40C4hhv4ydqAHQ','thingy-ie.css','thingy-ie.css thingy-ie.css root import thingy templates thingy ie.css ','root/import/thingy-templates/thingy-ie.css',1210181698,1216227786,'3','7','12','WebGUI::Asset::Snippet',1,'thingy\'\'-\'\'ie\'\'.\'\'css\'\'thingy\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'thingy\'\'templates\'\'thingy\'\'ie\'\'.\'\'css #\'\'thingyList\'\'.\'\'things\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'width\'\':\'\'200px\'\';\'\'z\'\'-\'\'index\'\':\'\'5000\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'27px\'\';\'\'left\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'727272\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'12px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'12px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'width\'\':\'\'190px\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}','000001000001000041000007'),('4qh0kIsFUdd4Ox-Iu1JZgg','EMS',' ','root/import/ems',1208725439,1208725439,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EMS\'\'EMS\'\'root\'\'import\'\'ems','000001000001000008'),('2rC4ErZ3c77OJzJm7O5s3w','EMS Badge Listing (default)','EMS Badge Listing (default) EMS Badge Listing (default) root import ems ems badge listing default ','root/import/ems/ems-badge-listing-default',1208721232,1224723218,'3','7','12','WebGUI::Asset::Template',1,'EMS\'\'Badge\'\'Listing\'\'(\'\'default\'\')\'\'EMS\'\'Badge\'\'Listing\'\'(\'\'default\'\')\'\'root\'\'import\'\'ems\'\'ems\'\'badge\'\'listing\'\'default EMS','000001000001000008000003'),('PsFn7dJt4wMwBa8hiE3hOA','Print Badge (Default)','Print Badge (Default) Print Badge (Default) root import ems print badge default ','root/import/ems/print-badge-default',1208558071,1208558071,'3','7','12','WebGUI::Asset::Template',1,'Print\'\'Badge\'\'(\'\'Default\'\')\'\'Print\'\'Badge\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'print\'\'badge\'\'default EMS\'\'/\'\'PrintBadge','000001000001000008000004'),('yBwydfooiLvhEFawJb0VTQ','Print Ticket (Default)','Print Ticket (Default) Print Ticket (Default) root import ems print ticket default ','root/import/ems/print-ticket-default',1208629936,1208629936,'3','7','12','WebGUI::Asset::Template',1,'Print\'\'Ticket\'\'(\'\'Default\'\')\'\'Print\'\'Ticket\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'print\'\'ticket\'\'default EMS\'\'/\'\'PrintTicket','000001000001000008000005'),('63ix2-hU0FchXGIWkG3tow','Flat Discount (Default)','Flat Discount (Default) Flat Discount (Default) root import flat discount default ','root/import/flat-discount-default',1209588387,1216169693,'3','7','12','WebGUI::Asset::Template',1,'Flat\'\'Discount\'\'(\'\'Default\'\')\'\'Flat\'\'Discount\'\'(\'\'Default\'\')\'\'root\'\'import\'\'flat\'\'discount\'\'default FlatDiscount','000001000001000034000011'),('gbnRhcWNk1iQe32LFEB5eQ','Shelf','Shelf Shelf root import shelf2 ','root/import/shelf2',1210779723,1212086102,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shelf\'\'Shelf\'\'root\'\'import\'\'shelf2','000001000001000033'),('1XOJDcg_ITRYwVM-QnIcPw','shelf.css','shelf.css shelf.css root import shelf2 shelf.css ','root/import/shelf2/shelf.css',1210779441,1219175575,'3','7','12','WebGUI::Asset::Snippet',1,'shelf\'\'.\'\'css\'\'shelf\'\'.\'\'css\'\'root\'\'import\'\'shelf2\'\'shelf\'\'.\'\'css .\'\'wgShelf\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\',\'\'verdana\'\';\'\'margin\'\':\'\'15px\'\'0px\'\';\'\'}\'\'.\'\'wgShelf\'\'h2\'\'{\'\'background\'\':\'\'black\'\';\'\'padding\'\':\'\'5px\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'line\'\'-\'\'height\'\':\'\'32px\'\';\'\'color\'\':\'\'white\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'32px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'wgShelves\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'height\'\':\'\'29px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'29px\'\';\'\'padding\'\'-\'\'left\'\':\'\'30px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'{\'\'margin\'\':\'\'15px\'\';\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'width\'\':\'\'200px\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'thumbnail\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'margin\'\':\'\'3px\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'{\'\'background\'\':\'\'#\'\'e1e1e1\'\';\'\'height\'\':\'\'30px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'24px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'link\'\',\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'000\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'price\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}','000001000001000033000003'),('C5fPz-Wg85vkYRvCdl-Xqw','UserList','UserList UserList root import userlist ','root/import/userlist',1212160830,1212160830,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'UserList\'\'UserList\'\'root\'\'import\'\'userlist','000001000001000043'),('aNmgn0cd6tldmC1FpW4KbA','Shop','Shop Shop shopping cart collateral items ','shopping-cart-collateral-items',1213122695,1213122695,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Shop\'\'Shop\'\'shopping\'\'cart\'\'collateral\'\'items','000001000001000034'),('2q5fxatSFLgIhXaUX-oSvg','bottom-left.jpg','bottom-left.jpg bottom-left.jpg shopping cart collateral items bottom left.jpg ','shopping-cart-collateral-items/bottom-left.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'bottom\'\'-\'\'left\'\'.\'\'jpg\'\'bottom\'\'-\'\'left\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'bottom\'\'left\'\'.\'\'jpg','000001000001000034000001'),('_d5WTkKjnwct-_Dk7gZHvQ','bottom-right.jpg','bottom-right.jpg bottom-right.jpg shopping cart collateral items bottom right.jpg ','shopping-cart-collateral-items/bottom-right.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'bottom\'\'-\'\'right\'\'.\'\'jpg\'\'bottom\'\'-\'\'right\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'bottom\'\'right\'\'.\'\'jpg','000001000001000034000002'),('Iz2mUR3jCPKyemwAea4b2g','input_bg.jpg','input_bg.jpg input_bg.jpg shopping cart collateral items input bg.jpg ','shopping-cart-collateral-items/input_bg.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'input_bg\'\'.\'\'jpg\'\'input_bg\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'input\'\'bg\'\'.\'\'jpg','000001000001000034000003'),('JU9bjsLRoWj7GVHs__prig','top-left.jpg','top-left.jpg top-left.jpg shopping cart collateral items top left.jpg ','shopping-cart-collateral-items/top-left.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'top\'\'-\'\'left\'\'.\'\'jpg\'\'top\'\'-\'\'left\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'top\'\'left\'\'.\'\'jpg','000001000001000034000004'),('noOlnjQGexHg8c4bGVUo9g','top-right.jpg','top-right.jpg top-right.jpg shopping cart collateral items top right.jpg ','shopping-cart-collateral-items/top-right.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'top\'\'-\'\'right\'\'.\'\'jpg\'\'top\'\'-\'\'right\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'top\'\'right\'\'.\'\'jpg','000001000001000034000005'),('aIpCmr9Hi__vgdZnDTz1jw','Cart (Default)','Cart (Default) Cart (Default) default shopping cart template ','default-shopping-cart-template',1209921197,1227539574,'3','7','3','WebGUI::Asset::Template',1,'Cart\'\'(\'\'Default\'\')\'\'Cart\'\'(\'\'Default\'\')\'\'default\'\'shopping\'\'cart\'\'template Shop\'\'/\'\'Cart','000001000001000034000006'),('4e-_rNs6mSWedZhQ_V5kJA','shelf-ie.css','shelf-ie.css shelf-ie.css root import shelf2 shelf ie.css ','root/import/shelf2/shelf-ie.css',1210779672,1210779672,'3','7','12','WebGUI::Asset::Snippet',1,'shelf\'\'-\'\'ie\'\'.\'\'css\'\'shelf\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'shelf2\'\'shelf\'\'ie\'\'.\'\'css .\'\'wgShelf\'\'.\'\'product\'\'{\'\'margin\'\':\'\'15px\'\';\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'float\'\':\'\'left\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'min\'\'-\'\'height\'\':\'\'100px\'\';\'\'min\'\'-\'\'width\'\':\'\'200px\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'100px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'{\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'shelf2\'\'/\'\'images\'\'/\'\'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'right\'\';\'\'height\'\':\'\'30px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'24px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}','000001000001000033000004'),('2gtFt7c0qAFNU3BG_uvNvg','My Purchases (Default)','My Purchases (Default) My Purchases (Default) shopping cart collateral items my purchases default ','shopping-cart-collateral-items/my-purchases-default',1211824430,1222574694,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Purchases\'\'(\'\'Default\'\')\'\'My\'\'Purchases\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'my\'\'purchases\'\'default Shop\'\'/\'\'MyPurchases','000001000001000034000008'),('bPz1yk6Y9uwMDMBcmMsSCg','Email Receipt (Default)','Email Receipt (Default) Email Receipt (Default) shopping cart collateral items email receipt default ','shopping-cart-collateral-items/email-receipt-default',1211829604,1211829604,'3','7','3','WebGUI::Asset::Template',1,'Email\'\'Receipt\'\'(\'\'Default\'\')\'\'Email\'\'Receipt\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'email\'\'receipt\'\'default Shop\'\'/\'\'EmailReceipt','000001000001000034000009'),('EBlxJpZQ9o-8VBOaGQbChA','MiniCart','MiniCart MiniCart shopping cart collateral items minicart ','shopping-cart-collateral-items/minicart',1212093746,1212093746,'3','7','3','WebGUI::Asset::Template',1,'MiniCart\'\'MiniCart\'\'shopping\'\'cart\'\'collateral\'\'items\'\'minicart Shop\'\'/\'\'MiniCart','000001000001000034000014'),('PBtmpl0000000000000053','Subscription code redemption','Subscription code redemption Subscription code redemption subscription code redemption ','subscription_code_redemption',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Subscription\'\'code\'\'redemption\'\'Subscription\'\'code\'\'redemption\'\'subscription\'\'code\'\'redemption Operation\'\'/\'\'RedeemSubscription','000001000001000034000017'),('6tK47xsaIH-ELw0IBo0uRQ','images','images images root import shelf2 images ','root/import/shelf2/images',1210777115,1210777115,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'shelf2\'\'images','000001000001000033000001'),('XNd7a_g_cTvJVYrVHcx2Mw','Address (Default)','Address (Default) Address (Default) shopping cart collateral items address default ','shopping-cart-collateral-items/address-default',1212099009,1224606020,'3','7','3','WebGUI::Asset::Template',1,'Address\'\'(\'\'Default\'\')\'\'Address\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'address\'\'default Shop\'\'/\'\'Address','000001000001000034000007'),('_bZJ9LA_KNekZiFPaP2SeQ','shelf-titles.jpg','shelf-titles.jpg shelf-titles.jpg root import shelf2 images shelf titles.jpg ','root/import/shelf2/images/shelf-titles.jpg',1210777868,1210777868,'3','7','12','WebGUI::Asset::File::Image',1,'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\'root\'\'import\'\'shelf2\'\'images\'\'shelf\'\'titles\'\'.\'\'jpg','000001000001000033000001000001'),('nFen0xjkZn8WkpM93C9ceQ','Shelf (Default)','Shelf (Default) Shelf (Default) root import shelf default ','root/import/shelf-default',1210779326,1229117831,'3','7','12','WebGUI::Asset::Template',1,'Shelf\'\'(\'\'Default\'\')\'\'Shelf\'\'(\'\'Default\'\')\'\'root\'\'import\'\'shelf\'\'default Shelf','000001000001000033000002'),('mTOiwwk3q4k9g5-XykXhPA','Documentation','With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation. ','documentation',1215717999,1218149728,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Documentation\'\'Documentation\'\'documentation\'\'With\'\'any\'\'large\'\'system\'\',\'\'having\'\'the\'\'right\'\'documentation\'\'to\'\'get\'\'you\'\'started\'\'is\'\'mandatory\'\'.\'\'The\'\'good\'\'news\'\'is\'\'that\'\'WebGUI\'\'has\'\'abundant\'\'documentation\'\'.','000001000002000005'),('j_1qEqM6iLfQLiR6VKy0aA','Free Documentation','There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction. \n\n\n\nPrimer - A download','documentation/free-documentation',1215718151,1215718151,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Free\'\'Documentation\'\'Free\'\'Documentation\'\'documentation\'\'free\'\'documentation\'\'There\'\'are\'\'hundreds\'\'of\'\'pages\'\'of\'\'free\'\'documentation\'\'available\'\'for\'\'WebGUI\'\',\'\'provided\'\'by\'\'both\'\'Plain\'\'Black\'\'and\'\'the\'\'community\'\'at\'\'large\'\'.\'\'The\'\'following\'\'list\'\'is\'\'by\'\'no\'\'means\'\'comprehensive\'\',\'\'but\'\'it\'\'should\'\'get\'\'you\'\'started\'\'in\'\'the\'\'right\'\'direction\'\'.\'\'Primer\'\'-\'\'A\'\'downloadable\'\'PDF\'\'that\'\'shows\'\'you\'\'the\'\'basics\'\'of\'\'publishing\'\'content\'\'in\'\'WebGUI\'\'.\'\'Wiki\'\'-\'\'Hundreds\'\'of\'\'pages\'\'of\'\'WebGUI\'\'community\'\'contributed\'\'content\'\'featuring\'\'a\'\'variety\'\'of\'\'tutorials\'\'.\'\'Worldwide\'\'-\'\'A\'\'collection\'\'of\'\'WebGUI\'\'related\'\'web\'\'sites\'\'from\'\'all\'\'over\'\'the\'\'world\'\'that\'\'have\'\'documentation\'\'and\'\'other\'\'resources\'\'for\'\'WebGUI\'\'.\'\'API\'\'Docs\'\'-\'\'The\'\'documentation\'\'of\'\'all\'\'of\'\'the\'\'WebGUI\'\'source\'\'code\'\'.\'\'Template\'\'Help\'\'-\'\'The\'\'documentation\'\'of\'\'all\'\'of\'\'WebGUI\'\'\'\'\'s\'\'template\'\'variables\'\'. ','000001000002000005000001'),('o_pq_e4vRyhMOKFzs61eag','book-covers.jpg','book-covers.jpg book-covers.jpg documentation book covers.jpg ','documentation/book-covers.jpg',1215714957,1215714957,'3','7','3','WebGUI::Asset::File::Image',1,'book\'\'-\'\'covers\'\'.\'\'jpg\'\'book\'\'-\'\'covers\'\'.\'\'jpg\'\'documentation\'\'book\'\'covers\'\'.\'\'jpg','000001000002000005000002'),('diZvW4bSgZWwyyGP3qXi1g','Commercial Documentation','Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of t','documentation/commercial-documentation',1215717972,1215717972,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Commercial\'\'Documentation\'\'Commercial\'\'Documentation\'\'documentation\'\'commercial\'\'documentation\'\'Plain\'\'Black\'\'has\'\'created\'\'a\'\'whole\'\'line\'\'of\'\'commercial\'\'books\'\'which\'\'total\'\'over\'\'1500\'\'pages\'\'of\'\'detailed\'\'documentation\'\'about\'\'WebGUI\'\'.\'\'Both\'\'black\'\'and\'\'white\'\'and\'\'full\'\'color\'\'editions\'\'of\'\'these\'\'books\'\'are\'\'available\'\',\'\'and\'\'they\'\'are\'\'updated\'\'frequently\'\'to\'\'keep\'\'you\'\'on\'\'top\'\'of\'\'the\'\'latest\'\'WebGUI\'\'features\'\'.\'\'Visit\'\'the\'\'book\'\'store\'\'today\'\'to\'\'stock\'\'your\'\'WebGUI\'\'library\'\'.\'\'Other\'\'than\'\'hands\'\'on\'\'training\'\',\'\'there\'\'is\'\'no\'\'better\'\'way\'\'to\'\'hone\'\'your\'\'WebGUI\'\'skills\'\'.\'\'No\'\'matter\'\'what\'\'your\'\'need\'\',\'\'Plain\'\'Black\'\'has\'\'created\'\'a\'\'book\'\'that\'\'\'\'\'s\'\'right\'\'for\'\'you\'\'and\'\'is\'\'creating\'\'new\'\'books\'\'each\'\'year\'\'. ','000001000002000005000003'),('PBEmsBadgeTemplate0000','Default EMS Badge Template','Default EMS Badge Template Default EMS Badge Template default emsbadge ','default_emsbadge',1221077977,1221692339,'3','7','4','WebGUI::Asset::Template',1,'Default\'\'EMS\'\'Badge\'\'Template\'\'Default\'\'EMS\'\'Badge\'\'Template\'\'default\'\'emsbadge EMSBadge','000001000001000008000006'),('9A-mg2gwWmaYi9o_1C7ArQ','dashboard','dashboard dashboard root import projectmanager dashboard ','root/import/projectmanager/dashboard',1147642478,1222803338,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'dashboard\'\'dashboard\'\'root\'\'import\'\'projectmanager\'\'dashboard','000001000001000027000001'),('yD1SMHelczihzjEmx6eXBA','editTask','editTask editTask root import projectmanager edittask ','root/import/projectmanager/edittask',1147642478,1222803342,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'editTask\'\'editTask\'\'root\'\'import\'\'projectmanager\'\'edittask','000001000001000027000002'),('pV7GnZdpjR3XpZaSINIoeg','gantt','gantt gantt root import projectmanager gantt ','root/import/projectmanager/gantt',1147642478,1222803347,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'gantt\'\'gantt\'\'root\'\'import\'\'projectmanager\'\'gantt','000001000001000027000003'),('71e17KeduiXgODLMlUxiow','project','project project root import projectmanager project ','root/import/projectmanager/project',1147642479,1222803352,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'project\'\'project\'\'root\'\'import\'\'projectmanager\'\'project','000001000001000027000004'),('vTymIDYL2YqEh6PV50F7ew','manager','manager manager root import timetracking manager ','root/import/timetracking/manager',1147642482,1222803302,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'manager\'\'manager\'\'root\'\'import\'\'timetracking\'\'manager','000001000001000042000001'),('lo1ac3BsoJx3ijGQ3gR-bQ','row','row row root import timetracking row ','root/import/timetracking/row',1147642482,1222803309,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'row\'\'row\'\'root\'\'import\'\'timetracking\'\'row','000001000001000042000002'),('huASapWvFDzqwOSbcN-JFQ','user','user user root import timetracking user ','root/import/timetracking/user',1147642483,1222803313,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'user\'\'user\'\'root\'\'import\'\'timetracking\'\'user','000001000001000042000003'),('xSmREZO3GNzK3M5PaueOOQ','LDAP/Account','LDAP/Account LDAP/Account root import auth ldap account ','root/import/auth/ldap/account',1147642466,1222803378,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Account\'\'LDAP\'\'/\'\'Account\'\'root\'\'import\'\'auth\'\'ldap\'\'account','000001000001000003000001'),('0bx-xoL8TSXXubFuqKAoVQ','LDAP/Create','LDAP/Create LDAP/Create root import auth ldap create ','root/import/auth/ldap/create',1147642466,1222803383,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Create\'\'LDAP\'\'/\'\'Create\'\'root\'\'import\'\'auth\'\'ldap\'\'create','000001000001000003000002'),('taX2UYkFF21ALpFZY2rhMw','LDAP/Login','LDAP/Login LDAP/Login root import auth ldap login ','root/import/auth/ldap/login',1147642466,1222803387,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Login\'\'LDAP\'\'/\'\'Login\'\'root\'\'import\'\'auth\'\'ldap\'\'login','000001000001000003000003'),('K0q_N885Httqev1VCqUWxg','WebGUI/Account','WebGUI/Account WebGUI/Account root import auth webgui account ','root/import/auth/webgui/account',1147642466,1222803391,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Account\'\'WebGUI\'\'/\'\'Account\'\'root\'\'import\'\'auth\'\'webgui\'\'account','000001000001000003000004'),('fq1ZkYhH24R5tb96kuT10Q','WebGUI/Create','WebGUI/Create WebGUI/Create root import auth webgui create ','root/import/auth/webgui/create',1147642466,1222803395,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Create\'\'WebGUI\'\'/\'\'Create\'\'root\'\'import\'\'auth\'\'webgui\'\'create','000001000001000003000005'),('oHk7fAFhEEkB7dHzi0QOQA','WebGUI/Expired','WebGUI/Expired WebGUI/Expired root import auth webgui expired ','root/import/auth/webgui/expired',1147642466,1222803399,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Expired\'\'WebGUI\'\'/\'\'Expired\'\'root\'\'import\'\'auth\'\'webgui\'\'expired','000001000001000003000006'),('9M-lrlPQWeeNWfvnDnK_Xg','WebGUI/Login','WebGUI/Login WebGUI/Login root import auth webgui login ','root/import/auth/webgui/login',1147642466,1222803405,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Login\'\'WebGUI\'\'/\'\'Login\'\'root\'\'import\'\'auth\'\'webgui\'\'login','000001000001000003000007'),('_gBYAdTcbkiyamnqi2Xskg','WebGUI/Recovery','WebGUI/Recovery WebGUI/Recovery root import auth webgui recovery ','root/import/auth/webgui/recovery',1147642466,1222803409,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Recovery\'\'WebGUI\'\'/\'\'Recovery\'\'root\'\'import\'\'auth\'\'webgui\'\'recovery','000001000001000003000008'),('tBL7BWiQRZFed2Y-Zjo9tQ','AdminToggle','AdminToggle AdminToggle root import macro admintoggle ','root/import/macro/admintoggle',1147642471,1222803200,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminToggle\'\'AdminToggle\'\'root\'\'import\'\'macro\'\'admintoggle','000001000001000017000001'),('GdkQpvjRtJqtzOUbwIIQRA','a_account','a_account a_account root import macro a account ','root/import/macro/a_account',1147642471,1222803205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'a_account\'\'a_account\'\'root\'\'import\'\'macro\'\'a\'\'account','000001000001000017000002'),('tnc5iYyynX2hfdEs9D3P8w','EditableToggle','EditableToggle EditableToggle root import macro editabletoggle ','root/import/macro/editabletoggle',1147642472,1222803213,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EditableToggle\'\'EditableToggle\'\'root\'\'import\'\'macro\'\'editabletoggle','000001000001000017000003'),('vgXdBcFTqU7h4wBG1ewdBw','File','File File root import macro file ','root/import/macro/file',1147642472,1222803217,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'File\'\'File\'\'root\'\'import\'\'macro\'\'file','000001000001000017000004'),('hcFlqnXlsmC1ujN6Id0F0A','GroupAdd','GroupAdd GroupAdd root import macro groupadd ','root/import/macro/groupadd',1147642473,1222803234,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupAdd\'\'GroupAdd\'\'root\'\'import\'\'macro\'\'groupadd','000001000001000017000005'),('eRJR52fvlaxfetv3DQkQYw','GroupDelete','GroupDelete GroupDelete root import macro groupdelete ','root/import/macro/groupdelete',1147642473,1222803238,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupDelete\'\'GroupDelete\'\'root\'\'import\'\'macro\'\'groupdelete','000001000001000017000006'),('5HIDHq5lAWHV5gpYGS0zLg','H_homeLink','H_homeLink H_homeLink root import macro h homelink ','root/import/macro/h_homelink',1147642473,1222803244,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'H_homeLink\'\'H_homeLink\'\'root\'\'import\'\'macro\'\'h\'\'homelink','000001000001000017000007'),('rYEFwXXo0tkGhQTcbDibvg','LoginToggle','LoginToggle LoginToggle root import macro logintoggle ','root/import/macro/logintoggle',1147642473,1222803249,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LoginToggle\'\'LoginToggle\'\'root\'\'import\'\'macro\'\'logintoggle','000001000001000017000008'),('V3l5S5TtI7wMm1WpIMhvOA','L_loginBox','L_loginBox L_loginBox root import macro l loginbox ','root/import/macro/l_loginbox',1147642473,1222803253,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'L_loginBox\'\'L_loginBox\'\'root\'\'import\'\'macro\'\'l\'\'loginbox','000001000001000017000009'),('nqNbSUAhk9Vd1zda2SCz9A','RandomThread','RandomThread RandomThread root import macro randomthread ','root/import/macro/randomthread',1147642474,1222803258,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RandomThread\'\'RandomThread\'\'root\'\'import\'\'macro\'\'randomthread','000001000001000017000010'),('y8XkRdxIperLKkJ3bL5sSQ','r_printable','r_printable r_printable root import macro r printable ','root/import/macro/r_printable',1147642474,1222803264,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'r_printable\'\'r_printable\'\'root\'\'import\'\'macro\'\'r\'\'printable','000001000001000017000011'),('UserListTmpl0000000002','UserList with search field selection','UserList with search field selection UserList with search field selection root import userlist userlist with search field selection ','root/import/userlist/userlist-with-search-field-selection',1212000800,1228125752,'3','7','12','WebGUI::Asset::Template',1,'UserList\'\'with\'\'search\'\'field\'\'selection\'\'UserList\'\'with\'\'search\'\'field\'\'selection\'\'root\'\'import\'\'userlist\'\'userlist\'\'with\'\'search\'\'field\'\'selection UserList','000001000001000043000002'),('UserListTmpl0000000003','UserList with multiple search keywords','UserList with multiple search keywords UserList with multiple search keywords root import userlist userlist with multiple search keywords ','root/import/userlist/userlist-with-multiple-search-keywords',1212001437,1228125758,'3','7','12','WebGUI::Asset::Template',1,'UserList\'\'with\'\'multiple\'\'search\'\'keywords\'\'UserList\'\'with\'\'multiple\'\'search\'\'keywords\'\'root\'\'import\'\'userlist\'\'userlist\'\'with\'\'multiple\'\'search\'\'keywords UserList','000001000001000043000003'),('UserListTmpl0000000001','Default UserList','Default UserList Default UserList root import userlist default userlist ','root/import/userlist/default-userlist',1212159641,1228125743,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'UserList\'\'Default\'\'UserList\'\'root\'\'import\'\'userlist\'\'default\'\'userlist UserList','000001000001000043000001'),('BMybD3cEnmXVk2wQ_qEsRQ','Badge Builder (Default)','Badge Builder (Default) Badge Builder (Default) root import ems badge builder default ','root/import/ems/badge-builder-default',1208530113,1224723361,'3','7','12','WebGUI::Asset::Template',1,'Badge\'\'Builder\'\'(\'\'Default\'\')\'\'Badge\'\'Builder\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'badge\'\'builder\'\'default EMS\'\'/\'\'BadgeBuilder','000001000001000008000001'),('OOyMH33plAy6oCj_QWrxtg','Lookup Registrant (Default)','Lookup Registrant (Default) Lookup Registrant (Default) root import ems lookup registrant default ','root/import/ems/lookup-registrant-default',1207951375,1224724790,'3','7','12','WebGUI::Asset::Template',1,'Lookup\'\'Registrant\'\'(\'\'Default\'\')\'\'Lookup\'\'Registrant\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'lookup\'\'registrant\'\'default EMS\'\'/\'\'LookupRegistrant','000001000001000008000002'),('stevecoolmenu000000001','Site Nav','Site Nav Site Nav webgui7 style3 hierarchical top nav ','webgui7/style3/hierarchical-top-nav',1147642505,1224116942,'3','7','12','WebGUI::Asset::Template',1,'Site\'\'Nav\'\'Site\'\'Nav\'\'webgui7\'\'style3\'\'hierarchical\'\'top\'\'nav Navigation','000001000001000047000001'),('7.0-style0000000000051','css03.css','css03.css css03.css style3 css03.css ','style3/css03.css',1147642505,1224117026,'3','7','12','WebGUI::Asset::Snippet',1,'css03\'\'.\'\'css\'\'css03\'\'.\'\'css\'\'style3\'\'css03\'\'.\'\'css body\'\',\'\'html\'\'{\'\'margin\'\':\'\'0px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'b53018\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'body\'\'a\'\'{\'\'color\'\':\'\'#\'\'EE963E\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'{\'\'width\'\':\'\'98\'\'%\'\';\'\'/\'\'*\'\'min\'\'-\'\'width\'\':\'\'790px\'\';\'\'*\'\'/\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'20px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'header\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'115px\'\';\'\'}\'\'#\'\'headerTitle\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'left\'\'top\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'headerRight\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\'top\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'headerRight\'\'#\'\'title\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'25px\'\';\'\'left\'\':\'\'20px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'#\'\'title\'\'h1\'\'{\'\'text\'\'-\'\'transform\'\':\'\'uppercase\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'font\'\'-\'\'size\'\':\'\'26pt\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'title\'\'h1\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'26pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}\'\'#\'\'title\'\'h2\'\'{\'\'margin\'\':\'\'0px\'\';\'\'font\'\'-\'\'size\'\':\'\'12pt\'\';\'\'color\'\':\'\'#\'\'bebebe\'\';\'\'padding\'\'-\'\'left\'\':\'\'20px\'\';\'\'}\'\'#\'\'title\'\'img\'\'{\'\'z\'\'-\'\'index\'\':\'\'5\'\';\'\'}\'\'#\'\'login\'\'{\'\'position\'\':\'\'absolute\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'top\'\':\'\'45\'\'%\'\';\'\'right\'\':\'\'150px\'\';\'\'color\'\':\'\'white\'\';\'\'z\'\'-\'\'index\'\':\'\'6\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'}\'\'#\'\'login\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'0px\'\';\'\'}\'\'.\'\'loginBox\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'margin\'\':\'\'0px\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'.\'\'loginBox\'\'input\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'mainBody\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'500px\'\';\'\'background\'\':\'\'#\'\'fff\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainBody\'\'{\'\'height\'\':\'\'auto\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'#\'\'contentArea\'\'{\'\'z\'\'-\'\'index\'\':\'\'2\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\'-\'\'top\'\':\'\'10px\'\';\'\'padding\'\'-\'\'left\'\':\'\'10px\'\';\'\'padding\'\'-\'\'right\'\':\'\'20px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'html\'\'#\'\'main\'\'#\'\'mainBody\'\'#\'\'contentArea\'\'{\'\'height\'\':\'\'1\'\'%\'\';\'\'}\'\'#\'\'topCorner\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'214px\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'/\'\'style3\'\'/\'\'main_top\'\'.\'\'jpg\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'#\'\'bottomCorner\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'211px\'\';\'\'position\'\':\'\'absolute\'\';\'\'bottom\'\':\'\'59px\'\';\'\'right\'\':\'\'0px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'main_bottom\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'*\'\'html\'\'#\'\'bottomCorner\'\'{\'\'bottom\'\':\'\'58px\'\';\'\'}\'\'#\'\'footer\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'background\'\':\'\'#\'\'000\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'footer_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\'top\'\';\'\'height\'\':\'\'57px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'B53018\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'footer\'\'#\'\'copyright\'\'{\'\'color\'\':\'\'#\'\'3b3b3b\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'20px\'\';\'\'left\'\':\'\'30px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'{\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}','000001000001000047000002'),('stevestyle000000000003','Style 03','Style 03 Style 03 style 03 ','style_03',1147642510,1224795533,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'03\'\'Style\'\'03\'\'style\'\'03 style','000001000001000047000020'),('jVKLVakT_iA2010_oEuAwg','Style3 Coolmenu','Style3 Coolmenu Style3 Coolmenu department nav ','department_nav',1224116526,1224116526,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3\'\'Coolmenu\'\'Style3\'\'Coolmenu\'\'department\'\'nav','000001000001000047000024'),('UL-ItI4L1Z6-WSuhuXVvsQ','DataTable','DataTable DataTable root import datatable ','root/import/datatable',1225139673,1225139673,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'DataTable\'\'DataTable\'\'root\'\'import\'\'datatable','000001000001000050'),('3rjnBVJRO6ZSkxlFkYh_ug','Default DataTable Template (YUI)','Default DataTable Template (YUI) Default DataTable Template (YUI) root import datatable default datatable template yui ','root/import/datatable/default-datatable-template-yui',1225139643,1225139643,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'DataTable\'\'Template\'\'(\'\'YUI\'\')\'\'Default\'\'DataTable\'\'Template\'\'(\'\'YUI\'\')\'\'root\'\'import\'\'datatable\'\'default\'\'datatable\'\'template\'\'yui DataTable','000001000001000050000001'),('TuYPpHx7TUyk08639Pc8Bg','Default DataTable Template (HTML)','Default DataTable Template (HTML) Default DataTable Template (HTML) root import datatable default datatable template html ','root/import/datatable/default-datatable-template-html',1225139643,1225139643,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'DataTable\'\'Template\'\'(\'\'HTML\'\')\'\'Default\'\'DataTable\'\'Template\'\'(\'\'HTML\'\')\'\'root\'\'import\'\'datatable\'\'default\'\'datatable\'\'template\'\'html DataTable','000001000001000050000002'),('THQhn1C-ooj-TLlEP7aIJQ','gallery-ie.css','gallery-ie.css gallery-ie.css root import gallery templates gallery ie.css ','root/import/gallery-templates/gallery-ie.css',1225313951,1225313951,'3','7','3','WebGUI::Asset::Snippet',1,'gallery\'\'-\'\'ie\'\'.\'\'css\'\'gallery\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'gallery\'\'ie\'\'.\'\'css .\'\'wgPicture\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgAlbum\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'li\'\',\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'a\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'container\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'}','000001000001000051'),('QpmlAiYZz6VsKBM-_0wXaw','UsersOnline Macro',' ','users-online-macro-templates',1224616691,1224616691,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'UsersOnline\'\'Macro\'\'UsersOnline\'\'Macro\'\'users\'\'online\'\'macro\'\'templates','000001000001000052'),('h_T2xtOxGRQ9QJOR6ebLpQ','UsersOnline Default View','UsersOnline Default View UsersOnline Default View users online macro templates usersonline default view ','users-online-macro-templates/usersonline-default-view',1224616545,1224616545,'3','7','3','WebGUI::Asset::Template',1,'UsersOnline\'\'Default\'\'View\'\'UsersOnline\'\'Default\'\'View\'\'users\'\'online\'\'macro\'\'templates\'\'usersonline\'\'default\'\'view Macro\'\'/\'\'UsersOnline','000001000001000052000001'),('4Ekp0kJoJllRRRo_J1Rj6w','UsersOnline Detailed View','UsersOnline Detailed View UsersOnline Detailed View users online macro templates usersonline detailed view ','users-online-macro-templates/usersonline-detailed-view',1224616672,1224616672,'3','7','3','WebGUI::Asset::Template',1,'UsersOnline\'\'Detailed\'\'View\'\'UsersOnline\'\'Detailed\'\'View\'\'users\'\'online\'\'macro\'\'templates\'\'usersonline\'\'detailed\'\'view Macro\'\'/\'\'UsersOnline','000001000001000052000002'),('FJbUTvZ2nUTn65LpW6gjsA','Profile Account Layout','Profile Account Layout Profile Account Layout root import account profile profile account layout ','root/import/account/profile/profile-account-layout',1227070381,1227070381,'3','7','12','WebGUI::Asset::Template',1,'Profile\'\'Account\'\'Layout\'\'Profile\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'profile\'\'profile\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000053000001000001'),('75CmQgpcCSkdsL-oawdn3Q','Default Edit Profile Template','Default Edit Profile Template Default Edit Profile Template root import account profile default edit profile template ','root/import/account/profile/default-edit-profile-template',1227052575,1227052575,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Edit\'\'Profile\'\'Template\'\'Default\'\'Edit\'\'Profile\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'edit\'\'profile\'\'template Account\'\'/\'\'Profile\'\'/\'\'Edit','000001000001000053000001000002'),('2CS-BErrjMmESOtGT90qOg','Default View Profile Template','Default View Profile Template Default View Profile Template root import account profile default view profile template ','root/import/account/profile/default-view-profile-template',1227070888,1227070888,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'View\'\'Profile\'\'Template\'\'Default\'\'View\'\'Profile\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'view\'\'profile\'\'template Account\'\'/\'\'Profile\'\'/\'\'View','000001000001000053000001000003'),('MBmWlA_YEA2I6D29OMGtRg','Default Profile Error Template','Default Profile Error Template Default Profile Error Template root import account profile default profile error template ','root/import/account/profile/default-profile-error-template',1226542675,1226542675,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Profile\'\'Error\'\'Template\'\'Default\'\'Profile\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'profile\'\'error\'\'template Account\'\'/\'\'Profile\'\'/\'\'Error','000001000001000053000001000004'),('IZkrow_zwvbf4FCH-taVTQ','Inbox','Inbox Inbox root import account inbox ','root/import/account/inbox',1226011853,1226011853,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox\'\'Inbox\'\'root\'\'import\'\'account\'\'inbox','000001000001000053000002'),('gfZOwaTWYjbSoVaQtHBBEw','Inbox Account Layout','Inbox Account Layout Inbox Account Layout root import account inbox account layout ','root/import/account/inbox-account-layout',1226974679,1226974679,'3','7','12','WebGUI::Asset::Template',1,'Inbox\'\'Account\'\'Layout\'\'Inbox\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'inbox\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000053000002000001'),('c8xrwVuu5QE0XtF9DiVzLw','Default Inbox View Template','Default Inbox View Template Default Inbox View Template root import account inbox default inbox view template ','root/import/account/inbox/default-inbox-view-template',1226894351,1226894351,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'View\'\'Template\'\'Default\'\'Inbox\'\'View\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'view\'\'template Account\'\'/\'\'Inbox\'\'/\'\'View','000001000001000053000002000002'),('0n4HtbXaWa_XJHkFjetnLQ','Default Inbox View Message Template','Default Inbox View Message Template Default Inbox View Message Template root import account inbox default inbox view message template ','root/import/account/inbox/default-inbox-view-message-template',1226894994,1226894994,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'View\'\'Message\'\'Template\'\'Default\'\'Inbox\'\'View\'\'Message\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'view\'\'message\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ViewMessage','000001000001000053000002000003'),('ErEzulFiEKDkaCDVmxUavw','Default Inbox Error Template','Default Inbox Error Template Default Inbox Error Template root import account inbox default inbox error template ','root/import/account/inbox/default-inbox-error-template',1226895484,1227566394,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'Error\'\'Template\'\'Default\'\'Inbox\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'error\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Error','000001000001000053000002000004'),('6uQEULvXFgCYlRWnYzZsuA','Default Inbox Send Message Template','Default Inbox Send Message Template Default Inbox Send Message Template root import account inbox default inbox send message template ','root/import/account/inbox/default-inbox-send-message-template',1226896682,1226896682,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'Send\'\'Message\'\'Template\'\'Default\'\'Inbox\'\'Send\'\'Message\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'send\'\'message\'\'template Account\'\'/\'\'Inbox\'\'/\'\'SendMessage','000001000001000053000002000005'),('DUoxlTBXhVS-Zl3CFDpt9g','Default Message Confirm Template','Default Message Confirm Template Default Message Confirm Template root import account inbox default message confirm template ','root/import/account/inbox/default-message-confirm-template',1226896802,1226896802,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Message\'\'Confirm\'\'Template\'\'Default\'\'Message\'\'Confirm\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'message\'\'confirm\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Confirm','000001000001000053000002000006'),('1Q4Je3hKCJzeo0ZBB5YB8g','Default Manage Invitations Template','Default Manage Invitations Template Default Manage Invitations Template root import account inbox default manage invitations template ','root/import/account/inbox/default-manage-invitations-template',1226898445,1226898445,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Manage\'\'Invitations\'\'Template\'\'Default\'\'Manage\'\'Invitations\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'manage\'\'invitations\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ManageInvitations','000001000001000053000002000007'),('5A8Hd9zXvByTDy4x-H28qw','Default Invitation Confirmation Template','Default Invitation Confirmation Template Default Invitation Confirmation Template root import account inbox default invitation confirmation template ','root/import/account/inbox/default-invitation-confirmation-template',1226899462,1227566395,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invitation\'\'Confirmation\'\'Template\'\'Default\'\'Invitation\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invitation\'\'confirmation\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Confirm','000001000001000053000002000008'),('VBkY05f-E3WJS50WpdKd1Q','Default View Invitation Template','Default View Invitation Template Default View Invitation Template root import account inbox default view invitation template ','root/import/account/inbox/default-view-invitation-template',1226899241,1226899241,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'View\'\'Invitation\'\'Template\'\'Default\'\'View\'\'Invitation\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'view\'\'invitation\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ViewInvitation','000001000001000053000002000009'),('XgcsoDrbC0duVla7N7JAdw','Default Invite User Email Template','Default Invite User Email Template Default Invite User Email Template root import account inbox default invite user email template ','root/import/account/inbox/default-invite-user-email-template',1226973330,1227566394,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Email\'\'Template\'\'Default\'\'Invite\'\'User\'\'Email\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'email\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUserMessage','000001000001000053000002000010'),('cR0UFm7I1qUI2Wbpj--08Q','Default Invite User Form Template','Default Invite User Form Template Default Invite User Form Template root import account inbox default invite user form template ','root/import/account/inbox/default-invite-user-form-template',1226964738,1226964738,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Form\'\'Template\'\'Default\'\'Invite\'\'User\'\'Form\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'form\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUser','000001000001000053000002000011'),('SVIhz68689hwUGgcDM-gWw','Default Invite User Confirm Template','Default Invite User Confirm Template Default Invite User Confirm Template root import account inbox default invite user confirm template ','root/import/account/inbox/default-invite-user-confirm-template',1226973314,1226973314,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Confirm\'\'Template\'\'Default\'\'Invite\'\'User\'\'Confirm\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'confirm\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUserConfirm','000001000001000053000002000012'),('K0YjxqOqr7RupSo6sIdcAg','Friends','Friends Friends root import account friends ','root/import/account/friends',1227074310,1227074310,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friends\'\'Friends\'\'root\'\'import\'\'account\'\'friends','000001000001000053000003'),('zrNpGbT3odfIkg6nFSUy8Q','Friends Layout Template','Friends Layout Template Friends Layout Template root import account friends friends layout template ','root/import/account/friends/friends-layout-template',1226994016,1226994016,'3','7','12','WebGUI::Asset::Template',1,'Friends\'\'Layout\'\'Template\'\'Friends\'\'Layout\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'friends\'\'layout\'\'template Account\'\'/\'\'Layout','000001000001000053000003000001'),('1Yn_zE_dSiNuaBGNLPbxtw','Default Friends View Template','Default Friends View Template Default Friends View Template root import account friends default friends view template ','root/import/account/friends/default-friends-view-template',1226994422,1226994422,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'View\'\'Template\'\'Default\'\'Friends\'\'View\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'view\'\'template Account\'\'/\'\'Friends\'\'/\'\'View','000001000001000053000003000002'),('AZFU33p0jpPJ-E6qLSWZng','Default Friends Edit Template','Default Friends Edit Template Default Friends Edit Template root import account friends default friends edit template ','root/import/account/friends/default-friends-edit-template',1226994865,1226994865,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Edit\'\'Template\'\'Default\'\'Friends\'\'Edit\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'edit\'\'template Account\'\'/\'\'Friends\'\'/\'\'Edit','000001000001000053000003000003'),('AGJBGviWGAwjnwziiPjvDg','Default Send Request Template','Default Send Request Template Default Send Request Template root import account friends default send request template ','root/import/account/friends/default-send-request-template',1226995497,1226995497,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Send\'\'Request\'\'Template\'\'Default\'\'Send\'\'Request\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'send\'\'request\'\'template Account\'\'/\'\'Friends\'\'/\'\'SendRequest','000001000001000053000003000004'),('7Ijdd8SW32lVgg2H8R-Aqw','Default Friends Error Template','Default Friends Error Template Default Friends Error Template root import account friends default friends error template ','root/import/account/friends/default-friends-error-template',1226995714,1226995714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Error\'\'Template\'\'Default\'\'Friends\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'error\'\'template Account\'\'/\'\'Friends\'\'/\'\'Error','000001000001000053000003000005'),('K8F0j_cq_jgo8dvWY_26Ag','Default Friends Confirmation Template','Default Friends Confirmation Template Default Friends Confirmation Template root import account friends default friends confirmation template ','root/import/account/friends/default-friends-confirmation-template',1226995643,1226995643,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Confirmation\'\'Template\'\'Default\'\'Friends\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'confirmation\'\'template Account\'\'/\'\'Friends\'\'/\'\'Confirm','000001000001000053000003000006'),('G5V6neXIDiFXN05oL-U3AQ','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template Default Remove Friends Confirmation Template root import account friends default remove friends confirmation template ','root/import/account/friends/default-remove-friends-confirmation-template',1226995768,1226995768,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Remove\'\'Friends\'\'Confirmation\'\'Template\'\'Default\'\'Remove\'\'Friends\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'remove\'\'friends\'\'confirmation\'\'template Account\'\'/\'\'Friends\'\'/\'\'Confirm','000001000001000053000003000007'),('_ilRXNR3s8F2vGJ_k9ePcg','User','User User root import account user ','root/import/account/user',1226643205,1226643205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'User\'\'User\'\'root\'\'import\'\'account\'\'user','000001000001000053000004'),('9ThW278DWLV0-Svf68ljFQ','Account Layout','Account Layout Account Layout root import account user account layout ','root/import/account/user/account-layout',1226647187,1226647187,'3','7','12','WebGUI::Asset::Template',1,'Account\'\'Layout\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'user\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000053000004000001'),('AOjPG2NHgfL9Cq6dDJ7mew','Shop','Shop Shop root import account shop ','root/import/account/shop',1226659753,1226659753,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shop\'\'Shop\'\'root\'\'import\'\'account\'\'shop','000001000001000053000005'),('aUDsJ-vB9RgP-AYvPOy8FQ','Shop Account Layout','Shop Account Layout Shop Account Layout root import account shop shop account layout ','root/import/account/shop/shop-account-layout',1226660439,1226660439,'3','7','12','WebGUI::Asset::Template',1,'Shop\'\'Account\'\'Layout\'\'Shop\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'shop\'\'shop\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000053000005000001'),('qaVcU0FFzzraMX_bzELqzw','Contributions','Contributions Contributions root import account contributions ','root/import/account/contributions',1227074362,1227074362,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Contributions\'\'Contributions\'\'root\'\'import\'\'account\'\'contributions','000001000001000053000006'),('b4n3VyUIsAHyIvT-W-jziA','Contributions Layout','Contributions Layout Contributions Layout root import account contributions contributions layout ','root/import/account/contributions/contributions-layout',1227074747,1227074747,'3','7','12','WebGUI::Asset::Template',1,'Contributions\'\'Layout\'\'Contributions\'\'Layout\'\'root\'\'import\'\'account\'\'contributions\'\'contributions\'\'layout Account\'\'/\'\'Layout','000001000001000053000006000001'),('1IzRpX0tgW7iuCfaU2Kk0A','Default Contributions View','Default Contributions View Default Contributions View root import account contributions default contributions view ','root/import/account/contributions/default-contributions-view',1227079721,1227079721,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Contributions\'\'View\'\'Default\'\'Contributions\'\'View\'\'root\'\'import\'\'account\'\'contributions\'\'default\'\'contributions\'\'view Account\'\'/\'\'Contrib\'\'/\'\'View','000001000001000053000006000002'),('N716tpSna0iIQTKxS4gTWA','Default Account Layout','Default Account Layout Default Account Layout root import account default account layout2 ','root/import/account/default-account-layout2',1226604666,1226604666,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Account\'\'Layout\'\'Default\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'default\'\'account\'\'layout2 Account\'\'/\'\'Layout','000001000001000053000007'),('matrixtmpl000000000004','Matrix Default Edit Listing','Matrix Default Edit Listing Matrix Default Edit Listing default matrix edit listing template ','default-matrix-edit-listing-template',1133743239,1228834590,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Edit\'\'Listing\'\'Matrix\'\'Default\'\'Edit\'\'Listing\'\'default\'\'matrix\'\'edit\'\'listing\'\'template Matrix\'\'/\'\'EditListing','000001000001000018000004'),('_9_eiaPgxzF_x_upt6-PNQ','gallery.css','gallery.css gallery.css root import gallery templates gallery.css ','root/import/gallery-templates/gallery.css',1197988920,1230702602,'3','7','3','WebGUI::Asset::Snippet',1,'gallery\'\'.\'\'css\'\'gallery\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'gallery\'\'.\'\'css /\'\'*\'\'FIXES\'\'FLOAT\'\'ISSUES\'\'.\'\'WITHOUT\'\'THIS\'\',\'\'FLOATS\'\'GET\'\'ALL\'\'NUTSY\'\'ESPECIALLY\'\'IN\'\'OPERA\'\'AND\'\'SAFARI\'\'*\'\'/\'\'.\'\'clearfix\'\':\'\'after\'\'{\'\'content\'\':\'\'\"\'\'.\'\'\"\'\';\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'0\'\';\'\'clear\'\':\'\'both\'\';\'\'visibility\'\':\'\'hidden\'\';\'\'}\'\'.\'\'clearfix\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'}\'\'/\'\'*\'\'END\'\'FLOAT\'\'FIX\'\'*\'\'/\'\'.\'\'wgGallery\'\'{\'\'font\'\'-\'\'family\'\':\'\'verdana\'\',\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'firstBar\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'title\'\'{\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'title\'\'a\'\'{\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'height\'\':\'\'42px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'0px\'\'5px\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'.\'\'rss\'\'{\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'29px\'\';\'\'position\'\':\'\'relative\'\';\'\'background\'\':\'\'transparent\'\';\'\'padding\'\'-\'\'top\'\':\'\'13px\'\';\'\'}\'\'.\'\'secondBar\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'8B8B8B\'\'5px\'\';\'\'color\'\':\'\'black\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'}\'\'.\'\'secondBar\'\'.\'\'author\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'secondBar\'\'.\'\'desc\'\'p\'\'{\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'margin\'\'-\'\'top\'\':\'\'0\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'pictures\'\'{\'\'}\'\'.\'\'searchArea\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'searchArea\'\'*\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'searchArea\'\'input\'\'.\'\'searchText\'\'{\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'width\'\':\'\'100px\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'2px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'15px\'\';\'\'margin\'\'-\'\'right\'\':\'\'10px\'\';\'\'}\'\'.\'\'searchArea\'\'input\'\'.\'\'searchBtn\'\'{\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'3px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'center\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'height\'\':\'\'21px\'\';\'\'}\'\'.\'\'searchArea\'\'a\'\':\'\'link\'\',\'\'.\'\'searchArea\'\'a\'\':\'\'visited\'\',\'\'.\'\'secondBar\'\'.\'\'author\'\'a\'\':\'\'link\'\',\'\'.\'\'secondBar\'\'.\'\'author\'\'a\'\':\'\'visited\'\'{\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'searchArea\'\'.\'\'current\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'transform\'\':\'\'uppercase\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgAlbum\'\'{\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'width\'\':\'\'250px\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumTitle\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'10px\'\';\'\'padding\'\'-\'\'right\'\':\'\'50px\'\';\'\'border\'\':\'\'solid\'\'#\'\'475f6f\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'8B8B8B\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'padding\'\'-\'\'top\'\':\'\'15px\'\';\'\'height\'\':\'\'135px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'a\'\'{\'\'height\'\':\'\'135px\'\';\'\'width\'\':\'\'200px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'0px\'\'23px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumDesc\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'black\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'5px\'\'23px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'description\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'40px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'padding\'\':\'\'5px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'fff\'\';\'\'color\'\':\'\'#\'\'222\'\';\'\'}\'\'.\'\'albumDesc\'\'.\'\'description\'\'*\'\'{\'\'margin\'\':\'\'2px\'\'0px\'\';\'\'}\'\'/\'\'*\'\'PAGINATION\'\'STYLES\'\'*\'\'/\'\'.\'\'wgGallery\'\'.\'\'paginationContainer\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\':\'\'black\'\';\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'container\'\'{\'\'clear\'\':\'\'both\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'{\'\'margin\'\':\'\'0px\'\'auto\'\'20px\'\'auto\'\';\'\'display\'\':\'\'table\'\';\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'padding\'\':\'\'0px\'\';\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'li\'\'{\'\'display\'\':\'\'table\'\'-\'\'cell\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'50px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgPicture\'\'a\'\':\'\'link\'\',\'\'.\'\'wgPicture\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'wgPicture\'\'{\'\'width\'\':\'\'250px\'\';\'\'margin\'\':\'\'10px\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'}\'\'.\'\'wgPicture\'\'.\'\'title\'\'{\'\'background\'\':\'\'#\'\'e0e0e0\'\';\'\'display\'\':\'\'block\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'8B8B8B\'\'4px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'padding\'\':\'\'15px\'\'23px\'\'15px\'\'23px\'\';\'\'margin\'\':\'\'0px\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'120px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'pictureDesc\'\'{\'\'padding\'\':\'\'0px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'pictureDesc\'\'.\'\'description\'\'{\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'{\'\'background\'\':\'\'#\'\'e0e0e0\'\';\'\'border\'\':\'\'solid\'\'#\'\'999\'\'1px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'aaa\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'padding\'\':\'\'1px\'\'3px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'.\'\'date\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'.\'\'comments\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'a\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'PHOTO\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Photo\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'wgSnapshot\'\'{\'\'float\'\':\'\'left\'\';\'\'margin\'\':\'\'10px\'\';\'\'max\'\'-\'\'width\'\':\'\'250px\'\';\'\'width\'\':\'\'25\'\'%\'\';\'\'}\'\'.\'\'wgSnapshot\'\'fieldset\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'fefefe\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'padding\'\':\'\'10px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f9f9f9\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgSnapshot\'\'p\'\'{\'\'max\'\'-\'\'width\'\':\'\'230px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'legend\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'max\'\'-\'\'width\'\':\'\'250px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'a\'\'.\'\'thumbnail\'\'img\'\'{\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'.\'\'description\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'border\'\':\'\'solid\'\'#\'\'555555\'\'2px\'\';\'\'padding\'\':\'\'5px\'\';\'\'width\'\':\'\'190px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'fff\'\';\'\'height\'\':\'\'50px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'overflow\'\':\'\'auto\'\';\'\'}\'\'.\'\'wgSnapshot\'\'a\'\'.\'\'fullSize\'\'{\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'a\'\':\'\'link\'\',\'\'.\'\'wgPictureDetails\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'fieldset\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'fefefe\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'padding\'\':\'\'10px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f9f9f9\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'legend\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'rowOne\'\'{\'\'background\'\':\'\'#\'\'EFEFEF\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'rowTwo\'\'{\'\'background\'\':\'\'#\'\'DCDCDC\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'DDDDDD\'\'1px\'\';\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'rowOne\'\'.\'\'label\'\',\'\'.\'\'rowTwo\'\'.\'\'label\'\'{\'\'margin\'\'-\'\'left\'\':\'\'15px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'}\'\'.\'\'rowOne\'\'.\'\'data\'\',\'\'.\'\'rowTwo\'\'.\'\'data\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'a\'\'.\'\'fullSize\'\':\'\'link\'\',\'\'a\'\'.\'\'fullSize\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgComments\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'margin\'\':\'\'10px\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'title\'\'{\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'555555\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'title\'\'a\'\'{\'\'color\'\':\'\'navy\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'comment\'\',\'\'.\'\'wgComments\'\'.\'\'commentAlt\'\'{\'\'position\'\':\'\'relative\'\';\'\'padding\'\':\'\'5px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'comment\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'F7F7F7\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'C9C9C9\'\'1px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'commentAlt\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f0f0f0\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'FBFBFB\'\'1px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'number\'\'{\'\'float\'\':\'\'left\'\';\'\'font\'\'-\'\'size\'\':\'\'30px\'\';\'\'color\'\':\'\'silver\'\';\'\'margin\'\':\'\'5px\'\'10px\'\'5px\'\'5px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'posted\'\'{\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'padding\'\'-\'\'top\'\':\'\'3px\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'color\'\':\'\'gray\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'posted\'\'a\'\'{\'\'color\'\':\'\'navy\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'THUMBNAIL\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Thumbnail\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'thumbView\'\'{\'\'width\'\':\'\'400px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'thumbView\'\'.\'\'thumbnail\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'350px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'thumbView\'\'.\'\'thumbnail\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'width\'\':\'\'350px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'thumb\'\'{\'\'width\'\':\'\'100px\'\';\'\'height\'\':\'\'65px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'thumb\'\'img\'\'{\'\'width\'\':\'\'100px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'{\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'padding\'\':\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'4px\'\';\'\'padding\'\'-\'\'right\'\':\'\'4px\'\';\'\'background\'\'-\'\'color\'\':\'\'silver\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'img\'\'{\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'.\'\'caption\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'SLIDESHOW\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Slideshow\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'wgSlideshow\'\'.\'\'controls\'\'{\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'gallery\'\'-\'\'templates\'\'/\'\'images\'\'/\'\'pagination_bg\'\'.\'\'jpg\'\')\'\';\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'500px\'\';\'\'height\'\':\'\'42px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'}\'\'.\'\'wgSlideshow\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'{\'\'width\'\':\'\'500px\'\';\'\'height\'\':\'\'auto\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'img\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'title\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'white\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'white\'\'1px\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'counter\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'synopsis\'\'{\'\'width\'\':\'\'494px\'\';\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'black\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'SEARCH\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Search\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'#\'\'adminWrapper\'\'{\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'label\'\'{\'\'background\'\':\'\'black\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'adminWrapper\'\'td\'\'.\'\'data\'\'input\'\'{\'\'background\'\':\'\'#\'\'f1f1f1\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'#\'\'adminWrapper\'\'td\'\'.\'\'radio\'\'input\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\':\'\'none\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'forwardButton\'\'{\'\'cursor\'\':\'\'pointer\'\';\'\'float\'\':\'\'rigbt\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'forwardButton\'\':\'\'hover\'\'{\'\'color\'\':\'\'gold\'\';\'\'}','000001000001000011000016'),('itransact_credentials1','ITransact Credentials (Default)','ITransact Credentials (Default) ITransact Credentials (Default) shopping cart collateral items itransact credentials ','shopping-cart-collateral-items/itransact-credentials',1228953856,1228953856,'3','7','4','WebGUI::Asset::Template',1,'ITransact\'\'Credentials\'\'(\'\'Default\'\')\'\'ITransact\'\'Credentials\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'itransact\'\'credentials Shop\'\'/\'\'Credentials','000001000001000054'),('hkj6WeChxFyqfP85UlRP8w','matrix.css','matrix.css matrix.css new matrix matrix.css ','new-matrix/matrix.css',1232664229,1232664229,'3','7','12','WebGUI::Asset::Snippet',1,'matrix\'\'.\'\'css\'\'matrix\'\'.\'\'css\'\'new\'\'matrix\'\'matrix\'\'.\'\'css .\'\'wg\'\'-\'\'clear\'\'{\'\'display\'\':\'\'inline\'\';\'\'clear\'\':\'\'both\'\';\'\'}\'\'/\'\'*\'\'COLUMN\'\'STYLES\'\'*\'\'/\'\'.\'\'matrixLeft\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'65\'\'%\'\';\'\'padding\'\':\'\'1\'\'%\'\';\'\'min\'\'-\'\'height\'\':\'\'1\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'}\'\'.\'\'matrixRight\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'25\'\'%\'\';\'\'padding\'\':\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'1\'\'%\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'/\'\'*\'\'DROPSHADOW\'\'BUTTONS\'\'*\'\'/\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'span\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'888\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\':\'\'5px\'\'0px\'\'0px\'\'0px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\',\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\'{\'\'border\'\':\'\'solid\'\'#\'\'2f495e\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'padding\'\':\'\'auto\'\'3px\'\';\'\'margin\'\':\'\'0px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'line\'\'-\'\'height\'\':\'\'13px\'\';\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'6px\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'height\'\':\'\'22px\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\'2px\'\'10px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\':\'\'hover\'\',\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\':\'\'hover\'\'{\'\'border\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'444\'\';\'\'}\'\'/\'\'*\'\'WHITE\'\'AREA\'\'FOR\'\'THE\'\'LISTING\'\'OF\'\'OBJECTS\'\'TO\'\'COMPARE\'\'*\'\'/\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'height\'\':\'\'300px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'margin\'\':\'\'10px\'\'2px\'\'20px\'\'2px\'\';\'\'padding\'\':\'\'auto\'\'10px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'link\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'color\'\':\'\'#\'\'111\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'GRAY\'\'BAR\'\'THAT\'\'HOLDS\'\'THE\'\'SORT\'\'BUTTONS\'\'*\'\'/\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'.\'\'sortButtons\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'D2D2D2\'\'2px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'/\'\'*\'\'STYLES\'\'TO\'\'OVERRIDE\'\'THE\'\'SORT\'\'BUTTON\'\'CSS\'\'BUILT\'\'INTO\'\'THE\'\'PERL\'\'CODE\'\'*\'\'/\'\'#\'\'sortByViews\'\'-\'\'button\'\',\'\'#\'\'sortByCompares\'\'-\'\'button\'\',\'\'#\'\'sortByUpdated\'\'-\'\'button\'\',\'\'#\'\'sortByClicks\'\'-\'\'button\'\'{\'\'background\'\':\'\'none\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'4px\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\'-\'\'color\'\':\'\'transparent\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'}\'\'#\'\'sortByViews\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByCompares\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByUpdated\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByClicks\'\'-\'\'button\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'/\'\'*\'\'MATRIX\'\'STATISTICS\'\'*\'\'/\'\'.\'\'matrixRight\'\'.\'\'mainTitle\'\'{\'\'font\'\'-\'\'size\'\':\'\'20px\'\';\'\'padding\'\':\'\'5px\'\'10px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'}\'\'.\'\'matrixRight\'\'.\'\'textBox\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'padding\'\':\'\'10px\'\'5px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'{\'\'padding\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'title\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'statistics\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'label\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'100px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'a\'\'{\'\'color\'\':\'\'#\'\'111\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'LINKS\'\'TO\'\'CONTROL\'\'ADMIN\'\'FUNCTIONS\'\'*\'\'/\'\'.\'\'adminLinks\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\':\'\'link\'\',\'\'.\'\'adminLinks\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'link\'\',\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'visited\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'3498d1\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'39a6e5\'\';\'\'}\'\'/\'\'*\'\'STYLE\'\'FOR\'\'THE\'\'DETAILED\'\'LISTING\'\'*\'\'/\'\'#\'\'matrixDetail\'\'{\'\'min\'\'-\'\'width\'\':\'\'1000px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'line\'\'-\'\'height\'\':\'\'11px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'margin\'\'-\'\'left\'\':\'\'10px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'.\'\'screenshot\'\'{\'\'float\'\':\'\'left\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'commentsMail\'\'strong\'\'.\'\'title\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'padding\'\':\'\'2px\'\'10px\'\';\'\'border\'\':\'\'solid\'\'1px\'\'gray\'\';\'\'border\'\'-\'\'bottom\'\'-\'\'color\'\':\'\'silver\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'{\'\'margin\'\':\'\'0px\'\'0px\'\'20px\'\'0px\'\';\'\'border\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomRight\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'.\'\'assetAspectComment\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'padding\'\':\'\'3px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f5f5f5\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'.\'\'assetAspectCommentForm\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'d2d2d2\'\'5px\'\';\'\'padding\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\',\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'{\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'{\'\'display\'\':\'\'block\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'margin\'\':\'\'4px\'\'0px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'strong\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'130px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\'-\'\'right\'\':\'\'5px\'\';\'\'margin\'\'-\'\'right\'\':\'\'5px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'3px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'}\'\'.\'\'showLink\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'showLink\'\':\'\'hover\'\',\'\'.\'\'hideLink\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'555\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'hideLink\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'border\'\'-\'\'bottom\'\'-\'\'style\'\':\'\'none\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'#\'\'matrixMail\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\':\'\'15px\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'0px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'0px\'\';\'\'margin\'\'-\'\'top\'\':\'\'1px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'.\'\'tableData\'\'{\'\'padding\'\':\'\'5px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'input\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'.\'\'formDescription\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'matrixMail\'\'form\'\'*\'\'img\'\'{\'\'margin\'\'-\'\'top\'\':\'\'-\'\'18px\'\';\'\'}\'\'#\'\'matrixMail\'\'#\'\'verify_formId\'\'{\'\'height\'\':\'\'45px\'\';\'\'line\'\'-\'\'height\'\':\'\'45px\'\';\'\'font\'\'-\'\'size\'\':\'\'35px\'\';\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixRatings\'\'{\'\'width\'\':\'\'264px\'\';\'\'position\'\':\'\'relative\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'top\'\':\'\'12px\'\';\'\'}\'\'#\'\'matrixRatings\'\'table\'\'{\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixRatings\'\'td\'\'{\'\'overflow\'\':\'\'hidden\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'97BCD1\'\';\'\'border\'\':\'\'solid\'\'#\'\'4D606B\'\'1px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10x\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'»\'\'\"\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'color\'\':\'\'red\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'#\'\'matrixAttributes\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'rightDetails\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\'}\'\'#\'\'attributes\'\'{\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'margin\'\'-\'\'top\'\':\'\'10px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'padding\'\':\'\'10px\'\';\'\'}\'\'#\'\'attributes\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'attributes\'\'table\'\'*\'\'td\'\'{\'\'padding\'\':\'\'2px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'dt0\'\'-\'\'col\'\'-\'\'value\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'padding\'\':\'\'3px\'\';\'\'white\'\'-\'\'space\'\':\'\'no\'\'-\'\'wrap\'\';\'\'}\'\'/\'\'*\'\'COMPARISON\'\'STYLES\'\'*\'\'/\'\'#\'\'compareList\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'}\'\'#\'\'compareList\'\'table\'\'*\'\'th\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'1px\'\'5px\'\';\'\'}\'\'#\'\'compareList\'\'table\'\'*\'\'td\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'{\'\'color\'\':\'\'#\'\'39A6E5\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'col\'\'-\'\'name\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'{\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'col\'\'-\'\'name\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'b\'\'{\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'style\'\':\'\'normal\'\';\'\'padding\'\'-\'\'right\'\':\'\'25px\'\';\'\'color\'\':\'\'black\'\';\'\'}','000001000001000018000006'),('kJf77eCr9GAMiEzWrzsBTA','matrix-ie.css','matrix-ie.css matrix-ie.css new matrix matrix ie.css ','new-matrix/matrix-ie.css',1229639255,1229639255,'3','7','12','WebGUI::Asset::Snippet',1,'matrix\'\'-\'\'ie\'\'.\'\'css\'\'matrix\'\'-\'\'ie\'\'.\'\'css\'\'new\'\'matrix\'\'matrix\'\'ie\'\'.\'\'css .\'\'matrixLeft\'\'.\'\'buttons\'\'span\'\',\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'span\'\'{\'\'padding\'\':\'\'0px\'\'0px\'\'0px\'\'0px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\',\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'a\'\'{\'\'top\'\':\'\'-\'\'3px\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'height\'\':\'\'22px\'\';\'\'}\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'padding\'\':\'\'1px\'\'3px\'\';\'\'}','000001000001000018000007'),('4LQT4-bGW4FkiEQLSY5gvQ','show-hide.js','show-hide.js show-hide.js new matrix show hide.js ','new-matrix/show-hide.js',1232400287,1232400287,'3','7','12','WebGUI::Asset::Snippet',1,'show\'\'-\'\'hide\'\'.\'\'js\'\'show\'\'-\'\'hide\'\'.\'\'js\'\'new\'\'matrix\'\'show\'\'hide\'\'.\'\'js function\'\'showHide\'\'(\'\'theLink\'\',\'\'theId\'\')\'\'{\'\'var\'\'theId\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'theId\'\')\'\';\'\'var\'\'theLink\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'theLink\'\')\'\';\'\'if\'\'(\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'=\'\'\'\'\'block\'\'\'\'\')\'\'{\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\'\'\'none\'\'\'\'\';\'\'theLink\'\'.\'\'innerHTML\'\'=\'\'\"\'\'Send\'\'Creator\'\'a\'\'Message\'\'\"\'\';\'\'theLink\'\'.\'\'className\'\'=\'\'\"\'\'showLink\'\'\"\'\'}\'\'else\'\'{\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\'\'\'block\'\'\'\'\';\'\'theLink\'\'.\'\'innerHTML\'\'=\'\'\"\'\'Hide\'\'\"\'\';\'\'theLink\'\'.\'\'className\'\'=\'\'\"\'\'hideLink\'\'\"\'\'}\'\'}','000001000001000018000008'),('alraubvBu-YJJ614jAHD5w','matrix-nav-tmpl','matrix-nav-tmpl matrix-nav-tmpl new matrix matrix nav tmpl ','new-matrix/matrix-nav-tmpl',1232664015,1232664015,'3','7','12','WebGUI::Asset::Template',1,'matrix\'\'-\'\'nav\'\'-\'\'tmpl\'\'matrix\'\'-\'\'nav\'\'-\'\'tmpl\'\'new\'\'matrix\'\'matrix\'\'nav\'\'tmpl Navigation','000001000001000018000009'),('Vch1Ww7G_JpBhOhXX07RDg','matrx-nav','matrx-nav matrix-nav new matrix matrix nav ','new-matrix/matrix-nav',1232664082,1232664082,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'matrx\'\'-\'\'nav\'\'matrix\'\'-\'\'nav\'\'new\'\'matrix\'\'matrix\'\'nav','000001000001000018000010'),('PBtmpl0000000000000063','Default Overview Report','Default Overview Report Default Overview Report root import survey default overview report ','root/import/survey/default_overview_report',1124395696,1233156264,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Overview\'\'Report\'\'Default\'\'Overview\'\'Report\'\'root\'\'import\'\'survey\'\'default\'\'overview\'\'report Survey\'\'/\'\'Overview','000001000001000039000001'),('PBtmpl0000000000000062','Default Gradebook Report','Default Gradebook Report Default Gradebook Report root import survey default gradebook report ','root/import/survey/default_gradebook_report',1124395696,1232981641,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Gradebook\'\'Report\'\'Default\'\'Gradebook\'\'Report\'\'root\'\'import\'\'survey\'\'default\'\'gradebook\'\'report Survey\'\'/\'\'Gradebook','000001000001000039000002'); -INSERT INTO `assetVersionTag` VALUES ('pbversion0000000000001','Base 7.6.10 Install',1,1233158082,'3',1233158082,'3',0,'','3','',NULL,NULL,NULL,NULL,0); +INSERT INTO `asset` VALUES ('PBasset000000000000001','infinity','000001','published','WebGUI::Asset',1124395696,'3','997995720','3',NULL,1,NULL),('PBasset000000000000002','PBasset000000000000001','000001000001','published','WebGUI::Asset::Wobject::Folder',1124395696,'3','997995720','3',NULL,1,NULL),('68sKwDgf9cGH58-NZcU4lg','PBasset000000000000001','000001000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('iCYOjohB9SKvAPr6bXElKA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000004','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('ix1p0AbwKAz8QWB-T-HHfg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000003','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('_iHetEvMQUOoxS-T2CM0sQ','68sKwDgf9cGH58-NZcU4lg','000001000002000001','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('FOvmwGC0GtZo5VTxJIL3OA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000002','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('8Bb8gu-me2mhL3ljFyiWLg','68sKwDgf9cGH58-NZcU4lg','000001000002000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('m4YJFaqzultnB_sj1Uq0aw','68sKwDgf9cGH58-NZcU4lg','000001000002000008','published','WebGUI::Asset::File',1147642514,'3','997995720','3',NULL,0,NULL),('IWFxZDyGhQ3-SLZhELa3qw','68sKwDgf9cGH58-NZcU4lg','000001000002000009','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('bX5rYxb6tZ9docY6sUhBlw','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000001','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('Vzv1pWpg_w6R_o-b0rM2qQ','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000002','published','WebGUI::Asset::File',1147642515,'3','997995720','3',NULL,0,NULL),('NK8bqlwVRILJknqeCDPBHg','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000003','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('6QuS-0rosuZTdTv11fobig','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000001','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('2TqQc4OISddWCZmRY1_m8A','68sKwDgf9cGH58-NZcU4lg','000001000002000003','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('fK-HMSboA3uu0c1KYkYspA','2TqQc4OISddWCZmRY1_m8A','000001000002000003000001','published','WebGUI::Asset::Wobject::SyndicatedContent',1124395696,'3','997995720','3',NULL,0,NULL),('Swf6L8poXKc7hUaNPkBevw','68sKwDgf9cGH58-NZcU4lg','000001000002000004','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('Szs5eev3OMssmnsyLRZmWA','Swf6L8poXKc7hUaNPkBevw','000001000002000004000001','published','WebGUI::Asset::Wobject::DataForm',1124395696,'3','997995720','3',NULL,0,NULL),('x3OFY6OJh_qsXkZfPwug4A','68sKwDgf9cGH58-NZcU4lg','000001000002000006','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('pJd5TLAjfWMVXD6sCRLwUg','x3OFY6OJh_qsXkZfPwug4A','000001000002000006000001','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000003','7-0-style0000000000001','000001000001000045000002','published','WebGUI::Asset::Snippet',1147642492,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000001','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000009','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000014','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000010','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000015','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000011','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000016','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000012','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000017','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000013','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000018','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000014','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000019','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000015','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000020','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000016','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000021','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000017','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000002','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000018','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000006','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000019','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000007','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000020','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000008','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000021','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000009','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000022','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000010','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000023','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000011','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000024','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000012','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000025','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000013','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000026','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('Wl8WZ43g2rK5AYr9o4zY7w','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000006','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('4Yfz9hqBqM8OYMGuQK8oLw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000005','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000005','7-0-style0000000000001','000001000001000045000004','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000006','7-0-style0000000000001','000001000001000045000005','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000103','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000084','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000002','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000115','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000066','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000080','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000097','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000112','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000121','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000067','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000026','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000128','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000079','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000009','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000083','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000010','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000082','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000011','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000056','TYo2Bwl7aafzTtdHlS-arQ','000001000001000025000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000135','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000131','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000054','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000024','tXwf1zaOXTvsqPn6yu-GSw','000001000001000011000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000088','tPagC0AQErZXjLFZQ6OI1g','000001000001000015000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000078','GYaFxnMu9UsEG8oanwB6TA','000001000001000012000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000125','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000118','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000109','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000094','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000133','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000012','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000065','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000055','VZK3CRgiMb8r4dBjUmCTgQ','000001000001000024000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000020','-K8Hj45mbelljN9-0CXZxg','000001000001000008000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000085','-K8Hj45mbelljN9-0CXZxg','000001000001000008000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000104','-K8Hj45mbelljN9-0CXZxg','000001000001000008000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000021','-K8Hj45mbelljN9-0CXZxg','000001000001000008000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000033','N13SD1Fpqk00UgBt1Z8ivQ','000001000001000014000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000047','cj2y4papTVGZRFdwTI-_fw','000001000001000020000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000029','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000013','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000032','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000014','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000027','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000015','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000031','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000016','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('jTNggl7AoVSUc_ZzrvuCmw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000008','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('LBuiKzg2mWwmOPS9AgV3bg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000007','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('GNvjCFQWjY2AF2uf0aCM8Q','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000068','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000017','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000099','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000018','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000114','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000019','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000092','V3l5S5TtI7wMm1WpIMhvOA','000001000001000018000009000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000044','V3l5S5TtI7wMm1WpIMhvOA','000001000001000018000009000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000059','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000036000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('IZkrow_zwvbf4FCH-taVTQ','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000002','published','WebGUI::Asset::Wobject::Folder',1226011853,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000207','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000007','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('QHn6T9rU7KsnS3Y70KCNTg','PBasset000000000000002','000001000001000001','published','WebGUI::Asset::Wobject::Folder',1227080251,'3','997995720','3',NULL,0,NULL),('HPDOcsj4gBme8D4svHodBw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000001','published','WebGUI::Asset::Wobject::Folder',1225404573,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000002','TCtybxdqmdwdvRn555zpCQ','000001000001000030000002','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000063','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000062','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000061','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000064','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000116','-K8Hj45mbelljN9-0CXZxg','000001000001000008000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000007','7-0-style0000000000001','000001000001000045000006','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000093','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000048','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000108','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000117','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000124','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000130','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000134','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000077','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000020','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000098','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000021','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000122','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000022','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000136','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000013','9M-lrlPQWeeNWfvnDnK_Xg','000001000001000004000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000010','K0q_N885Httqev1VCqUWxg','000001000001000004000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000011','fq1ZkYhH24R5tb96kuT10Q','000001000001000004000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000014','_gBYAdTcbkiyamnqi2Xskg','000001000001000004000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000012','oHk7fAFhEEkB7dHzi0QOQA','000001000001000004000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000006','taX2UYkFF21ALpFZY2rhMw','000001000001000004000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000004','xSmREZO3GNzK3M5PaueOOQ','000001000001000004000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000005','0bx-xoL8TSXXubFuqKAoVQ','000001000001000004000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000057','Ik9HHky10DIyFTKehUD1dw','000001000001000028000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000060','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('pbrobot000000000000001','PBasset000000000000002','000001000001000031','published','WebGUI::Asset::Snippet',1147642511,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000111','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000137','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000132','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000123','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000129','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000081','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000023','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000101','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000024','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000065','7-0-style0000000000049','000001000001000047000016','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('OhdaFLE7sXOzo_SIP2ZUgA','68sKwDgf9cGH58-NZcU4lg','000001000002000007','published','WebGUI::Asset::Wobject::Article',1147642513,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000113','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000025','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000037','GdkQpvjRtJqtzOUbwIIQRA','000001000001000018000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000038','tnc5iYyynX2hfdEs9D3P8w','000001000001000018000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000036','tBL7BWiQRZFed2Y-Zjo9tQ','000001000001000018000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000039','vgXdBcFTqU7h4wBG1ewdBw','000001000001000018000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000091','vgXdBcFTqU7h4wBG1ewdBw','000001000001000018000004000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000107','vgXdBcFTqU7h4wBG1ewdBw','000001000001000018000004000003','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000040','hcFlqnXlsmC1ujN6Id0F0A','000001000001000018000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000041','eRJR52fvlaxfetv3DQkQYw','000001000001000018000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000042','5HIDHq5lAWHV5gpYGS0zLg','000001000001000018000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000045','y8XkRdxIperLKkJ3bL5sSQ','000001000001000018000011000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000043','rYEFwXXo0tkGhQTcbDibvg','000001000001000018000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('7-0-style0000000000064','7-0-style0000000000049','000001000001000047000015','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000001','TCtybxdqmdwdvRn555zpCQ','000001000001000030000001','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000053','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000017','published','WebGUI::Asset::Template',1124395696,'3','1222802960','3',NULL,0,NULL),('PBtmpl0000000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000002000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000140','Da6KWn805L4B5e4HFgQRQA','000001000001000035000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000141','-K8Hj45mbelljN9-0CXZxg','000001000001000008000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000066','7-0-style0000000000049','000001000001000047000017','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000062','7-0-style0000000000049','000001000001000047000013','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000060','7-0-style0000000000049','000001000001000047000011','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000061','7-0-style0000000000049','000001000001000047000012','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000057','7-0-style0000000000049','000001000001000047000008','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000058','7-0-style0000000000049','000001000001000047000009','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000059','7-0-style0000000000049','000001000001000047000010','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000056','7-0-style0000000000049','000001000001000047000007','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000052','7-0-style0000000000049','000001000001000047000003','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000053','7-0-style0000000000049','000001000001000047000004','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000054','7-0-style0000000000049','000001000001000047000005','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000055','7-0-style0000000000049','000001000001000047000006','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('stevecoolmenu000000001','7-0-style0000000000049','000001000001000047000001','published','WebGUI::Asset::Template',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000051','7-0-style0000000000049','000001000001000047000002','published','WebGUI::Asset::Snippet',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000049','PBasset000000000000002','000001000001000047','published','WebGUI::Asset::Wobject::Folder',1147642504,'3','997995720','3',NULL,0,NULL),('stevestyle000000000002','7-0-style0000000000031','000001000001000046000016','published','WebGUI::Asset::Template',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000048','7-0-style0000000000031','000001000001000046000017','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000046','7-0-style0000000000031','000001000001000046000015','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000044','7-0-style0000000000031','000001000001000046000013','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000045','7-0-style0000000000031','000001000001000046000014','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000043','7-0-style0000000000031','000001000001000046000012','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000041','7-0-style0000000000031','000001000001000046000010','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000042','7-0-style0000000000031','000001000001000046000011','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000038','7-0-style0000000000031','000001000001000046000007','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000039','7-0-style0000000000031','000001000001000046000008','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000040','7-0-style0000000000031','000001000001000046000009','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000036','7-0-style0000000000031','000001000001000046000005','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000037','7-0-style0000000000031','000001000001000046000006','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000034','7-0-style0000000000031','000001000001000046000003','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000035','7-0-style0000000000031','000001000001000046000004','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000032','7-0-style0000000000031','000001000001000046000001','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000033','7-0-style0000000000031','000001000001000046000002','published','WebGUI::Asset::Snippet',1147642500,'3','997995720','3',NULL,0,NULL),('PBnav000000style01lvl2','7-0-style0000000000001','000001000001000045000028','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000030','7-0-style0000000000001','000001000001000045000029','published','WebGUI::Asset::File::Image',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000031','PBasset000000000000002','000001000001000046','published','WebGUI::Asset::Wobject::Folder',1147642500,'3','997995720','3',NULL,0,NULL),('stevenav00000000000001','7-0-style0000000000001','000001000001000045000027','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000025','7-0-style0000000000001','000001000001000045000024','published','WebGUI::Asset::Wobject::Navigation',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000026','7-0-style0000000000001','000001000001000045000025','published','WebGUI::Asset::Wobject::Navigation',1147642499,'3','997995720','3',NULL,0,NULL),('stevestyle000000000001','7-0-style0000000000001','000001000001000045000026','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000023','7-0-style0000000000001','000001000001000045000022','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000024','7-0-style0000000000001','000001000001000045000023','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000022','7-0-style0000000000001','000001000001000045000021','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000021','7-0-style0000000000001','000001000001000045000020','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000018','7-0-style0000000000001','000001000001000045000017','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000019','7-0-style0000000000001','000001000001000045000018','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000020','7-0-style0000000000001','000001000001000045000019','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000017','7-0-style0000000000001','000001000001000045000016','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000016','7-0-style0000000000001','000001000001000045000015','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000015','7-0-style0000000000001','000001000001000045000014','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000014','7-0-style0000000000001','000001000001000045000013','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000012','7-0-style0000000000001','000001000001000045000011','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000013','7-0-style0000000000001','000001000001000045000012','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000010','7-0-style0000000000001','000001000001000045000009','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000011','7-0-style0000000000001','000001000001000045000010','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000009','7-0-style0000000000001','000001000001000045000008','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000008','7-0-style0000000000001','000001000001000045000007','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000067','7-0-style0000000000049','000001000001000047000018','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBtmplHelp000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000002000002','published','WebGUI::Asset::Template',1124395706,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000001','PBasset000000000000002','000001000001000045','published','WebGUI::Asset::Wobject::Folder',1147642492,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000001','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000003','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000002','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000004','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000003','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000005','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000004','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000006','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000063','7-0-style0000000000049','000001000001000047000014','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000142','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000026','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('stevestyle000000000003','7-0-style0000000000049','000001000001000047000020','published','WebGUI::Asset::Template',1147642510,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000002','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000001','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000001','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000002','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000003','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000003','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000004','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000004','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000005','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000004','7-0-style0000000000001','000001000001000045000003','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000002','3uuBf8cYuj1sew2OJXl9tg','000001000001000016000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000001','3uuBf8cYuj1sew2OJXl9tg','000001000001000016000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('PBtmplBlankStyle000001','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('DashboardViewTmpl00001','S1A9iAwKcQQ6P20uTqw-Ew','000001000001000007000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('WeatherDataTmpl0000001','9wKWdum0_8z-OhhquWLtSQ','000001000001000044000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000002','Efe2W0UgrSRDltNJ87jlfg','000001000001000037000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000001','Efe2W0UgrSRDltNJ87jlfg','000001000001000037000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('MultiSearchTmpl0000001','bBzO4CWjqU_ile3gf5Iypw','000001000001000021000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000068','7-0-style0000000000049','000001000001000047000019','published','WebGUI::Asset::File::Image',1147642510,'3','997995720','3',NULL,0,NULL),('ZipArchiveTMPL00000001','CSN-ZON7Uwv8kxf3F1fh5Q','000001000001000049000001','published','WebGUI::Asset::Template',1133743240,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000002','7-0-style0000000000001','000001000001000045000001','published','WebGUI::Asset::File::Image',1147642492,'3','997995720','3',NULL,0,NULL),('WVtmpl0000000000000001','nqNbSUAhk9Vd1zda2SCz9A','000001000001000018000010000001','published','WebGUI::Asset::Template',1133743240,'3','1222803175','3',NULL,0,NULL),('2CS-BErrjMmESOtGT90qOg','HPDOcsj4gBme8D4svHodBw','000001000001000001000001000003','published','WebGUI::Asset::Template',1227070888,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000208','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000027','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000209','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000028','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000210','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000029','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('ProjectManagerTMPL0004','yD1SMHelczihzjEmx6eXBA','000001000001000027000002000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0003','pV7GnZdpjR3XpZaSINIoeg','000001000001000027000003000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0002','71e17KeduiXgODLMlUxiow','000001000001000027000004000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0001','9A-mg2gwWmaYi9o_1C7ArQ','000001000001000027000001000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('TimeTrackingTMPL000002','vTymIDYL2YqEh6PV50F7ew','000001000001000042000001000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000003','lo1ac3BsoJx3ijGQ3gR-bQ','000001000001000042000002000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000001','huASapWvFDzqwOSbcN-JFQ','000001000001000042000003000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('PBtmpl0000000000000200','f_tn9FfoSfKWX43F83v_3w','000001000001000032000001','published','WebGUI::Asset::Template',1147642427,'3','997995720','3',NULL,0,NULL),('PBasset000000000000003','PBasset000000000000001','000001000003','published','WebGUI::Asset::Wobject::Folder',1147642437,'3','997995720','3',NULL,1,NULL),('pbproto000000000000002','PBasset000000000000002','000001000001000029','published','WebGUI::Asset::Wobject::Collaboration',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000220','tXwf1zaOXTvsqPn6yu-GSw','000001000001000011000002','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000221','tXwf1zaOXTvsqPn6yu-GSw','000001000001000011000003','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('nbSrhXZQuxIjhWFaFPSuVA','PBasset000000000000002','000001000001000002','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('TvOZs8U1kRXLtwtmyW75pg','PBasset000000000000002','000001000001000003','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('xSmREZO3GNzK3M5PaueOOQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000001','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('0bx-xoL8TSXXubFuqKAoVQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000002','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('taX2UYkFF21ALpFZY2rhMw','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000003','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('K0q_N885Httqev1VCqUWxg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000004','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('fq1ZkYhH24R5tb96kuT10Q','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000005','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('oHk7fAFhEEkB7dHzi0QOQA','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000006','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('9M-lrlPQWeeNWfvnDnK_Xg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000007','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('_gBYAdTcbkiyamnqi2Xskg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000008','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('GNOAsX98vCsl0JRwfwL-gg','PBasset000000000000002','000001000001000006','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','997995720','3',NULL,0,NULL),('S1A9iAwKcQQ6P20uTqw-Ew','PBasset000000000000002','000001000001000007','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('-K8Hj45mbelljN9-0CXZxg','PBasset000000000000002','000001000001000008','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('tXwf1zaOXTvsqPn6yu-GSw','PBasset000000000000002','000001000001000011','published','WebGUI::Asset::Wobject::Folder',1147642469,'3','997995720','3',NULL,0,NULL),('GYaFxnMu9UsEG8oanwB6TA','PBasset000000000000002','000001000001000012','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('N13SD1Fpqk00UgBt1Z8ivQ','PBasset000000000000002','000001000001000014','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('tPagC0AQErZXjLFZQ6OI1g','PBasset000000000000002','000001000001000015','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('default_post_received1','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000030','published','WebGUI::Asset::Template',1222708029,'3','1222803001','3',NULL,0,NULL),('3uuBf8cYuj1sew2OJXl9tg','PBasset000000000000002','000001000001000016','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('aNNC62qLAS6TB-0_MCYjsw','PBasset000000000000002','000001000001000017','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','997995720','3',NULL,0,NULL),('tBL7BWiQRZFed2Y-Zjo9tQ','zyWi26q9na-iiZqL4yedog','000001000001000018000001','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('GdkQpvjRtJqtzOUbwIIQRA','zyWi26q9na-iiZqL4yedog','000001000001000018000002','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('tnc5iYyynX2hfdEs9D3P8w','zyWi26q9na-iiZqL4yedog','000001000001000018000003','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('vgXdBcFTqU7h4wBG1ewdBw','zyWi26q9na-iiZqL4yedog','000001000001000018000004','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('hcFlqnXlsmC1ujN6Id0F0A','zyWi26q9na-iiZqL4yedog','000001000001000018000005','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('eRJR52fvlaxfetv3DQkQYw','zyWi26q9na-iiZqL4yedog','000001000001000018000006','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('5HIDHq5lAWHV5gpYGS0zLg','zyWi26q9na-iiZqL4yedog','000001000001000018000007','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('rYEFwXXo0tkGhQTcbDibvg','zyWi26q9na-iiZqL4yedog','000001000001000018000008','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('V3l5S5TtI7wMm1WpIMhvOA','zyWi26q9na-iiZqL4yedog','000001000001000018000009','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('nqNbSUAhk9Vd1zda2SCz9A','zyWi26q9na-iiZqL4yedog','000001000001000018000010','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('y8XkRdxIperLKkJ3bL5sSQ','zyWi26q9na-iiZqL4yedog','000001000001000018000011','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('LdiozcIUciWuvt3Z-na5Ww','PBasset000000000000002','000001000001000019','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','997995720','3',NULL,0,NULL),('cj2y4papTVGZRFdwTI-_fw','PBasset000000000000002','000001000001000020','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('bBzO4CWjqU_ile3gf5Iypw','PBasset000000000000002','000001000001000021','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('BFfNj5wA9bDw8H3cnr8pTw','PBasset000000000000002','000001000001000022','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('AgyFhx3eXlfZXNp2MkrsiQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000026000001','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803652','3',NULL,0,NULL),('F7MAQ-cpuvQ1KuC7J4P5zQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000026000002','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803653','3',NULL,0,NULL),('jEz8iTGNWEt2I05IhVV19Q','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000016','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222802937','3',NULL,0,NULL),('VZK3CRgiMb8r4dBjUmCTgQ','PBasset000000000000002','000001000001000024','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','997995720','3',NULL,0,NULL),('TYo2Bwl7aafzTtdHlS-arQ','PBasset000000000000002','000001000001000025','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','997995720','3',NULL,0,NULL),('9A-mg2gwWmaYi9o_1C7ArQ','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000001','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('yD1SMHelczihzjEmx6eXBA','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000002','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('pV7GnZdpjR3XpZaSINIoeg','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000003','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('71e17KeduiXgODLMlUxiow','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000004','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','1222803147','3',NULL,0,NULL),('Ik9HHky10DIyFTKehUD1dw','PBasset000000000000002','000001000001000028','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('f_tn9FfoSfKWX43F83v_3w','PBasset000000000000002','000001000001000032','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('Da6KWn805L4B5e4HFgQRQA','PBasset000000000000002','000001000001000035','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('bbiA9Zq5Gy2oCFBlILO3QA','PBasset000000000000002','000001000001000036','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('Efe2W0UgrSRDltNJ87jlfg','PBasset000000000000002','000001000001000037','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('RrV4aAPnn4dM0ZcU3OXnlw','PBasset000000000000002','000001000001000038','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('5bnNzteN7w3NnK9mF4XiCg','PBasset000000000000002','000001000001000039','published','WebGUI::Asset::Wobject::Folder',1147642481,'3','997995720','3',NULL,0,NULL),('oGfxez5sksyB_PcaAsEm_Q','PBasset000000000000002','000001000001000040','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','997995720','3',NULL,0,NULL),('vTymIDYL2YqEh6PV50F7ew','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000001','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('lo1ac3BsoJx3ijGQ3gR-bQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000002','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('huASapWvFDzqwOSbcN-JFQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000003','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','1222803153','3',NULL,0,NULL),('9wKWdum0_8z-OhhquWLtSQ','PBasset000000000000002','000001000001000044','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','997995720','3',NULL,0,NULL),('CSN-ZON7Uwv8kxf3F1fh5Q','PBasset000000000000002','000001000001000049','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('TCtybxdqmdwdvRn555zpCQ','PBasset000000000000002','000001000001000030','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000070','7-0-style0000000000049','000001000001000047000021','published','WebGUI::Asset::Wobject::Navigation',1147642510,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000071','7-0-style0000000000049','000001000001000047000022','published','WebGUI::Asset::File::Image',1147642511,'3','997995720','3',NULL,0,NULL),('PBnav00000000000bullet','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000027','published','WebGUI::Asset::Template',1148579524,'3','1222803972','3',NULL,0,NULL),('PBnav00000000indentnav','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000028','published','WebGUI::Asset::Template',1148579525,'3','1222803972','3',NULL,0,NULL),('PBtmpl00000000table125','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000008','published','WebGUI::Asset::Template',1148579525,'3','1222803981','3',NULL,0,NULL),('PBtmpl00000000table094','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000009','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table131','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000010','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table135','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000011','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table118','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000012','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl000000000table54','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000013','published','WebGUI::Asset::Template',1154535074,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table109','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000014','published','WebGUI::Asset::Template',1154535074,'3','1222803982','3',NULL,0,NULL),('BmLaN4rmAANkCglXUViEbg','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000005','published','WebGUI::Asset::Wobject::Folder',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0006','BmLaN4rmAANkCglXUViEbg','000001000001000027000005000001','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0005','BmLaN4rmAANkCglXUViEbg','000001000001000027000005000002','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('Q4uX_C557arTp6D_jwB1jQ','PBasset000000000000002','000001000001000048','published','WebGUI::Asset::Wobject::Folder',1165460175,'3','997995720','3',NULL,0,NULL),('WikiRCTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000001','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiFrontTmpl000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000002','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiSearchTmpl00000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000003','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPHTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000004','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageTmpl0000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000005','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageEditTmpl000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000006','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiMPTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000007','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('SQLReportDownload00001','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000036000002','published','WebGUI::Asset::Template',1171466654,'3','1222803962','3',NULL,0,NULL),('X7DrzUcj8pOKFa_6k9D5iw','PBasset000000000000002','000001000001000023','published','WebGUI::Asset::Wobject::Folder',1185754569,'3','997995720','3',NULL,0,NULL),('newsletter000000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000001','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettercs0000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000002','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettersubscrip0001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000003','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('MBmWlA_YEA2I6D29OMGtRg','HPDOcsj4gBme8D4svHodBw','000001000001000001000001000004','published','WebGUI::Asset::Template',1226542675,'3','997995720','3',NULL,0,NULL),('FJbUTvZ2nUTn65LpW6gjsA','HPDOcsj4gBme8D4svHodBw','000001000001000001000001000001','published','WebGUI::Asset::Template',1227070381,'3','997995720','3',NULL,0,NULL),('WikiKeyword00000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000008','published','WebGUI::Asset::Template',1185754571,'3','1222803956','3',NULL,0,NULL),('tempspace0000000000000','PBasset000000000000001','000001000004','published','WebGUI::Asset::Wobject::Folder',1185754574,'3','997995720','3',NULL,1,NULL),('75CmQgpcCSkdsL-oawdn3Q','HPDOcsj4gBme8D4svHodBw','000001000001000001000001000002','published','WebGUI::Asset::Template',1227052575,'3','997995720','3',NULL,0,NULL),('gI_TxK-5S4DNuv42wpImmw','PBasset000000000000002','000001000001000013','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('jME5BEDYVDlBZ8jIQA9-jQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000001','published','WebGUI::Asset::Template',1197927169,'3','997995720','3',NULL,0,NULL),('azCqD0IjdQSlM3ar29k5Sg','gI_TxK-5S4DNuv42wpImmw','000001000001000013000002','published','WebGUI::Asset::Template',1197881748,'3','997995720','3',NULL,0,NULL),('05FpjceLYhq4csF1Kww1KQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000003','published','WebGUI::Asset::Template',1197879361,'3','997995720','3',NULL,0,NULL),('q5O62aH4pjUXsrQR3Pq4lw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000004','published','WebGUI::Asset::Template',1197825772,'3','997995720','3',NULL,0,NULL),('KAMdiUdJykjN02CPHpyZOw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000005','published','WebGUI::Asset::Template',1197825787,'3','997995720','3',NULL,0,NULL),('OkphOEdaSGTXnFGhK4GT5A','gI_TxK-5S4DNuv42wpImmw','000001000001000013000006','published','WebGUI::Asset::Template',1197825794,'3','997995720','3',NULL,0,NULL),('TEId5V-jEvUULsZA0wuRuA','gI_TxK-5S4DNuv42wpImmw','000001000001000013000007','published','WebGUI::Asset::Template',1197989443,'3','997995720','3',NULL,0,NULL),('6X-7Twabn5KKO_AbgK3PEw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000008','published','WebGUI::Asset::Template',1197987780,'3','997995720','3',NULL,0,NULL),('7JCTAiu1U_bT9ldr655Blw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000009','published','WebGUI::Asset::Template',1197825824,'3','997995720','3',NULL,0,NULL),('0X4Q3tBWUb_thsVbsYz9xQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000010','published','WebGUI::Asset::Template',1197987372,'3','997995720','3',NULL,0,NULL),('m3IbBavqzuKDd2PGGhKPlA','gI_TxK-5S4DNuv42wpImmw','000001000001000013000011','published','WebGUI::Asset::Template',1197825845,'3','997995720','3',NULL,0,NULL),('UTNFeV7B_aSCRmmaFCq4Vw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000012','published','WebGUI::Asset::Template',1197825856,'3','997995720','3',NULL,0,NULL),('zcX-wIUct0S_np14xxOA-A','gI_TxK-5S4DNuv42wpImmw','000001000001000013000013','published','WebGUI::Asset::Template',1197825866,'3','997995720','3',NULL,0,NULL),('MBZK_LPVzqhb4TV4mMRTJg','gI_TxK-5S4DNuv42wpImmw','000001000001000013000014','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_hELmIJfgbAyXFNqPyApxQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000015','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_9_eiaPgxzF_x_upt6-PNQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000016','published','WebGUI::Asset::Snippet',1197988920,'3','997995720','3',NULL,0,NULL),('kaPRSaf8UKiskiGEgJgLAw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000017','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('bANo8aiAPA7aY_oQZKxIWw','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000001','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('2ci_v2d4x4uvyjTRlC49OA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000002','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('O-EsSzKgAk1KolFT-x_KsA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000003','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('fdd8tGExyVwHyrB8RBbKXg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000004','published','WebGUI::Asset::File::Image',1197330839,'3','997995720','3',NULL,0,NULL),('BpisgHl4ZDcSECJp6oib1w','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000005','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('zshreRgPAXtnF0DtVbQ1Yg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000006','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('mM3bjP_iG9sv5nQb4S17tQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000018','published','WebGUI::Asset::Template',1197879662,'3','997995720','3',NULL,0,NULL),('ilu5BrM-VGaOsec9Lm7M6Q','gI_TxK-5S4DNuv42wpImmw','000001000001000013000019','published','WebGUI::Asset::Template',1197878780,'3','997995720','3',NULL,0,NULL),('-ANLpoTEP-n4POAdRxCzRw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000020','published','WebGUI::Asset::Template',1197880641,'3','997995720','3',NULL,0,NULL),('OxJWQgnGsgyGohP2L3zJPQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000021','published','WebGUI::Asset::Template',1204663962,'3','997995720','3',NULL,0,NULL),('Tsg7xmPYv782j6IVz7yHFg','PBasset000000000000002','000001000001000005','published','WebGUI::Asset::Wobject::Folder',1204890713,'3','997995720','3',NULL,0,NULL),('kj3b-X3i6zRKnhLb4ZiCLw','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000001','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('uRL9qtk7Rb0YRJ41LmHOJw','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000002','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarWeek0000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000003','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarDay00000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000004','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEvent000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000005','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEventEdit00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000006','published','WebGUI::Asset::Template',1205160982,'3','997995720','3',NULL,0,NULL),('CalendarMonth000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000007','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarSearch00000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000008','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarPrintEvent0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000009','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintMonth0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000010','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintWeek00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000011','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintDay000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000012','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('jnYdqDkUR8x7Pv2eGR1qTA','PBasset000000000000002','000001000001000041','published','WebGUI::Asset::Wobject::Folder',1205431513,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000001','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000001','published','WebGUI::Asset::Template',1205003608,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000002','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000002','published','WebGUI::Asset::Template',1205003676,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000003','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000003','published','WebGUI::Asset::Template',1205003711,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000004','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000004','published','WebGUI::Asset::Template',1205158717,'3','997995720','3',NULL,0,NULL),('7fE8md51vTCcuJFOvxNaGA','gI_TxK-5S4DNuv42wpImmw','000001000001000013000022','published','WebGUI::Asset::Snippet',1205443600,'3','997995720','3',NULL,0,NULL),('1oGhfj00KkCzP1ez01AfKA','gI_TxK-5S4DNuv42wpImmw','000001000001000013000023','published','WebGUI::Asset::Snippet',1205635970,'3','997995720','3',NULL,0,NULL),('3qiVYhNTXMVC5hfsumVHgg','gI_TxK-5S4DNuv42wpImmw','000001000001000013000024','published','WebGUI::Asset::Snippet',1206743306,'3','997995720','3',NULL,0,NULL),('vrKXEtluIhbmAS9xmPukDA','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000010','published','WebGUI::Asset::Template',1212092352,'3','1222802925','3',NULL,0,NULL),('4qh0kIsFUdd4Ox-Iu1JZgg','PBasset000000000000002','000001000001000010','published','WebGUI::Asset::Wobject::Folder',1208725439,'3','997995720','3',NULL,0,NULL),('BMybD3cEnmXVk2wQ_qEsRQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000001','published','WebGUI::Asset::Template',1208530113,'3','997995720','3',NULL,0,NULL),('OOyMH33plAy6oCj_QWrxtg','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000002','published','WebGUI::Asset::Template',1207951375,'3','997995720','3',NULL,0,NULL),('2rC4ErZ3c77OJzJm7O5s3w','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000003','published','WebGUI::Asset::Template',1208721232,'3','997995720','3',NULL,0,NULL),('PsFn7dJt4wMwBa8hiE3hOA','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000004','published','WebGUI::Asset::Template',1208558071,'3','997995720','3',NULL,0,NULL),('yBwydfooiLvhEFawJb0VTQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000005','published','WebGUI::Asset::Template',1208629936,'3','997995720','3',NULL,0,NULL),('63ix2-hU0FchXGIWkG3tow','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000011','published','WebGUI::Asset::Template',1209588387,'3','1222802925','3',NULL,0,NULL),('POVcY79vIqAHR8OfGt36aw','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000007','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('hIB-z34r8Xl-vYVYCkKr-w','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000008','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('-mPUoFlYcjqjPUPRLAlxNQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000009','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MDpUOR-N8KMyt1J7Hh_h4w','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000010','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('YfXKByTwDZVituMc4h13Dg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000011','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('esko_HSU0Gh-uJZ1h3xRmQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000012','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('oSqpGswzpBG_ErdfYwIO8A','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000013','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MXJklShZvLLB_DSnZQmXrQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000014','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('BthxD5oJ0idmsyI3ioA2FA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000015','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('aZ-1HYQamkRHYXvzAra8WQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000016','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('eRkb94OYcS5AdcrrerOP5Q','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000017','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TbnkjAJQEASORXIpYqDkcA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000018','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('er-3faBjY-hhlDcc5aKqdQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000019','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('8bFsu2FJUqHRUiHcozcVFw','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000020','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('34Aayx5eA320D8VfhdfDBw','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000021','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TlhKOVmWblZOsAdqmhEpeg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000022','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('Nx0ypjO3cN6QdZUBUEE0lA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000023','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('CmFZLN7iPS7XXvUEsxKPKA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000024','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('v_XBgwwZqgW1D5s4y05qfg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000025','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('4TdAkKoQbSCvI7QWcW889A','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000026','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('SAgK6eDPCG1cgkJ59WapHQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000027','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('XJYLuvGy9ubF7JNKyINtpA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000028','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('RWj7hyv2SpZuXxwj1Wocug','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000029','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('aq8QElnlm3YufAoxRz9Pcg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000030','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('gbnRhcWNk1iQe32LFEB5eQ','PBasset000000000000002','000001000001000033','published','WebGUI::Asset::Wobject::Folder',1210779723,'3','997995720','3',NULL,0,NULL),('6tK47xsaIH-ELw0IBo0uRQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000001','published','WebGUI::Asset::Wobject::Folder',1210777115,'3','997995720','3',NULL,0,NULL),('_bZJ9LA_KNekZiFPaP2SeQ','6tK47xsaIH-ELw0IBo0uRQ','000001000001000033000001000001','published','WebGUI::Asset::File::Image',1210777868,'3','997995720','3',NULL,0,NULL),('nFen0xjkZn8WkpM93C9ceQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000002','published','WebGUI::Asset::Template',1210779326,'3','997995720','3',NULL,0,NULL),('1XOJDcg_ITRYwVM-QnIcPw','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000003','published','WebGUI::Asset::Snippet',1210779441,'3','997995720','3',NULL,0,NULL),('4e-_rNs6mSWedZhQ_V5kJA','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000004','published','WebGUI::Asset::Snippet',1210779672,'3','997995720','3',NULL,0,NULL),('eqb9sWjFEVq0yHunGV8IGw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000012','published','WebGUI::Asset::Template',1213182595,'3','1222802925','3',NULL,0,NULL),('6D4Z-oruXPS6OlH_Kx8pBg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000005','published','WebGUI::Asset::Wobject::Folder',1209509389,'3','997995720','3',NULL,0,NULL),('hQ7z33_jOYkQ8WNX5xy9Sw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000001','published','WebGUI::Asset::File::Image',1209509455,'3','997995720','3',NULL,0,NULL),('vWW_DcHiYSrKZOkkIfEfcQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000002','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('_bPYzRA87NTAUIKlfrJMHg','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000003','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('nJjZHRwdDs5MAZYsAyioHw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000004','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8hxfkrJPeFVRWF5piCNJ1A','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000005','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('Osx7WN52iIKHZFT4vqUBHQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000006','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('oWff8fGzRdHPyq5VNREe9Q','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000007','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('uqbkvb1b9443VvfkyRz95w','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000008','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8YiMkcz32xalkAn3WBLpag','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000009','published','WebGUI::Asset::File::Image',1210181860,'3','997995720','3',NULL,0,NULL),('3n3H85BsdeRQ0I08WmvlOg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000006','published','WebGUI::Asset::Snippet',1212091492,'3','997995720','3',NULL,0,NULL),('5m5I7__l40C4hhv4ydqAHQ','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000007','published','WebGUI::Asset::Snippet',1210181698,'3','997995720','3',NULL,0,NULL),('C5fPz-Wg85vkYRvCdl-Xqw','PBasset000000000000002','000001000001000043','published','WebGUI::Asset::Wobject::Folder',1212160830,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000001','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000001','published','WebGUI::Asset::Template',1212159641,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000002','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000002','published','WebGUI::Asset::Template',1212000800,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000003','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000003','published','WebGUI::Asset::Template',1212001437,'3','997995720','3',NULL,0,NULL),('usuxw9V3jN4d4pujRiEYxg','7-0-style0000000000049','000001000001000047000023','published','WebGUI::Asset::Snippet',1209494150,'3','997995720','3',NULL,0,NULL),('aNmgn0cd6tldmC1FpW4KbA','PBasset000000000000002','000001000001000034','published','WebGUI::Asset::Wobject::Folder',1213122695,'3','997995720','3',NULL,0,NULL),('2q5fxatSFLgIhXaUX-oSvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000001','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('_d5WTkKjnwct-_Dk7gZHvQ','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000002','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('Iz2mUR3jCPKyemwAea4b2g','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000003','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('JU9bjsLRoWj7GVHs__prig','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000004','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('noOlnjQGexHg8c4bGVUo9g','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000005','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('aIpCmr9Hi__vgdZnDTz1jw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000006','published','WebGUI::Asset::Template',1209921197,'3','997995720','3',NULL,0,NULL),('XNd7a_g_cTvJVYrVHcx2Mw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000007','published','WebGUI::Asset::Template',1212099009,'3','997995720','3',NULL,0,NULL),('2gtFt7c0qAFNU3BG_uvNvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000008','published','WebGUI::Asset::Template',1211824430,'3','997995720','3',NULL,0,NULL),('bPz1yk6Y9uwMDMBcmMsSCg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000009','published','WebGUI::Asset::Template',1211829604,'3','997995720','3',NULL,0,NULL),('3womoo7Teyy2YKFa25-MZg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000013','published','WebGUI::Asset::Template',1212098997,'3','1222802925','3',NULL,0,NULL),('EBlxJpZQ9o-8VBOaGQbChA','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000014','published','WebGUI::Asset::Template',1212093746,'3','1222802925','3',NULL,0,NULL),('g8W53Pd71uHB9pxaXhWf_A','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000015','published','WebGUI::Asset::Template',1213184121,'3','1222802925','3',NULL,0,NULL),('mTOiwwk3q4k9g5-XykXhPA','68sKwDgf9cGH58-NZcU4lg','000001000002000005','published','WebGUI::Asset::Wobject::Layout',1215717999,'3','1215733893','3',NULL,0,NULL),('j_1qEqM6iLfQLiR6VKy0aA','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000001','published','WebGUI::Asset::Wobject::Article',1215718151,'3','1215733893','3',NULL,0,NULL),('o_pq_e4vRyhMOKFzs61eag','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000002','published','WebGUI::Asset::File::Image',1215714957,'3','1215733893','3',NULL,0,NULL),('diZvW4bSgZWwyyGP3qXi1g','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000003','published','WebGUI::Asset::Wobject::Article',1215717972,'3','1215733893','3',NULL,0,NULL),('PBEmsBadgeTemplate0000','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000006','published','WebGUI::Asset::Template',1221077977,'3','1222802972','3',NULL,0,NULL),('-WM2dt0ZGpDasuL2wWocxg','PBasset000000000000002','000001000001000027','published','WebGUI::Asset::Wobject::Folder',1222803056,'3','997995720','3',NULL,0,NULL),('2OcUWHVsu_L1sDFzIMWYqw','PBasset000000000000002','000001000001000042','published','WebGUI::Asset::Wobject::Folder',1222803070,'3','997995720','3',NULL,0,NULL),('1z9J1O08n_7gVVlBwSRBJQ','PBasset000000000000002','000001000001000004','published','WebGUI::Asset::Wobject::Folder',1222803099,'3','997995720','3',NULL,0,NULL),('zyWi26q9na-iiZqL4yedog','PBasset000000000000002','000001000001000018','published','WebGUI::Asset::Wobject::Folder',1222803114,'3','997995720','3',NULL,0,NULL),('NywJYmGWe1f6EBXJnWg9Xg','PBasset000000000000002','000001000001000026','published','WebGUI::Asset::Wobject::Folder',1222803606,'3','997995720','3',NULL,0,NULL),('UL-ItI4L1Z6-WSuhuXVvsQ','PBasset000000000000002','000001000001000009','published','WebGUI::Asset::Wobject::Folder',1225139673,'3','997995720','3',NULL,0,NULL),('3rjnBVJRO6ZSkxlFkYh_ug','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000009000001','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('TuYPpHx7TUyk08639Pc8Bg','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000009000002','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('THQhn1C-ooj-TLlEP7aIJQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000025','published','WebGUI::Asset::Snippet',1225313951,'3','1234301624','3',NULL,0,NULL),('jVKLVakT_iA2010_oEuAwg','7-0-style0000000000049','000001000001000047000024','published','WebGUI::Asset::Wobject::Navigation',1224116526,'3','997995720','3',NULL,0,NULL),('QpmlAiYZz6VsKBM-_0wXaw','zyWi26q9na-iiZqL4yedog','000001000001000018000012','published','WebGUI::Asset::Wobject::Folder',1224616691,'3','1234301591','3',NULL,0,NULL),('h_T2xtOxGRQ9QJOR6ebLpQ','QpmlAiYZz6VsKBM-_0wXaw','000001000001000018000012000001','published','WebGUI::Asset::Template',1224616545,'3','1234301591','3',NULL,0,NULL),('4Ekp0kJoJllRRRo_J1Rj6w','QpmlAiYZz6VsKBM-_0wXaw','000001000001000018000012000002','published','WebGUI::Asset::Template',1224616672,'3','1234301591','3',NULL,0,NULL),('gfZOwaTWYjbSoVaQtHBBEw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000001','published','WebGUI::Asset::Template',1226974679,'3','997995720','3',NULL,0,NULL),('c8xrwVuu5QE0XtF9DiVzLw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000002','published','WebGUI::Asset::Template',1226894351,'3','997995720','3',NULL,0,NULL),('0n4HtbXaWa_XJHkFjetnLQ','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000003','published','WebGUI::Asset::Template',1226894994,'3','997995720','3',NULL,0,NULL),('ErEzulFiEKDkaCDVmxUavw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000004','published','WebGUI::Asset::Template',1226895484,'3','997995720','3',NULL,0,NULL),('6uQEULvXFgCYlRWnYzZsuA','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000005','published','WebGUI::Asset::Template',1226896682,'3','997995720','3',NULL,0,NULL),('DUoxlTBXhVS-Zl3CFDpt9g','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000006','published','WebGUI::Asset::Template',1226896802,'3','997995720','3',NULL,0,NULL),('1Q4Je3hKCJzeo0ZBB5YB8g','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000007','published','WebGUI::Asset::Template',1226898445,'3','997995720','3',NULL,0,NULL),('5A8Hd9zXvByTDy4x-H28qw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000008','published','WebGUI::Asset::Template',1226899462,'3','997995720','3',NULL,0,NULL),('VBkY05f-E3WJS50WpdKd1Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000009','published','WebGUI::Asset::Template',1226899241,'3','997995720','3',NULL,0,NULL),('XgcsoDrbC0duVla7N7JAdw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000010','published','WebGUI::Asset::Template',1226973330,'3','997995720','3',NULL,0,NULL),('cR0UFm7I1qUI2Wbpj--08Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000011','published','WebGUI::Asset::Template',1226964738,'3','997995720','3',NULL,0,NULL),('SVIhz68689hwUGgcDM-gWw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000012','published','WebGUI::Asset::Template',1226973314,'3','997995720','3',NULL,0,NULL),('K0YjxqOqr7RupSo6sIdcAg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000003','published','WebGUI::Asset::Wobject::Folder',1227074310,'3','997995720','3',NULL,0,NULL),('zrNpGbT3odfIkg6nFSUy8Q','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000001','published','WebGUI::Asset::Template',1226994016,'3','997995720','3',NULL,0,NULL),('1Yn_zE_dSiNuaBGNLPbxtw','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000002','published','WebGUI::Asset::Template',1226994422,'3','997995720','3',NULL,0,NULL),('AZFU33p0jpPJ-E6qLSWZng','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000003','published','WebGUI::Asset::Template',1226994865,'3','997995720','3',NULL,0,NULL),('AGJBGviWGAwjnwziiPjvDg','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000004','published','WebGUI::Asset::Template',1226995497,'3','997995720','3',NULL,0,NULL),('7Ijdd8SW32lVgg2H8R-Aqw','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000005','published','WebGUI::Asset::Template',1226995714,'3','997995720','3',NULL,0,NULL),('K8F0j_cq_jgo8dvWY_26Ag','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000006','published','WebGUI::Asset::Template',1226995643,'3','997995720','3',NULL,0,NULL),('G5V6neXIDiFXN05oL-U3AQ','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000007','published','WebGUI::Asset::Template',1226995768,'3','997995720','3',NULL,0,NULL),('_ilRXNR3s8F2vGJ_k9ePcg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000004','published','WebGUI::Asset::Wobject::Folder',1226643205,'3','997995720','3',NULL,0,NULL),('9ThW278DWLV0-Svf68ljFQ','_ilRXNR3s8F2vGJ_k9ePcg','000001000001000001000004000001','published','WebGUI::Asset::Template',1226647187,'3','997995720','3',NULL,0,NULL),('AOjPG2NHgfL9Cq6dDJ7mew','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000005','published','WebGUI::Asset::Wobject::Folder',1226659753,'3','997995720','3',NULL,0,NULL),('aUDsJ-vB9RgP-AYvPOy8FQ','AOjPG2NHgfL9Cq6dDJ7mew','000001000001000001000005000001','published','WebGUI::Asset::Template',1226660439,'3','997995720','3',NULL,0,NULL),('qaVcU0FFzzraMX_bzELqzw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000006','published','WebGUI::Asset::Wobject::Folder',1227074362,'3','997995720','3',NULL,0,NULL),('b4n3VyUIsAHyIvT-W-jziA','qaVcU0FFzzraMX_bzELqzw','000001000001000001000006000001','published','WebGUI::Asset::Template',1227074747,'3','997995720','3',NULL,0,NULL),('1IzRpX0tgW7iuCfaU2Kk0A','qaVcU0FFzzraMX_bzELqzw','000001000001000001000006000002','published','WebGUI::Asset::Template',1227079721,'3','997995720','3',NULL,0,NULL),('N716tpSna0iIQTKxS4gTWA','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000007','published','WebGUI::Asset::Template',1226604666,'3','997995720','3',NULL,0,NULL),('GRUNFctldUgop-qRLuo_DA','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000005','published','WebGUI::Asset::Template',1227254010,'3','997995720','3',NULL,0,NULL),('d8jMMMRddSQ7twP4l1ZSIw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000006','published','WebGUI::Asset::Template',1227248175,'3','997995720','3',NULL,0,NULL),('CxMpE_UPauZA3p8jdrOABw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000007','published','WebGUI::Asset::Template',1227556536,'3','997995720','3',NULL,0,NULL),('1oBRscNIcFOI-pETrCOspA','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000008','published','WebGUI::Asset::Template',1226009642,'3','997995720','3',NULL,0,NULL),('wAc4azJViVTpo-2NYOXWvg','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000009','published','WebGUI::Asset::Template',1226009650,'3','997995720','3',NULL,0,NULL),('AjhlNO3wZvN5k4i4qioWcg','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000010','published','WebGUI::Asset::Template',1226009658,'3','997995720','3',NULL,0,NULL),('itransact_credentials1','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000018','published','WebGUI::Asset::Template',1228953856,'3','1234301682','3',NULL,0,NULL),('hkj6WeChxFyqfP85UlRP8w','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000006','published','WebGUI::Asset::Snippet',1232664229,'3','997995720','3',NULL,0,NULL),('kJf77eCr9GAMiEzWrzsBTA','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000007','published','WebGUI::Asset::Snippet',1229639255,'3','997995720','3',NULL,0,NULL),('4LQT4-bGW4FkiEQLSY5gvQ','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000008','published','WebGUI::Asset::Snippet',1232400287,'3','997995720','3',NULL,0,NULL),('alraubvBu-YJJ614jAHD5w','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000009','published','WebGUI::Asset::Template',1232664015,'3','997995720','3',NULL,0,NULL),('Vch1Ww7G_JpBhOhXX07RDg','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000010','published','WebGUI::Asset::Wobject::Navigation',1232664082,'3','997995720','3',NULL,0,NULL),('_XfvgNH__bY1ykMiKYSobQ','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000008','published','WebGUI::Asset::Snippet',1233168041,'3','997995720','3',NULL,0,NULL),('HW-sPoDDZR8wBZ0YgFgPtg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000009','published','WebGUI::Asset::Wobject::Folder',1227634350,'3','997995720','3',NULL,0,NULL),('hBpisL-_URyZnh9clR5ohA','HW-sPoDDZR8wBZ0YgFgPtg','000001000001000001000009000001','published','WebGUI::Asset::File::Image',1227634417,'3','997995720','3',NULL,0,NULL),('FOBV6KkifreXa4GmEAUU4A','HW-sPoDDZR8wBZ0YgFgPtg','000001000001000001000009000002','published','WebGUI::Asset::File::Image',1227634447,'3','997995720','3',NULL,0,NULL),('qsG6B24a0SC5KrhQjmdZBw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000011','published','WebGUI::Asset::Snippet',1233860274,'3','1234301655','3',NULL,0,NULL),('wrq7hMxb1ewQqZ46xmd8Gg','PBasset000000000000002','000001000001000050','published','WebGUI::Asset::Snippet',1235706620,'3','997995720','3',NULL,0,NULL); +INSERT INTO `assetData` VALUES ('PBasset000000000000001',1124395696,'3','pbversion0000000000001','approved','Root','Root','root','3','7','3',NULL,0,1,0,0,0,142,NULL,0,1,0,1124395696),('PBasset000000000000002',1124395696,'3','pbversion0000000000001','approved','Import Node','Import','root/import','3','7','12',NULL,0,1,0,0,0,269,NULL,0,1,0,1124395696),('68sKwDgf9cGH58-NZcU4lg',1124395696,'3','pbversion0000000000001','approved','Home','Home','home','3','7','3',NULL,0,0,0,0,0,299,NULL,0,1,0,1124395696),('_iHetEvMQUOoxS-T2CM0sQ',1124395696,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started','3','7','3',NULL,0,0,0,0,0,315,NULL,0,1,0,1124395696),('8Bb8gu-me2mhL3ljFyiWLg',1124395696,'3','pbversion0000000000001','approved','What should you do next?','Your Next Step','your_next_step','3','7','3',NULL,0,0,0,0,0,484,NULL,0,1,0,1124395696),('Vzv1pWpg_w6R_o-b0rM2qQ',1147642515,'3','pbversion0000000000001','approved','Ad','Ad','home/ad2','3','7','4',NULL,0,1,0,0,0,2155177,NULL,0,1,0,1147642515),('NK8bqlwVRILJknqeCDPBHg',1147642515,'3','pbversion0000000000001','approved','Getting Started (part 2)','Getting Started (part 2)','getting_started/getting-started-part2','3','7','4',NULL,0,1,0,0,0,1660,NULL,0,1,0,1147642515),('6QuS-0rosuZTdTv11fobig',1147642515,'3','pbversion0000000000001','approved','Talk to the Experts','Talk to the Experts','yns/experts','3','7','4',NULL,0,1,0,0,0,670,NULL,0,1,0,1147642515),('ix1p0AbwKAz8QWB-T-HHfg',1147642516,'3','pbversion0000000000001','approved','Get Support','Get Support','yns/support','3','7','4',NULL,0,1,0,0,0,706,NULL,0,1,0,1147642516),('iCYOjohB9SKvAPr6bXElKA',1147642516,'3','pbversion0000000000001','approved','Get Hosting','Get Hosting','yns/hosting','3','7','4',NULL,0,1,0,0,0,662,NULL,0,1,0,1147642516),('4Yfz9hqBqM8OYMGuQK8oLw',1147642516,'3','pbversion0000000000001','approved','Get Features','Get Features','yns/features','3','7','4',NULL,0,1,0,0,0,739,NULL,0,1,0,1147642516),('Wl8WZ43g2rK5AYr9o4zY7w',1147642516,'3','pbversion0000000000001','approved','Get Style','Get Style','yns/style','3','7','4',NULL,0,1,0,0,0,572,NULL,0,1,0,1147642516),('LBuiKzg2mWwmOPS9AgV3bg',1147642517,'3','pbversion0000000000001','approved','Get Translated','Get Translated','yns/translated','3','7','4',NULL,0,1,0,0,0,695,NULL,0,1,0,1147642517),('jTNggl7AoVSUc_ZzrvuCmw',1147642517,'3','pbversion0000000000001','approved','Get Promoted','Get Promoted','yns/promotion','3','7','4',NULL,0,1,0,0,0,688,NULL,0,1,0,1147642517),('2TqQc4OISddWCZmRY1_m8A',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news','3','7','3',NULL,0,0,0,0,0,315,NULL,0,1,0,1124395696),('fK-HMSboA3uu0c1KYkYspA',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news/the_latest_news','3','7','3',NULL,0,1,0,0,0,481,NULL,0,1,0,1124395696),('Swf6L8poXKc7hUaNPkBevw',1124395696,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend','3','7','3',NULL,0,0,0,0,0,309,NULL,0,1,0,1124395696),('x3OFY6OJh_qsXkZfPwug4A',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map','3','7','3',NULL,0,0,0,0,0,294,NULL,0,1,0,1124395696),('pJd5TLAjfWMVXD6sCRLwUg',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map/site_map','3','7','3',NULL,0,1,0,0,0,331,NULL,0,1,0,1124395696),('7-0-style0000000000003',1147642492,'3','pbversion0000000000001','approved','css01.css','css01.css','style1/css01.css','3','7','12',NULL,0,0,0,0,0,4896,NULL,0,1,0,1147642492),('PBnav00000000000000001',1124395696,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail','3','7','12',NULL,0,1,0,0,0,516,NULL,0,1,0,1124395696),('PBnav00000000000000014',1124395696,'3','pbversion0000000000001','approved','FlexMenu','FlexMenu','flexmenu','3','7','12',NULL,0,1,0,0,0,498,NULL,0,1,0,1124395696),('PBnav00000000000000015',1124395696,'3','pbversion0000000000001','approved','currentMenuVertical','currentMenuVertical','currentmenuvertical','3','7','12',NULL,0,1,0,0,0,539,NULL,0,1,0,1124395696),('PBnav00000000000000016',1124395696,'3','pbversion0000000000001','approved','currentMenuHorizontal','currentMenuHorizontal','currentmenuhorizontal','3','7','12',NULL,0,1,0,0,0,545,NULL,0,1,0,1124395696),('PBnav00000000000000017',1124395696,'3','pbversion0000000000001','approved','PreviousDropMenu','PreviousDropMenu','previousdropmenu','3','7','12',NULL,0,1,0,0,0,533,NULL,0,1,0,1124395696),('PBnav00000000000000018',1124395696,'3','pbversion0000000000001','approved','previousMenuVertical','previousMenuVertical','previousmenuvertical','3','7','12',NULL,0,1,0,0,0,543,NULL,0,1,0,1124395696),('PBnav00000000000000019',1124395696,'3','pbversion0000000000001','approved','previousMenuHorizontal','previousMenuHorizontal','previousmenuhorizontal','3','7','12',NULL,0,1,0,0,0,549,NULL,0,1,0,1124395696),('PBnav00000000000000020',1124395696,'3','pbversion0000000000001','approved','rootmenu','rootmenu','rootmenu','3','7','12',NULL,0,1,0,0,0,500,NULL,0,1,0,1124395696),('PBnav00000000000000021',1124395696,'3','pbversion0000000000001','approved','SpecificDropMenu','SpecificDropMenu','specificdropmenu','3','7','12',NULL,0,1,0,0,0,524,NULL,0,1,0,1124395696),('PBnav00000000000000002',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuVertical','SpecificSubMenuVertical','specificsubmenuvertical','3','7','12',NULL,0,1,0,0,0,545,NULL,0,1,0,1124395696),('PBnav00000000000000006',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal','specificsubmenuhorizontal','3','7','12',NULL,0,1,0,0,0,551,NULL,0,1,0,1124395696),('PBnav00000000000000007',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuVertical','TopLevelMenuVertical','toplevelmenuvertical','3','7','12',NULL,0,1,0,0,0,536,NULL,0,1,0,1124395696),('PBnav00000000000000008',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuHorizontal','TopLevelMenuHorizontal','toplevelmenuhorizontal','3','7','12',NULL,0,1,0,0,0,542,NULL,0,1,0,1124395696),('PBnav00000000000000009',1124395696,'3','pbversion0000000000001','approved','RootTab','RootTab','roottab','3','7','12',NULL,0,1,0,0,0,497,NULL,0,1,0,1124395696),('PBnav00000000000000010',1124395696,'3','pbversion0000000000001','approved','TopDropMenu','TopDropMenu','topdropmenu','3','7','12',NULL,0,1,0,0,0,483,NULL,0,1,0,1124395696),('PBnav00000000000000011',1124395696,'3','pbversion0000000000001','approved','dtree','dtree','dtree','3','7','12',NULL,0,1,0,0,0,497,NULL,0,1,0,1124395696),('PBnav00000000000000012',1124395696,'3','pbversion0000000000001','approved','coolmenu','coolmenu','coolmenu','3','7','12',NULL,0,1,0,0,0,501,NULL,0,1,0,1124395696),('PBnav00000000000000013',1124395696,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis','3','7','12',NULL,0,1,0,0,0,512,NULL,0,1,0,1124395696),('7-0-style0000000000006',1147642493,'3','pbversion0000000000001','approved','main_bg.gif','main_bg.gif','style1/main_bg.gif','3','7','12',NULL,0,0,0,0,0,1990,NULL,0,1,0,1147642493),('PBrichedit000000000002',1124395696,'3','pbversion0000000000001','approved','Forum Rich Edit','Forum Rich Edit','forum_rich_edit','3','7','12',NULL,0,0,0,0,0,246,NULL,0,1,0,1124395696),('7-0-style0000000000068',1147642510,'3','pbversion0000000000001','approved','spacer.gif','spacer.gif','style3/spacer.gif','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1147642510),('7-0-style0000000000066',1147642509,'3','pbversion0000000000001','approved','nav_bg_on.jpg','nav_bg_on.jpg','style3/nav_bg_on.jpg','3','7','12',NULL,0,0,0,0,0,647,NULL,0,1,0,1147642509),('7-0-style0000000000067',1147642509,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style3/pb.jpg','3','7','12',NULL,0,0,0,0,0,24970,NULL,0,1,0,1147642509),('7-0-style0000000000062',1147642508,'3','pbversion0000000000001','approved','nav_bg1.jpg','nav_bg1.jpg','style3/nav_bg1.jpg','3','7','12',NULL,0,0,0,0,0,661,NULL,0,1,0,1147642508),('7-0-style0000000000063',1147642508,'3','pbversion0000000000001','approved','nav_bg1_on.jpg','nav_bg1_on.jpg','style3/nav_bg1_on.jpg','3','7','12',NULL,0,0,0,0,0,672,NULL,0,1,0,1147642508),('7-0-style0000000000064',1147642509,'3','pbversion0000000000001','approved','nav_bg2.jpg','nav_bg2.jpg','style3/nav_bg2.jpg','3','7','12',NULL,0,0,0,0,0,664,NULL,0,1,0,1147642509),('7-0-style0000000000065',1147642509,'3','pbversion0000000000001','approved','nav_bg2_on.jpg','nav_bg2_on.jpg','style3/nav_bg2_on.jpg','3','7','12',NULL,0,0,0,0,0,677,NULL,0,1,0,1147642509),('7-0-style0000000000061',1147642508,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style3/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,658,NULL,0,1,0,1147642508),('7-0-style0000000000057',1147642507,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style3/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,628,NULL,0,1,0,1147642507),('7-0-style0000000000058',1147642507,'3','pbversion0000000000001','approved','main_bottom.jpg','main_bottom.jpg','style3/main_bottom.jpg','3','7','12',NULL,0,0,0,0,0,2619,NULL,0,1,0,1147642507),('7-0-style0000000000060',1147642508,'3','pbversion0000000000001','approved','main_top_bg.jpg','main_top_bg.jpg','style3/main_top_bg.jpg','3','7','12',NULL,0,0,0,0,0,676,NULL,0,1,0,1147642508),('7-0-style0000000000054',1147642506,'3','pbversion0000000000001','approved','header_bg.jpg','header_bg.jpg','style3/header_bg.jpg','3','7','12',NULL,0,0,0,0,0,704,NULL,0,1,0,1147642506),('7-0-style0000000000055',1147642506,'3','pbversion0000000000001','approved','header_left.jpg','header_left.jpg','style3/header_left.jpg','3','7','12',NULL,0,0,0,0,0,23972,NULL,0,1,0,1147642506),('7-0-style0000000000056',1147642506,'3','pbversion0000000000001','approved','header_right.jpg','header_right.jpg','style3/header_right.jpg','3','7','12',NULL,0,0,0,0,0,24746,NULL,0,1,0,1147642506),('7-0-style0000000000053',1147642505,'3','pbversion0000000000001','approved','footer_right.jpg','footer_right.jpg','style3/footer_right.jpg','3','7','12',NULL,0,0,0,0,0,2875,NULL,0,1,0,1147642505),('7-0-style0000000000052',1147642505,'3','pbversion0000000000001','approved','footer_bg.jpg','footer_bg.jpg','style3/footer_bg.jpg','3','7','12',NULL,0,0,0,0,0,669,NULL,0,1,0,1147642505),('7-0-style0000000000048',1147642504,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style2/wg.jpg','3','7','12',NULL,0,0,0,0,0,41300,NULL,0,1,0,1147642504),('7-0-style0000000000046',1147642504,'3','pbversion0000000000001','approved','rightCol_bg.jpg','rightCol_bg.jpg','style2/rightcol_bg.jpg','3','7','12',NULL,0,0,0,0,0,1118,NULL,0,1,0,1147642504),('7-0-style0000000000043',1147642503,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style2/pb.jpg','3','7','12',NULL,0,0,0,0,0,45606,NULL,0,1,0,1147642503),('7-0-style0000000000044',1147642503,'3','pbversion0000000000001','approved','pb_wg.jpg','pb_wg.jpg','style2/pb_wg.jpg','3','7','12',NULL,0,0,0,0,0,5140,NULL,0,1,0,1147642503),('7-0-style0000000000040',1147642502,'3','pbversion0000000000001','approved','navbar_right.jpg','navbar_right.jpg','style2/navbar_right.jpg','3','7','12',NULL,0,0,0,0,0,1594,NULL,0,1,0,1147642502),('7-0-style0000000000041',1147642502,'3','pbversion0000000000001','approved','page_title.jpg','page_title.jpg','style2/page_title.jpg','3','7','12',NULL,0,0,0,0,0,49390,NULL,0,1,0,1147642502),('7-0-style0000000000042',1147642502,'3','pbversion0000000000001','approved','page_title_bg.jpg','page_title_bg.jpg','style2/page_title_bg.jpg','3','7','12',NULL,0,0,0,0,0,1110,NULL,0,1,0,1147642502),('7-0-style0000000000038',1147642501,'3','pbversion0000000000001','approved','navbar_bg.jpg','navbar_bg.jpg','style2/navbar_bg.jpg','3','7','12',NULL,0,0,0,0,0,936,NULL,0,1,0,1147642501),('7-0-style0000000000039',1147642502,'3','pbversion0000000000001','approved','navbar_left.jpg','navbar_left.jpg','style2/navbar_left.jpg','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1147642502),('7-0-style0000000000036',1147642501,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style2/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1222,NULL,0,1,0,1147642501),('7-0-style0000000000037',1147642501,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style2/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,902,NULL,0,1,0,1147642501),('7-0-style0000000000033',1147642500,'3','pbversion0000000000001','approved','css02.css','css02.css','style2/css02.css','3','7','12',NULL,0,0,0,0,0,3061,NULL,0,1,0,1147642500),('7-0-style0000000000034',1147642500,'3','pbversion0000000000001','approved','leftCol_header.jpg','leftCol_header.jpg','style2/leftcol_header.jpg','3','7','12',NULL,0,0,0,0,0,21636,NULL,0,1,0,1147642500),('7-0-style0000000000035',1147642501,'3','pbversion0000000000001','approved','leftCol_header02.jpg','leftCol_header02.jpg','style2/leftcol_header02.jpg','3','7','12',NULL,0,0,0,0,0,8868,NULL,0,1,0,1147642501),('7-0-style0000000000030',1147642499,'3','pbversion0000000000001','approved','webgui_btn.jpg','webgui_btn.jpg','style1/webgui_btn.jpg','3','7','12',NULL,0,0,0,0,0,10040,NULL,0,1,0,1147642499),('7-0-style0000000000031',1147642500,'3','pbversion0000000000001','approved','WebGUI 7 Style 2','WebGUI 7 Style 2','root/import/webgui-7-style-2','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1147642500),('7-0-style0000000000032',1147642500,'3','pbversion0000000000001','approved','context_bg.jpg','context_bg.jpg','style2/context_bg.jpg','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1147642500),('PBnav000000style01lvl2',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav lvl2','untitled','style1_nav_lvl2','3','7','12',NULL,0,0,0,0,0,1015,NULL,0,1,0,1228264382),('7-0-style0000000000026',1147642499,'3','pbversion0000000000001','approved','RootTab Level 1','RootTab Level 1','roottab_level1','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1147642499),('stevenav00000000000001',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav','Style 01 Nav','style1_nav','3','7','12',NULL,0,0,0,0,0,994,NULL,0,1,0,1228264382),('7-0-style0000000000025',1147642498,'3','pbversion0000000000001','approved','RootTab Level 0','RootTab Level 0','roottab_level0','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1147642498),('7-0-style0000000000022',1147642497,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style1/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,1914,NULL,0,1,0,1147642497),('7-0-style0000000000023',1147642498,'3','pbversion0000000000001','approved','nav_on.jpg','nav_on.jpg','style1/nav_on.jpg','3','7','12',NULL,0,0,0,0,0,1536,NULL,0,1,0,1147642498),('7-0-style0000000000024',1147642498,'3','pbversion0000000000001','approved','orange_left01.jpg','orange_left01.jpg','style1/orange_left01.jpg','3','7','12',NULL,0,0,0,0,0,5810,NULL,0,1,0,1147642498),('7-0-style0000000000018',1147642496,'3','pbversion0000000000001','approved','nav2_off_left.jpg','nav2_off_left.jpg','style1/nav2_off_left.jpg','3','7','12',NULL,0,0,0,0,0,1174,NULL,0,1,0,1147642496),('7-0-style0000000000019',1147642497,'3','pbversion0000000000001','approved','nav2_off_right.jpg','nav2_off_right.jpg','style1/nav2_off_right.jpg','3','7','12',NULL,0,0,0,0,0,1162,NULL,0,1,0,1147642497),('7-0-style0000000000017',1147642496,'3','pbversion0000000000001','approved','nav2_off_center.jpg','nav2_off_center.jpg','style1/nav2_off_center.jpg','3','7','12',NULL,0,0,0,0,0,1336,NULL,0,1,0,1147642496),('7-0-style0000000000015',1147642496,'3','pbversion0000000000001','approved','nav1_on_right.jpg','nav1_on_right.jpg','style1/nav1_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1936,NULL,0,1,0,1147642496),('7-0-style0000000000014',1147642495,'3','pbversion0000000000001','approved','nav1_on_left.jpg','nav1_on_left.jpg','style1/nav1_on_left.jpg','3','7','12',NULL,0,0,0,0,0,2062,NULL,0,1,0,1147642495),('7-0-style0000000000013',1147642495,'3','pbversion0000000000001','approved','nav1_on.jpg','nav1_on.jpg','style1/nav1_on.jpg','3','7','12',NULL,0,0,0,0,0,4544,NULL,0,1,0,1147642495),('7-0-style0000000000011',1147642495,'3','pbversion0000000000001','approved','nav1_off_left.jpg','nav1_off_left.jpg','style1/nav1_off_left.jpg','3','7','12',NULL,0,0,0,0,0,2128,NULL,0,1,0,1147642495),('7-0-style0000000000012',1147642495,'3','pbversion0000000000001','approved','nav1_off_right.jpg','nav1_off_right.jpg','style1/nav1_off_right.jpg','3','7','12',NULL,0,0,0,0,0,2020,NULL,0,1,0,1147642495),('7-0-style0000000000010',1147642494,'3','pbversion0000000000001','approved','nav1_off_center.jpg','nav1_off_center.jpg','style1/nav1_off_center.jpg','3','7','12',NULL,0,0,0,0,0,2596,NULL,0,1,0,1147642494),('7-0-style0000000000009',1147642494,'3','pbversion0000000000001','approved','nav1_off.jpg','nav1_off.jpg','style1/nav1_off.jpg','3','7','12',NULL,0,0,0,0,0,4870,NULL,0,1,0,1147642494),('7-0-style0000000000007',1147642493,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style1/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1752,NULL,0,1,0,1147642493),('7-0-style0000000000001',1147642492,'3','pbversion0000000000001','approved','WebGUI 7 Style 1','WebGUI 7 Style 1','root/import/webgui-7-style-1','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1147642492),('SynConXSLT000000000001',1124395707,'3','pbversion0000000000001','approved','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT','xslt/rss0.9.xsl','3','7','12',NULL,0,0,0,0,0,2646,NULL,0,1,0,1124395707),('SynConXSLT000000000002',1124395707,'3','pbversion0000000000001','approved','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT','xslt/rss0.91.xsl','3','7','12',NULL,0,0,0,0,0,2485,NULL,0,1,0,1124395707),('SynConXSLT000000000003',1124395707,'3','pbversion0000000000001','approved','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT','xslt/rss1.0.xsl','3','7','12',NULL,0,0,0,0,0,2718,NULL,0,1,0,1124395707),('SynConXSLT000000000004',1124395707,'3','pbversion0000000000001','approved','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT','xslt/rss2.0.xsl','3','7','12',NULL,0,0,0,0,0,2551,NULL,0,1,0,1124395707),('PBtmpl0000000000000036',1129049186,'3','pbversion0000000000001','approved','Default Admin Toggle Macro','Default Admin Toggle Macro','default_admin_toggle_macro','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1228264382),('PBtmpl0000000000000037',1129049186,'3','pbversion0000000000001','approved','Default Account Macro','Default Account Macro','default_account_macro','3','7','12',NULL,0,1,0,0,0,395,NULL,0,1,0,1228264382),('PBtmpl0000000000000038',1129049186,'3','pbversion0000000000001','approved','Default Editable Toggle Macro','Default Editable Toggle Macro','default_editable_toggle_macro','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1228264382),('PBtmpl0000000000000040',1129049186,'3','pbversion0000000000001','approved','Default Group Add Macro','Default Group Add Macro','default_group_add_macro','3','7','12',NULL,0,1,0,0,0,374,NULL,0,1,0,1228264382),('PBtmpl0000000000000041',1129049186,'3','pbversion0000000000001','approved','Default Group Delete Macro','Default Group Delete Macro','default_group_delete_macro','3','7','12',NULL,0,1,0,0,0,386,NULL,0,1,0,1228264382),('PBtmpl0000000000000042',1129049186,'3','pbversion0000000000001','approved','Default Homelink','Default Homelink','default_homelink','3','7','12',NULL,0,1,0,0,0,378,NULL,0,1,0,1228264382),('PBtmpl0000000000000043',1129049186,'3','pbversion0000000000001','approved','Default LoginToggle','Default LoginToggle','default_logintoggle','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1228264382),('PBtmpl0000000000000045',1129049186,'3','pbversion0000000000001','approved','Default Make Printable','Default Make Printable','default_make_printable','3','7','12',NULL,0,1,0,0,0,408,NULL,0,1,0,1228264382),('PBtmpl0000000000000208',1147642410,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template','3','7','12',NULL,0,0,0,0,0,3992,'\n\n\n\n\n',0,1,0,1228264382),('PBtmpl0000000000000091',1129049189,'3','pbversion0000000000001','approved','File no icon','File no icon','file_no_icon','3','7','12',NULL,0,1,0,0,0,335,NULL,0,1,0,1228264382),('PBtmpl0000000000000132',1129049190,'3','pbversion0000000000001','approved','Empty','Empty','empty','3','7','12',NULL,0,1,0,0,0,271,NULL,0,1,0,1228264382),('PBtmpl0000000000000140',1129573244,'3','pbversion0000000000001','approved','Default Shortcut','Default Shortcut','pbtmpl0000000000000140','3','7','12',NULL,0,1,0,0,0,1020,NULL,0,1,0,1228264382),('PBtmplHelp000000000001',1147642410,'3','pbversion0000000000001','approved','Help','Help','help','3','7','12',NULL,0,0,0,0,0,1388,'\n\n',0,1,0,1228264382),('ProjectManagerTMPL0004',1222574693,'3','pbversion0000000000001','approved','Default Project Manager Edit Task','Default Project Manager Edit Task','default-pm-template-edit-task','3','7','12',NULL,0,0,0,0,0,5258,'\r\n',0,1,0,1228264384),('7-0-style0000000000071',1147642511,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style3/wg.jpg','3','7','12',NULL,0,0,0,0,0,27488,NULL,0,1,0,1147642511),('7-0-style0000000000070',1147642510,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','style3_coolmenu','3','7','12',NULL,0,0,0,0,0,344,NULL,0,1,0,1147642510),('7-0-style0000000000004',1147642493,'3','pbversion0000000000001','approved','gui_bottom.jpg','gui_bottom.jpg','style1/gui_bottom.jpg','3','7','12',NULL,0,0,0,0,0,21700,NULL,0,1,0,1147642493),('7-0-style0000000000002',1147642492,'3','pbversion0000000000001','approved','body_bg.jpg','body_bg.jpg','style1/body_bg.jpg','3','7','12',NULL,0,0,0,0,0,890,NULL,0,1,0,1147642492),('PBtmpl0000000000000128',1147642411,'3','pbversion0000000000001','approved','Classifieds','Classifieds','classifieds','3','7','12',NULL,0,1,0,0,0,2007,'\n\n',0,1,0,1228264382),('PBtmpl0000000000000093',1147642412,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail2','3','7','12',NULL,0,1,0,0,0,767,NULL,0,1,0,1228264382),('PBtmpl0000000000000104',1147642412,'3','pbversion0000000000001','approved','Default Acknowledgement','Default Acknowledgement','default_acknowledgement','3','7','12',NULL,0,1,0,0,0,1207,'',0,1,0,1228264382),('PBtmpl0000000000000031',1147642413,'3','pbversion0000000000001','approved','Default Forum Search','Default Forum Search','default_forum_search','3','7','12',NULL,0,1,0,0,0,2682,'',0,1,0,1228264382),('PBtmpl0000000000000006',1147642414,'3','pbversion0000000000001','approved','Default LDAP Login Template','Default LDAP Login Template','default_ldap_login_template','3','7','12',NULL,0,1,0,0,0,1180,NULL,0,1,0,1228264382),('PBtmpl0000000000000047',1147642414,'3','pbversion0000000000001','approved','Default Message Board','Default Message Board','default_message_board','3','7','12',NULL,0,1,0,0,0,3535,'',0,1,0,1228264382),('TimeTrackingTMPL000002',1147642417,'3','pbversion0000000000001','approved','Default Time Tracking Manager View','Default Time Tracking Manager View','default-tt-template-manager','3','7','12',NULL,0,0,0,0,0,381,' ',0,1,0,1228264382),('PBtmpl0000000000000066',1147642417,'3','pbversion0000000000001','approved','Default USS','Default USS','default_uss','3','7','12',NULL,0,1,0,0,0,3063,'\n\n\n',0,1,0,1228264382),('PBtmpl0000000000000013',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Login Template','Default WebGUI Login Template','default_webgui_login_template','3','7','12',NULL,0,1,0,0,0,1334,NULL,0,1,0,1228264382),('PBtmpl0000000000000012',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template','default_webgui_password_reset_template','3','7','12',NULL,0,1,0,0,0,1274,NULL,0,1,0,1228264382),('PBtmpl0000000000000057',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt','default_webgui_yes/no_prompt','3','7','12',NULL,0,1,0,0,0,561,NULL,0,1,0,1228264382),('PBtmpl0000000000000060',1147642419,'3','pbversion0000000000001','approved','Fail Safe','Fail Safe','fail_safe','3','7','12',NULL,0,1,0,0,0,1246,NULL,0,1,0,1228264382),('PBtmpl0000000000000024',1147642420,'3','pbversion0000000000001','approved','File','File','file','3','7','12',NULL,0,1,0,0,0,477,NULL,0,1,0,1228264382),('PBtmpl0000000000000078',1147642420,'3','pbversion0000000000001','approved','File Folder','File Folder','file_folder','3','7','12','',0,1,0,0,0,1954,NULL,0,1,0,1228264382),('PBtmpl0000000000000107',1147642420,'3','pbversion0000000000001','approved','File with size','File with size','file_with_size','3','7','12',NULL,0,1,0,0,0,473,NULL,0,1,0,1228264382),('PBtmpl0000000000000108',1147642421,'3','pbversion0000000000001','approved','horizontalMenu','horizontalMenu','horizontalmenu','3','7','12',NULL,0,1,0,0,0,785,NULL,0,1,0,1228264382),('PBtmpl0000000000000088',1147642421,'3','pbversion0000000000001','approved','Image','Image','image','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1228264382),('PBtmpl0000000000000123',1147642421,'3','pbversion0000000000001','approved','Item','Item','item','3','7','12',NULL,0,1,0,0,0,897,NULL,0,1,0,1228264382),('PBtmpl0000000000000129',1147642422,'3','pbversion0000000000001','approved','Item w/pop-up Links','Item w/pop-up Links','item_w/pop-up_links','3','7','12',NULL,0,1,0,0,0,970,NULL,0,1,0,1228264382),('PBtmpl0000000000000077',1147642422,'3','pbversion0000000000001','approved','Job Listing','Job Listing','job_listing','3','7','12',NULL,0,1,0,0,0,2925,'\n\n\n',0,1,0,1228264382),('WVtmpl0000000000000001',1147642426,'3','pbversion0000000000001','approved','Random Thread Macro Default Template','Random Thread Macro Default Template','randomthread-template','3','7','12',NULL,0,0,0,0,0,4783,NULL,0,1,0,1228264382),('PBtmpl0000000000000136',1147642428,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis2','3','7','12',NULL,0,1,0,0,0,852,NULL,0,1,0,1228264382),('PBtmpl0000000000000124',1147642429,'3','pbversion0000000000001','approved','Tabs','Tabs','tabs','3','7','12',NULL,0,1,0,0,0,777,NULL,0,1,0,1228264382),('PBtmpl0000000000000048',1147642431,'3','pbversion0000000000001','approved','verticalMenu','verticalMenu','verticalmenu','3','7','12',NULL,0,1,0,0,0,789,NULL,0,1,0,1228264382),('PBtmplBlankStyle000001',1147642431,'3','pbversion0000000000001','approved','WebGUI 6 Blank Style','WebGUI 6 Blank Style','pbtmplblankstyle000001','3','7','12',NULL,0,1,0,0,0,860,NULL,0,1,0,1228264382),('5A8Hd9zXvByTDy4x-H28qw',1227566395,'3','pbversion0000000000001','approved','Default Invitation Confirmation Template','Default Invitation Confirmation Template','root/import/account/inbox/default-invitation-confirmation-template','3','7','12',NULL,0,1,0,0,0,1000,NULL,0,1,0,1234301430),('7-0-style0000000000005',1147642493,'3','pbversion0000000000001','approved','header.jpg','header.jpg','style1/header.jpg','3','7','12',NULL,0,0,0,0,0,89722,NULL,0,1,0,1147642493),('7-0-style0000000000008',1147642494,'3','pbversion0000000000001','approved','nav1_center_on.jpg','nav1_center_on.jpg','style1/nav1_center_on.jpg','3','7','12',NULL,0,0,0,0,0,2428,NULL,0,1,0,1147642494),('pbrobot000000000000001',1147642511,'3','pbversion0000000000001','approved','robots.txt','robots.txt','robots.txt','3','7','12',NULL,0,0,0,0,0,292,NULL,0,1,0,1147642511),('bX5rYxb6tZ9docY6sUhBlw',1147642514,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started/getting-started','3','7','4',NULL,0,1,0,0,0,646,NULL,0,1,0,1147642514),('IWFxZDyGhQ3-SLZhELa3qw',1147642514,'3','pbversion0000000000001','approved','Key Benefits','Key Benefits','home/key-benefits','3','7','4',NULL,0,1,0,0,0,2019,NULL,0,1,0,1147642514),('m4YJFaqzultnB_sj1Uq0aw',1147642514,'3','pbversion0000000000001','approved','Ad','Ad','home/ad','3','7','4',NULL,0,1,0,0,0,92365,NULL,0,1,0,1147642514),('7-0-style0000000000045',1147642503,'3','pbversion0000000000001','approved','pb_wg_bg.jpg','pb_wg_bg.jpg','style2/pb_wg_bg.jpg','3','7','12',NULL,0,0,0,0,0,43126,NULL,0,1,0,1147642503),('7-0-style0000000000021',1147642497,'3','pbversion0000000000001','approved','nav2_on_right.jpg','nav2_on_right.jpg','style1/nav2_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1110,NULL,0,1,0,1147642497),('7-0-style0000000000020',1147642497,'3','pbversion0000000000001','approved','nav2_on_left.jpg','nav2_on_left.jpg','style1/nav2_on_left.jpg','3','7','12',NULL,0,0,0,0,0,1138,NULL,0,1,0,1147642497),('7-0-style0000000000016',1147642496,'3','pbversion0000000000001','approved','nav2_center_on.jpg','nav2_center_on.jpg','style1/nav2_center_on.jpg','3','7','12',NULL,0,0,0,0,0,1280,NULL,0,1,0,1147642496),('PBasset000000000000003',1147642437,'3','pbversion0000000000001','approved','Media','Media','media','3','7','12',NULL,0,0,0,0,0,258,NULL,0,1,0,1147642437),('OhdaFLE7sXOzo_SIP2ZUgA',1147642513,'3','pbversion0000000000001','approved','Welcome','Welcome','home/welcome','3','7','4',NULL,0,1,0,0,0,1830,NULL,0,1,0,1147642513),('pbtmpl0000000000000221',1147642465,'3','pbversion0000000000001','approved','Flash Tutorial Template','Flash Tutorial Template','flash-tutorial-template','3','7','12',NULL,0,0,0,0,0,975,NULL,0,1,0,1228264382),('nbSrhXZQuxIjhWFaFPSuVA',1147642465,'3','pbversion0000000000001','approved','AdminConsole','AdminConsole','root/import/adminconsole','3','7','12',NULL,0,0,0,0,0,275,NULL,0,1,0,1147642465),('TvOZs8U1kRXLtwtmyW75pg',1147642465,'3','pbversion0000000000001','approved','Article','Article','root/import/article','3','7','12',NULL,0,0,0,0,0,260,NULL,0,1,0,1147642465),('GNOAsX98vCsl0JRwfwL-gg',1147642466,'3','pbversion0000000000001','approved','Collaboration','Collaboration','root/import/collaboration','3','7','12',NULL,0,0,0,0,0,302,NULL,0,1,0,1147642466),('S1A9iAwKcQQ6P20uTqw-Ew',1147642468,'3','pbversion0000000000001','approved','Dashboard','Dashboard','root/import/dashboard','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642468),('71e17KeduiXgODLMlUxiow',1222803352,'3','pbversion0000000000001','approved','project','project','root/import/projectmanager/project','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803352),('tXwf1zaOXTvsqPn6yu-GSw',1147642469,'3','pbversion0000000000001','approved','FileAsset','FileAsset','root/import/fileasset','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642469),('GYaFxnMu9UsEG8oanwB6TA',1147642470,'3','pbversion0000000000001','approved','Folder','Folder','root/import/folder','3','7','12',NULL,0,0,0,0,0,257,NULL,0,1,0,1147642470),('N13SD1Fpqk00UgBt1Z8ivQ',1147642470,'3','pbversion0000000000001','approved','HttpProxy','HttpProxy','root/import/httpproxy','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642470),('tPagC0AQErZXjLFZQ6OI1g',1147642470,'3','pbversion0000000000001','approved','ImageAsset','ImageAsset','root/import/imageasset','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642470),('3uuBf8cYuj1sew2OJXl9tg',1147642470,'3','pbversion0000000000001','approved','InOutBoard','InOutBoard','root/import/inoutboard','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642470),('ProjectManagerTMPL0002',1222574693,'3','pbversion0000000000001','approved','Default Project Display','Default Project Display','default-pm-template-project-display','3','7','12',NULL,0,0,0,0,0,10531,'\r\n\r\n\r\n',0,1,0,1228264384),('cj2y4papTVGZRFdwTI-_fw',1147642475,'3','pbversion0000000000001','approved','MessageBoard','MessageBoard','root/import/messageboard','3','7','12',NULL,0,0,0,0,0,275,NULL,0,1,0,1147642475),('bBzO4CWjqU_ile3gf5Iypw',1147642475,'3','pbversion0000000000001','approved','MultiSearch','MultiSearch','root/import/multisearch','3','7','12',NULL,0,0,0,0,0,272,NULL,0,1,0,1147642475),('BFfNj5wA9bDw8H3cnr8pTw',1147642475,'3','pbversion0000000000001','approved','Navigation','Navigation','root/import/navigation','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642475),('jEz8iTGNWEt2I05IhVV19Q',1147642477,'3','pbversion0000000000001','approved','Operation/RedeemSubscription','Operation/RedeemSubscription','root/import/operation/redeemsubscription','3','7','12',NULL,0,0,0,0,0,323,NULL,0,1,0,1147642477),('VZK3CRgiMb8r4dBjUmCTgQ',1147642477,'3','pbversion0000000000001','approved','Poll','Poll','root/import/poll','3','7','12',NULL,0,0,0,0,0,251,NULL,0,1,0,1147642477),('f_tn9FfoSfKWX43F83v_3w',1147642479,'3','pbversion0000000000001','approved','Search','Search','root/import/search','3','7','12',NULL,0,0,0,0,0,257,NULL,0,1,0,1147642479),('Da6KWn805L4B5e4HFgQRQA',1147642479,'3','pbversion0000000000001','approved','Shortcut','Shortcut','root/import/shortcut','3','7','12',NULL,0,0,0,0,0,263,NULL,0,1,0,1147642479),('bbiA9Zq5Gy2oCFBlILO3QA',1147642480,'3','pbversion0000000000001','approved','SQLReport','SQLReport','root/import/sqlreport','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642480),('Efe2W0UgrSRDltNJ87jlfg',1147642480,'3','pbversion0000000000001','approved','StockData','StockData','root/import/stockdata','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642480),('RrV4aAPnn4dM0ZcU3OXnlw',1147642480,'3','pbversion0000000000001','approved','style','style','root/import/style','3','7','12',NULL,0,0,0,0,0,254,NULL,0,1,0,1147642480),('oGfxez5sksyB_PcaAsEm_Q',1147642482,'3','pbversion0000000000001','approved','SyndicatedContent','SyndicatedContent','root/import/syndicatedcontent','3','7','12',NULL,0,0,0,0,0,290,NULL,0,1,0,1147642482),('9wKWdum0_8z-OhhquWLtSQ',1147642483,'3','pbversion0000000000001','approved','WeatherData','WeatherData','root/import/weatherdata','3','7','12',NULL,0,0,0,0,0,272,NULL,0,1,0,1147642483),('ErEzulFiEKDkaCDVmxUavw',1227566394,'3','pbversion0000000000001','approved','Default Inbox Error Template','Default Inbox Error Template','root/import/account/inbox/default-inbox-error-template','3','7','12',NULL,0,1,0,0,0,549,NULL,0,1,0,1234301430),('CSN-ZON7Uwv8kxf3F1fh5Q',1147642484,'3','pbversion0000000000001','approved','ZipArchiveAsset','ZipArchiveAsset','root/import/ziparchiveasset','3','7','12',NULL,0,0,0,0,0,284,NULL,0,1,0,1147642484),('TCtybxdqmdwdvRn555zpCQ',1147642484,'3','pbversion0000000000001','approved','RichEdit','RichEdit','root/import/richedit','3','7','12',NULL,0,0,0,0,0,263,NULL,0,1,0,1147642484),('PBtmpl0000000000000044',1148579524,'3','pbversion0000000000001','approved','Default Login Box','Default Login Box','default_login_box','3','7','12',NULL,0,1,0,0,0,1157,NULL,0,1,0,1228264382),('PBtmpl0000000000000092',1148579524,'3','pbversion0000000000001','approved','Horizontal Login Box','Horizontal Login Box','horizontal_login_box','3','7','12',NULL,0,1,0,0,0,1243,NULL,0,1,0,1228264382),('PBnav00000000000bullet',1148579524,'3','pbversion0000000000001','approved','Bulleted List','Bulleted List','bulleted_list','3','7','12',NULL,0,0,0,0,0,1488,'\n\n',0,1,0,1228264382),('pbtmpl0000000000000220',1148579525,'3','pbversion0000000000001','approved','Flash Template','Flash Template','flash-template','3','7','12',NULL,0,0,0,0,0,596,NULL,0,1,0,1228264382),('PBtmpl0000000000000133',1149286278,'3','pbversion0000000000001','approved','Guest Book','Guest Book','guest_book','3','7','12',NULL,0,1,0,0,0,1599,NULL,0,1,0,1228264382),('PBtmpl0000000000000083',1149286278,'3','pbversion0000000000001','approved','Link List','Link List','link_list','3','7','12',NULL,0,1,0,0,0,2046,NULL,0,1,0,1228264383),('PBtmpl0000000000000101',1149286278,'3','pbversion0000000000001','approved','Ordered List','Ordered List','ordered_list','3','7','12',NULL,0,1,0,0,0,2094,NULL,0,1,0,1228264383),('PBtmpl0000000000000121',1149286279,'3','pbversion0000000000001','approved','Photo Gallery','Photo Gallery','photo_gallery','3','7','12',NULL,0,1,0,0,0,2029,'\n\n',0,1,0,1228264383),('PBtmpl0000000000000081',1149286279,'3','pbversion0000000000001','approved','Q and A','Q and A','q_and_a','3','7','12',NULL,0,1,0,0,0,2952,'\n',0,1,0,1228264383),('PBtmpl0000000000000079',1149286279,'3','pbversion0000000000001','approved','Topics','Topics','topics','3','7','12',NULL,0,1,0,0,0,3517,'\n',0,1,0,1228264383),('PBtmpl0000000000000082',1149286279,'3','pbversion0000000000001','approved','Unordered List','Unordered List','unordered_list','3','7','12',NULL,0,1,0,0,0,2985,'\n',0,1,0,1228264383),('PBtmpl0000000000000112',1149286279,'3','pbversion0000000000001','approved','Weblog','Weblog','weblog','3','7','12',NULL,0,1,0,0,0,3490,'',0,1,0,1228264383),('PBtmpl0000000000000039',1154535073,'3','pbversion0000000000001','approved','Default File Macro','Default File Macro','default_file_macro','3','7','12',NULL,0,1,0,0,0,464,NULL,0,1,0,1228264383),('PBtmpl0000000000000055',1154535073,'3','pbversion0000000000001','approved','Default Poll','Default Poll','default_poll','3','7','12',NULL,0,1,0,0,0,2001,'\n',0,1,0,1228264383),('Szs5eev3OMssmnsyLRZmWA',1213317790,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend/tell_a_friend','3','7','3',NULL,0,1,0,0,0,2029,NULL,0,1,0,1213317790),('PBtmpl0000000000000111',1154535074,'3','pbversion0000000000001','approved','Make Page Printable','Make Page Printable','make_page_printable','3','7','12',NULL,0,1,0,0,0,2027,NULL,0,1,0,1228264383),('PBtmpl0000000000000053',1154535074,'3','pbversion0000000000001','approved','Subscription code redemption','Subscription code redemption','subscription_code_redemption','3','7','12',NULL,0,1,0,0,0,460,NULL,0,1,0,1228264383),('WikiPageEditTmpl000001',1221692341,'3','pbversion0000000000001','approved','Default Wiki Page Edit','Default Wiki Page Edit','default-wiki-page-edit','3','7','12',NULL,0,0,0,0,0,1316,'\n',0,1,0,1228264384),('PBtmpl0000000000000097',1154535074,'3','pbversion0000000000001','approved','Traditional with Thumbnails','Traditional with Thumbnails','traditional_with_thumbnails','3','7','12',NULL,0,1,0,0,0,4463,'\n',0,1,0,1228264383),('PBnav00000000indentnav',1154535074,'3','pbversion0000000000001','approved','Indent Nav','Indent Nav','indent_nav','3','7','12',NULL,0,0,0,0,0,1560,'\n',0,1,0,1228264383),('PBtmpl0000000000000001',1157679164,'3','pbversion0000000000001','approved','Admin Console','Admin Console','admin_console2','3','7','12',NULL,0,1,0,0,0,3232,'\n\n',0,1,0,1228264383),('ProjectManagerTMPL0006',1157679165,'3','pbversion0000000000001','approved','Default Resource List','Default Resource List','default-pm-resource-list','3','7','12',NULL,0,0,0,0,0,1100,NULL,0,1,0,1228264383),('PBtmpl0000000000000002',1159989349,'3','pbversion0000000000001','approved','Default Article','Default Article','default_article','3','7','12',NULL,0,1,0,0,0,1507,NULL,0,1,0,1228264383),('ProjectManagerTMPL0003',1159989349,'3','pbversion0000000000001','approved','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart','default-pm-template-gantt-chart','3','7','12',NULL,0,0,0,0,0,2137,NULL,0,1,0,1228264383),('pbproto000000000000002',1163019036,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-prototype','3','7','12',NULL,0,0,0,1,0,488,NULL,0,1,0,1163019036),('WikiPHTmpl000000000001',1165460175,'3','pbversion0000000000001','approved','Default Page History','Default Page History','default-wiki-page-history','3','7','12',NULL,0,0,0,0,0,486,NULL,0,1,0,1228264383),('WikiMPTmpl000000000001',1165460175,'3','pbversion0000000000001','approved','Default Most Popular','Default Most Popular','default-wiki-most-popular','3','7','12',NULL,0,0,0,0,0,675,NULL,0,1,0,1228264383),('IOB0000000000000000002',1166019641,'3','pbversion0000000000001','approved','Default InOutBoard Report Template','Default InOutBoard Report Template','iob-report-template','3','7','12',NULL,0,0,0,0,0,2116,'',0,1,0,1228264383),('WikiSearchTmpl00000001',1168480840,'3','pbversion0000000000001','approved','Default Wiki Search','Default Wiki Search','default-wiki-search','3','7','12',NULL,0,0,0,0,0,1393,'\n\n',0,1,0,1228264383),('WikiRCTmpl000000000001',1169092823,'3','pbversion0000000000001','approved','Default Recent Changes','Default Recent Changes','default-wiki-recent-changes','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1228264383),('ZipArchiveTMPL00000001',1169738426,'3','pbversion0000000000001','approved','Default Zip Archive Template','Default Zip Archive Template','zip-archive-template','3','7','12',NULL,0,0,0,0,0,706,NULL,0,1,0,1228264383),('IOB0000000000000000001',1169795123,'3','pbversion0000000000001','approved','Default InOutBoard Template','Default InOutBoard Template','iob-template','3','7','12',NULL,0,0,0,0,0,2715,'',0,1,0,1228264383),('PBtmpl0000000000000142',1171466654,'3','pbversion0000000000001','approved','Default RSS','Default RSS','pbtmpl0000000000000142','3','7','12',NULL,0,1,0,0,0,731,NULL,0,1,0,1228264383),('PBtmpl0000000000000080',1171466654,'3','pbversion0000000000001','approved','FAQ','FAQ','faqtemplate','3','7','12',NULL,0,1,0,0,0,2167,NULL,0,1,0,1228264383),('SQLReportDownload00001',1171466654,'3','pbversion0000000000001','approved','SQLReport Download Default Template','untitled','SQLReportDownload0001','3','7','12',NULL,0,0,0,0,0,3664,NULL,0,1,0,1228264383),('newsletter000000000001',1185754569,'3','pbversion0000000000001','approved',' Summary Newsletter (default)',' Summary Newsletter','newsletterdefaulttemplate','3','7','3',NULL,0,0,0,0,0,498,NULL,0,1,0,1228264383),('PBtmpl0000000000000026',1185754569,'3','pbversion0000000000001','approved','Default Forum','Default Forum','default_forum','3','7','12',NULL,0,1,0,0,0,4871,'\n\n\n',0,1,0,1228264383),('PBtmpl0000000000000010',1227026287,'3','pbversion0000000000001','approved','Default WebGUI Account Display Template','Default WebGUI Account Display Template','default_webgui_account_display_template','3','7','12',NULL,0,1,0,0,0,1616,NULL,0,1,0,1228264385),('PBtmpl0000000000000014',1227218041,'3','pbversion0000000000001','approved','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template','default_webgui_password_recovery_template','3','7','12',NULL,0,1,0,0,0,1741,NULL,0,1,0,1228264385),('PBtmpl0000000000000004',1227026214,'3','pbversion0000000000001','approved','Default LDAP Account Display Template','Default LDAP Account Display Template','default_ldap_account_display_template','3','7','12',NULL,0,1,0,0,0,898,NULL,0,1,0,1228264383),('WikiKeyword00000000001',1185754571,'3','pbversion0000000000001','approved',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword','wiki-master-by-keyword-template.tmpl','3','7','3',NULL,0,0,0,0,0,474,NULL,0,1,0,1228264383),('WikiFrontTmpl000000001',1185754572,'3','pbversion0000000000001','approved','Default Wiki Front Page','Default Wiki Front Page','default-wiki-front-page','3','7','12',NULL,0,0,0,0,0,1322,NULL,0,1,0,1228264383),('tempspace0000000000000',1185754574,'3','pbversion0000000000001','approved','Tempspace','Tempspace','tempspace','3','7','3',NULL,0,0,0,0,0,270,NULL,0,1,0,1185754574),('MBZK_LPVzqhb4TV4mMRTJg',1197330678,'3','pbversion0000000000001','approved','admin_ie7.css','admin_ie7.css','root/import/gallery-templates/admin_ie7.css','3','7','3',NULL,0,1,0,0,0,320,NULL,0,1,0,1197330678),('kaPRSaf8UKiskiGEgJgLAw',1197330678,'3','pbversion0000000000001','approved','images','images','root/import/gallery-templates/images','3','7','3',NULL,0,0,0,0,0,304,NULL,0,1,0,1197330678),('bANo8aiAPA7aY_oQZKxIWw',1197330678,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss.gif','3','7','3',NULL,0,1,0,0,0,1378,NULL,0,1,0,1197330678),('fdd8tGExyVwHyrB8RBbKXg',1197330839,'3','pbversion0000000000001','approved','next.gif','next.gif','root/import/gallery-templates/images/next.gif','3','7','3',NULL,0,1,0,0,0,1665,NULL,0,1,0,1197330839),('BpisgHl4ZDcSECJp6oib1w',1197330840,'3','pbversion0000000000001','approved','play.gif','play.gif','root/import/gallery-templates/images/play.gif','3','7','3',NULL,0,1,0,0,0,2102,NULL,0,1,0,1197330840),('zshreRgPAXtnF0DtVbQ1Yg',1197330840,'3','pbversion0000000000001','approved','previous.gif','previous.gif','root/import/gallery-templates/images/previous.gif','3','7','3',NULL,0,1,0,0,0,1671,NULL,0,1,0,1197330840),('TimeTrackingTMPL000001',1201205738,'3','pbversion0000000000001','approved','Default Time Tracking User View','Default Time Tracking User View','default-tt-template-user','3','7','12',NULL,0,0,0,0,0,10402,'\n \n',0,1,0,1228264383),('PBtmpl0000000000000085',1202884864,'3','pbversion0000000000001','approved','Default Email','Default Email','default_email','3','7','12',NULL,0,1,0,0,0,1175,NULL,0,1,0,1228264383),('CalendarPrintMonth0001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Month','Default Calendar Print Month','root/import/calendar-templates/default-calendar-print-month','3','7','12',NULL,0,0,0,0,0,2151,' \r\n',0,1,0,1228264383),('CalendarPrintWeek00001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Week','Default Calendar Print Week','root/import/calendar-templates/default-calendar-print-week','3','7','12',NULL,0,0,0,0,0,2249,' \r\n',0,1,0,1228264383),('CalendarPrintDay000001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Day','Default Calendar Print Day','root/import/calendar-templates/default-calendar-print-day','3','7','12',NULL,0,0,0,0,0,2117,' \r\n',0,1,0,1228264383),('PBtmpl0000000000000067',1206998733,'3','pbversion0000000000001','approved','Default Submission','Default Submission','default_submission','3','7','12',NULL,0,1,0,0,0,14012,'\r\n',0,1,0,1228264383),('PBtmpl0000000000000032',1206998756,'3','pbversion0000000000001','approved','Default Thread','Default Thread','default_thread','3','7','12',NULL,0,1,0,0,0,7847,'\r\n',0,1,0,1228264383),('PBtmpl0000000000000209',1206998862,'3','pbversion0000000000001','approved','Request Tracker Thread','Request Tracker Thread','request-tracker-post-template','3','7','12',NULL,0,0,0,0,0,14030,'\r\n',0,1,0,1228264383),('FOvmwGC0GtZo5VTxJIL3OA',1207068851,'3','pbversion0000000000001','approved','Get Documentation','Get Documentation','yns/docs','3','7','4',NULL,0,1,0,0,0,595,NULL,0,1,0,1207068851),('PBrichedit000000000001',1207240829,'3','pbversion0000000000001','approved','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit','content_managers_rich_edit','3','7','12',NULL,0,0,0,0,0,538,NULL,0,1,0,1207240829),('3qiVYhNTXMVC5hfsumVHgg',1206743306,'3','pbversion0000000000001','approved','browserdetect.js','browserdetect.js','root/import/gallery-templates/browserdetect.js','3','7','3',NULL,0,1,0,0,0,2681,NULL,0,1,0,1206743306),('F7MAQ-cpuvQ1KuC7J4P5zQ',1222803673,'3','pbversion0000000000001','approved','View','View','root/import/profile/view','3','7','12',NULL,0,0,0,0,0,294,NULL,0,1,0,1222803673),('Tsg7xmPYv782j6IVz7yHFg',1213244777,'3','pbversion0000000000001','approved','Calendar Templates','Calendar Templates','root/import/calendar-templates','3','7','12',NULL,0,1,0,0,0,317,NULL,0,1,0,1213244777),('-K8Hj45mbelljN9-0CXZxg',1209325764,'3','pbversion0000000000001','approved','DataForm','DataForm','root/import/dataform','3','7','12',NULL,0,0,0,0,0,300,NULL,0,1,0,1209325764),('Q4uX_C557arTp6D_jwB1jQ',1222803760,'3','pbversion0000000000001','approved','Wiki','Wiki','root/import/wiki','3','12','12',NULL,0,0,0,0,0,280,NULL,0,1,0,1222803760),('4qh0kIsFUdd4Ox-Iu1JZgg',1208725439,'3','pbversion0000000000001','approved','EMS','EMS','root/import/ems','3','7','12',NULL,0,1,0,0,0,285,NULL,0,1,0,1208725439),('PsFn7dJt4wMwBa8hiE3hOA',1208558071,'3','pbversion0000000000001','approved','Print Badge (Default)','Print Badge (Default)','root/import/ems/print-badge-default','3','7','12',NULL,0,1,0,0,0,1417,NULL,0,1,0,1228264384),('yBwydfooiLvhEFawJb0VTQ',1208629936,'3','pbversion0000000000001','approved','Print Ticket (Default)','Print Ticket (Default)','root/import/ems/print-ticket-default','3','7','12',NULL,0,1,0,0,0,1449,NULL,0,1,0,1228264384),('aNNC62qLAS6TB-0_MCYjsw',1213283425,'3','pbversion0000000000001','approved','Layout','Layout','root/import/layout','3','7','12',NULL,0,0,0,0,0,281,NULL,0,1,0,1213283425),('NywJYmGWe1f6EBXJnWg9Xg',1222803638,'3','pbversion0000000000001','approved','Profile','Profile','root/import/profile','3','7','12',NULL,0,1,0,0,0,288,NULL,0,1,0,1222803638),('AgyFhx3eXlfZXNp2MkrsiQ',1222803665,'3','pbversion0000000000001','approved','Edit','Edit','root/import/profile/edit','3','7','12',NULL,0,0,0,0,0,294,NULL,0,1,0,1222803665),('_hELmIJfgbAyXFNqPyApxQ',1213309523,'3','pbversion0000000000001','approved','admin.css','admin.css','root/import/gallery-templates/admin.css','3','7','3',NULL,0,1,0,0,0,2031,NULL,0,1,0,1213309523),('2ci_v2d4x4uvyjTRlC49OA',1209499188,'3','pbversion0000000000001','approved','moveDown.gif','moveDown.gif','root/import/gallery-templates/images/movedown.gif','3','7','3',NULL,0,1,0,0,0,363,NULL,0,1,0,1209499188),('O-EsSzKgAk1KolFT-x_KsA',1209499188,'3','pbversion0000000000001','approved','moveUp.gif','moveUp.gif','root/import/gallery-templates/images/moveup.gif','3','7','3',NULL,0,1,0,0,0,353,NULL,0,1,0,1209499188),('POVcY79vIqAHR8OfGt36aw',1209499189,'3','pbversion0000000000001','approved','pagination_button.jpg','pagination_button.jpg','root/import/gallery-templates/images/pagination_button.jpg','3','7','12',NULL,0,1,0,0,0,1039,NULL,0,0,0,1209499189),('hIB-z34r8Xl-vYVYCkKr-w',1209499189,'3','pbversion0000000000001','approved','bar-btn-r.jpg','bar-btn-r.jpg','root/import/gallery-templates/images/bar-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,819,NULL,0,0,0,1209499189),('-mPUoFlYcjqjPUPRLAlxNQ',1209499189,'3','pbversion0000000000001','approved','search-field-r.jpg','search-field-r.jpg','root/import/gallery-templates/images/search-field-r.jpg','3','7','12',NULL,0,1,0,0,0,837,NULL,0,0,0,1209499189),('MDpUOR-N8KMyt1J7Hh_h4w',1209499189,'3','pbversion0000000000001','approved','bar-btn.jpg','bar-btn.jpg','root/import/gallery-templates/images/bar-btn.jpg','3','7','12',NULL,0,1,0,0,0,697,NULL,0,0,0,1209499189),('YfXKByTwDZVituMc4h13Dg',1209499189,'3','pbversion0000000000001','approved','pagination_bg.jpg','pagination_bg.jpg','root/import/gallery-templates/images/pagination_bg.jpg','3','7','12',NULL,0,1,0,0,0,1120,NULL,0,0,0,1209499189),('esko_HSU0Gh-uJZ1h3xRmQ',1209499189,'3','pbversion0000000000001','approved','search-field-l.jpg','search-field-l.jpg','root/import/gallery-templates/images/search-field-l.jpg','3','7','12',NULL,0,1,0,0,0,863,NULL,0,0,0,1209499189),('oSqpGswzpBG_ErdfYwIO8A',1209499189,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg.jpg','3','7','12',NULL,0,1,0,0,0,681,NULL,0,0,0,1209499189),('MXJklShZvLLB_DSnZQmXrQ',1209499189,'3','pbversion0000000000001','approved','title_bg.jpg','title_bg.jpg','root/import/gallery-templates/images/title_bg.jpg','3','7','12',NULL,0,1,0,0,0,1647,NULL,0,0,0,1209499189),('BthxD5oJ0idmsyI3ioA2FA',1209499189,'3','pbversion0000000000001','approved','bar-btn-l.jpg','bar-btn-l.jpg','root/import/gallery-templates/images/bar-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,834,NULL,0,0,0,1209499189),('aZ-1HYQamkRHYXvzAra8WQ',1209499189,'3','pbversion0000000000001','approved','search-field.jpg','search-field.jpg','root/import/gallery-templates/images/search-field.jpg','3','7','12',NULL,0,1,0,0,0,739,NULL,0,0,0,1209499189),('eRkb94OYcS5AdcrrerOP5Q',1209499189,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss2.gif','3','7','12',NULL,0,1,0,0,0,1380,NULL,0,0,0,1209499189),('TbnkjAJQEASORXIpYqDkcA',1209499189,'3','pbversion0000000000001','approved','blank-image.jpg','blank-image.jpg','root/import/gallery-templates/images/blank-image.jpg','3','7','12',NULL,0,1,0,0,0,3073,NULL,0,0,0,1209499189),('er-3faBjY-hhlDcc5aKqdQ',1209499189,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg2.jpg','3','7','12',NULL,0,1,0,0,0,682,NULL,0,0,0,1209499189),('8bFsu2FJUqHRUiHcozcVFw',1209499189,'3','pbversion0000000000001','approved','sub-btn-l.jpg','sub-btn-l.jpg','root/import/gallery-templates/images/sub-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,833,NULL,0,0,0,1209499189),('34Aayx5eA320D8VfhdfDBw',1209499189,'3','pbversion0000000000001','approved','sub-btn-r.jpg','sub-btn-r.jpg','root/import/gallery-templates/images/sub-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,813,NULL,0,0,0,1209499189),('TlhKOVmWblZOsAdqmhEpeg',1209499189,'3','pbversion0000000000001','approved','sub-btn.jpg','sub-btn.jpg','root/import/gallery-templates/images/sub-btn.jpg','3','7','12',NULL,0,1,0,0,0,691,NULL,0,0,0,1209499189),('Nx0ypjO3cN6QdZUBUEE0lA',1209499189,'3','pbversion0000000000001','approved','pic-title-bg.jpg','pic-title-bg.jpg','root/import/gallery-templates/images/pic-title-bg.jpg','3','7','12',NULL,0,1,0,0,0,854,NULL,0,0,0,1209499189),('CmFZLN7iPS7XXvUEsxKPKA',1209499190,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/gallery-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,795,NULL,0,0,0,1209499190),('v_XBgwwZqgW1D5s4y05qfg',1209499190,'3','pbversion0000000000001','approved','addtl-info.gif','addtl-info.gif','root/import/gallery-templates/images/addtl-info.gif','3','7','12',NULL,0,1,0,0,0,903,NULL,0,0,0,1209499190),('4TdAkKoQbSCvI7QWcW889A',1209499190,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/gallery-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,780,NULL,0,0,0,1209499190),('SAgK6eDPCG1cgkJ59WapHQ',1209499190,'3','pbversion0000000000001','approved','prev-btn.gif','prev-btn.gif','root/import/gallery-templates/images/prev-btn.gif','3','7','12',NULL,0,1,0,0,0,2004,NULL,0,0,0,1209499190),('XJYLuvGy9ubF7JNKyINtpA',1209499190,'3','pbversion0000000000001','approved','play-btn.gif','play-btn.gif','root/import/gallery-templates/images/play-btn.gif','3','7','12',NULL,0,1,0,0,0,2532,NULL,0,0,0,1209499190),('RWj7hyv2SpZuXxwj1Wocug',1209499190,'3','pbversion0000000000001','approved','next-btn.gif','next-btn.gif','root/import/gallery-templates/images/next-btn.gif','3','7','12',NULL,0,1,0,0,0,2034,NULL,0,0,0,1209499190),('aq8QElnlm3YufAoxRz9Pcg',1209499190,'3','pbversion0000000000001','approved','data-bg.jpg','data-bg.jpg','root/import/gallery-templates/images/data-bg.jpg','3','7','12',NULL,0,1,0,0,0,810,NULL,0,0,0,1209499190),('7fE8md51vTCcuJFOvxNaGA',1209503742,'3','pbversion0000000000001','approved','thumbnails.js','thumbnails.js','root/import/gallery-templates/thumbnails.js','3','7','3',NULL,0,1,0,0,0,3933,NULL,0,1,0,1209503742),('mTOiwwk3q4k9g5-XykXhPA',1218149728,'3','pbversion0000000000001','approved','Documentation','Documentation','documentation','3','7','3',NULL,0,0,0,0,0,506,NULL,0,1,0,1218149728),('TYo2Bwl7aafzTtdHlS-arQ',1211664878,'3','pbversion0000000000001','approved','Product','Product','root/import/product','3','7','12',NULL,0,0,0,0,0,284,NULL,0,1,0,1211664878),('gbnRhcWNk1iQe32LFEB5eQ',1212086102,'3','pbversion0000000000001','approved','Shelf','Shelf','root/import/shelf2','3','7','12',NULL,0,1,0,0,0,279,NULL,0,1,0,1212086102),('6tK47xsaIH-ELw0IBo0uRQ',1210777115,'3','pbversion0000000000001','approved','images','images','root/import/shelf2/images','3','7','12',NULL,0,1,0,0,0,294,NULL,0,1,0,1210777115),('_bZJ9LA_KNekZiFPaP2SeQ',1210777868,'3','pbversion0000000000001','approved','shelf-titles.jpg','shelf-titles.jpg','root/import/shelf2/images/shelf-titles.jpg','3','7','12',NULL,0,1,0,0,0,1027,NULL,0,0,0,1210777868),('4e-_rNs6mSWedZhQ_V5kJA',1210779672,'3','pbversion0000000000001','approved','shelf-ie.css','shelf-ie.css','root/import/shelf2/shelf-ie.css','3','7','12',NULL,0,1,0,0,0,693,NULL,0,1,0,1210779672),('6D4Z-oruXPS6OlH_Kx8pBg',1209509389,'3','pbversion0000000000001','approved','images','images','root/import/thingy-templates/images','3','7','12',NULL,0,1,0,0,0,304,NULL,0,1,0,1209509389),('hQ7z33_jOYkQ8WNX5xy9Sw',1209509455,'3','pbversion0000000000001','approved','style-button.gif','style-button.gif','root/import/thingy-templates/images/style-button.gif','3','7','12',NULL,0,1,0,0,0,912,NULL,0,0,0,1209509455),('vWW_DcHiYSrKZOkkIfEfcQ',1209509433,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/thingy-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,794,NULL,0,0,0,1209509433),('_bPYzRA87NTAUIKlfrJMHg',1209509433,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/thingy-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,779,NULL,0,0,0,1209509433),('nJjZHRwdDs5MAZYsAyioHw',1209509433,'3','pbversion0000000000001','approved','title-bg.jpg','title-bg.jpg','root/import/thingy-templates/images/title-bg.jpg','3','7','12',NULL,0,1,0,0,0,1094,NULL,0,0,0,1209509433),('8hxfkrJPeFVRWF5piCNJ1A',1209509433,'3','pbversion0000000000001','approved','field-bg.jpg','field-bg.jpg','root/import/thingy-templates/images/field-bg.jpg','3','7','12',NULL,0,1,0,0,0,710,NULL,0,0,0,1209509433),('Osx7WN52iIKHZFT4vqUBHQ',1209509433,'3','pbversion0000000000001','approved','search-btn.gif','search-btn.gif','root/import/thingy-templates/images/search-btn.gif','3','7','12',NULL,0,1,0,0,0,1252,NULL,0,0,0,1209509433),('oWff8fGzRdHPyq5VNREe9Q',1209509433,'3','pbversion0000000000001','approved','top-bg.jpg','top-bg.jpg','root/import/thingy-templates/images/top-bg.jpg','3','7','12',NULL,0,1,0,0,0,680,NULL,0,0,0,1209509433),('uqbkvb1b9443VvfkyRz95w',1209509433,'3','pbversion0000000000001','approved','save-button.gif','save-button.gif','root/import/thingy-templates/images/save-button.gif','3','7','12',NULL,0,1,0,0,0,1260,NULL,0,0,0,1209509433),('8YiMkcz32xalkAn3WBLpag',1210181860,'3','pbversion0000000000001','approved','go-btn.gif','go-btn.gif','root/import/thingy-templates/images/go-btn.gif','3','7','12',NULL,0,1,0,0,0,419,NULL,0,0,0,1210181860),('C5fPz-Wg85vkYRvCdl-Xqw',1212160830,'3','pbversion0000000000001','approved','UserList','UserList','root/import/userlist','3','7','12',NULL,0,1,0,0,0,287,NULL,0,1,0,1212160830),('usuxw9V3jN4d4pujRiEYxg',1209494150,'3','pbversion0000000000001','approved','css03-ie.css','css03-ie.css','style3/css03-ie.css','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1209494150),('aNmgn0cd6tldmC1FpW4KbA',1213122695,'3','pbversion0000000000001','approved','Shop','Shop','shopping-cart-collateral-items','3','7','3',NULL,0,1,0,0,0,288,NULL,0,0,0,1213122695),('2q5fxatSFLgIhXaUX-oSvg',1204149033,'3','pbversion0000000000001','approved','bottom-left.jpg','bottom-left.jpg','shopping-cart-collateral-items/bottom-left.jpg','3','7','3',NULL,0,1,0,0,0,32243,NULL,0,0,0,1204149033),('_d5WTkKjnwct-_Dk7gZHvQ',1204149033,'3','pbversion0000000000001','approved','bottom-right.jpg','bottom-right.jpg','shopping-cart-collateral-items/bottom-right.jpg','3','7','3',NULL,0,1,0,0,0,32247,NULL,0,0,0,1204149033),('Iz2mUR3jCPKyemwAea4b2g',1204149033,'3','pbversion0000000000001','approved','input_bg.jpg','input_bg.jpg','shopping-cart-collateral-items/input_bg.jpg','3','7','3',NULL,0,1,0,0,0,30065,NULL,0,0,0,1204149033),('JU9bjsLRoWj7GVHs__prig',1204149033,'3','pbversion0000000000001','approved','top-left.jpg','top-left.jpg','shopping-cart-collateral-items/top-left.jpg','3','7','3',NULL,0,1,0,0,0,32196,NULL,0,0,0,1204149033),('noOlnjQGexHg8c4bGVUo9g',1204149033,'3','pbversion0000000000001','approved','top-right.jpg','top-right.jpg','shopping-cart-collateral-items/top-right.jpg','3','7','3',NULL,0,1,0,0,0,32234,NULL,0,0,0,1204149033),('bPz1yk6Y9uwMDMBcmMsSCg',1211829604,'3','pbversion0000000000001','approved','Email Receipt (Default)','Email Receipt (Default)','shopping-cart-collateral-items/email-receipt-default','3','7','3',NULL,0,1,0,0,0,2895,NULL,0,1,0,1228264384),('EBlxJpZQ9o-8VBOaGQbChA',1212093746,'3','pbversion0000000000001','approved','MiniCart','MiniCart','shopping-cart-collateral-items/minicart','3','7','3',NULL,0,1,0,0,0,2295,'',0,1,0,1228264384),('WeatherDataTmpl0000001',1210711353,'3','pbversion0000000000001','approved','WeatherData Default View','WeatherData Default View','weatherdatatmpl0000001','3','7','12',NULL,0,1,0,0,0,5190,'\r\n\r\n\r\n',0,1,0,1228264384),('Ik9HHky10DIyFTKehUD1dw',1222803478,'3','pbversion0000000000001','approved','Prompt','Prompt','root/import/prompt','3','7','12',NULL,0,0,0,0,0,285,NULL,0,1,0,1222803478),('gI_TxK-5S4DNuv42wpImmw',1213734379,'3','pbversion0000000000001','approved','Gallery Templates','Gallery Templates','root/import/gallery-templates','3','7','3',NULL,0,0,0,0,0,326,NULL,0,1,0,1213734379),('BmLaN4rmAANkCglXUViEbg',1222803871,'3','pbversion0000000000001','approved','Resource','Resource','root/import/projectmanager/resource','3','12','12',NULL,0,0,0,0,0,314,NULL,0,1,0,1222803871),('X7DrzUcj8pOKFa_6k9D5iw',1222804045,'3','pbversion0000000000001','approved','Newsletter','Newsletter','root/import/newsletter','3','12','3',NULL,0,0,0,0,0,297,NULL,0,1,0,1222804045),('7-0-style0000000000059',1213386091,'3','pbversion0000000000001','approved','main_top.jpg','main_top.jpg','style3/main_top.jpg','3','7','12',NULL,0,0,0,0,0,3583,NULL,0,1,0,1213386091),('CalendarPrintEvent0001',1215396964,'3','pbversion0000000000001','approved','Default Calendar Print Event','Default Calendar Print Event','root/import/calendar-templates/default-calendar-print-event','3','7','12',NULL,0,0,0,0,0,3079,' \r\n',0,1,0,1228264384),('_gBYAdTcbkiyamnqi2Xskg',1222803409,'3','pbversion0000000000001','approved','WebGUI/Recovery','WebGUI/Recovery','root/import/auth/webgui/recovery','3','7','12',NULL,0,0,0,0,0,324,NULL,0,1,0,1222803409),('j_1qEqM6iLfQLiR6VKy0aA',1215718151,'3','pbversion0000000000001','approved','Free Documentation','Free Documentation','documentation/free-documentation','3','7','3',NULL,0,1,0,0,0,1382,NULL,0,1,0,1215718151),('o_pq_e4vRyhMOKFzs61eag',1215714957,'3','pbversion0000000000001','approved','book-covers.jpg','book-covers.jpg','documentation/book-covers.jpg','3','7','3',NULL,0,1,0,0,0,106067,NULL,0,0,0,1215714957),('diZvW4bSgZWwyyGP3qXi1g',1215717972,'3','pbversion0000000000001','approved','Commercial Documentation','Commercial Documentation','documentation/commercial-documentation','3','7','3',NULL,0,1,0,0,0,1077,NULL,0,1,0,1215717972),('oHk7fAFhEEkB7dHzi0QOQA',1222803399,'3','pbversion0000000000001','approved','WebGUI/Expired','WebGUI/Expired','root/import/auth/webgui/expired','3','7','12',NULL,0,0,0,0,0,321,NULL,0,1,0,1222803399),('fq1ZkYhH24R5tb96kuT10Q',1222803395,'3','pbversion0000000000001','approved','WebGUI/Create','WebGUI/Create','root/import/auth/webgui/create','3','7','12',NULL,0,0,0,0,0,318,NULL,0,1,0,1222803395),('63ix2-hU0FchXGIWkG3tow',1216169693,'3','pbversion0000000000001','approved','Flat Discount (Default)','Flat Discount (Default)','root/import/flat-discount-default','3','7','12',NULL,0,1,0,0,0,811,NULL,0,1,0,1228264384),('K0q_N885Httqev1VCqUWxg',1222803391,'3','pbversion0000000000001','approved','WebGUI/Account','WebGUI/Account','root/import/auth/webgui/account','3','7','12',NULL,0,0,0,0,0,321,NULL,0,1,0,1222803391),('jnYdqDkUR8x7Pv2eGR1qTA',1216250666,'3','pbversion0000000000001','approved','Thingy Templates','Thingy Templates','root/import/thingy-templates','3','7','12',NULL,0,1,0,0,0,312,NULL,0,1,0,1216250666),('taX2UYkFF21ALpFZY2rhMw',1222803387,'3','pbversion0000000000001','approved','LDAP/Login','LDAP/Login','root/import/auth/ldap/login','3','7','12',NULL,0,0,0,0,0,309,NULL,0,1,0,1222803387),('3n3H85BsdeRQ0I08WmvlOg',1216227244,'3','pbversion0000000000001','approved','thingy.css','thingy.css','root/import/thingy-templates/thingy.css','3','7','12',NULL,0,1,0,0,0,2768,NULL,0,1,0,1216227244),('5m5I7__l40C4hhv4ydqAHQ',1216227786,'3','pbversion0000000000001','approved','thingy-ie.css','thingy-ie.css','root/import/thingy-templates/thingy-ie.css','3','7','12',NULL,0,1,0,0,0,830,NULL,0,1,0,1216227786),('9M-lrlPQWeeNWfvnDnK_Xg',1222803405,'3','pbversion0000000000001','approved','WebGUI/Login','WebGUI/Login','root/import/auth/webgui/login','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1222803405),('xSmREZO3GNzK3M5PaueOOQ',1222803378,'3','pbversion0000000000001','approved','LDAP/Account','LDAP/Account','root/import/auth/ldap/account','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1222803378),('0bx-xoL8TSXXubFuqKAoVQ',1222803383,'3','pbversion0000000000001','approved','LDAP/Create','LDAP/Create','root/import/auth/ldap/create','3','7','12',NULL,0,0,0,0,0,312,NULL,0,1,0,1222803383),('1oGhfj00KkCzP1ez01AfKA',1218582812,'3','pbversion0000000000001','approved','slideshow.js','slideshow.js','root/import/gallery-templates/slideshow.js','3','7','3',NULL,0,1,0,0,0,8708,NULL,0,1,0,1218582812),('PBtmpl0000000000000130',1219072470,'3','pbversion0000000000001','approved','Tree Navigation','Tree Navigation','root/import/navigation/tree-navigation','3','7','12',NULL,0,1,0,0,0,2512,'\r\n\r\n\r\n',0,1,0,1228264384),('pV7GnZdpjR3XpZaSINIoeg',1222803347,'3','pbversion0000000000001','approved','gantt','gantt','root/import/projectmanager/gantt','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1222803347),('9A-mg2gwWmaYi9o_1C7ArQ',1222803338,'3','pbversion0000000000001','approved','dashboard','dashboard','root/import/projectmanager/dashboard','3','7','12',NULL,0,0,0,0,0,316,NULL,0,1,0,1222803338),('PBtmpl0000000000000054',1220655703,'3','pbversion0000000000001','approved','Default Page','Default Page','default_page','3','7','12',NULL,0,1,0,0,0,1193,NULL,0,1,0,1228264384),('PBtmpl000000000table54',1220655704,'3','pbversion0000000000001','approved','Default Page (Table)','Default Page (Table)','default_page_table','3','7','12',NULL,0,0,0,0,0,1258,NULL,0,1,0,1228264384),('yD1SMHelczihzjEmx6eXBA',1222803342,'3','pbversion0000000000001','approved','editTask','editTask','root/import/projectmanager/edittask','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803342),('PBtmpl0000000000000125',1220655703,'3','pbversion0000000000001','approved','Left Column','Left Column','left_column','3','7','12',NULL,0,1,0,0,0,2407,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table125',1220655705,'3','pbversion0000000000001','approved','Left Column (Table)','Left Column (Table)','left_column_table','3','7','12',NULL,0,0,0,0,0,2419,'\n',0,1,0,1228264384),('PBtmpl00000000table094',1220655704,'3','pbversion0000000000001','approved','News (Table)','News (Table)','news_table','3','7','12',NULL,0,0,0,0,0,3604,'\r\n',0,1,0,1228264384),('PBtmpl0000000000000109',1220655703,'3','pbversion0000000000001','approved','One Over Three','One Over Three','one_over_three','3','7','12',NULL,0,1,0,0,0,3851,'\n\n',0,1,0,1228264384),('PBtmpl00000000table109',1220655705,'3','pbversion0000000000001','approved','One Over Three (Table)','One Over Three (Table)','one_over_three_table','3','7','12',NULL,0,0,0,0,0,3921,'\n\n',0,1,0,1228264384),('PBtmpl0000000000000094',1220655703,'3','pbversion0000000000001','approved','News','News','plainblacknews','3','7','12',NULL,0,1,0,0,0,3564,'\r\n\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000131',1220655704,'3','pbversion0000000000001','approved','Right Column','Right Column','right_column','3','7','12',NULL,0,1,0,0,0,2421,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table131',1220655705,'3','pbversion0000000000001','approved','Right Column (Table)','Right Column (Table)','right_column_table','3','7','12',NULL,0,0,0,0,0,2415,'\n',0,1,0,1228264384),('1XOJDcg_ITRYwVM-QnIcPw',1219175575,'3','pbversion0000000000001','approved','shelf.css','shelf.css','root/import/shelf2/shelf.css','3','7','12',NULL,0,1,0,0,0,1486,NULL,0,1,0,1219175575),('PBtmpl0000000000000135',1220655704,'3','pbversion0000000000001','approved','Side By Side','Side By Side','side_by_side','3','7','12',NULL,0,1,0,0,0,2256,'\n\n',0,1,0,1228264384),('PBtmpl00000000table135',1220655706,'3','pbversion0000000000001','approved','Side By Side (Table)','Side By Side (Table)','side_by_side_table','3','7','12',NULL,0,0,0,0,0,2277,'\r\n',0,1,0,1228264384),('PBtmpl0000000000000118',1220655703,'3','pbversion0000000000001','approved','Three Over One','Three Over One','three_over_one','3','7','12',NULL,0,1,0,0,0,3814,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table118',1220655705,'3','pbversion0000000000001','approved','Three Over One (Table)','Three Over One (Table)','three_over_one_table','3','7','12',NULL,0,0,0,0,0,3936,'\r\n',0,1,0,1228264384),('huASapWvFDzqwOSbcN-JFQ',1222803313,'3','pbversion0000000000001','approved','user','user','root/import/timetracking/user','3','7','12',NULL,0,0,0,0,0,299,NULL,0,1,0,1222803313),('lo1ac3BsoJx3ijGQ3gR-bQ',1222803309,'3','pbversion0000000000001','approved','row','row','root/import/timetracking/row','3','7','12',NULL,0,0,0,0,0,296,NULL,0,1,0,1222803309),('1z9J1O08n_7gVVlBwSRBJQ',1222803099,'3','pbversion0000000000001','approved','Auth','Auth','root/import/auth','3','7','12',NULL,0,1,0,0,0,279,NULL,0,1,0,1222803099),('zyWi26q9na-iiZqL4yedog',1222803114,'3','pbversion0000000000001','approved','Macro','Macro','root/import/macro','3','7','12',NULL,0,1,0,0,0,282,NULL,0,1,0,1222803114),('tBL7BWiQRZFed2Y-Zjo9tQ',1222803200,'3','pbversion0000000000001','approved','AdminToggle','AdminToggle','root/import/macro/admintoggle','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803200),('GdkQpvjRtJqtzOUbwIIQRA',1222803205,'3','pbversion0000000000001','approved','a_account','a_account','root/import/macro/a_account','3','7','12',NULL,0,0,0,0,0,307,NULL,0,1,0,1222803205),('tnc5iYyynX2hfdEs9D3P8w',1222803213,'3','pbversion0000000000001','approved','EditableToggle','EditableToggle','root/import/macro/editabletoggle','3','7','12',NULL,0,0,0,0,0,322,NULL,0,1,0,1222803213),('vgXdBcFTqU7h4wBG1ewdBw',1222803217,'3','pbversion0000000000001','approved','File','File','root/import/macro/file','3','7','12',NULL,0,0,0,0,0,292,NULL,0,1,0,1222803217),('hcFlqnXlsmC1ujN6Id0F0A',1222803234,'3','pbversion0000000000001','approved','GroupAdd','GroupAdd','root/import/macro/groupadd','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1222803234),('eRJR52fvlaxfetv3DQkQYw',1222803238,'3','pbversion0000000000001','approved','GroupDelete','GroupDelete','root/import/macro/groupdelete','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803238),('5HIDHq5lAWHV5gpYGS0zLg',1222803244,'3','pbversion0000000000001','approved','H_homeLink','H_homeLink','root/import/macro/h_homelink','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803244),('rYEFwXXo0tkGhQTcbDibvg',1222803249,'3','pbversion0000000000001','approved','LoginToggle','LoginToggle','root/import/macro/logintoggle','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803249),('-WM2dt0ZGpDasuL2wWocxg',1222803056,'3','pbversion0000000000001','approved','ProjectManager','ProjectManager','root/import/projectmanager','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1222803056),('2OcUWHVsu_L1sDFzIMWYqw',1222803070,'3','pbversion0000000000001','approved','TimeTracking','TimeTracking','root/import/timetracking','3','7','12',NULL,0,1,0,0,0,303,NULL,0,1,0,1222803070),('vTymIDYL2YqEh6PV50F7ew',1222803302,'3','pbversion0000000000001','approved','manager','manager','root/import/timetracking/manager','3','7','12',NULL,0,0,0,0,0,308,NULL,0,1,0,1222803302),('nqNbSUAhk9Vd1zda2SCz9A',1222803258,'3','pbversion0000000000001','approved','RandomThread','RandomThread','root/import/macro/randomthread','3','7','12',NULL,0,0,0,0,0,316,NULL,0,1,0,1222803258),('y8XkRdxIperLKkJ3bL5sSQ',1222803264,'3','pbversion0000000000001','approved','r_printable','r_printable','root/import/macro/r_printable','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803264),('V3l5S5TtI7wMm1WpIMhvOA',1222803253,'3','pbversion0000000000001','approved','L_loginBox','L_loginBox','root/import/macro/l_loginbox','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803253),('aIpCmr9Hi__vgdZnDTz1jw',1227539574,'3','pbversion0000000000001','approved','Cart (Default)','Cart (Default)','default-shopping-cart-template','3','7','3',NULL,0,1,0,0,0,8125,' ',0,1,0,1228264384),('PBEmsBadgeTemplate0000',1221692339,'3','pbversion0000000000001','approved','Default EMS Badge Template','Default EMS Badge Template','default_emsbadge','3','7','4',NULL,0,0,0,0,0,1456,NULL,0,1,0,1228264384),('PBtmpl0000000000000005',1221612327,'3','pbversion0000000000001','approved','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template','default_ldap_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,5808,'\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000200',1222383245,'3','pbversion0000000000001','approved','Default Search','Default Search','default_search2','3','7','12',NULL,0,0,0,0,0,1042,NULL,0,1,0,1228264384),('PBtmpl0000000000000011',1221612288,'3','pbversion0000000000001','approved','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template','default_webgui_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,6179,'\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000134',1222574692,'3','pbversion0000000000001','approved','Hierarchical Top Nav','Hierarchical Top Nav','import/hierarchical-top-nav','3','7','12',NULL,0,1,0,0,0,2993,'\r\n\r\n\r\n\r\n\r\n\n',0,1,0,1228264384),('PBtmpl0000000000000020',1221692340,'3','pbversion0000000000001','approved','Mail Form','Mail Form','mail_form','3','7','12',NULL,0,1,0,0,0,3147,'\n',0,1,0,1228264384),('newslettersubscrip0001',1221692339,'3','pbversion0000000000001','approved','My Subscriptions (default)',' My Subscriptions','newslettermysubscriptionstemplate','3','7','3',NULL,0,0,0,0,0,778,NULL,0,1,0,1228264384),('PBtmpl0000000000000141',1221692340,'3','pbversion0000000000001','approved','Default DataForm','Default DataForm','pbtmpl0000000000000141','3','7','12',NULL,0,1,0,0,0,4343,'\r\n',0,1,0,1228264384),('kj3b-X3i6zRKnhLb4ZiCLw',1222574694,'3','pbversion0000000000001','approved','Default Calendar List View','Default Calendar List View','root/import/calendar-templates/default-calendar-list-view','3','7','3',NULL,0,1,0,0,0,4212,'\n',0,1,0,1228264384),('eqb9sWjFEVq0yHunGV8IGw',1222574693,'3','pbversion0000000000001','approved','Subscription (Default)','Subscription (Default)','root/import/subscription-default','3','7','12',NULL,0,1,0,0,0,2113,'\n',0,1,0,1228264384),('2gtFt7c0qAFNU3BG_uvNvg',1222574694,'3','pbversion0000000000001','approved','My Purchases (Default)','My Purchases (Default)','shopping-cart-collateral-items/my-purchases-default','3','7','3',NULL,0,1,0,0,0,2535,'\n',0,1,0,1228264384),('g8W53Pd71uHB9pxaXhWf_A',1222574693,'3','pbversion0000000000001','approved','My Purchases Detail (Default)','My Purchases Detail (Default)','shopping-cart-collateral-items/my-purchases-detail-default','3','7','3',NULL,0,1,0,0,0,6039,'\n',0,1,0,1228264384),('stevestyle000000000001',1222383245,'3','pbversion0000000000001','approved','Style 01','Style 01','style_01','3','7','12',NULL,0,0,0,0,0,1618,NULL,0,1,0,1228264384),('stevestyle000000000002',1222383245,'3','pbversion0000000000001','approved','Style 02','Style 02','style_02','3','7','12',NULL,0,0,0,0,0,2603,NULL,0,1,0,1228264384),('PBtmpl0000000000000116',1221692340,'3','pbversion0000000000001','approved','Tab Form','Tab Form','tab_form','3','7','12',NULL,0,1,0,0,0,3847,'\n',0,1,0,1228264384),('ThingyTmpl000000000002',1222574693,'3','pbversion0000000000001','approved','Default Thingy View Thing','Default Thingy View Thing','templates/thingy-default-view-thing','3','7','12',NULL,0,0,0,0,0,2859,'\n',0,1,0,1228264384),('UL-ItI4L1Z6-WSuhuXVvsQ',1225139673,'3','pbversion0000000000001','approved','DataTable','DataTable','root/import/datatable','3','7','3',NULL,0,0,0,0,0,293,NULL,0,1,0,1225139673),('BMybD3cEnmXVk2wQ_qEsRQ',1224723361,'3','pbversion0000000000001','approved','Badge Builder (Default)','Badge Builder (Default)','root/import/ems/badge-builder-default','3','7','12',NULL,0,1,0,0,0,22629,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('2rC4ErZ3c77OJzJm7O5s3w',1224723218,'3','pbversion0000000000001','approved','EMS Badge Listing (default)','EMS Badge Listing (default)','root/import/ems/ems-badge-listing-default','3','7','12',NULL,0,1,0,0,0,7157,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n',0,1,0,1228264385),('OOyMH33plAy6oCj_QWrxtg',1224724790,'3','pbversion0000000000001','approved','Lookup Registrant (Default)','Lookup Registrant (Default)','root/import/ems/lookup-registrant-default','3','7','12',NULL,0,1,0,0,0,5159,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('THQhn1C-ooj-TLlEP7aIJQ',1225313951,'3','pbversion0000000000001','approved','gallery-ie.css','gallery-ie.css','root/import/gallery-templates/gallery-ie.css','3','7','3',NULL,0,1,0,0,0,441,NULL,0,1,0,1225313951),('7-0-style0000000000049',1224117144,'3','pbversion0000000000001','approved','WebGUI 7 Style 3','WebGUI 7 Style 3','root/import/webgui-7-style-3','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1224117144),('stevecoolmenu000000001',1224116942,'3','pbversion0000000000001','approved','Site Nav','Site Nav','webgui7/style3/hierarchical-top-nav','3','7','12',NULL,0,0,0,0,0,2566,'\r\n\r\n\r\n\r\n',0,1,0,1228264385),('7-0-style0000000000051',1224117026,'3','pbversion0000000000001','approved','css03.css','css03.css','style3/css03.css','3','7','12',NULL,0,0,0,0,0,3683,NULL,0,1,0,1224117026),('jVKLVakT_iA2010_oEuAwg',1224116526,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','department_nav','3','7','12',NULL,0,0,0,0,0,354,NULL,0,1,0,1224116526),('XNd7a_g_cTvJVYrVHcx2Mw',1224606020,'3','pbversion0000000000001','approved','Address (Default)','Address (Default)','shopping-cart-collateral-items/address-default','3','7','3',NULL,0,1,0,0,0,3231,'\r\n',0,1,0,1228264385),('stevestyle000000000003',1224795533,'3','pbversion0000000000001','approved','Style 03','Style 03','style_03','3','7','12',NULL,0,0,0,0,0,1716,NULL,0,1,0,1228264385),('ThingyTmpl000000000003',1224518002,'3','pbversion0000000000001','approved','Default Thingy Edit Thing','Default Thingy Edit Thing','templates/thingy-default-edit-thing','3','7','12',NULL,0,0,0,0,0,3883,'\r\n\r\n\r\n',0,1,0,1228264385),('QpmlAiYZz6VsKBM-_0wXaw',1224616691,'3','pbversion0000000000001','approved','UsersOnline Macro','UsersOnline Macro','users-online-macro-templates','3','7','3',NULL,0,0,0,0,0,329,NULL,0,1,0,1224616691),('h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'3','pbversion0000000000001','approved','UsersOnline Default View','UsersOnline Default View','users-online-macro-templates/usersonline-default-view','3','7','3',NULL,0,1,0,0,0,1728,'\r\n\r\n',0,1,0,1228264385),('4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'3','pbversion0000000000001','approved','UsersOnline Detailed View','UsersOnline Detailed View','users-online-macro-templates/usersonline-detailed-view','3','7','3',NULL,0,1,0,0,0,2706,'\r\n\r\n',0,1,0,1228264385),('PBtmpl0000000000000065',1226457084,'3','pbversion0000000000001','approved','Default Syndicated Content','Default Syndicated Content','default_syndicated_content','3','7','12',NULL,0,1,0,0,0,1041,NULL,0,1,0,1228264385),('newslettercs0000000001',1226896423,'3','pbversion0000000000001','approved','Newsletter Manager (default)',' Newsletter Manager','newslettercstemplate','3','7','3',NULL,0,0,0,0,0,1886,'\n',0,1,0,1228264385),('HPDOcsj4gBme8D4svHodBw',1225404573,'3','pbversion0000000000001','approved','Profile','Profile','root/import/account/profile','3','7','12',NULL,0,1,0,0,0,311,NULL,0,1,0,1234301429),('IZkrow_zwvbf4FCH-taVTQ',1226011853,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/account/inbox','3','7','12',NULL,0,1,0,0,0,305,NULL,0,1,0,1234301429),('DUoxlTBXhVS-Zl3CFDpt9g',1226896802,'3','pbversion0000000000001','approved','Default Message Confirm Template','Default Message Confirm Template','root/import/account/inbox/default-message-confirm-template','3','7','12',NULL,0,1,0,0,0,582,NULL,0,1,0,1234301430),('SVIhz68689hwUGgcDM-gWw',1226973314,'3','pbversion0000000000001','approved','Default Invite User Confirm Template','Default Invite User Confirm Template','root/import/account/inbox/default-invite-user-confirm-template','3','7','12',NULL,0,1,0,0,0,610,NULL,0,1,0,1234301430),('K0YjxqOqr7RupSo6sIdcAg',1227074310,'3','pbversion0000000000001','approved','Friends','Friends','root/import/account/friends','3','7','12',NULL,0,1,0,0,0,311,NULL,0,1,0,1234301429),('7Ijdd8SW32lVgg2H8R-Aqw',1226995714,'3','pbversion0000000000001','approved','Default Friends Error Template','Default Friends Error Template','root/import/account/friends/default-friends-error-template','3','7','12',NULL,0,1,0,0,0,585,NULL,0,1,0,1234301430),('K8F0j_cq_jgo8dvWY_26Ag',1226995643,'3','pbversion0000000000001','approved','Default Friends Confirmation Template','Default Friends Confirmation Template','root/import/account/friends/default-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,678,NULL,0,1,0,1234301430),('G5V6neXIDiFXN05oL-U3AQ',1226995768,'3','pbversion0000000000001','approved','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template','root/import/account/friends/default-remove-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,813,NULL,0,1,0,1234301430),('_ilRXNR3s8F2vGJ_k9ePcg',1226643205,'3','pbversion0000000000001','approved','User','User','root/import/account/user','3','7','12',NULL,0,1,0,0,0,302,NULL,0,1,0,1234301429),('AOjPG2NHgfL9Cq6dDJ7mew',1226659753,'3','pbversion0000000000001','approved','Shop','Shop','root/import/account/shop','3','7','12',NULL,0,1,0,0,0,302,NULL,0,1,0,1234301429),('qaVcU0FFzzraMX_bzELqzw',1227074362,'3','pbversion0000000000001','approved','Contributions','Contributions','root/import/account/contributions','3','7','12',NULL,0,1,0,0,0,329,NULL,0,1,0,1234301429),('vrKXEtluIhbmAS9xmPukDA',1226698051,'3','pbversion0000000000001','approved','Donation (Default)','Donation (Default)','root/import/default-donation-template','3','7','12',NULL,0,1,0,0,0,1876,'\r\n',0,0,0,1228264385),('5bnNzteN7w3NnK9mF4XiCg',1227540002,'3','pbversion0000000000001','approved','Survey','Survey','root/import/survey','3','7','12',NULL,0,0,0,0,0,295,NULL,0,1,0,1227556681),('PBtmpl0000000000000061',1227252733,'3','pbversion0000000000001','approved','Default Survey','Default Survey','default_survey','3','7','12',NULL,0,1,0,0,0,1340,NULL,0,1,0,1228264385),('PBtmpl0000000000000064',1226009610,'3','pbversion0000000000001','approved','Default Response','Default Response','default_response','3','7','12',NULL,0,1,0,0,0,1981,NULL,0,1,0,1228264385),('3womoo7Teyy2YKFa25-MZg',1226703362,'3','pbversion0000000000001','approved','Address Book (Default)','Address Book (Default)','shopping-cart-collateral-items/address-book-default','3','7','3',NULL,0,1,0,0,0,2603,'\r\n',0,1,0,1228264385),('ThingyTmpl000000000004',1227044214,'3','pbversion0000000000001','approved','Default Thingy Search Thing','Default Thingy Search Thing','templates/thingy-default-search-thing','3','7','12',NULL,0,0,0,0,0,6455,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('XgcsoDrbC0duVla7N7JAdw',1227566394,'3','pbversion0000000000001','approved','Default Invite User Email Template','Default Invite User Email Template','root/import/account/inbox/default-invite-user-email-template','3','7','12',NULL,0,1,0,0,0,442,NULL,0,1,0,1234301430),('UserListTmpl0000000001',1228125743,'3','pbversion0000000000001','approved','Default UserList','Default UserList','root/import/userlist/default-userlist','3','7','12',NULL,0,1,0,0,0,2817,NULL,0,1,0,1228264387),('UserListTmpl0000000003',1228125758,'3','pbversion0000000000001','approved','UserList with multiple search keywords','UserList with multiple search keywords','root/import/userlist/userlist-with-multiple-search-keywords','3','7','12',NULL,0,1,0,0,0,2998,NULL,0,1,0,1228264387),('UserListTmpl0000000002',1228125752,'3','pbversion0000000000001','approved','UserList with search field selection','UserList with search field selection','root/import/userlist/userlist-with-search-field-selection','3','7','12',NULL,0,1,0,0,0,2804,NULL,0,1,0,1228264387),('ThingyTmpl000000000001',1227753116,'3','pbversion0000000000001','approved','Default Thingy','Default Thingy','templates/thingy-default','3','7','12',NULL,0,0,0,0,0,1442,'',0,1,0,1228264387),('matrixtmpl000000000004',1228834590,'3','pbversion0000000000001','approved','Matrix Default Edit Listing','Matrix Default Edit Listing','default-matrix-edit-listing-template','3','7','12',NULL,0,0,0,0,0,430,NULL,0,1,0,1233158077),('PBtmpl0000000000000207',1229100306,'3','pbversion0000000000001','approved','Article with Files','Article with Files','article-with-files','3','7','12',NULL,0,0,0,0,0,1232,NULL,0,1,0,1229459611),('PBtmpl0000000000000084',1229100305,'3','pbversion0000000000001','approved','Center Image','Center Image','center_image','3','7','12',NULL,0,1,0,0,0,1329,NULL,0,1,0,1229459611),('TimeTrackingTMPL000003',1229311434,'3','pbversion0000000000001','approved','Default Time Tracking Row Template','Default Time Tracking Row Template','default-tt-template-row','3','7','12',NULL,0,0,0,0,0,3170,NULL,0,1,0,1229459611),('PBtmpl0000000000000056',1228934532,'3','pbversion0000000000001','approved','Default Product','Default Product','default_product','3','7','12',NULL,0,1,0,0,0,7505,'\r\n\r\n',0,1,0,1229459611),('PBtmpl0000000000000103',1229100306,'3','pbversion0000000000001','approved','Left Align Image','Left Align Image','left_align_image','3','7','12',NULL,0,1,0,0,0,1514,NULL,0,1,0,1229459611),('PBtmpl0000000000000115',1229100306,'3','pbversion0000000000001','approved','Linked Image with Caption','Linked Image with Caption','linked_image_with_caption','3','7','12',NULL,0,1,0,0,0,1700,NULL,0,1,0,1229459611),('uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'3','pbversion0000000000001','approved','Default Calendar Print List View','Default Calendar Print List View','root/import/calendar-templates/default-calendar-print-list-view','3','7','3',NULL,0,1,0,0,0,1080,NULL,0,1,0,1229459611),('nFen0xjkZn8WkpM93C9ceQ',1229117831,'3','pbversion0000000000001','approved','Shelf (Default)','Shelf (Default)','root/import/shelf-default','3','7','12',NULL,0,1,0,0,0,2282,'\r\n',0,1,0,1229459611),('StockDataTMPL000000001',1229453697,'3','pbversion0000000000001','approved','StockData Default View','StockData Default View','stockdatatmpl000000001','3','7','12',NULL,0,1,0,0,0,5126,'\n',0,1,0,1229459611),('PBtmpl0000000000000137',1229581394,'3','pbversion0000000000001','approved','Admin Console Style','Admin Console','admin_console','3','7','12',NULL,0,1,0,0,0,806,NULL,0,1,0,1231494253),('DashboardViewTmpl00001',1230358389,'3','pbversion0000000000001','approved','Dashboard Default View','Dashboard Default View','dashboard-default-view-template','3','7','12',NULL,0,0,0,0,0,7665,'\r\n\r\n\r\n',0,1,0,1231494252),('PBtmpl0000000000000021',1230269962,'3','pbversion0000000000001','approved','Data List','Data List','data_list','3','7','12',NULL,0,1,0,0,0,2218,'',0,1,0,1231494252),('ProjectManagerTMPL0005',1229579830,'3','pbversion0000000000001','approved','Default Resource Popup','Default Resource Popup','default-pm-resource-popup','3','7','12',NULL,0,0,0,0,0,1989,NULL,0,1,0,1231494253),('ProjectManagerTMPL0001',1229579830,'3','pbversion0000000000001','approved','Default Project Management System Dashboard','Default Project Management System Dashboard','default-pm-template-dashboard','3','7','12',NULL,0,0,0,0,0,3820,'',0,1,0,1231494253),('WikiPageTmpl0000000001',1229706257,'3','pbversion0000000000001','approved','Default Wiki Page','Default Wiki Page','default-wiki-page','3','7','12',NULL,0,0,0,0,0,3566,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1231494253),('PBtmpl0000000000000027',1230159257,'3','pbversion0000000000001','approved','Default Forum Notification','Default Forum Notification','default_forum_notification','3','7','12',NULL,0,1,0,0,0,1743,NULL,0,1,0,1231494252),('PBtmpl0000000000000033',1230159454,'3','pbversion0000000000001','approved','Default HTTP Proxy','Default HTTP Proxy','default_http_proxy','3','7','12',NULL,0,1,0,0,0,1269,NULL,0,1,0,1231494253),('default_post_received1',1230356300,'3','pbversion0000000000001','approved','Default Post Received','Default Post Received','default_post_received','3','7','4',NULL,0,0,0,0,0,429,NULL,0,1,0,1231494252),('PBtmpl0000000000000059',1229907401,'3','pbversion0000000000001','approved','Default SQL Report','Default SQL Report','default_sql_report','3','7','12',NULL,0,1,0,0,0,4341,NULL,0,1,0,1231494253),('PBtmpl0000000000000117',1229581394,'3','pbversion0000000000001','approved','DropMenu','DropMenu','dropmenu','3','7','12',NULL,0,1,0,0,0,1076,NULL,0,1,0,1231494253),('PBtmpl0000000000000098',1229907401,'3','pbversion0000000000001','approved','Job','Job','job','3','7','12',NULL,0,1,0,0,0,11222,'',0,1,0,1231494252),('PBtmpl0000000000000113',1229581394,'3','pbversion0000000000001','approved','Link','Link','link','3','7','12',NULL,0,1,0,0,0,10612,'',0,1,0,1231494252),('MultiSearchTmpl0000001',1230269962,'3','pbversion0000000000001','approved','MultiSearch Default Display','MultiSearch Default Display','multisearchtmpl0000001','3','7','12',NULL,0,1,0,0,0,1963,'',0,1,0,1231494253),('CalendarDay00000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Day','Default Calendar Day','root/import/calendar-templates/default-calendar-day','3','7','12',NULL,0,0,0,0,0,8702,' ',0,1,0,1231494252),('CalendarEvent000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Event','Default Calendar Event','root/import/calendar-templates/default-calendar-event','3','7','12',NULL,0,0,0,0,0,7436,' ',0,1,0,1231494252),('CalendarMonth000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Month','Default Calendar Month','root/import/calendar-templates/default-calendar-month','3','7','12',NULL,0,0,0,0,0,10690,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1231494252),('CalendarSearch00000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Search','Default Calendar Search','root/import/calendar-templates/default-calendar-search','3','7','12',NULL,0,0,0,0,0,9346,' ',0,1,0,1231494252),('CalendarWeek0000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Week','Default Calendar Week','root/import/calendar-templates/default-calendar-week','3','7','12',NULL,0,0,0,0,0,7189,'',0,1,0,1231494252),('0X4Q3tBWUb_thsVbsYz9xQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery Add Archive','Default Gallery Add Archive','root/import/gallery-templates/default-gallery-add-archive','3','7','3',NULL,0,1,0,0,0,1858,' \r\n\r\n ',0,1,0,1231494252),('mM3bjP_iG9sv5nQb4S17tQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album RSS','Default Gallery View Album RSS','root/import/gallery-templates/default-gallery-album-rss','3','7','3',NULL,0,1,0,0,0,819,NULL,0,1,0,1231494253),('ilu5BrM-VGaOsec9Lm7M6Q',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Albums RSS','Default Gallery List Albums RSS','root/import/gallery-templates/default-gallery-list-albums-rss','3','7','3',NULL,0,1,0,0,0,828,NULL,0,1,0,1231494253),('-ANLpoTEP-n4POAdRxCzRw',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS','root/import/gallery-templates/default-gallery-list-files-for-user-rss','3','7','3',NULL,0,1,0,0,0,859,NULL,0,1,0,1231494253),('KAMdiUdJykjN02CPHpyZOw',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow','root/import/gallery-templates/default-gallery-view-album-slideshow','3','7','3',NULL,0,1,0,0,0,4311,'\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n',0,1,0,1231494252),('_9_eiaPgxzF_x_upt6-PNQ',1230702602,'3','pbversion0000000000001','approved','gallery.css','gallery.css','root/import/gallery-templates/gallery.css','3','7','3',NULL,0,1,0,0,0,10869,NULL,0,1,0,1231494252),('itransact_credentials1',1228953856,'3','pbversion0000000000001','approved','ITransact Credentials (Default)','ITransact Credentials (Default)','shopping-cart-collateral-items/itransact-credentials','3','7','4',NULL,0,0,0,0,0,3037,'\n',0,1,0,1231494253),('StockDataTMPL000000002',1229494994,'3','pbversion0000000000001','approved','StockData Default Display','StockData Default Display','stockdatatmpl000000002','3','7','12',NULL,0,1,0,0,0,11239,NULL,0,1,0,1231494253),('GNvjCFQWjY2AF2uf0aCM8Q',1230356300,'3','pbversion0000000000001','approved','Syndicated Articles','Syndicated Articles','syndicated_articles','3','7','12',NULL,0,1,0,0,0,1063,NULL,0,1,0,1231494253),('LdiozcIUciWuvt3Z-na5Ww',1232673968,'3','pbversion0000000000001','approved','Matrix','Matrix','root/import/matrix','3','7','12',NULL,0,0,0,0,0,295,NULL,0,1,0,1233158078),('kJf77eCr9GAMiEzWrzsBTA',1229639255,'3','pbversion0000000000001','approved','matrix-ie.css','matrix-ie.css','new-matrix/matrix-ie.css','3','7','12',NULL,0,1,0,0,0,527,NULL,0,1,0,1233158079),('4LQT4-bGW4FkiEQLSY5gvQ',1232400287,'3','pbversion0000000000001','approved','show-hide.js','show-hide.js','new-matrix/show-hide.js','3','7','12',NULL,0,1,0,0,0,659,NULL,0,1,0,1233158079),('1oBRscNIcFOI-pETrCOspA',1232648656,'3','pbversion0000000000001','approved','Default Section Edit','Default Section Edit','root/import/survey/default-section-edit','3','7','12',NULL,0,1,0,0,0,5675,NULL,0,1,0,1233158079),('PBtmpl0000000000000062',1232981641,'3','pbversion0000000000001','approved','Default Gradebook Report','Default Gradebook Report','root/import/survey/default_gradebook_report','3','7','12',NULL,0,1,0,0,0,1932,NULL,0,1,0,1233158079),('PBtmpl0000000000000063',1233156264,'3','pbversion0000000000001','approved','Default Overview Report','Default Overview Report','root/import/survey/default_overview_report','3','7','12',NULL,0,1,0,0,0,3268,NULL,0,1,0,1233158079),('QHn6T9rU7KsnS3Y70KCNTg',1233173545,'3','pbversion0000000000001','approved','Account','Account','root/import/account','3','7','12',NULL,0,1,0,0,0,298,NULL,0,1,0,1234301433),('FJbUTvZ2nUTn65LpW6gjsA',1232735095,'3','pbversion0000000000001','approved','Profile Account Layout','Profile Account Layout','root/import/account/profile/profile-account-layout','3','7','12',NULL,0,1,0,0,0,2441,'',0,1,0,1234301433),('75CmQgpcCSkdsL-oawdn3Q',1232561177,'3','pbversion0000000000001','approved','Default Edit Profile Template','Default Edit Profile Template','root/import/account/profile/default-edit-profile-template','3','7','12',NULL,0,1,0,0,0,2079,'\r\n\r\n\r\n\r\n',0,1,0,1234301433),('2CS-BErrjMmESOtGT90qOg',1232955105,'3','pbversion0000000000001','approved','Default View Profile Template','Default View Profile Template','root/import/account/profile/default-view-profile-template','3','7','12',NULL,0,1,0,0,0,4419,NULL,0,1,0,1234301433),('MBmWlA_YEA2I6D29OMGtRg',1228753307,'3','pbversion0000000000001','approved','Default Profile Error Template','Default Profile Error Template','root/import/account/profile/default-profile-error-template','3','7','12',NULL,0,1,0,0,0,858,NULL,0,1,0,1234301433),('gfZOwaTWYjbSoVaQtHBBEw',1232735116,'3','pbversion0000000000001','approved','Inbox Account Layout','Inbox Account Layout','root/import/account/inbox-account-layout','3','7','12',NULL,0,1,0,0,0,1906,'',0,1,0,1234301433),('0n4HtbXaWa_XJHkFjetnLQ',1233168324,'3','pbversion0000000000001','approved','Default Inbox View Message Template','Default Inbox View Message Template','root/import/account/inbox/default-inbox-view-message-template','3','7','12',NULL,0,1,0,0,0,3193,NULL,0,1,0,1234301433),('1Q4Je3hKCJzeo0ZBB5YB8g',1232753312,'3','pbversion0000000000001','approved','Default Manage Invitations Template','Default Manage Invitations Template','root/import/account/inbox/default-manage-invitations-template','3','7','12',NULL,0,1,0,0,0,6052,'\r\n\r\n',0,1,0,1234301434),('VBkY05f-E3WJS50WpdKd1Q',1233168685,'3','pbversion0000000000001','approved','Default View Invitation Template','Default View Invitation Template','root/import/account/inbox/default-view-invitation-template','3','7','12',NULL,0,1,0,0,0,2473,NULL,0,1,0,1234301434),('cR0UFm7I1qUI2Wbpj--08Q',1232464762,'3','pbversion0000000000001','approved','Default Invite User Form Template','Default Invite User Form Template','root/import/account/inbox/default-invite-user-form-template','3','7','12',NULL,0,1,0,0,0,2642,NULL,0,1,0,1234301434),('zrNpGbT3odfIkg6nFSUy8Q',1232735138,'3','pbversion0000000000001','approved','Friends Layout Template','Friends Layout Template','root/import/account/friends/friends-layout-template','3','7','12',NULL,0,1,0,0,0,1584,'\r\n',0,1,0,1234301434),('1Yn_zE_dSiNuaBGNLPbxtw',1232952380,'3','pbversion0000000000001','approved','Default Friends View Template','Default Friends View Template','root/import/account/friends/default-friends-view-template','3','7','12',NULL,0,1,0,0,0,5030,NULL,0,1,0,1234301434),('AZFU33p0jpPJ-E6qLSWZng',1232951869,'3','pbversion0000000000001','approved','Default Friends Edit Template','Default Friends Edit Template','root/import/account/friends/default-friends-edit-template','3','7','12',NULL,0,1,0,0,0,6036,NULL,0,1,0,1234301434),('AGJBGviWGAwjnwziiPjvDg',1232569232,'3','pbversion0000000000001','approved','Default Send Request Template','Default Send Request Template','root/import/account/friends/default-send-request-template','3','7','12',NULL,0,1,0,0,0,1908,NULL,0,1,0,1234301434),('9ThW278DWLV0-Svf68ljFQ',1232735163,'3','pbversion0000000000001','approved','Account Layout','Account Layout','root/import/account/user/account-layout','3','7','12',NULL,0,1,0,0,0,1101,'\r\n',0,1,0,1234301434),('aUDsJ-vB9RgP-AYvPOy8FQ',1232735191,'3','pbversion0000000000001','approved','Shop Account Layout','Shop Account Layout','root/import/account/shop/shop-account-layout','3','7','12',NULL,0,1,0,0,0,1459,'\r\n',0,1,0,1234301434),('b4n3VyUIsAHyIvT-W-jziA',1232735307,'3','pbversion0000000000001','approved','Contributions Layout','Contributions Layout','root/import/account/contributions/contributions-layout','3','7','12',NULL,0,1,0,0,0,1127,'\r\n',0,1,0,1234301434),('N716tpSna0iIQTKxS4gTWA',1232734726,'3','pbversion0000000000001','approved','Default Account Layout','Default Account Layout','root/import/account/default-account-layout2','3','7','12',NULL,0,1,0,0,0,1008,'\r\n\r\n',0,1,0,1234301434),('HW-sPoDDZR8wBZ0YgFgPtg',1227634350,'3','pbversion0000000000001','approved','images','images','root/import/account/images','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1234301434),('hBpisL-_URyZnh9clR5ohA',1227634417,'3','pbversion0000000000001','approved','no_photo.gif','no_photo.gif','root/import/account/images/no_photo.gif','3','7','12',NULL,0,1,0,0,0,2564,NULL,0,1,0,1234301434),('FOBV6KkifreXa4GmEAUU4A',1227634447,'3','pbversion0000000000001','approved','no_photo_sm.gif','no_photo_sm.gif','root/import/account/images/no_photo_sm.gif','3','7','12',NULL,0,1,0,0,0,1580,NULL,0,1,0,1234301434),('6uQEULvXFgCYlRWnYzZsuA',1233874321,'3','pbversion0000000000001','approved','Default Inbox Send Message Template','Default Inbox Send Message Template','root/import/account/inbox/default-inbox-send-message-template','3','7','12',NULL,0,1,0,0,0,5533,'\n\n\n\n\n',0,1,0,1234301433),('CalendarEventEdit00001',1233698348,'3','pbversion0000000000001','approved','Default Calendar Event Edit','Default Calendar Event Edit','root/import/calendar-templates/default-calendar-event-edit','3','7','12',NULL,0,0,0,0,0,10149,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n',0,1,0,1234301433),('TuYPpHx7TUyk08639Pc8Bg',1233861621,'3','pbversion0000000000001','approved','Default DataTable Template (HTML)','Default DataTable Template (HTML)','root/import/datatable/default-datatable-template-html','3','7','3',NULL,0,1,0,0,0,919,NULL,0,1,0,1234301433),('3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'3','pbversion0000000000001','approved','Default DataTable Template (YUI)','Default DataTable Template (YUI)','root/import/datatable/default-datatable-template-yui','3','7','3',NULL,0,1,0,0,0,732,NULL,0,1,0,1234301433),('6X-7Twabn5KKO_AbgK3PEw',1233872216,'3','pbversion0000000000001','approved','Default Gallery Edit Album','Default Gallery Edit Album','root/import/gallery-templates/default-gallery-edit-album','3','7','3',NULL,0,1,0,0,0,3435,'\n\n',0,1,0,1234301433),('7JCTAiu1U_bT9ldr655Blw',1233872075,'3','pbversion0000000000001','approved','Default Gallery Edit Photo','Default Gallery Edit Photo','root/import/gallery-templates/default-gallery-edit-photo','3','7','3',NULL,0,1,0,0,0,3994,'\n\n\n\n',0,1,0,1234301433),('m3IbBavqzuKDd2PGGhKPlA',1233871747,'3','pbversion0000000000001','approved','Default Gallery Make Shortcut','Default Gallery Make Shortcut','root/import/gallery-templates/default-gallery-make-shortcut','3','7','3',NULL,0,1,0,0,0,2799,'\n\n\n\n',0,1,0,1234301433),('AjhlNO3wZvN5k4i4qioWcg',1233874172,'3','pbversion0000000000001','approved','Default Answer Edit','Default Answer Edit','root/import/survey/default-answer-edit','3','7','12',NULL,0,1,0,0,0,3860,NULL,0,1,0,1234301433),('wAc4azJViVTpo-2NYOXWvg',1233872588,'3','pbversion0000000000001','approved','Default Question Edit','Default Question Edit','root/import/survey/default-question-edit','3','7','12',NULL,0,1,0,0,0,5043,NULL,0,1,0,1234301433),('CxMpE_UPauZA3p8jdrOABw',1233698297,'3','pbversion0000000000001','approved','Default Questions','Default Questions','root/import/survey/default-questions','3','7','12',NULL,0,1,0,0,0,8638,NULL,0,1,0,1234301433),('GRUNFctldUgop-qRLuo_DA',1233698093,'3','pbversion0000000000001','approved','Default Survey Edit','Default Survey Edit','root/import/survey/default-survey-edit','3','7','12',NULL,0,1,0,0,0,2586,NULL,0,1,0,1234301433),('d8jMMMRddSQ7twP4l1ZSIw',1234040817,'3','pbversion0000000000001','approved','Default Survey Take','Default Survey Take','root/import/survey/default-survey-take','3','7','12',NULL,0,1,0,0,0,1041,'\r\n\r\n\r\n\r\n',0,1,0,1234301433),('qsG6B24a0SC5KrhQjmdZBw',1233860274,'3','pbversion0000000000001','approved','survey.css','survey.css','survey.css','3','7','12',NULL,0,1,0,0,0,3074,NULL,0,1,0,1234301434),('PBtmpl0000000000000029',1234392043,'3','pbversion0000000000001','approved','Default Post Form','Default Post Form','default_post_form','3','7','12',NULL,0,1,0,0,0,2293,'\n',0,1,0,1234926437),('PBtmpl0000000000000068',1234393332,'3','pbversion0000000000001','approved','Default Submission Form','Default Submission Form','default_submission_form','3','7','12',NULL,0,1,0,0,0,2787,'\n',0,1,0,1234926437),('PBtmpl0000000000000099',1234393376,'3','pbversion0000000000001','approved','FAQ Submission Form','FAQ Submission Form','faq_submission_form','3','7','12',NULL,0,1,0,0,0,2392,'\n',0,1,0,1234926437),('PBtmpl0000000000000122',1234393411,'3','pbversion0000000000001','approved','Job Submission Form','Job Submission Form','job_submission_form','3','7','12',NULL,0,1,0,0,0,3321,'\n',0,1,0,1234926437),('PBtmpl0000000000000114',1234393441,'3','pbversion0000000000001','approved','Link List Submission Form','Link List Submission Form','link_list_submission_form','3','7','12',NULL,0,1,0,0,0,3000,'\n',0,1,0,1234926437),('PBtmpl0000000000000210',1234393614,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template2','3','7','12',NULL,0,0,0,0,0,3204,'\n\n\n',0,1,0,1234926437),('_XfvgNH__bY1ykMiKYSobQ',1234924781,'3','pbversion0000000000001','approved','account.css','account.css','root/import/account/account.css','3','7','12',NULL,0,1,0,0,0,23272,NULL,0,1,0,1234926436),('1IzRpX0tgW7iuCfaU2Kk0A',1234924646,'3','pbversion0000000000001','approved','Default Contributions View','Default Contributions View','root/import/account/contributions/default-contributions-view','3','7','12',NULL,0,1,0,0,0,4697,'\n',0,1,0,1234926436),('UTNFeV7B_aSCRmmaFCq4Vw',1234568788,'3','pbversion0000000000001','approved','Default Gallery Delete Album','Default Gallery Delete Album','root/import/gallery-templates/default-gallery-delete-album','3','7','3',NULL,0,1,0,0,0,2611,'\n \n\n\n',0,1,0,1234926437),('zcX-wIUct0S_np14xxOA-A',1234568742,'3','pbversion0000000000001','approved','Default Gallery Delete File','Default Gallery Delete File','root/import/gallery-templates/default-gallery-delete-file','3','7','3',NULL,0,1,0,0,0,2626,'\n \n\n\n',0,1,0,1234926437),('OxJWQgnGsgyGohP2L3zJPQ',1234564647,'3','pbversion0000000000001','approved','Default Gallery Edit Comment','Default Gallery Edit Comment','root/import/gallery-templates/default-gallery-edit-comment','3','7','3',NULL,0,1,0,0,0,2978,'',0,1,0,1234926437),('azCqD0IjdQSlM3ar29k5Sg',1234561066,'3','pbversion0000000000001','approved','Default Gallery List Albums View','Default Gallery List Albums View','root/import/gallery-templates/default-gallery-list-albums-view','3','7','3',NULL,0,1,0,0,0,3309,' \r\n \r\n ',0,1,0,1234926437),('OkphOEdaSGTXnFGhK4GT5A',1234560760,'3','pbversion0000000000001','approved','Default Gallery List Files For User','Default Gallery List Files For User','root/import/gallery-templates/default-gallery-list-files-for-user','3','7','3',NULL,0,1,0,0,0,4249,'\n \n',0,1,0,1234926437),('jME5BEDYVDlBZ8jIQA9-jQ',1234565056,'3','pbversion0000000000001','approved','Default Gallery Search','Default Gallery Search','root/import/gallery-templates/default-gallery-search','3','7','3',NULL,0,1,0,0,0,5947,'\n\n \n',0,1,0,1234926437),('q5O62aH4pjUXsrQR3Pq4lw',1234568087,'3','pbversion0000000000001','approved','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails','root/import/gallery-templates/default-gallery-view-album-thumbnails','3','7','3',NULL,0,1,0,0,0,4317,'\n\n\n\n\n\n\n',0,1,0,1234926437),('05FpjceLYhq4csF1Kww1KQ',1234568028,'3','pbversion0000000000001','approved','Default Gallery View Album','Default Gallery View Album','root/import/gallery-templates/default-gallery-view-album','3','7','3',NULL,0,1,0,0,0,4235,' \n \n ',0,1,0,1234926437),('TEId5V-jEvUULsZA0wuRuA',1234568469,'3','pbversion0000000000001','approved','Default Gallery View Photo','Default Gallery View Photo','root/import/gallery-templates/default-gallery-view-photo','3','7','3',NULL,0,1,0,0,0,6761,'\n\n\n\n',0,1,0,1234926437),('c8xrwVuu5QE0XtF9DiVzLw',1235331153,'3','pbversion0000000000001','approved','Default Inbox View Template','Default Inbox View Template','root/import/account/inbox/default-inbox-view-template','3','7','12',NULL,0,1,0,0,0,6181,'\n\n',0,1,0,1235596581),('matrixtmpl000000000002',1235704003,'3','pbversion0000000000001','approved','Matrix Default Compare','Matrix Default Compare','matrix-default-compare-template','3','7','12',NULL,0,0,0,0,0,2385,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1236110744),('matrixtmpl000000000003',1235987792,'3','pbversion0000000000001','approved','Matrix Default Detailed Listing','Matrix Default Detailed Listing','matrix-default-detailed-listing','3','7','12',NULL,0,0,0,0,0,4809,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1236110744),('matrixtmpl000000000001',1235706149,'3','pbversion0000000000001','approved','Matrix Default View','Matrix Default View','matrix-default-view-template','3','7','12',NULL,0,0,0,0,0,6045,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1236110744),('matrixtmpl000000000005',1235704755,'3','pbversion0000000000001','approved','Matrix Default Search','Matrix Default Search','matrix-search-template','3','7','12',NULL,0,0,0,0,0,2344,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1236110744),('wrq7hMxb1ewQqZ46xmd8Gg',1235706620,'3','pbversion0000000000001','approved','equal-cols.js','equal-cols.js','matrix/equal-cols.js','3','7','12',NULL,0,1,0,0,0,582,NULL,0,1,0,1236110744),('alraubvBu-YJJ614jAHD5w',1235706026,'3','pbversion0000000000001','approved','matrix-nav-tmpl','matrix-nav-tmpl','new-matrix/matrix-nav-tmpl','3','7','12',NULL,0,1,0,0,0,480,NULL,0,1,0,1236110744),('Vch1Ww7G_JpBhOhXX07RDg',1235705952,'3','pbversion0000000000001','approved','matrx-nav','matrix-nav','new-matrix/matrix-nav','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1236110744),('hkj6WeChxFyqfP85UlRP8w',1235708941,'3','pbversion0000000000001','approved','matrix.css','matrix.css','new-matrix/matrix.css','3','7','12',NULL,0,1,0,0,0,9105,NULL,0,1,0,1236110744); +INSERT INTO `assetIndex` VALUES ('PBasset000000000000003','Media','Media Media media ','media',1147642437,1147642437,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Media\'\'Media\'\'media','000001000003'),('PBtmpl0000000000000112','Weblog','Weblog Weblog weblog ','weblog',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Weblog\'\'Weblog\'\'weblog Collaboration','000001000001000006000004'),('PBtmplBlankStyle000001','WebGUI 6 Blank Style','WebGUI 6 Blank Style WebGUI 6 Blank Style pbtmplblankstyle000001 ','pbtmplblankstyle000001',1133743239,1147642431,'3','7','12','WebGUI::Asset::Template',1,'WebGUI\'\'6\'\'Blank\'\'Style\'\'WebGUI\'\'6\'\'Blank\'\'Style\'\'pbtmplblankstyle000001 style','000001000001000038000005'),('PBtmpl0000000000000048','verticalMenu','verticalMenu verticalMenu verticalmenu ','verticalmenu',1124395696,1147642431,'3','7','12','WebGUI::Asset::Template',1,'verticalMenu\'\'verticalMenu\'\'verticalmenu Navigation','000001000001000022000002'),('PBtmpl0000000000000079','Topics','Topics Topics topics ','topics',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Topics\'\'Topics\'\'topics Collaboration','000001000001000006000009'),('PBtmpl0000000000000097','Traditional with Thumbnails','Traditional with Thumbnails Traditional with Thumbnails traditional with thumbnails ','traditional_with_thumbnails',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Traditional\'\'with\'\'Thumbnails\'\'Traditional\'\'with\'\'Thumbnails\'\'traditional\'\'with\'\'thumbnails Collaboration','000001000001000006000003'),('PBtmpl0000000000000082','Unordered List','Unordered List Unordered List unordered list ','unordered_list',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Unordered\'\'List\'\'Unordered\'\'List\'\'unordered\'\'list Collaboration','000001000001000006000011'),('PBtmpl0000000000000118','Three Over One','Three Over One Three Over One three over one ','three_over_one',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Three\'\'Over\'\'One\'\'Three\'\'Over\'\'One\'\'three\'\'over\'\'one Layout','000001000001000017000005'),('PBtmpl0000000000000124','Tabs','Tabs Tabs tabs ','tabs',1124395696,1147642429,'3','7','12','WebGUI::Asset::Template',1,'Tabs\'\'Tabs\'\'tabs Navigation','000001000001000022000005'),('GNvjCFQWjY2AF2uf0aCM8Q','Syndicated Articles','Syndicated Articles Syndicated Articles syndicated articles ','syndicated_articles',1124395696,1230356300,'3','7','12','WebGUI::Asset::Template',1,'Syndicated\'\'Articles\'\'Syndicated\'\'Articles\'\'syndicated\'\'articles SyndicatedContent','000001000001000040000002'),('PBtmpl0000000000000136','Synopsis','Synopsis Synopsis synopsis2 ','synopsis2',1124395696,1147642428,'3','7','12','WebGUI::Asset::Template',1,'Synopsis\'\'Synopsis\'\'synopsis2 Navigation','000001000001000022000008'),('PBtmpl0000000000000116','Tab Form','Tab Form Tab Form tab form ','tab_form',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Tab\'\'Form\'\'Tab\'\'Form\'\'tab\'\'form DataForm','000001000001000008000005'),('GRUNFctldUgop-qRLuo_DA','Default Survey Edit','Default Survey Edit Default Survey Edit root import survey default survey edit ','root/import/survey/default-survey-edit',1227254010,1233698093,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Edit\'\'Default\'\'Survey\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'survey\'\'edit Survey\'\'/\'\'Edit','000001000001000039000005'),('ProjectManagerTMPL0004','Default Project Manager Edit Task','Default Project Manager Edit Task Default Project Manager Edit Task default pm template edit task ','default-pm-template-edit-task',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Manager\'\'Edit\'\'Task\'\'Default\'\'Project\'\'Manager\'\'Edit\'\'Task\'\'default\'\'pm\'\'template\'\'edit\'\'task ProjectManager_editTask','000001000001000027000002000001'),('ProjectManagerTMPL0002','Default Project Display','Default Project Display Default Project Display default pm template project display ','default-pm-template-project-display',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Display\'\'Default\'\'Project\'\'Display\'\'default\'\'pm\'\'template\'\'project\'\'display ProjectManager_project','000001000001000027000004000001'),('PBtmpl0000000000000137','Admin Console Style','Admin Console Style Admin Console admin console ','admin_console',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'Admin\'\'Console\'\'Style\'\'Admin\'\'Console\'\'admin\'\'console style','000001000001000038000003'),('StockDataTMPL000000001','StockData Default View','StockData Default View StockData Default View stockdatatmpl000000001 ','stockdatatmpl000000001',1133743239,1229453697,'3','7','12','WebGUI::Asset::Template',1,'StockData\'\'Default\'\'View\'\'StockData\'\'Default\'\'View\'\'stockdatatmpl000000001 StockData','000001000001000037000002'),('PBtmpl0000000000000135','Side By Side','Side By Side Side By Side side by side ','side_by_side',1124395696,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Side\'\'By\'\'Side\'\'Side\'\'By\'\'Side\'\'side\'\'by\'\'side Layout','000001000001000017000001'),('PBtmpl0000000000000200','Default Search','Default Search Default Search default search2 ','default_search2',1147642427,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Search\'\'Default\'\'Search\'\'default\'\'search2 Search','000001000001000032000001'),('PBtmpl0000000000000101','Ordered List','Ordered List Ordered List ordered list ','ordered_list',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Ordered\'\'List\'\'Ordered\'\'List\'\'ordered\'\'list Collaboration','000001000001000006000024'),('PBtmpl0000000000000121','Photo Gallery','Photo Gallery Photo Gallery photo gallery ','photo_gallery',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Photo\'\'Gallery\'\'Photo\'\'Gallery\'\'photo\'\'gallery Collaboration','000001000001000006000005'),('PBtmpl0000000000000081','Q and A','Q and A Q and A q and a ','q_and_a',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Q\'\'and\'\'A\'\'Q\'\'and\'\'A\'\'q\'\'and\'\'a Collaboration','000001000001000006000023'),('WVtmpl0000000000000001','Random Thread Macro Default Template','Random Thread Macro Default Template Random Thread Macro Default Template randomthread template ','randomthread-template',1133743240,1147642426,'3','7','12','WebGUI::Asset::Template',1,'Random\'\'Thread\'\'Macro\'\'Default\'\'Template\'\'Random\'\'Thread\'\'Macro\'\'Default\'\'Template\'\'randomthread\'\'template Macro\'\'/\'\'RandomThread','000001000001000018000010000001'),('PBtmpl0000000000000131','Right Column','Right Column Right Column right column ','right_column',1124395696,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Right\'\'Column\'\'Right\'\'Column\'\'right\'\'column Layout','000001000001000017000002'),('PBtmpl0000000000000094','News','News News plainblacknews ','plainblacknews',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'News\'\'News\'\'plainblacknews Layout','000001000001000017000007'),('matrixtmpl000000000005','Matrix Default Search','Matrix Default Search Matrix Default Search matrix search template ','matrix-search-template',1133743239,1235704755,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Search\'\'Matrix\'\'Default\'\'Search\'\'matrix\'\'search\'\'template Matrix\'\'/\'\'Search','000001000001000019000005'),('MultiSearchTmpl0000001','MultiSearch Default Display','MultiSearch Default Display MultiSearch Default Display multisearchtmpl0000001 ','multisearchtmpl0000001',1133743239,1230269962,'3','7','12','WebGUI::Asset::Template',1,'MultiSearch\'\'Default\'\'Display\'\'MultiSearch\'\'Default\'\'Display\'\'multisearchtmpl0000001 MultiSearch','000001000001000021000001'),('matrixtmpl000000000001','Matrix Default View','Matrix Default View Matrix Default View matrix default view template ','matrix-default-view-template',1133743238,1235706149,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'View\'\'Matrix\'\'Default\'\'View\'\'matrix\'\'default\'\'view\'\'template Matrix','000001000001000019000002'),('matrixtmpl000000000003','Matrix Default Detailed Listing','Matrix Default Detailed Listing Matrix Default Detailed Listing matrix default detailed listing ','matrix-default-detailed-listing',1133743238,1235987792,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Detailed\'\'Listing\'\'Matrix\'\'Default\'\'Detailed\'\'Listing\'\'matrix\'\'default\'\'detailed\'\'listing Matrix\'\'/\'\'Detail','000001000001000019000003'),('matrixtmpl000000000002','Matrix Default Compare','Matrix Default Compare Matrix Default Compare matrix default compare template ','matrix-default-compare-template',1133743238,1235704003,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Compare\'\'Matrix\'\'Default\'\'Compare\'\'matrix\'\'default\'\'compare\'\'template Matrix\'\'/\'\'Compare','000001000001000019000001'),('PBtmpl0000000000000111','Make Page Printable','Make Page Printable Make Page Printable make page printable ','make_page_printable',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Make\'\'Page\'\'Printable\'\'Make\'\'Page\'\'Printable\'\'make\'\'page\'\'printable style','000001000001000038000002'),('PBtmpl0000000000000020','Mail Form','Mail Form Mail Form mail form ','mail_form',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Mail\'\'Form\'\'Mail\'\'Form\'\'mail\'\'form DataForm','000001000001000008000001'),('PBtmpl0000000000000113','Link','Link Link link ','link',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'Link\'\'link Collaboration\'\'/\'\'Thread','000001000001000006000025'),('PBtmpl0000000000000083','Link List','Link List Link List link list ','link_list',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'List\'\'Link\'\'List\'\'link\'\'list Collaboration','000001000001000006000010'),('PBtmpl0000000000000114','Link List Submission Form','Link List Submission Form Link List Submission Form link list submission form ','link_list_submission_form',1124395696,1234393441,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'List\'\'Submission\'\'Form\'\'Link\'\'List\'\'Submission\'\'Form\'\'link\'\'list\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000019'),('PBtmpl0000000000000115','Linked Image with Caption','Linked Image with Caption Linked Image with Caption linked image with caption ','linked_image_with_caption',1124395696,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Linked\'\'Image\'\'with\'\'Caption\'\'Linked\'\'Image\'\'with\'\'Caption\'\'linked\'\'image\'\'with\'\'caption Article','000001000001000003000004'),('PBtmpl0000000000000129','Item w/pop-up Links','Item w/pop-up Links Item w/pop-up Links item w pop up links ','item_w/pop-up_links',1124395696,1147642422,'3','7','12','WebGUI::Asset::Template',1,'Item\'\'w\'\'/\'\'pop\'\'-\'\'up\'\'Links\'\'Item\'\'w\'\'/\'\'pop\'\'-\'\'up\'\'Links\'\'item\'\'w\'\'pop\'\'up\'\'links Article','000001000001000003000006'),('PBtmpl0000000000000098','Job','Job Job job ','job',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Job\'\'job Collaboration\'\'/\'\'Thread','000001000001000006000021'),('PBtmpl0000000000000077','Job Listing','Job Listing Job Listing job listing ','job_listing',1124395696,1147642422,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Listing\'\'Job\'\'Listing\'\'job\'\'listing Collaboration','000001000001000006000020'),('PBtmpl0000000000000122','Job Submission Form','Job Submission Form Job Submission Form job submission form ','job_submission_form',1124395696,1234393411,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Submission\'\'Form\'\'Job\'\'Submission\'\'Form\'\'job\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000022'),('PBtmpl0000000000000103','Left Align Image','Left Align Image Left Align Image left align image ','left_align_image',1124395696,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Align\'\'Image\'\'Left\'\'Align\'\'Image\'\'left\'\'align\'\'image Article','000001000001000003000001'),('PBtmpl0000000000000092','Horizontal Login Box','Horizontal Login Box Horizontal Login Box horizontal login box ','horizontal_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Horizontal\'\'Login\'\'Box\'\'Horizontal\'\'Login\'\'Box\'\'horizontal\'\'login\'\'box Macro\'\'/\'\'L_loginBox','000001000001000018000009000001'),('PBtmpl0000000000000108','horizontalMenu','horizontalMenu horizontalMenu horizontalmenu ','horizontalmenu',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'horizontalMenu\'\'horizontalMenu\'\'horizontalmenu Navigation','000001000001000022000003'),('PBtmpl0000000000000088','Image','Image Image image ','image',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'Image\'\'Image\'\'image ImageAsset','000001000001000015000001'),('IOB0000000000000000002','Default InOutBoard Report Template','Default InOutBoard Report Template Default InOutBoard Report Template iob report template ','iob-report-template',1133743239,1166019641,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'InOutBoard\'\'Report\'\'Template\'\'Default\'\'InOutBoard\'\'Report\'\'Template\'\'iob\'\'report\'\'template InOutBoard\'\'/\'\'Report','000001000001000016000001'),('IOB0000000000000000001','Default InOutBoard Template','Default InOutBoard Template Default InOutBoard Template iob template ','iob-template',1133743239,1169795123,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'InOutBoard\'\'Template\'\'Default\'\'InOutBoard\'\'Template\'\'iob\'\'template InOutBoard','000001000001000016000002'),('PBtmpl0000000000000123','Item','Item Item item ','item',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'Item\'\'Item\'\'item Article','000001000001000003000005'),('PBtmpl0000000000000024','File','File File file ','file',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'File\'\'file FileAsset','000001000001000011000001'),('PBtmpl0000000000000078','File Folder','File Folder File Folder file folder ','file_folder',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'Folder\'\'File\'\'Folder\'\'file\'\'folder Folder','000001000001000012000001'),('PBtmpl0000000000000107','File with size','File with size File with size file with size ','file_with_size',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'with\'\'size\'\'File\'\'with\'\'size\'\'file\'\'with\'\'size Macro\'\'/\'\'File','000001000001000018000004000003'),('PBtmpl0000000000000133','Guest Book','Guest Book Guest Book guest book ','guest_book',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Guest\'\'Book\'\'Guest\'\'Book\'\'guest\'\'book Collaboration','000001000001000006000012'),('PBtmpl0000000000000117','DropMenu','DropMenu DropMenu dropmenu ','dropmenu',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'DropMenu\'\'DropMenu\'\'dropmenu Navigation','000001000001000022000004'),('PBtmpl0000000000000130','Tree Navigation','Tree Navigation Tree Navigation root import navigation tree navigation ','root/import/navigation/tree-navigation',1124395696,1219072470,'3','7','12','WebGUI::Asset::Template',1,'Tree\'\'Navigation\'\'Tree\'\'Navigation\'\'root\'\'import\'\'navigation\'\'tree\'\'navigation Navigation','000001000001000022000006'),('PBtmpl0000000000000060','Fail Safe','Fail Safe Fail Safe fail safe ','fail_safe',1124395696,1147642419,'3','7','12','WebGUI::Asset::Template',1,'Fail\'\'Safe\'\'Fail\'\'Safe\'\'fail\'\'safe style','000001000001000038000001'),('PBtmpl0000000000000080','FAQ','FAQ FAQ faqtemplate ','faqtemplate',1124395696,1171466654,'3','7','12','WebGUI::Asset::Template',1,'FAQ\'\'FAQ\'\'faqtemplate Collaboration','000001000001000006000002'),('PBtmpl0000000000000099','FAQ Submission Form','FAQ Submission Form FAQ Submission Form faq submission form ','faq_submission_form',1124395696,1234393376,'3','7','12','WebGUI::Asset::Template',1,'FAQ\'\'Submission\'\'Form\'\'FAQ\'\'Submission\'\'Form\'\'faq\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000018'),('PBtmpl0000000000000010','Default WebGUI Account Display Template','Default WebGUI Account Display Template Default WebGUI Account Display Template default webgui account display template ','default_webgui_account_display_template',1124395696,1227026287,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Account\'\'Display\'\'Template\'\'Default\'\'WebGUI\'\'Account\'\'Display\'\'Template\'\'default\'\'webgui\'\'account\'\'display\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Account','000001000001000004000004000001'),('PBtmpl0000000000000013','Default WebGUI Login Template','Default WebGUI Login Template Default WebGUI Login Template default webgui login template ','default_webgui_login_template',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Login\'\'Template\'\'Default\'\'WebGUI\'\'Login\'\'Template\'\'default\'\'webgui\'\'login\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Login','000001000001000004000007000001'),('PBtmpl0000000000000012','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template Default WebGUI Password Reset Template default webgui password reset template ','default_webgui_password_reset_template',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Password\'\'Reset\'\'Template\'\'Default\'\'WebGUI\'\'Password\'\'Reset\'\'Template\'\'default\'\'webgui\'\'password\'\'reset\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Expired','000001000001000004000006000001'),('PBtmpl0000000000000057','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt Default WebGUI Yes/No Prompt default webgui yes no prompt ','default_webgui_yes/no_prompt',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Yes\'\'/\'\'No\'\'Prompt\'\'Default\'\'WebGUI\'\'Yes\'\'/\'\'No\'\'Prompt\'\'default\'\'webgui\'\'yes\'\'no\'\'prompt prompt','000001000001000028000001'),('PBtmpl0000000000000066','Default USS','Default USS Default USS default uss ','default_uss',1124395696,1147642417,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'USS\'\'Default\'\'USS\'\'default\'\'uss Collaboration','000001000001000006000001'),('TimeTrackingTMPL000001','Default Time Tracking User View','Default Time Tracking User View Default Time Tracking User View default tt template user ','default-tt-template-user',1147642417,1201205738,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'User\'\'View\'\'Default\'\'Time\'\'Tracking\'\'User\'\'View\'\'default\'\'tt\'\'template\'\'user TimeTracking_user','000001000001000042000003000001'),('TimeTrackingTMPL000003','Default Time Tracking Row Template','Default Time Tracking Row Template Default Time Tracking Row Template default tt template row ','default-tt-template-row',1147642417,1229311434,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'Row\'\'Template\'\'Default\'\'Time\'\'Tracking\'\'Row\'\'Template\'\'default\'\'tt\'\'template\'\'row TimeTracking_row','000001000001000042000002000001'),('TimeTrackingTMPL000002','Default Time Tracking Manager View','Default Time Tracking Manager View Default Time Tracking Manager View default tt template manager ','default-tt-template-manager',1147642417,1147642417,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'Manager\'\'View\'\'Default\'\'Time\'\'Tracking\'\'Manager\'\'View\'\'default\'\'tt\'\'template\'\'manager TimeTracking_manager','000001000001000042000001000001'),('X7DrzUcj8pOKFa_6k9D5iw','Newsletter','Newsletter Newsletter root import newsletter ','root/import/newsletter',1185754569,1222804045,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Newsletter\'\'Newsletter\'\'root\'\'import\'\'newsletter','000001000001000023'),('PBtmpl0000000000000065','Default Syndicated Content','Default Syndicated Content Default Syndicated Content default syndicated content ','default_syndicated_content',1124395696,1226457084,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Syndicated\'\'Content\'\'Default\'\'Syndicated\'\'Content\'\'default\'\'syndicated\'\'content SyndicatedContent','000001000001000040000001'),('CxMpE_UPauZA3p8jdrOABw','Default Questions','Default Questions Default Questions root import survey default questions ','root/import/survey/default-questions',1227556536,1233698297,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Questions\'\'Default\'\'Questions\'\'root\'\'import\'\'survey\'\'default\'\'questions Survey\'\'/\'\'Take','000001000001000039000007'),('PBtmpl0000000000000064','Default Response','Default Response Default Response default response ','default_response',1124395696,1226009610,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Response\'\'Default\'\'Response\'\'default\'\'response Survey\'\'/\'\'Response','000001000001000039000004'),('PBtmpl0000000000000059','Default SQL Report','Default SQL Report Default SQL Report default sql report ','default_sql_report',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'SQL\'\'Report\'\'Default\'\'SQL\'\'Report\'\'default\'\'sql\'\'report SQLReport','000001000001000036000001'),('PBtmpl0000000000000067','Default Submission','Default Submission Default Submission default submission ','default_submission',1124395696,1206998733,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Submission\'\'Default\'\'Submission\'\'default\'\'submission Collaboration\'\'/\'\'Thread','000001000001000006000006'),('PBtmpl0000000000000068','Default Submission Form','Default Submission Form Default Submission Form default submission form ','default_submission_form',1124395696,1234393332,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Submission\'\'Form\'\'Default\'\'Submission\'\'Form\'\'default\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000017'),('PBtmpl0000000000000061','Default Survey','Default Survey Default Survey default survey ','default_survey',1124395696,1227252733,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Default\'\'Survey\'\'default\'\'survey Survey','000001000001000039000003'),('ProjectManagerTMPL0003','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart Default Project Manager Gantt Chart default pm template gantt chart ','default-pm-template-gantt-chart',1147642415,1159989349,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Manager\'\'Gantt\'\'Chart\'\'Default\'\'Project\'\'Manager\'\'Gantt\'\'Chart\'\'default\'\'pm\'\'template\'\'gantt\'\'chart ProjectManager_gantt','000001000001000027000003000001'),('ProjectManagerTMPL0001','Default Project Management System Dashboard','Default Project Management System Dashboard Default Project Management System Dashboard default pm template dashboard ','default-pm-template-dashboard',1147642415,1229579830,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Management\'\'System\'\'Dashboard\'\'Default\'\'Project\'\'Management\'\'System\'\'Dashboard\'\'default\'\'pm\'\'template\'\'dashboard ProjectManager_dashboard','000001000001000027000001000001'),('PBtmpl0000000000000055','Default Poll','Default Poll Default Poll default poll ','default_poll',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Poll\'\'Default\'\'Poll\'\'default\'\'poll Poll','000001000001000024000001'),('PBtmpl0000000000000029','Default Post Form','Default Post Form Default Post Form default post form ','default_post_form',1124395696,1234392043,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Post\'\'Form\'\'Default\'\'Post\'\'Form\'\'default\'\'post\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000013'),('PBtmpl0000000000000056','Default Product','Default Product Default Product default product ','default_product',1124395696,1228934532,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Product\'\'Default\'\'Product\'\'default\'\'product Product','000001000001000025000001'),('PBtmpl0000000000000033','Default HTTP Proxy','Default HTTP Proxy Default HTTP Proxy default http proxy ','default_http_proxy',1124395696,1230159454,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'HTTP\'\'Proxy\'\'Default\'\'HTTP\'\'Proxy\'\'default\'\'http\'\'proxy HttpProxy','000001000001000014000001'),('PBtmpl0000000000000004','Default LDAP Account Display Template','Default LDAP Account Display Template Default LDAP Account Display Template default ldap account display template ','default_ldap_account_display_template',1124395696,1227026214,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Account\'\'Display\'\'Template\'\'Default\'\'LDAP\'\'Account\'\'Display\'\'Template\'\'default\'\'ldap\'\'account\'\'display\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Account','000001000001000004000001000001'),('PBtmpl0000000000000006','Default LDAP Login Template','Default LDAP Login Template Default LDAP Login Template default ldap login template ','default_ldap_login_template',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Login\'\'Template\'\'Default\'\'LDAP\'\'Login\'\'Template\'\'default\'\'ldap\'\'login\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Login','000001000001000004000003000001'),('PBtmpl0000000000000044','Default Login Box','Default Login Box Default Login Box default login box ','default_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Login\'\'Box\'\'Default\'\'Login\'\'Box\'\'default\'\'login\'\'box Macro\'\'/\'\'L_loginBox','000001000001000018000009000002'),('PBtmpl0000000000000047','Default Message Board','Default Message Board Default Message Board default message board ','default_message_board',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Message\'\'Board\'\'Default\'\'Message\'\'Board\'\'default\'\'message\'\'board MessageBoard','000001000001000020000001'),('PBtmpl0000000000000054','Default Page','Default Page Default Page default page ','default_page',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'Default\'\'Page\'\'default\'\'page Layout','000001000001000017000003'),('Q4uX_C557arTp6D_jwB1jQ','Wiki','Wiki Wiki root import wiki ','root/import/wiki',1165460175,1222803760,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Wiki\'\'Wiki\'\'root\'\'import\'\'wiki','000001000001000048'),('BmLaN4rmAANkCglXUViEbg','Resource','Resource Resource root import projectmanager resource ','root/import/projectmanager/resource',1157679165,1222803871,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Resource\'\'Resource\'\'root\'\'import\'\'projectmanager\'\'resource','000001000001000027000005'),('PBtmpl0000000000000039','Default File Macro','Default File Macro Default File Macro default file macro ','default_file_macro',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'File\'\'Macro\'\'Default\'\'File\'\'Macro\'\'default\'\'file\'\'macro Macro\'\'/\'\'File','000001000001000018000004000001'),('PBtmpl0000000000000026','Default Forum','Default Forum Default Forum default forum ','default_forum',1124395696,1185754569,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Default\'\'Forum\'\'default\'\'forum Collaboration','000001000001000006000007'),('PBtmpl0000000000000031','Default Forum Search','Default Forum Search Default Forum Search default forum search ','default_forum_search',1124395696,1147642413,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Search\'\'Default\'\'Forum\'\'Search\'\'default\'\'forum\'\'search Collaboration\'\'/\'\'Search','000001000001000006000016'),('PBtmpl0000000000000093','crumbTrail','crumbTrail crumbTrail crumbtrail2 ','crumbtrail2',1124395696,1147642412,'3','7','12','WebGUI::Asset::Template',1,'crumbTrail\'\'crumbTrail\'\'crumbtrail2 Navigation','000001000001000022000001'),('DashboardViewTmpl00001','Dashboard Default View','Dashboard Default View Dashboard Default View dashboard default view template ','dashboard-default-view-template',1133743239,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Dashboard\'\'Default\'\'View\'\'Dashboard\'\'Default\'\'View\'\'dashboard\'\'default\'\'view\'\'template Dashboard','000001000001000007000001'),('PBtmpl0000000000000021','Data List','Data List Data List data list ','data_list',1124395696,1230269962,'3','7','12','WebGUI::Asset::Template',1,'Data\'\'List\'\'Data\'\'List\'\'data\'\'list DataForm\'\'/\'\'List','000001000001000008000004'),('PBtmpl0000000000000104','Default Acknowledgement','Default Acknowledgement Default Acknowledgement default acknowledgement ','default_acknowledgement',1124395696,1147642412,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Acknowledgement\'\'Default\'\'Acknowledgement\'\'default\'\'acknowledgement DataForm','000001000001000008000003'),('PBtmpl0000000000000002','Default Article','Default Article Default Article default article ','default_article',1124395696,1159989349,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Article\'\'Default\'\'Article\'\'default\'\'article Article','000001000001000003000003'),('PBtmpl0000000000000141','Default DataForm','Default DataForm Default DataForm pbtmpl0000000000000141 ','pbtmpl0000000000000141',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'DataForm\'\'Default\'\'DataForm\'\'pbtmpl0000000000000141 DataForm','000001000001000008000006'),('WikiRCTmpl000000000001','Default Recent Changes','Default Recent Changes Default Recent Changes default wiki recent changes ','default-wiki-recent-changes',1165460175,1169092823,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Recent\'\'Changes\'\'Default\'\'Recent\'\'Changes\'\'default\'\'wiki\'\'recent\'\'changes WikiMaster_recentChanges','000001000001000048000001'),('PBtmpl0000000000000084','Center Image','Center Image Center Image center image ','center_image',1124395696,1229100305,'3','7','12','WebGUI::Asset::Template',1,'Center\'\'Image\'\'Center\'\'Image\'\'center\'\'image Article','000001000001000003000002'),('PBtmpl0000000000000128','Classifieds','Classifieds Classifieds classifieds ','classifieds',1124395696,1147642411,'3','7','12','WebGUI::Asset::Template',1,'Classifieds\'\'Classifieds\'\'classifieds Collaboration','000001000001000006000008'),('PBtmpl0000000000000134','Hierarchical Top Nav','Hierarchical Top Nav Hierarchical Top Nav import hierarchical top nav ','import/hierarchical-top-nav',1124395696,1222574692,'3','7','12','WebGUI::Asset::Template',1,'Hierarchical\'\'Top\'\'Nav\'\'Hierarchical\'\'Top\'\'Nav\'\'import\'\'hierarchical\'\'top\'\'nav Navigation','000001000001000022000007'),('PBtmplHelp000000000001','Help','Help Help help ','help',1124395706,1147642410,'3','7','12','WebGUI::Asset::Template',1,'Help\'\'Help\'\'help AdminConsole','000001000001000002000002'),('PBtmpl0000000000000208','Request Tracker','Request Tracker Request Tracker request tracker template ','request-tracker-template',1147642410,1147642410,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'template Collaboration','000001000001000006000027'),('wAc4azJViVTpo-2NYOXWvg','Default Question Edit','Default Question Edit Default Question Edit root import survey default question edit ','root/import/survey/default-question-edit',1226009650,1233872588,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Question\'\'Edit\'\'Default\'\'Question\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'question\'\'edit Survey\'\'/\'\'Edit','000001000001000039000009'),('1z9J1O08n_7gVVlBwSRBJQ','Auth','Auth Auth root import auth ','root/import/auth',1222803099,1222803099,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Auth\'\'Auth\'\'root\'\'import\'\'auth','000001000001000004'),('zyWi26q9na-iiZqL4yedog','Macro','Macro Macro root import macro ','root/import/macro',1222803114,1222803114,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Macro\'\'Macro\'\'root\'\'import\'\'macro','000001000001000018'),('PBtmpl0000000000000207','Article with Files','Article with Files Article with Files article with files ','article-with-files',1147642410,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Article\'\'with\'\'Files\'\'Article\'\'with\'\'Files\'\'article\'\'with\'\'files Article','000001000001000003000007'),('PBtmpl0000000000000209','Request Tracker Thread','Request Tracker Thread Request Tracker Thread request tracker post template ','request-tracker-post-template',1147642410,1206998862,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Thread\'\'Request\'\'Tracker\'\'Thread\'\'request\'\'tracker\'\'post\'\'template Collaboration\'\'/\'\'Thread','000001000001000006000028'),('PBtmpl0000000000000210','Request Tracker','Request Tracker Request Tracker request tracker template2 ','request-tracker-template2',1147642410,1234393614,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'template2 Collaboration\'\'/\'\'PostForm','000001000001000006000029'),('PBtmpl0000000000000109','One Over Three','One Over Three One Over Three one over three ','one_over_three',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'One\'\'Over\'\'Three\'\'One\'\'Over\'\'Three\'\'one\'\'over\'\'three Layout','000001000001000017000006'),('PBtmpl0000000000000001','Admin Console','Admin Console Admin Console admin console2 ','admin_console2',1124395696,1157679164,'3','7','12','WebGUI::Asset::Template',1,'Admin\'\'Console\'\'Admin\'\'Console\'\'admin\'\'console2 AdminConsole','000001000001000002000001'),('LBuiKzg2mWwmOPS9AgV3bg','Get Translated','Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of exper','yns/translated',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Translated\'\'Get\'\'Translated\'\'yns\'\'translated\'\'Let\'\'our\'\'team\'\'of\'\'professional\'\'translators\'\'bring\'\'your\'\'site\'\'to\'\'new\'\'customers\'\'by\'\'translating\'\'your\'\'content\'\'into\'\'additional\'\'languages\'\'.\'\'Our\'\'translation\'\'services\'\'are\'\'never\'\'machine\'\'automated\'\'.\'\'They\'\'\'\'\'re\'\'always\'\'done\'\'by\'\'professional\'\'translators\'\'that\'\'have\'\'years\'\'of\'\'experience\'\'reading\'\',\'\'writing\'\',\'\'and\'\'speaking\'\'many\'\'languages\'\'. ','000001000002000002000007'),('jTNggl7AoVSUc_ZzrvuCmw','Get Promoted','Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate pro','yns/promotion',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Promoted\'\'Get\'\'Promoted\'\'yns\'\'promotion\'\'Now\'\'that\'\'you\'\'have\'\'a\'\'brilliant\'\'WebGUI\'\'site\'\',\'\'you\'\'need\'\'to\'\'get\'\'people\'\'to\'\'visit\'\'it\'\'.\'\'We\'\'can\'\'help\'\'there\'\'too\'\'.\'\'Our\'\'marketing\'\'specialists\'\'can\'\'work\'\'with\'\'you\'\'to\'\'develop\'\'and\'\'execute\'\'the\'\'right\'\'combination\'\'of\'\'search\'\'engine\'\'placement\'\',\'\'advertising\'\'buys\'\',\'\'and\'\'affilliate\'\'programs\'\'to\'\'ensure\'\'your\'\'site\'\'gets\'\'the\'\'traffic\'\'it\'\'needs\'\'. ','000001000002000002000008'),('Wl8WZ43g2rK5AYr9o4zY7w','Get Style','Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site. ','yns/style',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Style\'\'Get\'\'Style\'\'yns\'\'style\'\'Not\'\'a\'\'designer\'\'?\'\'No\'\'problem\'\'!\'\'Plain\'\'Black\'\'\'\'\'s\'\'professional\'\'design\'\'team\'\'can\'\'make\'\'your\'\'site\'\'look\'\'great\'\'.\'\'Our\'\'team\'\'is\'\'fast\'\',\'\'easy\'\'to\'\'work\'\'with\'\',\'\'and\'\'can\'\'even\'\'migrate\'\'your\'\'existing\'\'content\'\'into\'\'your\'\'new\'\'WebGUI\'\'site\'\'. ','000001000002000002000006'),('ix1p0AbwKAz8QWB-T-HHfg','Get Support','Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of s','yns/support',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Support\'\'Get\'\'Support\'\'yns\'\'support\'\'Plain\'\'Black\'\'provides\'\'support\'\'packages\'\'to\'\'fit\'\'any\'\'budget\'\'or\'\'need\'\'.\'\'Start\'\'out\'\'with\'\'online\'\'support\'\'which\'\'costs\'\'only\'\'$\'\'500\'\'per\'\'year\'\'!\'\'And\'\'grow\'\'support\'\'as\'\'your\'\'needs\'\'grow\'\'.\'\'We\'\'build\'\'custom\'\'support\'\'packages\'\'to\'\'match\'\'our\'\'client\'\'\'\'\'s\'\'needs\'\'.\'\'And\'\'no\'\'matter\'\'what\'\'level\'\'of\'\'support\'\'you\'\'purchase\'\',\'\'you\'\'get\'\'WebGUI\'\'Documentation\'\'included\'\'in\'\'your\'\'purchase\'\'. ','000001000002000002000003'),('iCYOjohB9SKvAPr6bXElKA','Get Hosting','Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with host','yns/hosting',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Hosting\'\'Get\'\'Hosting\'\'yns\'\'hosting\'\'Who\'\'better\'\'to\'\'host\'\'your\'\'WebGUI\'\'sites\'\'than\'\'Plain\'\'Black\'\'.\'\'Let\'\'us\'\'deal\'\'with\'\'upgrades\'\',\'\'security\'\',\'\'and\'\'server\'\'management\'\'.\'\'Doing\'\'so\'\'lets\'\'you\'\'focus\'\'on\'\'building\'\'your\'\'WebGUI\'\'site\'\',\'\'which\'\'is\'\'where\'\'your\'\'time\'\'and\'\'expertise\'\'should\'\'be\'\'spent\'\'.\'\'And\'\'when\'\'you\'\'sign\'\'up\'\'with\'\'hosting\'\',\'\'online\'\'support\'\'is\'\'included\'\'! ','000001000002000002000004'),('4Yfz9hqBqM8OYMGuQK8oLw','Get Features','What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to cu','yns/features',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Features\'\'Get\'\'Features\'\'yns\'\'features\'\'What\'\'\'\'\'s\'\'that\'\'you\'\'say\'\'?\'\'WebGUI\'\'\'\'\'s\'\'thousands\'\'of\'\'features\'\'are\'\'still\'\'missing\'\'some\'\'important\'\'ones\'\'?\'\'No\'\'problem\'\',\'\'our\'\'professional\'\'development\'\'team\'\'can\'\'add\'\'any\'\'features\'\'you\'\'need\'\'for\'\'your\'\'site\'\'.\'\'We\'\'\'\'\'ve\'\'built\'\'hundreds\'\'of\'\'custom\'\'apps\'\'for\'\'people\'\'.\'\'From\'\'simple\'\'macros\'\',\'\'to\'\'custom\'\'single\'\'sign\'\'on\'\'systems\'\',\'\'to\'\'applications\'\'that\'\'will\'\'manage\'\'your\'\'entire\'\'company\'\',\'\'our\'\'team\'\'can\'\'do\'\'it\'\'. ','000001000002000002000005'),('Vzv1pWpg_w6R_o-b0rM2qQ','Ad','Ad Ad home ad2 ','home/ad2',1147642515,1147642515,'3','7','4','WebGUI::Asset::File',1,'Ad\'\'Ad\'\'home\'\'ad2','000001000002000001000002'),('FOvmwGC0GtZo5VTxJIL3OA','Get Documentation','WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization. ','yns/docs',1147642515,1207068851,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Documentation\'\'Get\'\'Documentation\'\'yns\'\'docs\'\'WebGUI\'\'Documentation\'\'is\'\'the\'\'ultimate\'\'compendium\'\'to\'\'WebGUI\'\'.\'\'This\'\'is\'\'a\'\'must\'\'for\'\'anyone\'\'working\'\'in\'\'WebGUI\'\',\'\'and\'\'Plain\'\'Black\'\'offers\'\'vast\'\'bulk\'\'discounts\'\'so\'\'you\'\'can\'\'give\'\'it\'\'to\'\'everyone\'\'in\'\'your\'\'organization\'\'. ','000001000002000002000002'),('6QuS-0rosuZTdTv11fobig','Talk to the Experts','Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us tod','yns/experts',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Talk\'\'to\'\'the\'\'Experts\'\'Talk\'\'to\'\'the\'\'Experts\'\'yns\'\'experts\'\'Plain\'\'Black\'\'&\'\'reg\'\';\'\'created\'\'the\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'and\'\'is\'\'here\'\'to\'\'answer\'\'your\'\'questions\'\'and\'\'provide\'\'you\'\'with\'\'services\'\'to\'\'make\'\'sure\'\'your\'\'WebGUI\'\'implementation\'\'is\'\'entirely\'\'successful\'\'.\'\'We\'\'bend\'\'over\'\'backwards\'\'to\'\'make\'\'sure\'\'you\'\'\'\'\'re\'\'a\'\'success\'\'.\'\'Contact\'\'us\'\'today\'\'to\'\'see\'\'how\'\'we\'\'can\'\'help\'\'you\'\'. ','000001000002000002000001'),('NK8bqlwVRILJknqeCDPBHg','Getting Started (part 2)','\n\nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n \n\nNow that you\'re logged in, we recommend ','getting_started/getting-started-part2',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting\'\'Started\'\'(\'\'part\'\'2\'\')\'\'Getting\'\'Started\'\'(\'\'part\'\'2\'\')\'\'getting\'\'started\'\'getting\'\'started\'\'part2\'\'Now\'\'you\'\'should\'\'log\'\'in\'\'and\'\'go\'\'into\'\'admin\'\'mode\'\'.\'\'The\'\'default\'\'username\'\'is\'\'\"\'\'admin\'\'\"\'\'and\'\'the\'\'default\'\'password\'\'is\'\'\"\'\'123qwe\'\'\"\'\',\'\'but\'\'you\'\'probably\'\'customized\'\'both\'\'of\'\'those\'\'when\'\'you\'\'visited\'\'this\'\'site\'\'for\'\'the\'\'very\'\'first\'\'time\'\'.\'\'Now\'\'that\'\'you\'\'\'\'\'re\'\'logged\'\'in\'\',\'\'we\'\'recommend\'\'that\'\'you\'\'add\'\'a\'\'new\'\'user\'\'for\'\'yourself\'\'with\'\'admin\'\'privileges\'\'just\'\'in\'\'case\'\'you\'\'forget\'\'the\'\'login\'\'information\'\'for\'\'your\'\'primary\'\'admin\'\'account\'\'.\'\'Don\'\'\'\'\'t\'\'worry\'\'if\'\'you\'\'lock\'\'yourself\'\'out\'\',\'\'you\'\'can\'\'always\'\'contact\'\'Plain\'\'Black\'\'&\'\'reg\'\';\'\'support\'\'to\'\'get\'\'instructions\'\'to\'\'get\'\'back\'\'in\'\'.\'\'NOTE\'\':\'\'If\'\'you\'\'appear\'\'to\'\'be\'\'get\'\'logged\'\'out\'\'while\'\'moving\'\'between\'\'pages\'\',\'\'this\'\'is\'\'most\'\'likely\'\'your\'\'browser\'\'displaying\'\'a\'\'cached\'\'version\'\'of\'\'the\'\'page\'\'.\'\'Click\'\'on\'\'your\'\'browser\'\'\'\'\'s\'\'refresh\'\'button\'\'to\'\'correct\'\'the\'\'problem\'\'.\'\'No\'\'doubt\'\'after\'\'you\'\'enabled\'\'admin\'\'mode\'\'you\'\'saw\'\'a\'\'menu\'\'along\'\'the\'\'left\'\'side\'\'of\'\'the\'\'screen\'\',\'\'that\'\'\'\'\'s\'\'called\'\'the\'\'Admin\'\'Bar\'\'.\'\'Use\'\'that\'\'to\'\'add\'\'content\'\'and\'\'access\'\'administrative\'\'functions\'\'.\'\'You\'\'\'\'\'re\'\'now\'\'ready\'\'to\'\'begin\'\'exploring\'\'your\'\'new\'\'WebGUI\'\'site\'\'.\'\'For\'\'more\'\'information\'\'about\'\'services\'\'related\'\'to\'\'WebGUI\'\'click\'\'here\'\'.\'\'Enjoy\'\'your\'\'new\'\'WebGUI\'\'site\'\'! ','000001000002000001000003'),('m4YJFaqzultnB_sj1Uq0aw','Ad','Ad Ad home ad ','home/ad',1147642514,1147642514,'3','7','4','WebGUI::Asset::File',1,'Ad\'\'Ad\'\'home\'\'ad','000001000002000008'),('IWFxZDyGhQ3-SLZhELa3qw','Key Benefits','\n\nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n \n\nWorkflow &','home/key-benefits',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Key\'\'Benefits\'\'Key\'\'Benefits\'\'home\'\'key\'\'benefits\'\'Easy\'\'To\'\'Use\'\'-\'\'WebGUI\'\'is\'\'absolutely\'\'easy\'\'to\'\'use\'\'.\'\'WebGUI\'\'7\'\'has\'\'a\'\'completely\'\'revamped\'\'user\'\'interface\'\'to\'\'make\'\'it\'\'even\'\'easier\'\'to\'\'use\'\'.\'\'There\'\'are\'\'lots\'\'of\'\'visual\'\'cues\'\',\'\'consistent\'\'icons\'\',\'\'helper\'\'apps\'\',\'\'and\'\'a\'\'huge\'\'repository\'\'of\'\'built\'\'-\'\'in\'\'help\'\'files\'\'.\'\'Workflow\'\'&\'\'amp\'\';\'\'Versioning\'\'-\'\'Never\'\'again\'\'worry\'\'about\'\'content\'\'getting\'\'put\'\'on\'\'your\'\'site\'\'that\'\'you\'\'don\'\'\'\'\'t\'\'want\'\'there\'\'.\'\'Never\'\'again\'\'lose\'\'your\'\'old\'\'content\'\'after\'\'making\'\'an\'\'edit\'\'.\'\'And\'\'never\'\'again\'\'push\'\'out\'\'new\'\'changes\'\'until\'\'you\'\'\'\'\'re\'\'absolutely\'\'ready\'\'to\'\'release\'\'them\'\'.\'\'WebGUI\'\'\'\'\'s\'\'workflow\'\'and\'\'versioning\'\'system\'\'is\'\'fast\'\',\'\'flexible\'\',\'\'powerful\'\',\'\'and\'\'easy\'\'to\'\'use\'\'.\'\'Everything\'\'\'\'\'s\'\'a\'\'Template\'\'-\'\'Worry\'\'nevermore\'\'about\'\'your\'\'CMS\'\'forcing\'\'you\'\'into\'\'a\'\'mould\'\'that\'\'doesn\'\'\'\'\'t\'\'suit\'\'you\'\'.\'\'With\'\'WebGUI\'\'everything\'\'a\'\'site\'\'visitor\'\'can\'\'see\'\'is\'\'a\'\'customizable\'\'template\'\',\'\'so\'\'you\'\'can\'\'make\'\'it\'\'look\'\'exactly\'\'how\'\'you\'\'want\'\'.\'\'Moreover\'\'if\'\'you\'\'\'\'\'re\'\'the\'\'type\'\'that\'\'strives\'\'for\'\'excellence\'\'rest\'\'in\'\'the\'\'knowledge\'\'that\'\'all\'\'the\'\'templates\'\'that\'\'come\'\'with\'\'WebGUI\'\'are\'\'XHTML\'\'1\'\'.\'\'0\'\'strict\'\'compliant\'\'.\'\'Localization\'\'-\'\'WebGUI\'\'\'\'\'s\'\'entire\'\'user\'\'interface\'\'is\'\'set\'\'up\'\'to\'\'be\'\'internationalized\'\'.\'\'Visit\'\'one\'\'of\'\'the\'\'WebGUI\'\'Worldwide\'\'member\'\'sites\'\'to\'\'get\'\'translations\'\'for\'\'your\'\'language\'\'.\'\'Stay\'\'there\'\'to\'\'get\'\'support\'\'and\'\'services\'\'in\'\'your\'\'native\'\'language\'\'.\'\'Feel\'\'confident\'\'in\'\'the\'\'knowledge\'\'that\'\'WebGUI\'\'will\'\'work\'\'with\'\'your\'\'native\'\'characters\'\'because\'\'it\'\'\'\'\'s\'\'UTF\'\'-\'\'8\'\'compliant\'\'.\'\'On\'\'top\'\'of\'\'that\'\'WebGUI\'\'allows\'\'you\'\'to\'\'customize\'\'dates\'\',\'\'currency\'\',\'\'and\'\'weights\'\'to\'\'match\'\'your\'\'locale\'\'.\'\'Pluggable\'\'By\'\'Design\'\'-\'\'With\'\'WebGUI\'\'7\'\'you\'\'have\'\'many\'\'plug\'\'-\'\'in\'\'points\'\'to\'\'add\'\'your\'\'own\'\'functionality\'\'.\'\'And\'\'best\'\'of\'\'all\'\',\'\'the\'\'API\'\'is\'\'stable\'\'and\'\'standardized\'\'.\'\'Write\'\'it\'\'today\'\'and\'\'it\'\'will\'\'still\'\'work\'\'years\'\'from\'\'now\'\'and\'\'survive\'\'all\'\'upgrades\'\'. ','000001000002000009'),('bX5rYxb6tZ9docY6sUhBlw','Getting Started','\n\nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n \nNOTE: Click on the green start icon on t','getting_started/getting-started',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting\'\'Started\'\'Getting\'\'Started\'\'getting\'\'started\'\'getting\'\'started\'\'If\'\'you\'\'\'\'\'re\'\'reading\'\'this\'\'message\'\'that\'\'means\'\'you\'\'\'\'\'ve\'\'successfully\'\'installed\'\'and\'\'configured\'\'the\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'.\'\'Great\'\'job\'\'!\'\'To\'\'get\'\'started\'\'with\'\'managing\'\'content\'\',\'\'watch\'\'the\'\'short\'\'instructional\'\'video\'\'below\'\'.\'\'NOTE\'\':\'\'Click\'\'on\'\'the\'\'green\'\'start\'\'icon\'\'on\'\'the\'\'video\'\'to\'\'begin\'\'your\'\'tutorial\'\'. ','000001000002000001000001'),('Szs5eev3OMssmnsyLRZmWA','Tell A Friend','Tell a friend about WebGUI.','tell_a_friend/tell_a_friend',1124395696,1213317790,'3','7','3','WebGUI::Asset::Wobject::DataForm',1,'Tell\'\'A\'\'Friend\'\'Tell\'\'A\'\'Friend\'\'tell\'\'a\'\'friend\'\'tell\'\'a\'\'friend\'\'Tell\'\'a\'\'friend\'\'about\'\'WebGUI\'\'.','000001000002000004000001'),('OhdaFLE7sXOzo_SIP2ZUgA','Welcome','The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy eno','home/welcome',1147642513,1147642513,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Welcome\'\'Welcome\'\'home\'\'welcome\'\'The\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'is\'\'a\'\'powerful\'\'and\'\'easy\'\'to\'\'use\'\'system\'\'for\'\'managing\'\'web\'\'sites\'\',\'\'and\'\'building\'\'web\'\'applications\'\'.\'\'It\'\'provides\'\'thousands\'\'of\'\'features\'\'out\'\'of\'\'the\'\'box\'\',\'\'and\'\'lots\'\'of\'\'plug\'\'-\'\'in\'\'points\'\'so\'\'you\'\'can\'\'extend\'\'it\'\'to\'\'match\'\'your\'\'needs\'\'.\'\'It\'\'\'\'\'s\'\'easy\'\'enough\'\'for\'\'the\'\'average\'\'business\'\'user\'\',\'\'but\'\'powerful\'\'enough\'\'for\'\'any\'\'large\'\'enterprise\'\'.\'\'There\'\'are\'\'thousands\'\'of\'\'small\'\'and\'\'large\'\'businesses\'\',\'\'schools\'\',\'\'universities\'\',\'\'governments\'\',\'\'associations\'\',\'\'clubs\'\',\'\'churches\'\',\'\'projects\'\',\'\'and\'\'communities\'\'using\'\'WebGUI\'\'all\'\'over\'\'the\'\'world\'\'today\'\'.\'\'A\'\'brief\'\'list\'\'of\'\'some\'\'of\'\'them\'\'can\'\'be\'\'found\'\'here\'\'.\'\'Your\'\'site\'\'should\'\'be\'\'on\'\'that\'\'list\'\'.\'\'If\'\'you\'\'\'\'\'re\'\'new\'\'to\'\'WebGUI\'\',\'\'click\'\'here\'\'to\'\'learn\'\'how\'\'to\'\'get\'\'started\'\'.\'\'If\'\'you\'\'\'\'\'re\'\'getting\'\'up\'\'to\'\'speed\'\',\'\'check\'\'out\'\'some\'\'ways\'\'you\'\'can\'\'do\'\'more\'\'faster\'\'.\'\'If\'\'this\'\'is\'\'all\'\'old\'\'hat\'\'to\'\'you\'\',\'\'then\'\'check\'\'out\'\'the\'\'latest\'\'news\'\'.\'\'No\'\'matter\'\'what\'\'level\'\'you\'\'\'\'\'re\'\'at\'\'tell\'\'your\'\'friends\'\'about\'\'WebGUI\'\'. ','000001000002000007'),('pbrobot000000000000001','robots.txt','robots.txt robots.txt robots.txt ','robots.txt',1147642511,1147642511,'3','7','12','WebGUI::Asset::Snippet',1,'robots\'\'.\'\'txt\'\'robots\'\'.\'\'txt\'\'robots\'\'.\'\'txt User\'\'-\'\'agent\'\':\'\'googlebot\'\'Disallow\'\':\'\'*\'\'?\'\'op\'\'=\'\'displayLogin\'\'Disallow\'\':\'\'*\'\'?\'\'op\'\'=\'\'makePrintable','000001000001000031'),('7-0-style0000000000071','wg.jpg','wg.jpg wg.jpg style3 wg.jpg ','style3/wg.jpg',1147642511,1147642511,'3','7','12','WebGUI::Asset::File::Image',1,'wg\'\'.\'\'jpg\'\'wg\'\'.\'\'jpg\'\'style3\'\'wg\'\'.\'\'jpg','000001000001000047000022'),('7-0-style0000000000068','spacer.gif','spacer.gif spacer.gif style3 spacer.gif ','style3/spacer.gif',1147642510,1147642510,'3','7','12','WebGUI::Asset::File::Image',1,'spacer\'\'.\'\'gif\'\'spacer\'\'.\'\'gif\'\'style3\'\'spacer\'\'.\'\'gif','000001000001000047000019'),('7-0-style0000000000070','Style3 Coolmenu','Style3 Coolmenu Style3 Coolmenu style3 coolmenu ','style3_coolmenu',1147642510,1147642510,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3\'\'Coolmenu\'\'Style3\'\'Coolmenu\'\'style3\'\'coolmenu','000001000001000047000021'),('7-0-style0000000000066','nav_bg_on.jpg','nav_bg_on.jpg nav_bg_on.jpg style3 nav bg on.jpg ','style3/nav_bg_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg_on\'\'.\'\'jpg\'\'nav_bg_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg\'\'on\'\'.\'\'jpg','000001000001000047000017'),('7-0-style0000000000064','nav_bg2.jpg','nav_bg2.jpg nav_bg2.jpg style3 nav bg2.jpg ','style3/nav_bg2.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2\'\'.\'\'jpg\'\'nav_bg2\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg2\'\'.\'\'jpg','000001000001000047000015'),('7-0-style0000000000065','nav_bg2_on.jpg','nav_bg2_on.jpg nav_bg2_on.jpg style3 nav bg2 on.jpg ','style3/nav_bg2_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2_on\'\'.\'\'jpg\'\'nav_bg2_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg2\'\'on\'\'.\'\'jpg','000001000001000047000016'),('7-0-style0000000000067','pb.jpg','pb.jpg pb.jpg style3 pb.jpg ','style3/pb.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'pb\'\'.\'\'jpg\'\'pb\'\'.\'\'jpg\'\'style3\'\'pb\'\'.\'\'jpg','000001000001000047000018'),('7-0-style0000000000063','nav_bg1_on.jpg','nav_bg1_on.jpg nav_bg1_on.jpg style3 nav bg1 on.jpg ','style3/nav_bg1_on.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1_on\'\'.\'\'jpg\'\'nav_bg1_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg1\'\'on\'\'.\'\'jpg','000001000001000047000014'),('7-0-style0000000000060','main_top_bg.jpg','main_top_bg.jpg main_top_bg.jpg style3 main top bg.jpg ','style3/main_top_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'main_top_bg\'\'.\'\'jpg\'\'main_top_bg\'\'.\'\'jpg\'\'style3\'\'main\'\'top\'\'bg\'\'.\'\'jpg','000001000001000047000011'),('7-0-style0000000000062','nav_bg1.jpg','nav_bg1.jpg nav_bg1.jpg style3 nav bg1.jpg ','style3/nav_bg1.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1\'\'.\'\'jpg\'\'nav_bg1\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg1\'\'.\'\'jpg','000001000001000047000013'),('7-0-style0000000000061','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style3 nav bg.jpg ','style3/nav_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000047000012'),('7-0-style0000000000059','main_top.jpg','main_top.jpg main_top.jpg style3 main top.jpg ','style3/main_top.jpg',1147642507,1213386091,'3','7','12','WebGUI::Asset::File::Image',1,'main_top\'\'.\'\'jpg\'\'main_top\'\'.\'\'jpg\'\'style3\'\'main\'\'top\'\'.\'\'jpg','000001000001000047000010'),('7-0-style0000000000057','main_bg.jpg','main_bg.jpg main_bg.jpg style3 main bg.jpg ','style3/main_bg.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style3\'\'main\'\'bg\'\'.\'\'jpg','000001000001000047000008'),('7-0-style0000000000058','main_bottom.jpg','main_bottom.jpg main_bottom.jpg style3 main bottom.jpg ','style3/main_bottom.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bottom\'\'.\'\'jpg\'\'main_bottom\'\'.\'\'jpg\'\'style3\'\'main\'\'bottom\'\'.\'\'jpg','000001000001000047000009'),('7-0-style0000000000055','header_left.jpg','header_left.jpg header_left.jpg style3 header left.jpg ','style3/header_left.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_left\'\'.\'\'jpg\'\'header_left\'\'.\'\'jpg\'\'style3\'\'header\'\'left\'\'.\'\'jpg','000001000001000047000006'),('7-0-style0000000000056','header_right.jpg','header_right.jpg header_right.jpg style3 header right.jpg ','style3/header_right.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_right\'\'.\'\'jpg\'\'header_right\'\'.\'\'jpg\'\'style3\'\'header\'\'right\'\'.\'\'jpg','000001000001000047000007'),('7-0-style0000000000054','header_bg.jpg','header_bg.jpg header_bg.jpg style3 header bg.jpg ','style3/header_bg.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_bg\'\'.\'\'jpg\'\'header_bg\'\'.\'\'jpg\'\'style3\'\'header\'\'bg\'\'.\'\'jpg','000001000001000047000005'),('7-0-style0000000000052','footer_bg.jpg','footer_bg.jpg footer_bg.jpg style3 footer bg.jpg ','style3/footer_bg.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_bg\'\'.\'\'jpg\'\'footer_bg\'\'.\'\'jpg\'\'style3\'\'footer\'\'bg\'\'.\'\'jpg','000001000001000047000003'),('7-0-style0000000000053','footer_right.jpg','footer_right.jpg footer_right.jpg style3 footer right.jpg ','style3/footer_right.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_right\'\'.\'\'jpg\'\'footer_right\'\'.\'\'jpg\'\'style3\'\'footer\'\'right\'\'.\'\'jpg','000001000001000047000004'),('7-0-style0000000000046','rightCol_bg.jpg','rightCol_bg.jpg rightCol_bg.jpg style2 rightcol bg.jpg ','style2/rightcol_bg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'rightCol_bg\'\'.\'\'jpg\'\'rightCol_bg\'\'.\'\'jpg\'\'style2\'\'rightcol\'\'bg\'\'.\'\'jpg','000001000001000046000015'),('stevestyle000000000002','Style 02','Style 02 Style 02 style 02 ','style_02',1147642504,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'02\'\'Style\'\'02\'\'style\'\'02 style','000001000001000046000016'),('7-0-style0000000000049','WebGUI 7 Style 3','WebGUI 7 Style 3 WebGUI 7 Style 3 root import webgui 7 style 3 ','root/import/webgui-7-style-3',1147642504,1224117144,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'3\'\'WebGUI\'\'7\'\'Style\'\'3\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'3','000001000001000047'),('7-0-style0000000000048','wg.jpg','wg.jpg wg.jpg style2 wg.jpg ','style2/wg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'wg\'\'.\'\'jpg\'\'wg\'\'.\'\'jpg\'\'style2\'\'wg\'\'.\'\'jpg','000001000001000046000017'),('7-0-style0000000000045','pb_wg_bg.jpg','pb_wg_bg.jpg pb_wg_bg.jpg style2 pb wg bg.jpg ','style2/pb_wg_bg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg_bg\'\'.\'\'jpg\'\'pb_wg_bg\'\'.\'\'jpg\'\'style2\'\'pb\'\'wg\'\'bg\'\'.\'\'jpg','000001000001000046000014'),('7-0-style0000000000044','pb_wg.jpg','pb_wg.jpg pb_wg.jpg style2 pb wg.jpg ','style2/pb_wg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg\'\'.\'\'jpg\'\'pb_wg\'\'.\'\'jpg\'\'style2\'\'pb\'\'wg\'\'.\'\'jpg','000001000001000046000013'),('7-0-style0000000000043','pb.jpg','pb.jpg pb.jpg style2 pb.jpg ','style2/pb.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb\'\'.\'\'jpg\'\'pb\'\'.\'\'jpg\'\'style2\'\'pb\'\'.\'\'jpg','000001000001000046000012'),('7-0-style0000000000042','page_title_bg.jpg','page_title_bg.jpg page_title_bg.jpg style2 page title bg.jpg ','style2/page_title_bg.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title_bg\'\'.\'\'jpg\'\'page_title_bg\'\'.\'\'jpg\'\'style2\'\'page\'\'title\'\'bg\'\'.\'\'jpg','000001000001000046000011'),('7-0-style0000000000041','page_title.jpg','page_title.jpg page_title.jpg style2 page title.jpg ','style2/page_title.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title\'\'.\'\'jpg\'\'page_title\'\'.\'\'jpg\'\'style2\'\'page\'\'title\'\'.\'\'jpg','000001000001000046000010'),('7-0-style0000000000040','navbar_right.jpg','navbar_right.jpg navbar_right.jpg style2 navbar right.jpg ','style2/navbar_right.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_right\'\'.\'\'jpg\'\'navbar_right\'\'.\'\'jpg\'\'style2\'\'navbar\'\'right\'\'.\'\'jpg','000001000001000046000009'),('7-0-style0000000000039','navbar_left.jpg','navbar_left.jpg navbar_left.jpg style2 navbar left.jpg ','style2/navbar_left.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_left\'\'.\'\'jpg\'\'navbar_left\'\'.\'\'jpg\'\'style2\'\'navbar\'\'left\'\'.\'\'jpg','000001000001000046000008'),('7-0-style0000000000036','main_bg.jpg','main_bg.jpg main_bg.jpg style2 main bg.jpg ','style2/main_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style2\'\'main\'\'bg\'\'.\'\'jpg','000001000001000046000005'),('7-0-style0000000000038','navbar_bg.jpg','navbar_bg.jpg navbar_bg.jpg style2 navbar bg.jpg ','style2/navbar_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_bg\'\'.\'\'jpg\'\'navbar_bg\'\'.\'\'jpg\'\'style2\'\'navbar\'\'bg\'\'.\'\'jpg','000001000001000046000007'),('7-0-style0000000000035','leftCol_header02.jpg','leftCol_header02.jpg leftCol_header02.jpg style2 leftcol header02.jpg ','style2/leftcol_header02.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header02\'\'.\'\'jpg\'\'leftCol_header02\'\'.\'\'jpg\'\'style2\'\'leftcol\'\'header02\'\'.\'\'jpg','000001000001000046000004'),('7-0-style0000000000037','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style2 nav bg.jpg ','style2/nav_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style2\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000046000006'),('7-0-style0000000000032','context_bg.jpg','context_bg.jpg context_bg.jpg style2 context bg.jpg ','style2/context_bg.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'context_bg\'\'.\'\'jpg\'\'context_bg\'\'.\'\'jpg\'\'style2\'\'context\'\'bg\'\'.\'\'jpg','000001000001000046000001'),('7-0-style0000000000031','WebGUI 7 Style 2','WebGUI 7 Style 2 WebGUI 7 Style 2 root import webgui 7 style 2 ','root/import/webgui-7-style-2',1147642500,1147642500,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'2\'\'WebGUI\'\'7\'\'Style\'\'2\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'2','000001000001000046'),('7-0-style0000000000033','css02.css','css02.css css02.css style2 css02.css ','style2/css02.css',1147642500,1147642500,'3','7','12','WebGUI::Asset::Snippet',1,'css02\'\'.\'\'css\'\'css02\'\'.\'\'css\'\'style2\'\'css02\'\'.\'\'css body\'\',\'\'html\'\'{\'\'height\'\':\'\'100\'\'%\'\';\'\'}\'\'body\'\'{\'\'background\'\':\'\'#\'\'7c9ab0\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'main_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'rightColumn\'\'{\'\'width\'\':\'\'20\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'background\'\':\'\'#\'\'eeeeee\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'rightCol_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'pb_wg_bg\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'pb_wg_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'pb_wg\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'pb_wg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'left\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'53px\'\';\'\'}\'\'.\'\'leftColumn\'\'{\'\'width\'\':\'\'80\'\'%\'\';\'\'background\'\':\'\'white\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'context_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'background\'\':\'\'#\'\'7c9ab0\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'leftCol_header\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'right\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'86px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title\'\',\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title_bg\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'36pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'variant\'\':\'\'small\'\'-\'\'caps\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'12px\'\';\'\'top\'\':\'\'15px\'\';\'\'left\'\':\'\'5px\'\';\'\'position\'\':\'\'absolute\'\';\'\'z\'\'-\'\'index\'\':\'\'10\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title_bg\'\'{\'\'color\'\':\'\'black\'\';\'\'z\'\'-\'\'index\'\':\'\'5\'\';\'\'top\'\':\'\'17px\'\';\'\'left\'\':\'\'7px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'{\'\'/\'\'*\'\'background\'\':\'\'#\'\'fff\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'context_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'*\'\'/\'\'width\'\':\'\'95\'\'%\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'color\'\':\'\'#\'\'242424\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\'-\'\'left\'\':\'\'1\'\'%\'\';\'\'padding\'\'-\'\'right\'\':\'\'1\'\'%\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'a\'\'{\'\'color\'\':\'\'#\'\'7C9AB0\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'page_title_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'#\'\'pageTitle\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'page_title\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'right\'\'no\'\'-\'\'repeat\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'50px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'#\'\'pageTitle\'\'h2\'\'{\'\'font\'\'-\'\'size\'\':\'\'14pt\'\';\'\'color\'\':\'\'#\'\'696969\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'2px\'\';\'\'padding\'\'-\'\'left\'\':\'\'25px\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'3px\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'{\'\'width\'\':\'\'85\'\'%\'\';\'\'background\'\':\'\'#\'\'b5b5b5\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'nav_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'#\'\'848484\'\'1px\'\';\'\'margin\'\'-\'\'left\'\':\'\'auto\'\';\'\'margin\'\'-\'\'right\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'padding\'\'-\'\'left\'\':\'\'3px\'\';\'\'padding\'\'-\'\'top\'\':\'\'7px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'7px\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'line\'\'-\'\'height\'\':\'\'8pt\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'.\'\'selectedMenuItem\'\'{\'\'color\'\':\'\'yellow\'\';\'\'}\'\'#\'\'loginStyles\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'25px\'\';\'\'}\'\'#\'\'loginStyles\'\'a\'\'{\'\'color\'\':\'\'#\'\'89ACCF\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'transparent\'\'2px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'loginStyles\'\'a\'\':\'\'hover\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dotted\'\'#\'\'B2C9D9\'\'2px\'\';\'\'}\'\'.\'\'copyright\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'3px\'\';\'\'background\'\'-\'\'color\'\':\'\'gray\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'color\'\':\'\'silver\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}','000001000001000046000002'),('7-0-style0000000000034','leftCol_header.jpg','leftCol_header.jpg leftCol_header.jpg style2 leftcol header.jpg ','style2/leftcol_header.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header\'\'.\'\'jpg\'\'leftCol_header\'\'.\'\'jpg\'\'style2\'\'leftcol\'\'header\'\'.\'\'jpg','000001000001000046000003'),('stevenav00000000000001','Style 01 Nav','Style 01 Nav Style 01 Nav style1 nav ','style1_nav',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Nav\'\'Style\'\'01\'\'Nav\'\'style1\'\'nav Navigation','000001000001000045000027'),('PBnav000000style01lvl2','Style 01 Nav lvl2','Style 01 Nav lvl2 untitled style1 nav lvl2 ','style1_nav_lvl2',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Nav\'\'lvl2\'\'untitled\'\'style1\'\'nav\'\'lvl2 Navigation','000001000001000045000028'),('7-0-style0000000000030','webgui_btn.jpg','webgui_btn.jpg webgui_btn.jpg style1 webgui btn.jpg ','style1/webgui_btn.jpg',1147642499,1147642499,'3','7','12','WebGUI::Asset::File::Image',1,'webgui_btn\'\'.\'\'jpg\'\'webgui_btn\'\'.\'\'jpg\'\'style1\'\'webgui\'\'btn\'\'.\'\'jpg','000001000001000045000029'),('stevestyle000000000001','Style 01','Style 01 Style 01 style 01 ','style_01',1147642499,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Style\'\'01\'\'style\'\'01 style','000001000001000045000026'),('7-0-style0000000000026','RootTab Level 1','RootTab Level 1 RootTab Level 1 roottab level1 ','roottab_level1',1147642499,1147642499,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'Level\'\'1\'\'RootTab\'\'Level\'\'1\'\'roottab\'\'level1','000001000001000045000025'),('7-0-style0000000000024','orange_left01.jpg','orange_left01.jpg orange_left01.jpg style1 orange left01.jpg ','style1/orange_left01.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'orange_left01\'\'.\'\'jpg\'\'orange_left01\'\'.\'\'jpg\'\'style1\'\'orange\'\'left01\'\'.\'\'jpg','000001000001000045000023'),('7-0-style0000000000023','nav_on.jpg','nav_on.jpg nav_on.jpg style1 nav on.jpg ','style1/nav_on.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'nav_on\'\'.\'\'jpg\'\'nav_on\'\'.\'\'jpg\'\'style1\'\'nav\'\'on\'\'.\'\'jpg','000001000001000045000022'),('7-0-style0000000000025','RootTab Level 0','RootTab Level 0 RootTab Level 0 roottab level0 ','roottab_level0',1147642498,1147642498,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'Level\'\'0\'\'RootTab\'\'Level\'\'0\'\'roottab\'\'level0','000001000001000045000024'),('7-0-style0000000000019','nav2_off_right.jpg','nav2_off_right.jpg nav2_off_right.jpg style1 nav2 off right.jpg ','style1/nav2_off_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_right\'\'.\'\'jpg\'\'nav2_off_right\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'right\'\'.\'\'jpg','000001000001000045000018'),('7-0-style0000000000020','nav2_on_left.jpg','nav2_on_left.jpg nav2_on_left.jpg style1 nav2 on left.jpg ','style1/nav2_on_left.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_left\'\'.\'\'jpg\'\'nav2_on_left\'\'.\'\'jpg\'\'style1\'\'nav2\'\'on\'\'left\'\'.\'\'jpg','000001000001000045000019'),('7-0-style0000000000022','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style1 nav bg.jpg ','style1/nav_bg.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style1\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000045000021'),('7-0-style0000000000021','nav2_on_right.jpg','nav2_on_right.jpg nav2_on_right.jpg style1 nav2 on right.jpg ','style1/nav2_on_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_right\'\'.\'\'jpg\'\'nav2_on_right\'\'.\'\'jpg\'\'style1\'\'nav2\'\'on\'\'right\'\'.\'\'jpg','000001000001000045000020'),('7-0-style0000000000017','nav2_off_center.jpg','nav2_off_center.jpg nav2_off_center.jpg style1 nav2 off center.jpg ','style1/nav2_off_center.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_center\'\'.\'\'jpg\'\'nav2_off_center\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'center\'\'.\'\'jpg','000001000001000045000016'),('7-0-style0000000000016','nav2_center_on.jpg','nav2_center_on.jpg nav2_center_on.jpg style1 nav2 center on.jpg ','style1/nav2_center_on.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_center_on\'\'.\'\'jpg\'\'nav2_center_on\'\'.\'\'jpg\'\'style1\'\'nav2\'\'center\'\'on\'\'.\'\'jpg','000001000001000045000015'),('7-0-style0000000000018','nav2_off_left.jpg','nav2_off_left.jpg nav2_off_left.jpg style1 nav2 off left.jpg ','style1/nav2_off_left.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_left\'\'.\'\'jpg\'\'nav2_off_left\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'left\'\'.\'\'jpg','000001000001000045000017'),('7-0-style0000000000015','nav1_on_right.jpg','nav1_on_right.jpg nav1_on_right.jpg style1 nav1 on right.jpg ','style1/nav1_on_right.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_right\'\'.\'\'jpg\'\'nav1_on_right\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'right\'\'.\'\'jpg','000001000001000045000014'),('7-0-style0000000000014','nav1_on_left.jpg','nav1_on_left.jpg nav1_on_left.jpg style1 nav1 on left.jpg ','style1/nav1_on_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_left\'\'.\'\'jpg\'\'nav1_on_left\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'left\'\'.\'\'jpg','000001000001000045000013'),('7-0-style0000000000013','nav1_on.jpg','nav1_on.jpg nav1_on.jpg style1 nav1 on.jpg ','style1/nav1_on.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on\'\'.\'\'jpg\'\'nav1_on\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'.\'\'jpg','000001000001000045000012'),('7-0-style0000000000011','nav1_off_left.jpg','nav1_off_left.jpg nav1_off_left.jpg style1 nav1 off left.jpg ','style1/nav1_off_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_left\'\'.\'\'jpg\'\'nav1_off_left\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'left\'\'.\'\'jpg','000001000001000045000010'),('7-0-style0000000000012','nav1_off_right.jpg','nav1_off_right.jpg nav1_off_right.jpg style1 nav1 off right.jpg ','style1/nav1_off_right.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_right\'\'.\'\'jpg\'\'nav1_off_right\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'right\'\'.\'\'jpg','000001000001000045000011'),('7-0-style0000000000009','nav1_off.jpg','nav1_off.jpg nav1_off.jpg style1 nav1 off.jpg ','style1/nav1_off.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off\'\'.\'\'jpg\'\'nav1_off\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'.\'\'jpg','000001000001000045000008'),('7-0-style0000000000010','nav1_off_center.jpg','nav1_off_center.jpg nav1_off_center.jpg style1 nav1 off center.jpg ','style1/nav1_off_center.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_center\'\'.\'\'jpg\'\'nav1_off_center\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'center\'\'.\'\'jpg','000001000001000045000009'),('7-0-style0000000000008','nav1_center_on.jpg','nav1_center_on.jpg nav1_center_on.jpg style1 nav1 center on.jpg ','style1/nav1_center_on.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_center_on\'\'.\'\'jpg\'\'nav1_center_on\'\'.\'\'jpg\'\'style1\'\'nav1\'\'center\'\'on\'\'.\'\'jpg','000001000001000045000007'),('7-0-style0000000000006','main_bg.gif','main_bg.gif main_bg.gif style1 main bg.gif ','style1/main_bg.gif',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'gif\'\'main_bg\'\'.\'\'gif\'\'style1\'\'main\'\'bg\'\'.\'\'gif','000001000001000045000005'),('7-0-style0000000000007','main_bg.jpg','main_bg.jpg main_bg.jpg style1 main bg.jpg ','style1/main_bg.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style1\'\'main\'\'bg\'\'.\'\'jpg','000001000001000045000006'),('7-0-style0000000000004','gui_bottom.jpg','gui_bottom.jpg gui_bottom.jpg style1 gui bottom.jpg ','style1/gui_bottom.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'gui_bottom\'\'.\'\'jpg\'\'gui_bottom\'\'.\'\'jpg\'\'style1\'\'gui\'\'bottom\'\'.\'\'jpg','000001000001000045000003'),('7-0-style0000000000005','header.jpg','header.jpg header.jpg style1 header.jpg ','style1/header.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'header\'\'.\'\'jpg\'\'header\'\'.\'\'jpg\'\'style1\'\'header\'\'.\'\'jpg','000001000001000045000004'),('7-0-style0000000000001','WebGUI 7 Style 1','WebGUI 7 Style 1 WebGUI 7 Style 1 root import webgui 7 style 1 ','root/import/webgui-7-style-1',1147642492,1147642492,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'1\'\'WebGUI\'\'7\'\'Style\'\'1\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'1','000001000001000045'),('7-0-style0000000000002','body_bg.jpg','body_bg.jpg body_bg.jpg style1 body bg.jpg ','style1/body_bg.jpg',1147642492,1147642492,'3','7','12','WebGUI::Asset::File::Image',1,'body_bg\'\'.\'\'jpg\'\'body_bg\'\'.\'\'jpg\'\'style1\'\'body\'\'bg\'\'.\'\'jpg','000001000001000045000001'),('7-0-style0000000000003','css01.css','css01.css css01.css style1 css01.css ','style1/css01.css',1147642492,1147642492,'3','7','12','WebGUI::Asset::Snippet',1,'css01\'\'.\'\'css\'\'css01\'\'.\'\'css\'\'style1\'\'css01\'\'.\'\'css body\'\',\'\'html\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'494949\'\';\'\'}\'\'#\'\'main\'\'{\'\'width\'\':\'\'800px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'main_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'margin\'\'-\'\'left\'\':\'\'auto\'\';\'\'margin\'\'-\'\'right\'\':\'\'auto\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'body\'\'>\'\'#\'\'main\'\'{\'\'height\'\':\'\'auto\'\';\'\'min\'\'-\'\'height\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'{\'\'width\'\':\'\'800px\'\';\'\'height\'\':\'\'133px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'header\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'top\'\'left\'\'no\'\'-\'\'repeat\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'#\'\'title\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'23px\'\';\'\'left\'\':\'\'145px\'\';\'\'font\'\'-\'\'size\'\':\'\'32pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'#\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'orange_left01\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'left\'\'top\'\'no\'\'-\'\'repeat\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'red\'\'0px\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainContent\'\'{\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainContent\'\'>\'\'p\'\'{\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'#\'\'mainText\'\'a\'\':\'\'link\'\'{\'\'color\'\':\'\'#\'\'FF7F23\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'#\'\'mainText\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'D25900\'\';\'\'}\'\'/\'\'*\'\'LEVEL\'\'1\'\'AND\'\'2\'\'NAVIGATION\'\'*\'\'/\'\'#\'\'main\'\'.\'\'mainNav_1\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dashed\'\'#\'\'DADADA\'\'1px\'\';\'\'width\'\':\'\'621px\'\';\'\'height\'\':\'\'25px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'position\'\':\'\'relative\'\';\'\'margin\'\'-\'\'left\'\':\'\'137px\'\';\'\'clear\'\':\'\'both\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'visited\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'top\'\':\'\'5px\'\';\'\'position\'\':\'\'relative\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'hover\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'left\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'left\'\'{\'\'width\'\':\'\'12px\'\';\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'center\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'center\'\'{\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_center\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\',\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_center\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'right\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'right\'\'{\'\'width\'\':\'\'10px\'\';\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_on_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_center_on\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_on_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_on_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_center_on\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_on_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'visited\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'/\'\'*\'\'ENDOF\'\'LEVEL\'\'1\'\'AND\'\'2\'\'NAVIGATION\'\'*\'\'/\'\'#\'\'main\'\'#\'\'crumbTrail\'\'{\'\'margin\'\'-\'\'left\'\':\'\'177px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'color\'\':\'\'gray\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'visited\'\',\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'link\'\'{\'\'color\'\':\'\'silver\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'hover\'\'{\'\'color\'\':\'\'gray\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainText\'\'{\'\'padding\'\'-\'\'left\'\':\'\'150px\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'width\'\':\'\'600px\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'{\'\'bottom\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'position\'\':\'\'absolute\'\';\'\'width\'\':\'\'135px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'{\'\'padding\'\'-\'\'right\'\':\'\'12px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'width\'\':\'\'100px\'\';\'\'float\'\':\'\'right\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'.\'\'loginBoxField\'\'{\'\'width\'\':\'\'75px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'.\'\'loginBoxButton\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'D65501\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'white\'\'2px\'\';\'\'margin\'\'-\'\'top\'\':\'\'4px\'\';\'\'font\'\'-\'\'variant\'\':\'\'small\'\'-\'\'caps\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'copyright\'\'{\'\'color\'\':\'\'#\'\'fff\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'110px\'\';\'\'right\'\':\'\'40px\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'2D2D2D\'\';\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'-\'\'moz\'\'-\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'-\'\'khtml\'\'-\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'*\'\'html\'\'#\'\'copyright\'\'{\'\'background\'\':\'\'transparent\'\';\'\'}','000001000001000045000002'),('CSN-ZON7Uwv8kxf3F1fh5Q','ZipArchiveAsset','ZipArchiveAsset ZipArchiveAsset root import ziparchiveasset ','root/import/ziparchiveasset',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ZipArchiveAsset\'\'ZipArchiveAsset\'\'root\'\'import\'\'ziparchiveasset','000001000001000049'),('TCtybxdqmdwdvRn555zpCQ','RichEdit','RichEdit RichEdit root import richedit ','root/import/richedit',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RichEdit\'\'RichEdit\'\'root\'\'import\'\'richedit','000001000001000030'),('NywJYmGWe1f6EBXJnWg9Xg','Profile','Profile Profile root import profile ','root/import/profile',1222803606,1222803638,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile\'\'Profile\'\'root\'\'import\'\'profile','000001000001000026'),('9wKWdum0_8z-OhhquWLtSQ','WeatherData','WeatherData WeatherData root import weatherdata ','root/import/weatherdata',1147642483,1147642483,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WeatherData\'\'WeatherData\'\'root\'\'import\'\'weatherdata','000001000001000044'),('AgyFhx3eXlfZXNp2MkrsiQ','Edit','Edit Edit root import profile edit ','root/import/profile/edit',1147642477,1222803665,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Edit\'\'Edit\'\'root\'\'import\'\'profile\'\'edit','000001000001000026000001'),('F7MAQ-cpuvQ1KuC7J4P5zQ','View','View View root import profile view ','root/import/profile/view',1147642477,1222803673,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'View\'\'View\'\'root\'\'import\'\'profile\'\'view','000001000001000026000002'),('oGfxez5sksyB_PcaAsEm_Q','SyndicatedContent','SyndicatedContent SyndicatedContent root import syndicatedcontent ','root/import/syndicatedcontent',1147642482,1147642482,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SyndicatedContent\'\'SyndicatedContent\'\'root\'\'import\'\'syndicatedcontent','000001000001000040'),('5bnNzteN7w3NnK9mF4XiCg','Survey','Survey Survey root import survey ','root/import/survey',1147642481,1227540002,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Survey\'\'Survey\'\'root\'\'import\'\'survey','000001000001000039'),('Efe2W0UgrSRDltNJ87jlfg','StockData','StockData StockData root import stockdata ','root/import/stockdata',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'StockData\'\'StockData\'\'root\'\'import\'\'stockdata','000001000001000037'),('bbiA9Zq5Gy2oCFBlILO3QA','SQLReport','SQLReport SQLReport root import sqlreport ','root/import/sqlreport',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SQLReport\'\'SQLReport\'\'root\'\'import\'\'sqlreport','000001000001000036'),('RrV4aAPnn4dM0ZcU3OXnlw','style','style style root import style ','root/import/style',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'style\'\'style\'\'root\'\'import\'\'style','000001000001000038'),('Ik9HHky10DIyFTKehUD1dw','Prompt','Prompt Prompt root import prompt ','root/import/prompt',1147642479,1222803478,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Prompt\'\'Prompt\'\'root\'\'import\'\'prompt','000001000001000028'),('f_tn9FfoSfKWX43F83v_3w','Search','Search Search root import search ','root/import/search',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Search\'\'Search\'\'root\'\'import\'\'search','000001000001000032'),('Da6KWn805L4B5e4HFgQRQA','Shortcut','Shortcut Shortcut root import shortcut ','root/import/shortcut',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shortcut\'\'Shortcut\'\'root\'\'import\'\'shortcut','000001000001000035'),('TYo2Bwl7aafzTtdHlS-arQ','Product','Product Product root import product ','root/import/product',1147642478,1211664878,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Product\'\'Product\'\'root\'\'import\'\'product','000001000001000025'),('VZK3CRgiMb8r4dBjUmCTgQ','Poll','Poll Poll root import poll ','root/import/poll',1147642477,1147642477,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Poll\'\'Poll\'\'root\'\'import\'\'poll','000001000001000024'),('jEz8iTGNWEt2I05IhVV19Q','Operation/RedeemSubscription','Operation/RedeemSubscription Operation/RedeemSubscription root import operation redeemsubscription ','root/import/operation/redeemsubscription',1147642477,1147642477,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Operation\'\'/\'\'RedeemSubscription\'\'Operation\'\'/\'\'RedeemSubscription\'\'root\'\'import\'\'operation\'\'redeemsubscription','000001000001000034000016'),('BFfNj5wA9bDw8H3cnr8pTw','Navigation','Navigation Navigation root import navigation ','root/import/navigation',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Navigation\'\'Navigation\'\'root\'\'import\'\'navigation','000001000001000022'),('bBzO4CWjqU_ile3gf5Iypw','MultiSearch','MultiSearch MultiSearch root import multisearch ','root/import/multisearch',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MultiSearch\'\'MultiSearch\'\'root\'\'import\'\'multisearch','000001000001000021'),('cj2y4papTVGZRFdwTI-_fw','MessageBoard','MessageBoard MessageBoard root import messageboard ','root/import/messageboard',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MessageBoard\'\'MessageBoard\'\'root\'\'import\'\'messageboard','000001000001000020'),('3womoo7Teyy2YKFa25-MZg','Address Book (Default)','Address Book (Default) Address Book (Default) shopping cart collateral items address book default ','shopping-cart-collateral-items/address-book-default',1212098997,1226703362,'3','7','3','WebGUI::Asset::Template',1,'Address\'\'Book\'\'(\'\'Default\'\')\'\'Address\'\'Book\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'address\'\'book\'\'default Shop\'\'/\'\'AddressBook','000001000001000034000013'),('g8W53Pd71uHB9pxaXhWf_A','My Purchases Detail (Default)','My Purchases Detail (Default) My Purchases Detail (Default) shopping cart collateral items my purchases detail default ','shopping-cart-collateral-items/my-purchases-detail-default',1213184121,1222574693,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Purchases\'\'Detail\'\'(\'\'Default\'\')\'\'My\'\'Purchases\'\'Detail\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'my\'\'purchases\'\'detail\'\'default Shop\'\'/\'\'MyPurchasesDetail','000001000001000034000015'),('-WM2dt0ZGpDasuL2wWocxg','ProjectManager','ProjectManager ProjectManager root import projectmanager ','root/import/projectmanager',1222803056,1222803056,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ProjectManager\'\'ProjectManager\'\'root\'\'import\'\'projectmanager','000001000001000027'),('LdiozcIUciWuvt3Z-na5Ww','Matrix','Matrix Matrix root import matrix ','root/import/matrix',1147642474,1232673968,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Matrix\'\'Matrix\'\'root\'\'import\'\'matrix','000001000001000019'),('default_post_received1','Default Post Received','Default Post Received Default Post Received default post received ','default_post_received',1222708029,1230356300,'3','7','4','WebGUI::Asset::Template',1,'Default\'\'Post\'\'Received\'\'Default\'\'Post\'\'Received\'\'default\'\'post\'\'received Collaboration\'\'/\'\'PostReceived','000001000001000006000030'),('aNNC62qLAS6TB-0_MCYjsw','Layout','Layout Layout root import layout ','root/import/layout',1147642471,1213283425,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Layout\'\'Layout\'\'root\'\'import\'\'layout','000001000001000017'),('GYaFxnMu9UsEG8oanwB6TA','Folder','Folder Folder root import folder ','root/import/folder',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Folder\'\'Folder\'\'root\'\'import\'\'folder','000001000001000012'),('N13SD1Fpqk00UgBt1Z8ivQ','HttpProxy','HttpProxy HttpProxy root import httpproxy ','root/import/httpproxy',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'HttpProxy\'\'HttpProxy\'\'root\'\'import\'\'httpproxy','000001000001000014'),('tPagC0AQErZXjLFZQ6OI1g','ImageAsset','ImageAsset ImageAsset root import imageasset ','root/import/imageasset',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ImageAsset\'\'ImageAsset\'\'root\'\'import\'\'imageasset','000001000001000015'),('3uuBf8cYuj1sew2OJXl9tg','InOutBoard','InOutBoard InOutBoard root import inoutboard ','root/import/inoutboard',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'InOutBoard\'\'InOutBoard\'\'root\'\'import\'\'inoutboard','000001000001000016'),('PBtmpl0000000000000005','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template Default LDAP Anonymous Registration Template default ldap anonymous registration template ','default_ldap_anonymous_registration_template',1124395696,1221612327,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Anonymous\'\'Registration\'\'Template\'\'Default\'\'LDAP\'\'Anonymous\'\'Registration\'\'Template\'\'default\'\'ldap\'\'anonymous\'\'registration\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Create','000001000001000004000002000001'),('PBtmpl0000000000000011','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template Default WebGUI Anonymous Registration Template default webgui anonymous registration template ','default_webgui_anonymous_registration_template',1124395696,1221612288,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Anonymous\'\'Registration\'\'Template\'\'Default\'\'WebGUI\'\'Anonymous\'\'Registration\'\'Template\'\'default\'\'webgui\'\'anonymous\'\'registration\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Create','000001000001000004000005000001'),('tXwf1zaOXTvsqPn6yu-GSw','FileAsset','FileAsset FileAsset root import fileasset ','root/import/fileasset',1147642469,1147642469,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'FileAsset\'\'FileAsset\'\'root\'\'import\'\'fileasset','000001000001000011'),('S1A9iAwKcQQ6P20uTqw-Ew','Dashboard','Dashboard Dashboard root import dashboard ','root/import/dashboard',1147642468,1147642468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Dashboard\'\'Dashboard\'\'root\'\'import\'\'dashboard','000001000001000007'),('-K8Hj45mbelljN9-0CXZxg','DataForm',' ','root/import/dataform',1147642468,1209325764,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'DataForm\'\'DataForm\'\'root\'\'import\'\'dataform','000001000001000008'),('GNOAsX98vCsl0JRwfwL-gg','Collaboration','Collaboration Collaboration root import collaboration ','root/import/collaboration',1147642466,1147642466,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Collaboration\'\'Collaboration\'\'root\'\'import\'\'collaboration','000001000001000006'),('pbproto000000000000002','Request Tracker','Request Tracker Request Tracker request tracker prototype ','request-tracker-prototype',1147642465,1163019036,'3','7','12','WebGUI::Asset::Wobject::Collaboration',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'prototype','000001000001000029'),('pbtmpl0000000000000220','Flash Template','Flash Template Flash Template flash template ','flash-template',1147642465,1148579525,'3','7','12','WebGUI::Asset::Template',1,'Flash\'\'Template\'\'Flash\'\'Template\'\'flash\'\'template FileAsset','000001000001000011000002'),('pbtmpl0000000000000221','Flash Tutorial Template','Flash Tutorial Template Flash Tutorial Template flash tutorial template ','flash-tutorial-template',1147642465,1147642465,'3','7','12','WebGUI::Asset::Template',1,'Flash\'\'Tutorial\'\'Template\'\'Flash\'\'Tutorial\'\'Template\'\'flash\'\'tutorial\'\'template FileAsset','000001000001000011000003'),('nbSrhXZQuxIjhWFaFPSuVA','AdminConsole','AdminConsole AdminConsole root import adminconsole ','root/import/adminconsole',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminConsole\'\'AdminConsole\'\'root\'\'import\'\'adminconsole','000001000001000002'),('TvOZs8U1kRXLtwtmyW75pg','Article','Article Article root import article ','root/import/article',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Article\'\'Article\'\'root\'\'import\'\'article','000001000001000003'),('PBtmpl0000000000000027','Default Forum Notification','Default Forum Notification Default Forum Notification default forum notification ','default_forum_notification',1124395696,1230159257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Notification\'\'Default\'\'Forum\'\'Notification\'\'default\'\'forum\'\'notification Collaboration\'\'/\'\'Notification','000001000001000006000015'),('PBtmpl00000000table118','Three Over One (Table)','Three Over One (Table) Three Over One (Table) three over one table ','three_over_one_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Three\'\'Over\'\'One\'\'(\'\'Table\'\')\'\'Three\'\'Over\'\'One\'\'(\'\'Table\'\')\'\'three\'\'over\'\'one\'\'table Layout','000001000001000017000012'),('PBtmpl00000000table135','Side By Side (Table)','Side By Side (Table) Side By Side (Table) side by side table ','side_by_side_table',1148579525,1220655706,'3','7','12','WebGUI::Asset::Template',1,'Side\'\'By\'\'Side\'\'(\'\'Table\'\')\'\'Side\'\'By\'\'Side\'\'(\'\'Table\'\')\'\'side\'\'by\'\'side\'\'table Layout','000001000001000017000011'),('PBtmpl00000000table131','Right Column (Table)','Right Column (Table) Right Column (Table) right column table ','right_column_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Right\'\'Column\'\'(\'\'Table\'\')\'\'Right\'\'Column\'\'(\'\'Table\'\')\'\'right\'\'column\'\'table Layout','000001000001000017000010'),('PBtmpl00000000table094','News (Table)','News (Table) News (Table) news table ','news_table',1148579525,1220655704,'3','7','12','WebGUI::Asset::Template',1,'News\'\'(\'\'Table\'\')\'\'News\'\'(\'\'Table\'\')\'\'news\'\'table Layout','000001000001000017000009'),('PBtmpl00000000table125','Left Column (Table)','Left Column (Table) Left Column (Table) left column table ','left_column_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Column\'\'(\'\'Table\'\')\'\'Left\'\'Column\'\'(\'\'Table\'\')\'\'left\'\'column\'\'table Layout','000001000001000017000008'),('PBnav00000000indentnav','Indent Nav','Indent Nav Indent Nav indent nav ','indent_nav',1148579525,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Indent\'\'Nav\'\'Indent\'\'Nav\'\'indent\'\'nav Navigation','000001000001000022000028'),('PBtmpl0000000000000085','Default Email','Default Email Default Email default email ','default_email',1124395696,1202884864,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Email\'\'Default\'\'Email\'\'default\'\'email DataForm','000001000001000008000002'),('PBnav00000000000bullet','Bulleted List','Bulleted List Bulleted List bulleted list ','bulleted_list',1148579524,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Bulleted\'\'List\'\'Bulleted\'\'List\'\'bulleted\'\'list Navigation','000001000001000022000027'),('StockDataTMPL000000002','StockData Default Display','StockData Default Display StockData Default Display stockdatatmpl000000002 ','stockdatatmpl000000002',1133743239,1229494994,'3','7','12','WebGUI::Asset::Template',1,'StockData\'\'Default\'\'Display\'\'StockData\'\'Default\'\'Display\'\'stockdatatmpl000000002 StockData\'\'/\'\'Display','000001000001000037000001'),('2OcUWHVsu_L1sDFzIMWYqw','TimeTracking','TimeTracking TimeTracking root import timetracking ','root/import/timetracking',1222803070,1222803070,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'TimeTracking\'\'TimeTracking\'\'root\'\'import\'\'timetracking','000001000001000042'),('PBtmpl000000000table54','Default Page (Table)','Default Page (Table) Default Page (Table) default page table ','default_page_table',1154535074,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'(\'\'Table\'\')\'\'Default\'\'Page\'\'(\'\'Table\'\')\'\'default\'\'page\'\'table Layout','000001000001000017000013'),('PBtmpl00000000table109','One Over Three (Table)','One Over Three (Table) One Over Three (Table) one over three table ','one_over_three_table',1154535074,1220655705,'3','7','12','WebGUI::Asset::Template',1,'One\'\'Over\'\'Three\'\'(\'\'Table\'\')\'\'One\'\'Over\'\'Three\'\'(\'\'Table\'\')\'\'one\'\'over\'\'three\'\'table Layout','000001000001000017000014'),('PBtmpl0000000000000014','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template Default WebGUI Password Recovery Template default webgui password recovery template ','default_webgui_password_recovery_template',1124395696,1227218041,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Password\'\'Recovery\'\'Template\'\'Default\'\'WebGUI\'\'Password\'\'Recovery\'\'Template\'\'default\'\'webgui\'\'password\'\'recovery\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Recovery2','000001000001000004000008000001'),('ProjectManagerTMPL0006','Default Resource List','Default Resource List Default Resource List default pm resource list ','default-pm-resource-list',1157679165,1157679165,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Resource\'\'List\'\'Default\'\'Resource\'\'List\'\'default\'\'pm\'\'resource\'\'list ProjectManager_resourceList','000001000001000027000005000001'),('ProjectManagerTMPL0005','Default Resource Popup','Default Resource Popup Default Resource Popup default pm resource popup ','default-pm-resource-popup',1157679165,1229579830,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Resource\'\'Popup\'\'Default\'\'Resource\'\'Popup\'\'default\'\'pm\'\'resource\'\'popup ProjectManager_resourcePopup','000001000001000027000005000002'),('PBtmpl0000000000000032','Default Thread','Default Thread Default Thread default thread ','default_thread',1124395696,1206998756,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thread\'\'Default\'\'Thread\'\'default\'\'thread Collaboration\'\'/\'\'Thread','000001000001000006000014'),('WeatherDataTmpl0000001','WeatherData Default View','WeatherData Default View WeatherData Default View weatherdatatmpl0000001 ','weatherdatatmpl0000001',1133743239,1210711353,'3','7','12','WebGUI::Asset::Template',1,'WeatherData\'\'Default\'\'View\'\'WeatherData\'\'Default\'\'View\'\'weatherdatatmpl0000001 WeatherData','000001000001000044000001'),('PBasset000000000000001','Root','Root Root root ','root',1124395696,1124395696,'3','7','3','WebGUI::Asset',1,'Root\'\'Root\'\'root','000001'),('PBrichedit000000000001','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit Content Manager\'s Rich Edit content managers rich edit ','content_managers_rich_edit',1124395696,1207240829,'3','7','12','WebGUI::Asset::RichEdit',1,'Content\'\'Manager\'\'\'\'\'s\'\'Rich\'\'Edit\'\'Content\'\'Manager\'\'\'\'\'s\'\'Rich\'\'Edit\'\'content\'\'managers\'\'rich\'\'edit','000001000001000030000001'),('PBrichedit000000000002','Forum Rich Edit','Forum Rich Edit Forum Rich Edit forum rich edit ','forum_rich_edit',1124395696,1124395696,'3','7','12','WebGUI::Asset::RichEdit',1,'Forum\'\'Rich\'\'Edit\'\'Forum\'\'Rich\'\'Edit\'\'forum\'\'rich\'\'edit','000001000001000030000002'),('SynConXSLT000000000001','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT Stylesheet RSS 0.9 XSLT xslt rss0.9.xsl ','xslt/rss0.9.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'0\'\'.\'\'9\'\'XSLT\'\'Stylesheet\'\'RSS\'\'0\'\'.\'\'9\'\'XSLT\'\'xslt\'\'rss0\'\'.\'\'9\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'0\'\'.\'\'9\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.','000001000001000040000003'),('SynConXSLT000000000002','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT Stylesheet RSS 0.91 XSLT xslt rss0.91.xsl ','xslt/rss0.91.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'0\'\'.\'\'91\'\'XSLT\'\'Stylesheet\'\'RSS\'\'0\'\'.\'\'91\'\'XSLT\'\'xslt\'\'rss0\'\'.\'\'91\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'0\'\'.\'\'91\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.','000001000001000040000004'),('SynConXSLT000000000003','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT Stylesheet RSS 1.0 XSLT xslt rss1.0.xsl ','xslt/rss1.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'1\'\'.\'\'0\'\'XSLT\'\'Stylesheet\'\'RSS\'\'1\'\'.\'\'0\'\'XSLT\'\'xslt\'\'rss1\'\'.\'\'0\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'1\'\'.\'\'0\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.\'\'(\'\')','000001000001000040000005'),('SynConXSLT000000000004','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT Stylesheet RSS 2.0 XSLT xslt rss2.0.xsl ','xslt/rss2.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'2\'\'.\'\'0\'\'XSLT\'\'Stylesheet\'\'RSS\'\'2\'\'.\'\'0\'\'XSLT\'\'xslt\'\'rss2\'\'.\'\'0\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'2\'\'.\'\'0\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.\'\'(\'\')','000001000001000040000006'),('vrKXEtluIhbmAS9xmPukDA','Donation (Default)','Donation (Default) Donation (Default) root import default donation template ','root/import/default-donation-template',1212092352,1226698051,'3','7','12','WebGUI::Asset::Template',1,'Donation\'\'(\'\'Default\'\')\'\'Donation\'\'(\'\'Default\'\')\'\'root\'\'import\'\'default\'\'donation\'\'template Donation','000001000001000034000010'),('eqb9sWjFEVq0yHunGV8IGw','Subscription (Default)','Subscription (Default) Subscription (Default) root import subscription default ','root/import/subscription-default',1213182595,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Subscription\'\'(\'\'Default\'\')\'\'Subscription\'\'(\'\'Default\'\')\'\'root\'\'import\'\'subscription\'\'default Subscription','000001000001000034000012'),('PBtmpl0000000000000036','Default Admin Toggle Macro','Default Admin Toggle Macro Default Admin Toggle Macro default admin toggle macro ','default_admin_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Admin\'\'Toggle\'\'Macro\'\'Default\'\'Admin\'\'Toggle\'\'Macro\'\'default\'\'admin\'\'toggle\'\'macro Macro\'\'/\'\'AdminToggle','000001000001000018000001000001'),('PBtmpl0000000000000037','Default Account Macro','Default Account Macro Default Account Macro default account macro ','default_account_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Account\'\'Macro\'\'Default\'\'Account\'\'Macro\'\'default\'\'account\'\'macro Macro\'\'/\'\'a_account','000001000001000018000002000001'),('PBtmpl0000000000000038','Default Editable Toggle Macro','Default Editable Toggle Macro Default Editable Toggle Macro default editable toggle macro ','default_editable_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Editable\'\'Toggle\'\'Macro\'\'Default\'\'Editable\'\'Toggle\'\'Macro\'\'default\'\'editable\'\'toggle\'\'macro Macro\'\'/\'\'EditableToggle','000001000001000018000003000001'),('PBtmpl0000000000000040','Default Group Add Macro','Default Group Add Macro Default Group Add Macro default group add macro ','default_group_add_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Group\'\'Add\'\'Macro\'\'Default\'\'Group\'\'Add\'\'Macro\'\'default\'\'group\'\'add\'\'macro Macro\'\'/\'\'GroupAdd','000001000001000018000005000001'),('PBtmpl0000000000000041','Default Group Delete Macro','Default Group Delete Macro Default Group Delete Macro default group delete macro ','default_group_delete_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Group\'\'Delete\'\'Macro\'\'Default\'\'Group\'\'Delete\'\'Macro\'\'default\'\'group\'\'delete\'\'macro Macro\'\'/\'\'GroupDelete','000001000001000018000006000001'),('PBtmpl0000000000000042','Default Homelink','Default Homelink Default Homelink default homelink ','default_homelink',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Homelink\'\'Default\'\'Homelink\'\'default\'\'homelink Macro\'\'/\'\'H_homeLink','000001000001000018000007000001'),('PBtmpl0000000000000043','Default LoginToggle','Default LoginToggle Default LoginToggle default logintoggle ','default_logintoggle',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LoginToggle\'\'Default\'\'LoginToggle\'\'default\'\'logintoggle Macro\'\'/\'\'LoginToggle','000001000001000018000008000001'),('PBtmpl0000000000000045','Default Make Printable','Default Make Printable Default Make Printable default make printable ','default_make_printable',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Make\'\'Printable\'\'Default\'\'Make\'\'Printable\'\'default\'\'make\'\'printable Macro\'\'/\'\'r_printable','000001000001000018000011000001'),('PBtmpl0000000000000091','File no icon','File no icon File no icon file no icon ','file_no_icon',1124395696,1129049189,'3','7','12','WebGUI::Asset::Template',1,'File\'\'no\'\'icon\'\'File\'\'no\'\'icon\'\'file\'\'no\'\'icon Macro\'\'/\'\'File','000001000001000018000004000002'),('PBtmpl0000000000000125','Left Column','Left Column Left Column left column ','left_column',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Column\'\'Left\'\'Column\'\'left\'\'column Layout','000001000001000017000004'),('PBtmpl0000000000000132','Empty','Empty Empty empty ','empty',1124395696,1129049190,'3','7','12','WebGUI::Asset::Template',1,'Empty\'\'Empty\'\'empty style','000001000001000038000004'),('PBtmpl0000000000000140','Default Shortcut','Default Shortcut Default Shortcut pbtmpl0000000000000140 ','pbtmpl0000000000000140',1124395696,1129573244,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Shortcut\'\'Default\'\'Shortcut\'\'pbtmpl0000000000000140 Shortcut','000001000001000035000001'),('PBtmpl0000000000000142','Default RSS','Default RSS Default RSS pbtmpl0000000000000142 ','pbtmpl0000000000000142',1133743238,1171466654,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'RSS\'\'Default\'\'RSS\'\'pbtmpl0000000000000142 RSSCapable\'\'/\'\'RSS','000001000001000006000026'),('ZipArchiveTMPL00000001','Default Zip Archive Template','Default Zip Archive Template Default Zip Archive Template zip archive template ','zip-archive-template',1133743240,1169738426,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Zip\'\'Archive\'\'Template\'\'Default\'\'Zip\'\'Archive\'\'Template\'\'zip\'\'archive\'\'template ZipArchiveAsset','000001000001000049000001'),('PBasset000000000000002','Import Node','Import Node Import root import ','root/import',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Import\'\'Node\'\'Import\'\'root\'\'import','000001000001'),('2TqQc4OISddWCZmRY1_m8A','The Latest News','The Latest News The Latest News the latest news ','the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'The\'\'Latest\'\'News\'\'The\'\'Latest\'\'News\'\'the\'\'latest\'\'news','000001000002000003'),('68sKwDgf9cGH58-NZcU4lg','Home','Home Home home ','home',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Home\'\'Home\'\'home','000001000002'),('8Bb8gu-me2mhL3ljFyiWLg','What should you do next?','What should you do next? Your Next Step your next step ','your_next_step',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'What\'\'should\'\'you\'\'do\'\'next\'\'?\'\'Your\'\'Next\'\'Step\'\'your\'\'next\'\'step','000001000002000002'),('Swf6L8poXKc7hUaNPkBevw','Tell A Friend','Tell A Friend Tell A Friend tell a friend ','tell_a_friend',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Tell\'\'A\'\'Friend\'\'Tell\'\'A\'\'Friend\'\'tell\'\'a\'\'friend','000001000002000004'),('_iHetEvMQUOoxS-T2CM0sQ','Getting Started','Getting Started Getting Started getting started ','getting_started',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Getting\'\'Started\'\'Getting\'\'Started\'\'getting\'\'started','000001000002000001'),('x3OFY6OJh_qsXkZfPwug4A','Site Map','Site Map Site Map site map ','site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Site\'\'Map\'\'Site\'\'Map\'\'site\'\'map','000001000002000006'),('PBnav00000000000000001','crumbTrail','crumbTrail crumbTrail crumbtrail ','crumbtrail',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crumbTrail\'\'crumbTrail\'\'crumbtrail','000001000001000022000009'),('PBnav00000000000000002','SpecificSubMenuVertical','SpecificSubMenuVertical SpecificSubMenuVertical specificsubmenuvertical ','specificsubmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuVertical\'\'SpecificSubMenuVertical\'\'specificsubmenuvertical','000001000001000022000018'),('PBnav00000000000000006','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal SpecificSubMenuHorizontal specificsubmenuhorizontal ','specificsubmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuHorizontal\'\'SpecificSubMenuHorizontal\'\'specificsubmenuhorizontal','000001000001000022000019'),('PBnav00000000000000007','TopLevelMenuVertical','TopLevelMenuVertical TopLevelMenuVertical toplevelmenuvertical ','toplevelmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuVertical\'\'TopLevelMenuVertical\'\'toplevelmenuvertical','000001000001000022000020'),('PBnav00000000000000008','TopLevelMenuHorizontal','TopLevelMenuHorizontal TopLevelMenuHorizontal toplevelmenuhorizontal ','toplevelmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuHorizontal\'\'TopLevelMenuHorizontal\'\'toplevelmenuhorizontal','000001000001000022000021'),('PBnav00000000000000009','RootTab','RootTab RootTab roottab ','roottab',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'RootTab\'\'roottab','000001000001000022000022'),('PBnav00000000000000010','TopDropMenu','TopDropMenu TopDropMenu topdropmenu ','topdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopDropMenu\'\'TopDropMenu\'\'topdropmenu','000001000001000022000023'),('PBnav00000000000000011','dtree','dtree dtree dtree ','dtree',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'dtree\'\'dtree\'\'dtree','000001000001000022000024'),('PBnav00000000000000012','coolmenu','coolmenu coolmenu coolmenu ','coolmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'coolmenu\'\'coolmenu\'\'coolmenu','000001000001000022000025'),('PBnav00000000000000013','Synopsis','Synopsis Synopsis synopsis ','synopsis',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Synopsis\'\'Synopsis\'\'synopsis','000001000001000022000026'),('PBnav00000000000000014','FlexMenu','FlexMenu FlexMenu flexmenu ','flexmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'FlexMenu\'\'FlexMenu\'\'flexmenu','000001000001000022000010'),('PBnav00000000000000015','currentMenuVertical','currentMenuVertical currentMenuVertical currentmenuvertical ','currentmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuVertical\'\'currentMenuVertical\'\'currentmenuvertical','000001000001000022000011'),('PBnav00000000000000016','currentMenuHorizontal','currentMenuHorizontal currentMenuHorizontal currentmenuhorizontal ','currentmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuHorizontal\'\'currentMenuHorizontal\'\'currentmenuhorizontal','000001000001000022000012'),('PBnav00000000000000017','PreviousDropMenu','PreviousDropMenu PreviousDropMenu previousdropmenu ','previousdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'PreviousDropMenu\'\'PreviousDropMenu\'\'previousdropmenu','000001000001000022000013'),('PBnav00000000000000018','previousMenuVertical','previousMenuVertical previousMenuVertical previousmenuvertical ','previousmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuVertical\'\'previousMenuVertical\'\'previousmenuvertical','000001000001000022000014'),('PBnav00000000000000019','previousMenuHorizontal','previousMenuHorizontal previousMenuHorizontal previousmenuhorizontal ','previousmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuHorizontal\'\'previousMenuHorizontal\'\'previousmenuhorizontal','000001000001000022000015'),('PBnav00000000000000020','rootmenu','rootmenu rootmenu rootmenu ','rootmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'rootmenu\'\'rootmenu\'\'rootmenu','000001000001000022000016'),('PBnav00000000000000021','SpecificDropMenu','SpecificDropMenu SpecificDropMenu specificdropmenu ','specificdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificDropMenu\'\'SpecificDropMenu\'\'specificdropmenu','000001000001000022000017'),('pJd5TLAjfWMVXD6sCRLwUg','Site Map','Site Map Site Map site map site map ','site_map/site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Site\'\'Map\'\'Site\'\'Map\'\'site\'\'map\'\'site\'\'map','000001000002000006000001'),('fK-HMSboA3uu0c1KYkYspA','The Latest News','This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','the_latest_news/the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::SyndicatedContent',1,'The\'\'Latest\'\'News\'\'The\'\'Latest\'\'News\'\'the\'\'latest\'\'news\'\'the\'\'latest\'\'news\'\'This\'\'is\'\'the\'\'latest\'\'news\'\'from\'\'Plain\'\'Black\'\'and\'\'WebGUI\'\'pulled\'\'directly\'\'from\'\'the\'\'site\'\'every\'\'hour\'\'.','000001000002000003000001'),('WikiFrontTmpl000000001','Default Wiki Front Page','Default Wiki Front Page Default Wiki Front Page default wiki front page ','default-wiki-front-page',1165460175,1185754572,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Front\'\'Page\'\'Default\'\'Wiki\'\'Front\'\'Page\'\'default\'\'wiki\'\'front\'\'page WikiMaster_front','000001000001000048000002'),('WikiSearchTmpl00000001','Default Wiki Search','Default Wiki Search Default Wiki Search default wiki search ','default-wiki-search',1165460175,1168480840,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Search\'\'Default\'\'Wiki\'\'Search\'\'default\'\'wiki\'\'search WikiMaster_search','000001000001000048000003'),('WikiPHTmpl000000000001','Default Page History','Default Page History Default Page History default wiki page history ','default-wiki-page-history',1165460175,1165460175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'History\'\'Default\'\'Page\'\'History\'\'default\'\'wiki\'\'page\'\'history WikiPage_pageHistory','000001000001000048000004'),('WikiPageTmpl0000000001','Default Wiki Page','Default Wiki Page Default Wiki Page default wiki page ','default-wiki-page',1165460175,1229706257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Page\'\'Default\'\'Wiki\'\'Page\'\'default\'\'wiki\'\'page WikiPage','000001000001000048000005'),('WikiPageEditTmpl000001','Default Wiki Page Edit','Default Wiki Page Edit Default Wiki Page Edit default wiki page edit ','default-wiki-page-edit',1165460175,1221692341,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Page\'\'Edit\'\'Default\'\'Wiki\'\'Page\'\'Edit\'\'default\'\'wiki\'\'page\'\'edit WikiPage_edit','000001000001000048000006'),('WikiMPTmpl000000000001','Default Most Popular','Default Most Popular Default Most Popular default wiki most popular ','default-wiki-most-popular',1165460175,1165460175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Most\'\'Popular\'\'Default\'\'Most\'\'Popular\'\'default\'\'wiki\'\'most\'\'popular WikiMaster_mostPopular','000001000001000048000007'),('SQLReportDownload00001','SQLReport Download Default Template','SQLReport Download Default Template untitled SQLReportDownload0001 ','SQLReportDownload0001',1171466654,1171466654,'3','7','12','WebGUI::Asset::Template',1,'SQLReport\'\'Download\'\'Default\'\'Template\'\'untitled\'\'SQLReportDownload0001 SQLReport\'\'/\'\'Download','000001000001000036000002'),('newsletter000000000001',' Summary Newsletter (default)',' Summary Newsletter (default) Summary Newsletter newsletterdefaulttemplate ','newsletterdefaulttemplate',1185754569,1185754569,'3','7','3','WebGUI::Asset::Template',1,'Summary\'\'Newsletter\'\'(\'\'default\'\')\'\'Summary\'\'Newsletter\'\'newsletterdefaulttemplate newsletter','000001000001000023000001'),('newslettercs0000000001','Newsletter Manager (default)','Newsletter Manager (default) Newsletter Manager newslettercstemplate ','newslettercstemplate',1185754569,1226896423,'3','7','3','WebGUI::Asset::Template',1,'Newsletter\'\'Manager\'\'(\'\'default\'\')\'\'Newsletter\'\'Manager\'\'newslettercstemplate newsletter','000001000001000023000002'),('newslettersubscrip0001','My Subscriptions (default)','My Subscriptions (default) My Subscriptions newslettermysubscriptionstemplate ','newslettermysubscriptionstemplate',1185754569,1221692339,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Subscriptions\'\'(\'\'default\'\')\'\'My\'\'Subscriptions\'\'newslettermysubscriptionstemplate newsletter\'\'/\'\'mysubscriptions','000001000001000023000003'),('AjhlNO3wZvN5k4i4qioWcg','Default Answer Edit','Default Answer Edit Default Answer Edit root import survey default answer edit ','root/import/survey/default-answer-edit',1226009658,1233874172,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Answer\'\'Edit\'\'Default\'\'Answer\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'answer\'\'edit Survey\'\'/\'\'Edit','000001000001000039000010'),('QHn6T9rU7KsnS3Y70KCNTg','Account','Account Account root import account ','root/import/account',1227080251,1233173545,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Account\'\'Account\'\'root\'\'import\'\'account','000001000001000001'),('HPDOcsj4gBme8D4svHodBw','Profile','Profile Profile root import account profile ','root/import/account/profile',1225404573,1225404573,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile\'\'Profile\'\'root\'\'import\'\'account\'\'profile','000001000001000001000001'),('d8jMMMRddSQ7twP4l1ZSIw','Default Survey Take','Default Survey Take Default Survey Take root import survey default survey take ','root/import/survey/default-survey-take',1227248175,1234040817,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Take\'\'Default\'\'Survey\'\'Take\'\'root\'\'import\'\'survey\'\'default\'\'survey\'\'take Survey\'\'/\'\'Take','000001000001000039000006'),('WikiKeyword00000000001',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword (default) Wiki Pages By Keyword wiki master by keyword template.tmpl ','wiki-master-by-keyword-template.tmpl',1185754571,1185754571,'3','7','3','WebGUI::Asset::Template',1,'Wiki\'\'Pages\'\'By\'\'Keyword\'\'(\'\'default\'\')\'\'Wiki\'\'Pages\'\'By\'\'Keyword\'\'wiki\'\'master\'\'by\'\'keyword\'\'template\'\'.\'\'tmpl WikiMaster_byKeyword','000001000001000048000008'),('tempspace0000000000000','Tempspace','Tempspace Tempspace tempspace ','tempspace',1185754574,1185754574,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Tempspace\'\'Tempspace\'\'tempspace','000001000004'),('QpmlAiYZz6VsKBM-_0wXaw','UsersOnline Macro',' ','users-online-macro-templates',1224616691,1224616691,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'UsersOnline\'\'Macro\'\'UsersOnline\'\'Macro\'\'users\'\'online\'\'macro\'\'templates','000001000001000018000012'),('h_T2xtOxGRQ9QJOR6ebLpQ','UsersOnline Default View','UsersOnline Default View UsersOnline Default View users online macro templates usersonline default view ','users-online-macro-templates/usersonline-default-view',1224616545,1224616545,'3','7','3','WebGUI::Asset::Template',1,'UsersOnline\'\'Default\'\'View\'\'UsersOnline\'\'Default\'\'View\'\'users\'\'online\'\'macro\'\'templates\'\'usersonline\'\'default\'\'view Macro\'\'/\'\'UsersOnline','000001000001000018000012000001'),('4Ekp0kJoJllRRRo_J1Rj6w','UsersOnline Detailed View','UsersOnline Detailed View UsersOnline Detailed View users online macro templates usersonline detailed view ','users-online-macro-templates/usersonline-detailed-view',1224616672,1224616672,'3','7','3','WebGUI::Asset::Template',1,'UsersOnline\'\'Detailed\'\'View\'\'UsersOnline\'\'Detailed\'\'View\'\'users\'\'online\'\'macro\'\'templates\'\'usersonline\'\'detailed\'\'view Macro\'\'/\'\'UsersOnline','000001000001000018000012000002'),('THQhn1C-ooj-TLlEP7aIJQ','gallery-ie.css','gallery-ie.css gallery-ie.css root import gallery templates gallery ie.css ','root/import/gallery-templates/gallery-ie.css',1225313951,1225313951,'3','7','3','WebGUI::Asset::Snippet',1,'gallery\'\'-\'\'ie\'\'.\'\'css\'\'gallery\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'gallery\'\'ie\'\'.\'\'css .\'\'wgPicture\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgAlbum\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'li\'\',\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'a\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'container\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'}','000001000001000013000025'),('qsG6B24a0SC5KrhQjmdZBw','survey.css','survey.css survey.css survey.css ','survey.css',1233860274,1233860274,'3','7','12','WebGUI::Asset::Snippet',1,'survey\'\'.\'\'css\'\'survey\'\'.\'\'css\'\'survey\'\'.\'\'css body\'\'{\'\'margin\'\':\'\'0\'\';\'\'background\'\'-\'\'repeat\'\':\'\'repeat\'\'-\'\'y\'\';\'\'background\'\'-\'\'position\'\':\'\'0px\'\'0px\'\';\'\'}\'\'.\'\'survey\'\'-\'\'header\'\'{\'\'width\'\':\'\'80\'\'%\'\';\'\'height\'\':\'\'20px\'\';\'\'margin\'\'-\'\'left\'\':\'\'80px\'\';\'\'}\'\'#\'\'survey\'\'{\'\'margin\'\'-\'\'left\'\':\'\'80px\'\';\'\'width\'\':\'\'85\'\'%\'\';\'\'}\'\'div\'\'.\'\'dateanswer\'\'{\'\'min\'\'-\'\'height\'\':\'\'250px\'\';\'\'}\'\'div\'\'.\'\'slider\'\'-\'\'bg\'\'{\'\'position\'\':\'\'relative\'\';\'\'background\'\':\'\'url\'\'(\'\'/\'\'extras\'\'/\'\'wobject\'\'/\'\'Survey\'\'/\'\'bg\'\'-\'\'fader\'\'-\'\'500\'\'.\'\'gif\'\')\'\'5px\'\'0\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'68px\'\';\'\'width\'\':\'\'529px\'\';\'\'}\'\'div\'\'.\'\'slider\'\'-\'\'thumb\'\'{\'\'cursor\'\':\'\'default\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'30px\'\';\'\'left\'\':\'\'4px\'\';\'\'}\'\'div\'\'.\'\'slider\'\'-\'\'min\'\'-\'\'thumb\'\'{\'\'cursor\'\':\'\'default\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'4px\'\';\'\'}\'\'div\'\'.\'\'slider\'\'-\'\'max\'\'-\'\'thumb\'\'{\'\'cursor\'\':\'\'default\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'4px\'\';\'\'}\'\'#\'\'headertitle\'\'{\'\'display\'\':\'\'none\'\';\'\'}\'\'#\'\'headertext\'\'{\'\'display\'\':\'\'none\'\';\'\'}\'\'#\'\'questions\'\'{\'\'display\'\':\'\'none\'\';\'\'}\'\'input\'\'.\'\'mcbutton\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'CCCCCC\'\';\'\'background\'\'-\'\'repeat\'\':\'\'repeat\'\'-\'\'x\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'0\'\'.\'\'5em\'\';\'\'padding\'\':\'\'.\'\'8em\'\';\'\'width\'\':\'\'60px\'\';\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'color\'\':\'\'#\'\'000000\'\';\'\'background\'\'-\'\'image\'\':\'\'url\'\'(\'\'/\'\'extras\'\'/\'\'wobject\'\'/\'\'Survey\'\'/\'\'gradient\'\'-\'\'glossy\'\'.\'\'png\'\')\'\';\'\'}\'\'input\'\'.\'\'mcbutton\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'B6D2F1\'\';\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'000000\'\';\'\'}\'\'input\'\'.\'\'mcbutton\'\'-\'\'selected\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'172D9D\'\';\'\'background\'\'-\'\'repeat\'\':\'\'repeat\'\'-\'\'x\'\';\'\'color\'\':\'\'#\'\'FFFFFF\'\';\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\':\'\'0\'\'.\'\'5em\'\';\'\'padding\'\':\'\'.\'\'8em\'\';\'\'width\'\':\'\'60px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'display\'\':\'\'block\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'image\'\':\'\'url\'\'(\'\'/\'\'extras\'\'/\'\'wobject\'\'/\'\'Survey\'\'/\'\'gradient\'\'-\'\'glossy\'\'.\'\'png\'\')\'\';\'\'background\'\'-\'\'position\'\':\'\'0px\'\'0px\'\';\'\'}\'\'/\'\'*\'\'By\'\'default\'\'the\'\'marker\'\'for\'\'invalid\'\'(\'\'required\'\')\'\'fields\'\'is\'\'a\'\'red\'\'\'\'\'*\'\'\'\'\'*\'\'/\'\'.\'\'survey\'\'-\'\'invalid\'\'-\'\'marker\'\'{\'\'color\'\':\'\'#\'\'FF0000\'\';\'\'}\'\'#\'\'survey\'\'{\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'border\'\':\'\'3px\'\'solid\'\'#\'\'1e1e1e\'\';\'\'}\'\'#\'\'survey\'\'#\'\'survey\'\'-\'\'header\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'cfcfcf\'\';\'\'padding\'\'-\'\'top\'\':\'\'1px\'\';\'\'}\'\'#\'\'survey\'\'#\'\'headertitle\'\'{\'\'padding\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'#\'\'survey\'\'#\'\'progress\'\'{\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'26px\'\';\'\'right\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'}\'\'#\'\'survey\'\'#\'\'progress\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'Progress\'\':\'\'\"\'\';\'\'}\'\'#\'\'survey\'\'#\'\'headertext\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'2px\'\'solid\'\'#\'\'1e1e1e\'\';\'\'padding\'\':\'\'5px\'\';\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'20px\'\';\'\'}\'\'#\'\'survey\'\'#\'\'questions\'\'{\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'20px\'\';\'\'}\'\'#\'\'survey\'\'.\'\'question\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'dfdfdf\'\';\'\'padding\'\':\'\'10px\'\'5px\'\'10px\'\'5px\'\';\'\'}\'\'#\'\'survey\'\'.\'\'question\'\'p\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'Q\'\':\'\'\"\'\';\'\'}\'\'#\'\'survey\'\'.\'\'scale\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'A\'\':\'\'\"\'\';\'\'}\'\'#\'\'survey\'\'#\'\'submitbutton\'\'{\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'}','000001000001000039000011'),('itransact_credentials1','ITransact Credentials (Default)','ITransact Credentials (Default) ITransact Credentials (Default) shopping cart collateral items itransact credentials ','shopping-cart-collateral-items/itransact-credentials',1228953856,1228953856,'3','7','4','WebGUI::Asset::Template',1,'ITransact\'\'Credentials\'\'(\'\'Default\'\')\'\'ITransact\'\'Credentials\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'itransact\'\'credentials Shop\'\'/\'\'Credentials','000001000001000034000018'),('1oBRscNIcFOI-pETrCOspA','Default Section Edit','Default Section Edit Default Section Edit root import survey default section edit ','root/import/survey/default-section-edit',1226009642,1232648656,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Section\'\'Edit\'\'Default\'\'Section\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'section\'\'edit Survey\'\'/\'\'Edit','000001000001000039000008'),('gI_TxK-5S4DNuv42wpImmw','Gallery Templates',' ','root/import/gallery-templates',1197330678,1213734379,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Gallery\'\'Templates\'\'Gallery\'\'Templates\'\'root\'\'import\'\'gallery\'\'templates','000001000001000013'),('jME5BEDYVDlBZ8jIQA9-jQ','Default Gallery Search','Default Gallery Search Default Gallery Search root import gallery templates default gallery search ','root/import/gallery-templates/default-gallery-search',1197927169,1234565056,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Search\'\'Default\'\'Gallery\'\'Search\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'search Gallery\'\'/\'\'Search','000001000001000013000001'),('azCqD0IjdQSlM3ar29k5Sg','Default Gallery List Albums View','Default Gallery List Albums View Default Gallery List Albums View root import gallery templates default gallery list albums view ','root/import/gallery-templates/default-gallery-list-albums-view',1197881748,1234561066,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Albums\'\'View\'\'Default\'\'Gallery\'\'List\'\'Albums\'\'View\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'albums\'\'view Gallery\'\'/\'\'ListAlbums','000001000001000013000002'),('05FpjceLYhq4csF1Kww1KQ','Default Gallery View Album','Default Gallery View Album Default Gallery View Album root import gallery templates default gallery view album ','root/import/gallery-templates/default-gallery-view-album',1197879361,1234568028,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Default\'\'Gallery\'\'View\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album GalleryAlbum\'\'/\'\'View','000001000001000013000003'),('q5O62aH4pjUXsrQR3Pq4lw','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails Default Gallery View Album Thumbnails root import gallery templates default gallery view album thumbnails ','root/import/gallery-templates/default-gallery-view-album-thumbnails',1197825772,1234568087,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Thumbnails\'\'Default\'\'Gallery\'\'View\'\'Album\'\'Thumbnails\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album\'\'thumbnails GalleryAlbum\'\'/\'\'ViewThumbnails','000001000001000013000004'),('KAMdiUdJykjN02CPHpyZOw','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow Default Gallery View Album Slideshow root import gallery templates default gallery view album slideshow ','root/import/gallery-templates/default-gallery-view-album-slideshow',1197825787,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Slideshow\'\'Default\'\'Gallery\'\'View\'\'Album\'\'Slideshow\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album\'\'slideshow GalleryAlbum\'\'/\'\'ViewSlideshow','000001000001000013000005'),('OkphOEdaSGTXnFGhK4GT5A','Default Gallery List Files For User','Default Gallery List Files For User Default Gallery List Files For User root import gallery templates default gallery list files for user ','root/import/gallery-templates/default-gallery-list-files-for-user',1197825794,1234560760,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'files\'\'for\'\'user Gallery\'\'/\'\'ListFilesForUser','000001000001000013000006'),('TEId5V-jEvUULsZA0wuRuA','Default Gallery View Photo','Default Gallery View Photo Default Gallery View Photo root import gallery templates default gallery view photo ','root/import/gallery-templates/default-gallery-view-photo',1197989443,1234568469,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Photo\'\'Default\'\'Gallery\'\'View\'\'Photo\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'photo GalleryFile\'\'/\'\'View','000001000001000013000007'),('6X-7Twabn5KKO_AbgK3PEw','Default Gallery Edit Album','Default Gallery Edit Album Default Gallery Edit Album root import gallery templates default gallery edit album ','root/import/gallery-templates/default-gallery-edit-album',1197987780,1233872216,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Album\'\'Default\'\'Gallery\'\'Edit\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'album GalleryAlbum\'\'/\'\'Edit','000001000001000013000008'),('7JCTAiu1U_bT9ldr655Blw','Default Gallery Edit Photo','Default Gallery Edit Photo Default Gallery Edit Photo root import gallery templates default gallery edit photo ','root/import/gallery-templates/default-gallery-edit-photo',1197825824,1233872075,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Photo\'\'Default\'\'Gallery\'\'Edit\'\'Photo\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'photo GalleryFile\'\'/\'\'Edit','000001000001000013000009'),('0X4Q3tBWUb_thsVbsYz9xQ','Default Gallery Add Archive','Default Gallery Add Archive Default Gallery Add Archive root import gallery templates default gallery add archive ','root/import/gallery-templates/default-gallery-add-archive',1197987372,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Add\'\'Archive\'\'Default\'\'Gallery\'\'Add\'\'Archive\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'add\'\'archive GalleryAlbum\'\'/\'\'AddArchive','000001000001000013000010'),('m3IbBavqzuKDd2PGGhKPlA','Default Gallery Make Shortcut','Default Gallery Make Shortcut Default Gallery Make Shortcut root import gallery templates default gallery make shortcut ','root/import/gallery-templates/default-gallery-make-shortcut',1197825845,1233871747,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Make\'\'Shortcut\'\'Default\'\'Gallery\'\'Make\'\'Shortcut\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'make\'\'shortcut GalleryFile\'\'/\'\'MakeShortcut','000001000001000013000011'),('UTNFeV7B_aSCRmmaFCq4Vw','Default Gallery Delete Album','Default Gallery Delete Album Default Gallery Delete Album root import gallery templates default gallery delete album ','root/import/gallery-templates/default-gallery-delete-album',1197825856,1234568788,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Delete\'\'Album\'\'Default\'\'Gallery\'\'Delete\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'delete\'\'album GalleryAlbum\'\'/\'\'Delete','000001000001000013000012'),('zcX-wIUct0S_np14xxOA-A','Default Gallery Delete File','Default Gallery Delete File Default Gallery Delete File root import gallery templates default gallery delete file ','root/import/gallery-templates/default-gallery-delete-file',1197825866,1234568742,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Delete\'\'File\'\'Default\'\'Gallery\'\'Delete\'\'File\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'delete\'\'file GalleryFile\'\'/\'\'Delete','000001000001000013000013'),('MBZK_LPVzqhb4TV4mMRTJg','admin_ie7.css','admin_ie7.css admin_ie7.css root import gallery templates admin ie7.css ','root/import/gallery-templates/admin_ie7.css',1197330678,1197330678,'3','7','3','WebGUI::Asset::Snippet',1,'admin_ie7\'\'.\'\'css\'\'admin_ie7\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'admin\'\'ie7\'\'.\'\'css input\'\'.\'\'captionEnter\'\'{\'\'margin\'\'-\'\'left\'\':\'\'-\'\'5px\'\';\'\'width\'\':\'\'92px\'\';\'\'}','000001000001000013000014'),('_hELmIJfgbAyXFNqPyApxQ','admin.css','admin.css admin.css root import gallery templates admin.css ','root/import/gallery-templates/admin.css',1197330678,1213309523,'3','7','3','WebGUI::Asset::Snippet',1,'admin\'\'.\'\'css\'\'admin\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'admin\'\'.\'\'css #\'\'adminWrapper\'\'{\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'2\'\';\'\'}\'\'h2\'\'{\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'}\'\'.\'\'messageStyle\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'8px\'\';\'\'}\'\'.\'\'adminButton\'\'{\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'e0e0e0\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'padding\'\':\'\'0\'\'.\'\'5em\'\'1em\'\';\'\'}\'\'.\'\'adminTable\'\'{\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'F0F0F0\'\';\'\'color\'\':\'\'black\'\';\'\'width\'\':\'\'320px\'\';\'\'padding\'\':\'\'5px\'\';\'\'}\'\'.\'\'adminTable\'\'select\'\',\'\'.\'\'adminTable\'\'input\'\',\'\'.\'\'adminTable\'\'textarea\'\'{\'\'border\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'.\'\'label\'\'{\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'1px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'galleryOrg\'\'{\'\'position\'\':\'\'relative\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'border\'\':\'\'gray\'\'solid\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\'-\'\'top\'\':\'\'3px\'\';\'\'width\'\':\'\'95\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'DEDEDE\'\'}\'\'.\'\'galleryOrg\'\'.\'\'left\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'36\'\'%\'\';\'\'}\'\'.\'\'galleryOrg\'\'.\'\'right\'\'{\'\'width\'\':\'\'63\'\'%\'\';\'\'}\'\'.\'\'galleryOrg\'\'img\'\'{\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'150px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'}\'\'.\'\'promote\'\'{\'\'margin\'\'-\'\'left\'\':\'\'3px\'\';\'\'}\'\'.\'\'promote\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'width\'\':\'\'16px\'\';\'\'}\'\'.\'\'demote\'\'{\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'}\'\'.\'\'demote\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'width\'\':\'\'16px\'\';\'\'}\'\'.\'\'delete\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'}\'\'.\'\'numbering\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'padding\'\':\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomRight\'\':\'\'5px\'\'}\'\'input\'\'.\'\'captionEnter\'\'{\'\'width\'\':\'\'93px\'\';\'\'clear\'\':\'\'both\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'3px\'\'}\'\'.\'\'galleryOrg\'\'button\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\':\'\'none\'\';\'\'}\'\'.\'\'galleryOrg\'\'button\'\'img\'\'{\'\'width\'\':\'\'16px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'galleryOrg\'\'.\'\'synopsis\'\'input\'\'{\'\'width\'\':\'\'80px\'\';\'\'}','000001000001000013000015'),('kaPRSaf8UKiskiGEgJgLAw','images','images images root import gallery templates images ','root/import/gallery-templates/images',1197330678,1197330678,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'gallery\'\'templates\'\'images','000001000001000013000017'),('bANo8aiAPA7aY_oQZKxIWw','rss.gif','rss.gif rss.gif root import gallery templates images rss.gif ','root/import/gallery-templates/images/rss.gif',1197330678,1197330678,'3','7','3','WebGUI::Asset::File::Image',1,'rss\'\'.\'\'gif\'\'rss\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'rss\'\'.\'\'gif','000001000001000013000017000001'),('2ci_v2d4x4uvyjTRlC49OA','moveDown.gif','moveDown.gif moveDown.gif root import gallery templates images movedown.gif ','root/import/gallery-templates/images/movedown.gif',1197330678,1209499188,'3','7','3','WebGUI::Asset::File::Image',1,'moveDown\'\'.\'\'gif\'\'moveDown\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'movedown\'\'.\'\'gif','000001000001000013000017000002'),('O-EsSzKgAk1KolFT-x_KsA','moveUp.gif','moveUp.gif moveUp.gif root import gallery templates images moveup.gif ','root/import/gallery-templates/images/moveup.gif',1197330678,1209499188,'3','7','3','WebGUI::Asset::File::Image',1,'moveUp\'\'.\'\'gif\'\'moveUp\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'moveup\'\'.\'\'gif','000001000001000013000017000003'),('fdd8tGExyVwHyrB8RBbKXg','next.gif','next.gif next.gif root import gallery templates images next.gif ','root/import/gallery-templates/images/next.gif',1197330839,1197330839,'3','7','3','WebGUI::Asset::File::Image',1,'next\'\'.\'\'gif\'\'next\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'next\'\'.\'\'gif','000001000001000013000017000004'),('BpisgHl4ZDcSECJp6oib1w','play.gif','play.gif play.gif root import gallery templates images play.gif ','root/import/gallery-templates/images/play.gif',1197330840,1197330840,'3','7','3','WebGUI::Asset::File::Image',1,'play\'\'.\'\'gif\'\'play\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'play\'\'.\'\'gif','000001000001000013000017000005'),('zshreRgPAXtnF0DtVbQ1Yg','previous.gif','previous.gif previous.gif root import gallery templates images previous.gif ','root/import/gallery-templates/images/previous.gif',1197330840,1197330840,'3','7','3','WebGUI::Asset::File::Image',1,'previous\'\'.\'\'gif\'\'previous\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'previous\'\'.\'\'gif','000001000001000013000017000006'),('mM3bjP_iG9sv5nQb4S17tQ','Default Gallery View Album RSS','Default Gallery View Album RSS Default Gallery View Album RSS root import gallery templates default gallery album rss ','root/import/gallery-templates/default-gallery-album-rss',1197879662,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'RSS\'\'Default\'\'Gallery\'\'View\'\'Album\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'album\'\'rss GalleryAlbum\'\'/\'\'ViewRss','000001000001000013000018'),('ilu5BrM-VGaOsec9Lm7M6Q','Default Gallery List Albums RSS','Default Gallery List Albums RSS Default Gallery List Albums RSS root import gallery templates default gallery list albums rss ','root/import/gallery-templates/default-gallery-list-albums-rss',1197878780,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Albums\'\'RSS\'\'Default\'\'Gallery\'\'List\'\'Albums\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'albums\'\'rss Gallery\'\'/\'\'ListAlbumsRss','000001000001000013000019'),('-ANLpoTEP-n4POAdRxCzRw','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS Default Gallery List Files For User RSS root import gallery templates default gallery list files for user rss ','root/import/gallery-templates/default-gallery-list-files-for-user-rss',1197880641,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'RSS\'\'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'files\'\'for\'\'user\'\'rss Gallery\'\'/\'\'ListFilesForUserRss','000001000001000013000020'),('OxJWQgnGsgyGohP2L3zJPQ','Default Gallery Edit Comment','Default Gallery Edit Comment Default Gallery Edit Comment root import gallery templates default gallery edit comment ','root/import/gallery-templates/default-gallery-edit-comment',1204663962,1234564647,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Comment\'\'Default\'\'Gallery\'\'Edit\'\'Comment\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'comment GalleryFile\'\'/\'\'EditComment','000001000001000013000021'),('Tsg7xmPYv782j6IVz7yHFg','Calendar Templates','Calendar Templates Calendar Templates root import calendar templates ','root/import/calendar-templates',1204890713,1213244777,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Calendar\'\'Templates\'\'Calendar\'\'Templates\'\'root\'\'import\'\'calendar\'\'templates','000001000001000005'),('kj3b-X3i6zRKnhLb4ZiCLw','Default Calendar List View','Default Calendar List View Default Calendar List View root import calendar templates default calendar list view ','root/import/calendar-templates/default-calendar-list-view',1204890713,1222574694,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'List\'\'View\'\'Default\'\'Calendar\'\'List\'\'View\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'list\'\'view Calendar\'\'/\'\'List','000001000001000005000001'),('uRL9qtk7Rb0YRJ41LmHOJw','Default Calendar Print List View','Default Calendar Print List View Default Calendar Print List View root import calendar templates default calendar print list view ','root/import/calendar-templates/default-calendar-print-list-view',1204890713,1229311072,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'List\'\'View\'\'Default\'\'Calendar\'\'Print\'\'List\'\'View\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'list\'\'view Calendar\'\'/\'\'Print\'\'/\'\'List','000001000001000005000002'),('CalendarWeek0000000001','Default Calendar Week','Default Calendar Week Default Calendar Week root import calendar templates default calendar week ','root/import/calendar-templates/default-calendar-week',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Week\'\'Default\'\'Calendar\'\'Week\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'week Calendar\'\'/\'\'Week','000001000001000005000003'),('CalendarDay00000000001','Default Calendar Day','Default Calendar Day Default Calendar Day root import calendar templates default calendar day ','root/import/calendar-templates/default-calendar-day',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Day\'\'Default\'\'Calendar\'\'Day\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'day Calendar\'\'/\'\'Day','000001000001000005000004'),('CalendarEvent000000001','Default Calendar Event','Default Calendar Event Default Calendar Event root import calendar templates default calendar event ','root/import/calendar-templates/default-calendar-event',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Event\'\'Default\'\'Calendar\'\'Event\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'event Calendar\'\'/\'\'Event','000001000001000005000005'),('CalendarEventEdit00001','Default Calendar Event Edit','Default Calendar Event Edit Default Calendar Event Edit root import calendar templates default calendar event edit ','root/import/calendar-templates/default-calendar-event-edit',1205160982,1233698348,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Event\'\'Edit\'\'Default\'\'Calendar\'\'Event\'\'Edit\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'event\'\'edit Calendar\'\'/\'\'EventEdit','000001000001000005000006'),('CalendarMonth000000001','Default Calendar Month','Default Calendar Month Default Calendar Month root import calendar templates default calendar month ','root/import/calendar-templates/default-calendar-month',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Month\'\'Default\'\'Calendar\'\'Month\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'month Calendar\'\'/\'\'Month','000001000001000005000007'),('CalendarSearch00000001','Default Calendar Search','Default Calendar Search Default Calendar Search root import calendar templates default calendar search ','root/import/calendar-templates/default-calendar-search',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Search\'\'Default\'\'Calendar\'\'Search\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'search Calendar\'\'/\'\'Search','000001000001000005000008'),('CalendarPrintEvent0001','Default Calendar Print Event','Default Calendar Print Event Default Calendar Print Event root import calendar templates default calendar print event ','root/import/calendar-templates/default-calendar-print-event',1204890714,1215396964,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Event\'\'Default\'\'Calendar\'\'Print\'\'Event\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'event Calendar\'\'/\'\'Print\'\'/\'\'Event','000001000001000005000009'),('CalendarPrintMonth0001','Default Calendar Print Month','Default Calendar Print Month Default Calendar Print Month root import calendar templates default calendar print month ','root/import/calendar-templates/default-calendar-print-month',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Month\'\'Default\'\'Calendar\'\'Print\'\'Month\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'month Calendar\'\'/\'\'Print\'\'/\'\'Month','000001000001000005000010'),('CalendarPrintWeek00001','Default Calendar Print Week','Default Calendar Print Week Default Calendar Print Week root import calendar templates default calendar print week ','root/import/calendar-templates/default-calendar-print-week',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Week\'\'Default\'\'Calendar\'\'Print\'\'Week\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'week Calendar\'\'/\'\'Print\'\'/\'\'Week','000001000001000005000011'),('CalendarPrintDay000001','Default Calendar Print Day','Default Calendar Print Day Default Calendar Print Day root import calendar templates default calendar print day ','root/import/calendar-templates/default-calendar-print-day',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Day\'\'Default\'\'Calendar\'\'Print\'\'Day\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'day Calendar\'\'/\'\'Print\'\'/\'\'Day','000001000001000005000012'),('jnYdqDkUR8x7Pv2eGR1qTA','Thingy Templates','Thingy Templates Thingy Templates root import thingy templates ','root/import/thingy-templates',1205431513,1216250666,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Thingy\'\'Templates\'\'Thingy\'\'Templates\'\'root\'\'import\'\'thingy\'\'templates','000001000001000041'),('ThingyTmpl000000000001','Default Thingy','Default Thingy Default Thingy templates thingy default ','templates/thingy-default',1205003608,1227753116,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Default\'\'Thingy\'\'templates\'\'thingy\'\'default Thingy','000001000001000041000001'),('ThingyTmpl000000000002','Default Thingy View Thing','Default Thingy View Thing Default Thingy View Thing templates thingy default view thing ','templates/thingy-default-view-thing',1205003676,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'View\'\'Thing\'\'Default\'\'Thingy\'\'View\'\'Thing\'\'templates\'\'thingy\'\'default\'\'view\'\'thing Thingy\'\'/\'\'ViewThing','000001000001000041000002'),('ThingyTmpl000000000003','Default Thingy Edit Thing','Default Thingy Edit Thing Default Thingy Edit Thing templates thingy default edit thing ','templates/thingy-default-edit-thing',1205003711,1224518002,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Edit\'\'Thing\'\'Default\'\'Thingy\'\'Edit\'\'Thing\'\'templates\'\'thingy\'\'default\'\'edit\'\'thing Thingy\'\'/\'\'EditThing','000001000001000041000003'),('ThingyTmpl000000000004','Default Thingy Search Thing','Default Thingy Search Thing Default Thingy Search Thing templates thingy default search thing ','templates/thingy-default-search-thing',1205158717,1227044214,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Search\'\'Thing\'\'Default\'\'Thingy\'\'Search\'\'Thing\'\'templates\'\'thingy\'\'default\'\'search\'\'thing Thingy\'\'/\'\'SearchThing','000001000001000041000004'),('7fE8md51vTCcuJFOvxNaGA','thumbnails.js','thumbnails.js thumbnails.js root import gallery templates thumbnails.js ','root/import/gallery-templates/thumbnails.js',1205443600,1209503742,'3','7','3','WebGUI::Asset::Snippet',1,'thumbnails\'\'.\'\'js\'\'thumbnails\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'thumbnails\'\'.\'\'js /\'\'/\'\'Depends\'\'on\'\'BrowserDetect\'\'.\'\'js\'\'/\'\'/\'\'Make\'\'the\'\'thumbnails\'\'a\'\'little\'\'bigger\'\'while\'\'the\'\'mouse\'\'is\'\'over\'\'them\'\'function\'\'scaleThumbUp\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'/\'\'/\'\'IE6\'\'doesn\'\'\'\'\'t\'\'like\'\'to\'\'do\'\'the\'\'right\'\'thing\'\'with\'\'the\'\'CSS\'\'stuff\'\'below\'\',\'\'exclude\'\'it\'\'if\'\'(\'\'BrowserDetect\'\')\'\'{\'\'if\'\'(\'\'BrowserDetect\'\'.\'\'browser\'\'=\'\'=\'\'\"\'\'Explorer\'\'\"\'\'&\'\'&\'\'BrowserDetect\'\'.\'\'version\'\'<\'\'7\'\')\'\'{\'\'return\'\';\'\'}\'\'}\'\'/\'\'/\'\'Make\'\'a\'\'new\'\'image\'\'with\'\'the\'\'same\'\'image\'\'src\'\'as\'\'the\'\'anchor\'\'var\'\'oldImage\'\'=\'\'anchor\'\'.\'\'getElementsByTagName\'\'(\'\'\"\'\'img\'\'\"\'\')\'\'[0]\'\';\'\'var\'\'newContainer\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'div\'\'\"\'\')\'\';\'\'newContainer\'\'.\'\'className\'\'=\'\'\"\'\'thumb\'\'-\'\'popup\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'position\'\'=\'\'\"\'\'absolute\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'zIndex\'\'=\'\'\"\'\'1\'\'\"\'\';\'\'var\'\'newWidth\'\'=\'\'oldImage\'\'.\'\'offsetWidth\'\'*\'\'3\'\';\'\'var\'\'newHeight\'\'=\'\'oldImage\'\'.\'\'offsetHeight\'\'*\'\'3\'\';\'\'var\'\'newLeft\'\'=\'\'(\'\'(\'\'anchor\'\'.\'\'offsetLeft\'\'+\'\'(\'\'anchor\'\'.\'\'offsetWidth\'\'/\'\'2\'\')\'\')\'\'-\'\'(\'\'newWidth\'\'/\'\'2\'\')\'\')\'\';\'\'var\'\'newTop\'\'=\'\'(\'\'(\'\'anchor\'\'.\'\'offsetTop\'\'+\'\'(\'\'anchor\'\'.\'\'offsetHeight\'\'/\'\'2\'\')\'\')\'\'-\'\'(\'\'newHeight\'\'/\'\'2\'\')\'\')\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'left\'\'=\'\'newLeft\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'top\'\'=\'\'newTop\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'width\'\'=\'\'newWidth\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'height\'\'=\'\'newHeight\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'var\'\'newImage\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'img\'\'\"\'\')\'\';\'\'newImage\'\'.\'\'src\'\'=\'\'oldImage\'\'.\'\'src\'\';\'\'newImage\'\'.\'\'style\'\'.\'\'width\'\'=\'\'\"\'\'100\'\'%\'\'\"\'\';\'\'newImage\'\'.\'\'style\'\'.\'\'height\'\'=\'\'\"\'\'100\'\'%\'\'\"\'\';\'\'newContainer\'\'.\'\'appendChild\'\'(\'\'newImage\'\')\'\';\'\'/\'\'/\'\'Make\'\'some\'\'text\'\'for\'\'the\'\'caption\'\'var\'\'caption\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'div\'\'\"\'\')\'\';\'\'caption\'\'.\'\'appendChild\'\'(\'\'document\'\'.\'\'createTextNode\'\'(\'\'anchor\'\'.\'\'title\'\')\'\')\'\';\'\'caption\'\'.\'\'className\'\'=\'\'\"\'\'caption\'\'\"\'\';\'\'newContainer\'\'.\'\'appendChild\'\'(\'\'caption\'\')\'\';\'\'var\'\'newBox\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'a\'\'\"\'\')\'\';\'\'newBox\'\'.\'\'href\'\'=\'\'anchor\'\'.\'\'href\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'position\'\'=\'\'\"\'\'absolute\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'zIndex\'\'=\'\'\"\'\'10\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'left\'\'=\'\'(\'\'anchor\'\'.\'\'offsetLeft\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'top\'\'=\'\'(\'\'anchor\'\'.\'\'offsetTop\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'height\'\'=\'\'(\'\'anchor\'\'.\'\'offsetHeight\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'width\'\'=\'\'(\'\'anchor\'\'.\'\'offsetWidth\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'border\'\'=\'\'\"\'\'1px\'\'solid\'\'transparent\'\'\"\'\';\'\'anchor\'\'.\'\'parentNode\'\'.\'\'appendChild\'\'(\'\'newContainer\'\')\'\';\'\'anchor\'\'.\'\'parentNode\'\'.\'\'appendChild\'\'(\'\'newBox\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newBox\'\',\'\'\"\'\'click\'\'\"\'\',\'\'function\'\'(\'\')\'\'{\'\'window\'\'.\'\'location\'\'.\'\'href\'\'=\'\'anchor\'\'.\'\'href\'\'}\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newContainer\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'scaleThumbDown\'\',\'\'[\'\'newBox\'\',\'\'newContainer\'\',\'\'caption\'\']\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newBox\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'scaleThumbDown\'\',\'\'[\'\'newBox\'\',\'\'newContainer\'\',\'\'caption\'\']\'\')\'\';\'\'}\'\'function\'\'scaleThumbDown\'\'(\'\'e\'\',\'\'elements\'\')\'\'{\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'elements\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'elements[i]\'\'.\'\'parentNode\'\'.\'\'removeChild\'\'(\'\'elements[i]\'\')\'\';\'\'}\'\'}\'\'var\'\'anchorTimeout\'\';\'\'function\'\'enterAnchor\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'if\'\'(\'\'typeof\'\'anchorTimeout\'\'!\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'clearTimeout\'\'(\'\'anchorTimeout\'\')\'\';\'\'}\'\'anchorTimeout\'\'=\'\'setTimeout\'\'(\'\'function\'\'(\'\')\'\'{\'\'scaleThumbUp\'\'(\'\'e\'\',\'\'anchor\'\')\'\';\'\'}\'\',\'\'150\'\')\'\';\'\'}\'\'function\'\'leaveAnchor\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'if\'\'(\'\'typeof\'\'anchorTimeout\'\'!\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'clearTimeout\'\'(\'\'anchorTimeout\'\')\'\';\'\'}\'\'}\'\'function\'\'initThumb\'\'(\'\')\'\'{\'\'var\'\'anchors\'\'=\'\'YAHOO\'\'.\'\'util\'\'.\'\'Dom\'\'.\'\'getElementsByClassName\'\'(\'\'\"\'\'thumb\'\'\"\'\')\'\';\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'anchors\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'anchors[i]\'\',\'\'\"\'\'mouseover\'\'\"\'\',\'\'enterAnchor\'\',\'\'anchors[i]\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'anchors[i]\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'leaveAnchor\'\',\'\'anchors[i]\'\')\'\';\'\'}\'\'}\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'onDOMReady\'\'(\'\'initThumb\'\')\'\';','000001000001000013000022'),('1oGhfj00KkCzP1ez01AfKA','slideshow.js','slideshow.js slideshow.js root import gallery templates slideshow.js ','root/import/gallery-templates/slideshow.js',1205635970,1218582812,'3','7','3','WebGUI::Asset::Snippet',1,'slideshow\'\'.\'\'js\'\'slideshow\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'slideshow\'\'.\'\'js if\'\'(\'\'typeof\'\'WebGUI\'\'=\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'WebGUI\'\'=\'\'{\'\'}\'\';\'\'}\'\'/\'\'*\'\'*\'\'WebGUI\'\'.\'\'Slideshow\'\'(\'\'config\'\')\'\'Configure\'\'and\'\'return\'\'a\'\'new\'\'Slideshow\'\'object\'\'.\'\'config\'\'is\'\'an\'\'object\'\'with\'\'the\'\'following\'\'properties\'\':\'\'containerId\'\'-\'\'The\'\'ID\'\'of\'\'the\'\'element\'\'that\'\'contains\'\'the\'\'Slideshow\'\'items\'\'.\'\'Defaults\'\'to\'\'\"\'\'slideshow\'\'-\'\'container\'\'\"\'\'currentIndex\'\'-\'\'The\'\'index\'\'of\'\'the\'\'first\'\'item\'\'in\'\'the\'\'Slideshow\'\'.\'\'Defaults\'\'to\'\'0\'\'isPlaying\'\'-\'\'If\'\'true\'\',\'\'the\'\'slideshow\'\'will\'\'begin\'\'immediately\'\'itemClassName\'\'-\'\'The\'\'class\'\'name\'\'of\'\'the\'\'slideshow\'\'items\'\'.\'\'Defaults\'\'to\'\'\"\'\'slideshow\'\'-\'\'item\'\'\"\'\'nextButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'go\'\'to\'\'the\'\'next\'\'item\'\'pauseImageSrc\'\'-\'\'The\'\'URL\'\'to\'\'the\'\'pause\'\'button\'\'image\'\'playDelay\'\'-\'\'The\'\'delay\'\'(\'\'in\'\'milliseconds\'\')\'\'between\'\'slides\'\'.\'\'Defaults\'\'to\'\'5000\'\'playImageSrc\'\'-\'\'The\'\'URL\'\'to\'\'the\'\'play\'\'button\'\'image\'\'playPauseButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'toggle\'\'between\'\'play\'\'and\'\'pause\'\'previousButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'go\'\'to\'\'the\'\'previous\'\'item\'\'wrap\'\'-\'\'If\'\'true\'\',\'\'the\'\'slideshow\'\'will\'\'wrap\'\'around\'\'*\'\'*\'\'*\'\'Control\'\'the\'\'slideshow\'\'To\'\'control\'\'the\'\'slideshow\'\',\'\'you\'\'can\'\'use\'\'the\'\'following\'\'methods\'\':\'\'next\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'next\'\'slide\'\'previous\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'previous\'\'slide\'\'play\'\'(\'\')\'\'-\'\'Play\'\'the\'\'slideshow\'\'pause\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'togglePlay\'\'(\'\')\'\'-\'\'If\'\'it\'\'\'\'\'s\'\'playing\'\',\'\'pause\'\'it\'\'.\'\'If\'\'it\'\'\'\'\'s\'\'paused\'\',\'\'play\'\'it\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'=\'\'function\'\'(\'\'config\'\')\'\'{\'\'this\'\'.\'\'containerId\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'containerId\'\'?\'\'config\'\'.\'\'containerId\'\':\'\'\"\'\'slideshow\'\'-\'\'container\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'currentIndex\'\'?\'\'config\'\'.\'\'currentIndex\'\':\'\'0\'\';\'\'this\'\'.\'\'isPlaying\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'isPlaying\'\'?\'\'config\'\'.\'\'isPlaying\'\':\'\'false\'\';\'\'this\'\'.\'\'itemClassName\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'itemClassName\'\'?\'\'config\'\'.\'\'itemClassName\'\':\'\'\"\'\'slideshow\'\'-\'\'item\'\'\"\'\';\'\'this\'\'.\'\'nextButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'nextButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'pauseImageSrc\'\'=\'\'config\'\'?\'\'config\'\'.\'\'pauseImageSrc\'\':\'\'undefined\'\';\'\'this\'\'.\'\'playDelay\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'playDelay\'\'?\'\'config\'\'.\'\'playDelay\'\':\'\'5000\'\';\'\'this\'\'.\'\'playImageSrc\'\'=\'\'config\'\'?\'\'config\'\'.\'\'playImageSrc\'\':\'\'undefined\'\';\'\'this\'\'.\'\'playPauseButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'playPauseButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'previousButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'previousButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'wrap\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'wrap\'\'?\'\'config\'\'.\'\'wrap\'\':\'\'false\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'onDOMReady\'\'(\'\'this\'\'.\'\'init\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'clearPlayTimeout\'\'(\'\')\'\'Clears\'\'the\'\'timeout\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'clearPlayTimeout\'\'=\'\'function\'\'(\'\')\'\'{\'\'clearTimeout\'\'(\'\'this\'\'.\'\'playTimeout\'\')\'\';\'\'this\'\'.\'\'playTimeout\'\'=\'\'undefined\'\';\'\'}\'\'/\'\'*\'\'*\'\'doPlayTick\'\'(\'\'self\'\')\'\'Performs\'\'the\'\'action\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'and\'\'start\'\'a\'\'new\'\'timeout\'\'.\'\'self\'\'is\'\'a\'\'new\'\'reference\'\'to\'\'the\'\'object\'\'to\'\'get\'\'around\'\'the\'\'scoping\'\'issues\'\'with\'\'setTimeout\'\'(\'\')\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'doPlayTick\'\'=\'\'function\'\'(\'\'self\'\')\'\'{\'\'self\'\'.\'\'showNext\'\'(\'\')\'\';\'\'self\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'getSlideshowContainer\'\'(\'\')\'\'Returns\'\'the\'\'HTMLElement\'\'for\'\'the\'\'Slideshow\'\'container\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'getSlideshowContainer\'\'=\'\'function\'\'(\'\')\'\'{\'\'return\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'containerId\'\')\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'getSlideshowItems\'\'(\'\')\'\'Returns\'\'an\'\'array\'\'of\'\'HTMLElements\'\'for\'\'the\'\'Slideshow\'\'\'\'\'s\'\'items\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'getSlideshowItems\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'YAHOO\'\'.\'\'util\'\'.\'\'Dom\'\'.\'\'getElementsByClassName\'\'(\'\'this\'\'.\'\'itemClassName\'\',\'\'undefined\'\',\'\'this\'\'.\'\'getSlideshowContainer\'\'(\'\')\'\')\'\';\'\'return\'\'items\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'init\'\'(\'\')\'\'Initialize\'\'the\'\'slideshow\'\'.\'\'Performed\'\'after\'\'the\'\'DOM\'\'is\'\'ready\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'init\'\'=\'\'function\'\'(\'\')\'\'{\'\'/\'\'/\'\'Add\'\'handlers\'\'to\'\'buttons\'\'if\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'togglePlay\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'if\'\'(\'\'this\'\'.\'\'nextButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'nextButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'next\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'if\'\'(\'\'this\'\'.\'\'previousButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'previousButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'previous\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'/\'\'/\'\'Hide\'\'all\'\'but\'\'the\'\'currentIndex\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'items\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'if\'\'(\'\'i\'\'!\'\'=\'\'this\'\'.\'\'currentIndex\'\')\'\'{\'\'items[\'\'i\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'}\'\'else\'\'{\'\'items[\'\'i\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'}\'\'}\'\'/\'\'/\'\'Start\'\'it\'\'off\'\'if\'\'necessary\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'next\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'next\'\'=\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'this\'\'.\'\'showNext\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'play\'\'(\'\')\'\'Start\'\'the\'\'slideshow\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'play\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'!\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'isPlaying\'\'=\'\'true\'\';\'\'this\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\'/\'\'*\'\'*\'\'previous\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'and\'\'show\'\'the\'\'previous\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'previous\'\'=\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'this\'\'.\'\'showPrevious\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'pause\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'pause\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'isPlaying\'\'=\'\'false\'\';\'\'this\'\'.\'\'clearPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\'/\'\'*\'\'*\'\'setPlayTimeout\'\'(\'\')\'\'Sets\'\'the\'\'timeout\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'setPlayTimeout\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'self\'\'=\'\'this\'\';\'\'this\'\'.\'\'playTimeout\'\'=\'\'setTimeout\'\'(\'\'function\'\'(\'\')\'\'{\'\'self\'\'.\'\'doPlayTick\'\'(\'\'self\'\')\'\'}\'\',\'\'this\'\'.\'\'playDelay\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'showNext\'\'(\'\')\'\'Show\'\'the\'\'next\'\'slide\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'showNext\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'var\'\'hideIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\';\'\'var\'\'showIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\'+\'\'1\'\';\'\'/\'\'/\'\'Wrap\'\'around\'\'if\'\'(\'\'this\'\'.\'\'wrap\'\'&\'\'&\'\'showIndex\'\'>\'\'=\'\'items\'\'.\'\'length\'\')\'\'{\'\'showIndex\'\'=\'\'0\'\';\'\'}\'\'/\'\'/\'\'Don\'\'\'\'\'t\'\'allow\'\'going\'\'past\'\'the\'\'last\'\'item\'\'else\'\'if\'\'(\'\'showIndex\'\'>\'\'=\'\'items\'\'.\'\'length\'\')\'\'{\'\'return\'\';\'\'}\'\'/\'\'/\'\'Do\'\'the\'\'switch\'\'if\'\'(\'\'items[\'\'hideIndex\'\']\'\')\'\'items[\'\'hideIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'if\'\'(\'\'items[\'\'showIndex\'\']\'\')\'\'{\'\'items[\'\'showIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'showIndex\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'showPrevious\'\'(\'\')\'\'Show\'\'the\'\'previous\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'showPrevious\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'var\'\'hideIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\';\'\'var\'\'showIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\'-\'\'1\'\';\'\'/\'\'/\'\'Wrap\'\'around\'\'if\'\'(\'\'this\'\'.\'\'wrap\'\'&\'\'&\'\'showIndex\'\'<\'\'0\'\')\'\'{\'\'showIndex\'\'=\'\'items\'\'.\'\'length\'\'-\'\'1\'\';\'\'}\'\'/\'\'/\'\'Don\'\'\'\'\'t\'\'allow\'\'going\'\'past\'\'the\'\'last\'\'item\'\'else\'\'if\'\'(\'\'showIndex\'\'<\'\'0\'\')\'\'{\'\'return\'\';\'\'}\'\'/\'\'/\'\'Do\'\'the\'\'switch\'\'items[\'\'hideIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'items[\'\'showIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'showIndex\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'togglePlay\'\'(\'\')\'\'If\'\'it\'\'\'\'\'s\'\'paused\'\',\'\'play\'\'it\'\'.\'\'If\'\'it\'\'\'\'\'s\'\'playing\'\',\'\'pause\'\'it\'\'.\'\'Return\'\'true\'\'if\'\'the\'\'slideshow\'\'is\'\'now\'\'playing\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'togglePlay\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\'=\'\'=\'\'false\'\')\'\'{\'\'this\'\'.\'\'play\'\'(\'\')\'\';\'\'return\'\'true\'\';\'\'}\'\'else\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'updatePlayPauseButton\'\'(\'\')\'\'Update\'\'the\'\'Play\'\'/\'\'Pause\'\'button\'\'to\'\'have\'\'the\'\'correct\'\'image\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'updatePlayPauseButton\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\'&\'\'&\'\'this\'\'.\'\'playImageSrc\'\')\'\'{\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'.\'\'src\'\'=\'\'this\'\'.\'\'pauseImageSrc\'\';\'\'}\'\'else\'\'if\'\'(\'\'this\'\'.\'\'pauseImageSrc\'\')\'\'{\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'.\'\'src\'\'=\'\'this\'\'.\'\'playImageSrc\'\';\'\'}\'\'}\'\'}\'\';','000001000001000013000023'),('3qiVYhNTXMVC5hfsumVHgg','browserdetect.js','browserdetect.js browserdetect.js root import gallery templates browserdetect.js ','root/import/gallery-templates/browserdetect.js',1206743306,1206743306,'3','7','3','WebGUI::Asset::Snippet',1,'browserdetect\'\'.\'\'js\'\'browserdetect\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'browserdetect\'\'.\'\'js var\'\'BrowserDetect\'\'=\'\'{\'\'init\'\':\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'browser\'\'=\'\'this\'\'.\'\'searchString\'\'(\'\'this\'\'.\'\'dataBrowser\'\')\'\'||\'\'\"\'\'An\'\'unknown\'\'browser\'\'\"\'\';\'\'this\'\'.\'\'version\'\'=\'\'this\'\'.\'\'searchVersion\'\'(\'\'navigator\'\'.\'\'userAgent\'\')\'\'||\'\'this\'\'.\'\'searchVersion\'\'(\'\'navigator\'\'.\'\'appVersion\'\')\'\'||\'\'\"\'\'an\'\'unknown\'\'version\'\'\"\'\';\'\'this\'\'.\'\'OS\'\'=\'\'this\'\'.\'\'searchString\'\'(\'\'this\'\'.\'\'dataOS\'\')\'\'||\'\'\"\'\'an\'\'unknown\'\'OS\'\'\"\'\';\'\'}\'\',\'\'searchString\'\':\'\'function\'\'(\'\'data\'\')\'\'{\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i','000001000001000013000024'),('usuxw9V3jN4d4pujRiEYxg','css03-ie.css','css03-ie.css css03-ie.css style3 css03 ie.css ','style3/css03-ie.css',1209494150,1209494150,'3','7','12','WebGUI::Asset::Snippet',1,'css03\'\'-\'\'ie\'\'.\'\'css\'\'css03\'\'-\'\'ie\'\'.\'\'css\'\'style3\'\'css03\'\'ie\'\'.\'\'css #\'\'contentArea\'\'{\'\'height\'\':\'\'500px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'300px\'\';\'\'}','000001000001000047000023'),('POVcY79vIqAHR8OfGt36aw','pagination_button.jpg','pagination_button.jpg pagination_button.jpg root import gallery templates images pagination button.jpg ','root/import/gallery-templates/images/pagination_button.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_button\'\'.\'\'jpg\'\'pagination_button\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pagination\'\'button\'\'.\'\'jpg','000001000001000013000017000007'),('hIB-z34r8Xl-vYVYCkKr-w','bar-btn-r.jpg','bar-btn-r.jpg bar-btn-r.jpg root import gallery templates images bar btn r.jpg ','root/import/gallery-templates/images/bar-btn-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'r\'\'.\'\'jpg','000001000001000013000017000008'),('-mPUoFlYcjqjPUPRLAlxNQ','search-field-r.jpg','search-field-r.jpg search-field-r.jpg root import gallery templates images search field r.jpg ','root/import/gallery-templates/images/search-field-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'-\'\'r\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'r\'\'.\'\'jpg','000001000001000013000017000009'),('MDpUOR-N8KMyt1J7Hh_h4w','bar-btn.jpg','bar-btn.jpg bar-btn.jpg root import gallery templates images bar btn.jpg ','root/import/gallery-templates/images/bar-btn.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'.\'\'jpg','000001000001000013000017000010'),('YfXKByTwDZVituMc4h13Dg','pagination_bg.jpg','pagination_bg.jpg pagination_bg.jpg root import gallery templates images pagination bg.jpg ','root/import/gallery-templates/images/pagination_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_bg\'\'.\'\'jpg\'\'pagination_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pagination\'\'bg\'\'.\'\'jpg','000001000001000013000017000011'),('esko_HSU0Gh-uJZ1h3xRmQ','search-field-l.jpg','search-field-l.jpg search-field-l.jpg root import gallery templates images search field l.jpg ','root/import/gallery-templates/images/search-field-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'-\'\'l\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'l\'\'.\'\'jpg','000001000001000013000017000012'),('oSqpGswzpBG_ErdfYwIO8A','top_bg.jpg','top_bg.jpg top_bg.jpg root import gallery templates images top bg.jpg ','root/import/gallery-templates/images/top_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg\'\'.\'\'jpg\'\'top_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'top\'\'bg\'\'.\'\'jpg','000001000001000013000017000013'),('MXJklShZvLLB_DSnZQmXrQ','title_bg.jpg','title_bg.jpg title_bg.jpg root import gallery templates images title bg.jpg ','root/import/gallery-templates/images/title_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'title_bg\'\'.\'\'jpg\'\'title_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'title\'\'bg\'\'.\'\'jpg','000001000001000013000017000014'),('BthxD5oJ0idmsyI3ioA2FA','bar-btn-l.jpg','bar-btn-l.jpg bar-btn-l.jpg root import gallery templates images bar btn l.jpg ','root/import/gallery-templates/images/bar-btn-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'l\'\'.\'\'jpg','000001000001000013000017000015'),('aZ-1HYQamkRHYXvzAra8WQ','search-field.jpg','search-field.jpg search-field.jpg root import gallery templates images search field.jpg ','root/import/gallery-templates/images/search-field.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'.\'\'jpg','000001000001000013000017000016'),('eRkb94OYcS5AdcrrerOP5Q','rss.gif','rss.gif rss.gif root import gallery templates images rss2.gif ','root/import/gallery-templates/images/rss2.gif',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'rss\'\'.\'\'gif\'\'rss\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'rss2\'\'.\'\'gif','000001000001000013000017000017'),('TbnkjAJQEASORXIpYqDkcA','blank-image.jpg','blank-image.jpg blank-image.jpg root import gallery templates images blank image.jpg ','root/import/gallery-templates/images/blank-image.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'blank\'\'-\'\'image\'\'.\'\'jpg\'\'blank\'\'-\'\'image\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'blank\'\'image\'\'.\'\'jpg','000001000001000013000017000018'),('er-3faBjY-hhlDcc5aKqdQ','top_bg.jpg','top_bg.jpg top_bg.jpg root import gallery templates images top bg2.jpg ','root/import/gallery-templates/images/top_bg2.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg\'\'.\'\'jpg\'\'top_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'top\'\'bg2\'\'.\'\'jpg','000001000001000013000017000019'),('8bFsu2FJUqHRUiHcozcVFw','sub-btn-l.jpg','sub-btn-l.jpg sub-btn-l.jpg root import gallery templates images sub btn l.jpg ','root/import/gallery-templates/images/sub-btn-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'l\'\'.\'\'jpg','000001000001000013000017000020'),('34Aayx5eA320D8VfhdfDBw','sub-btn-r.jpg','sub-btn-r.jpg sub-btn-r.jpg root import gallery templates images sub btn r.jpg ','root/import/gallery-templates/images/sub-btn-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'r\'\'.\'\'jpg','000001000001000013000017000021'),('TlhKOVmWblZOsAdqmhEpeg','sub-btn.jpg','sub-btn.jpg sub-btn.jpg root import gallery templates images sub btn.jpg ','root/import/gallery-templates/images/sub-btn.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'.\'\'jpg','000001000001000013000017000022'),('Nx0ypjO3cN6QdZUBUEE0lA','pic-title-bg.jpg','pic-title-bg.jpg pic-title-bg.jpg root import gallery templates images pic title bg.jpg ','root/import/gallery-templates/images/pic-title-bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pic\'\'-\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'pic\'\'-\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pic\'\'title\'\'bg\'\'.\'\'jpg','000001000001000013000017000023'),('CmFZLN7iPS7XXvUEsxKPKA','row-2.jpg','row-2.jpg row-2.jpg root import gallery templates images row 2.jpg ','root/import/gallery-templates/images/row-2.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'2\'\'.\'\'jpg\'\'row\'\'-\'\'2\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'row\'\'2\'\'.\'\'jpg','000001000001000013000017000024'),('v_XBgwwZqgW1D5s4y05qfg','addtl-info.gif','addtl-info.gif addtl-info.gif root import gallery templates images addtl info.gif ','root/import/gallery-templates/images/addtl-info.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'addtl\'\'-\'\'info\'\'.\'\'gif\'\'addtl\'\'-\'\'info\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'addtl\'\'info\'\'.\'\'gif','000001000001000013000017000025'),('4TdAkKoQbSCvI7QWcW889A','row-1.jpg','row-1.jpg row-1.jpg root import gallery templates images row 1.jpg ','root/import/gallery-templates/images/row-1.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'1\'\'.\'\'jpg\'\'row\'\'-\'\'1\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'row\'\'1\'\'.\'\'jpg','000001000001000013000017000026'),('SAgK6eDPCG1cgkJ59WapHQ','prev-btn.gif','prev-btn.gif prev-btn.gif root import gallery templates images prev btn.gif ','root/import/gallery-templates/images/prev-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'prev\'\'-\'\'btn\'\'.\'\'gif\'\'prev\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'prev\'\'btn\'\'.\'\'gif','000001000001000013000017000027'),('XJYLuvGy9ubF7JNKyINtpA','play-btn.gif','play-btn.gif play-btn.gif root import gallery templates images play btn.gif ','root/import/gallery-templates/images/play-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'play\'\'-\'\'btn\'\'.\'\'gif\'\'play\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'play\'\'btn\'\'.\'\'gif','000001000001000013000017000028'),('RWj7hyv2SpZuXxwj1Wocug','next-btn.gif','next-btn.gif next-btn.gif root import gallery templates images next btn.gif ','root/import/gallery-templates/images/next-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'next\'\'-\'\'btn\'\'.\'\'gif\'\'next\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'next\'\'btn\'\'.\'\'gif','000001000001000013000017000029'),('aq8QElnlm3YufAoxRz9Pcg','data-bg.jpg','data-bg.jpg data-bg.jpg root import gallery templates images data bg.jpg ','root/import/gallery-templates/images/data-bg.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'data\'\'-\'\'bg\'\'.\'\'jpg\'\'data\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'data\'\'bg\'\'.\'\'jpg','000001000001000013000017000030'),('6D4Z-oruXPS6OlH_Kx8pBg','images','images images root import thingy templates images ','root/import/thingy-templates/images',1209509389,1209509389,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'thingy\'\'templates\'\'images','000001000001000041000005'),('hQ7z33_jOYkQ8WNX5xy9Sw','style-button.gif','style-button.gif style-button.gif root import thingy templates images style button.gif ','root/import/thingy-templates/images/style-button.gif',1209509455,1209509455,'3','7','12','WebGUI::Asset::File::Image',1,'style\'\'-\'\'button\'\'.\'\'gif\'\'style\'\'-\'\'button\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'style\'\'button\'\'.\'\'gif','000001000001000041000005000001'),('vWW_DcHiYSrKZOkkIfEfcQ','row-2.jpg','row-2.jpg row-2.jpg root import thingy templates images row 2.jpg ','root/import/thingy-templates/images/row-2.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'2\'\'.\'\'jpg\'\'row\'\'-\'\'2\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'row\'\'2\'\'.\'\'jpg','000001000001000041000005000002'),('_bPYzRA87NTAUIKlfrJMHg','row-1.jpg','row-1.jpg row-1.jpg root import thingy templates images row 1.jpg ','root/import/thingy-templates/images/row-1.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'1\'\'.\'\'jpg\'\'row\'\'-\'\'1\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'row\'\'1\'\'.\'\'jpg','000001000001000041000005000003'),('nJjZHRwdDs5MAZYsAyioHw','title-bg.jpg','title-bg.jpg title-bg.jpg root import thingy templates images title bg.jpg ','root/import/thingy-templates/images/title-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'title\'\'-\'\'bg\'\'.\'\'jpg\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'title\'\'bg\'\'.\'\'jpg','000001000001000041000005000004'),('8hxfkrJPeFVRWF5piCNJ1A','field-bg.jpg','field-bg.jpg field-bg.jpg root import thingy templates images field bg.jpg ','root/import/thingy-templates/images/field-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'field\'\'-\'\'bg\'\'.\'\'jpg\'\'field\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'field\'\'bg\'\'.\'\'jpg','000001000001000041000005000005'),('Osx7WN52iIKHZFT4vqUBHQ','search-btn.gif','search-btn.gif search-btn.gif root import thingy templates images search btn.gif ','root/import/thingy-templates/images/search-btn.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'btn\'\'.\'\'gif\'\'search\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'search\'\'btn\'\'.\'\'gif','000001000001000041000005000006'),('oWff8fGzRdHPyq5VNREe9Q','top-bg.jpg','top-bg.jpg top-bg.jpg root import thingy templates images top bg.jpg ','root/import/thingy-templates/images/top-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'top\'\'-\'\'bg\'\'.\'\'jpg\'\'top\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'top\'\'bg\'\'.\'\'jpg','000001000001000041000005000007'),('uqbkvb1b9443VvfkyRz95w','save-button.gif','save-button.gif save-button.gif root import thingy templates images save button.gif ','root/import/thingy-templates/images/save-button.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'save\'\'-\'\'button\'\'.\'\'gif\'\'save\'\'-\'\'button\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'save\'\'button\'\'.\'\'gif','000001000001000041000005000008'),('8YiMkcz32xalkAn3WBLpag','go-btn.gif','go-btn.gif go-btn.gif root import thingy templates images go btn.gif ','root/import/thingy-templates/images/go-btn.gif',1210181860,1210181860,'3','7','12','WebGUI::Asset::File::Image',1,'go\'\'-\'\'btn\'\'.\'\'gif\'\'go\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'go\'\'btn\'\'.\'\'gif','000001000001000041000005000009'),('3n3H85BsdeRQ0I08WmvlOg','thingy.css','thingy.css thingy.css root import thingy templates thingy.css ','root/import/thingy-templates/thingy.css',1212091492,1216227244,'3','7','12','WebGUI::Asset::Snippet',1,'thingy\'\'.\'\'css\'\'thingy\'\'.\'\'css\'\'root\'\'import\'\'thingy\'\'templates\'\'thingy\'\'.\'\'css .\'\'wgThingy\'\'{\'\'margin\'\':\'\'5px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'styleButton\'\'{\'\'color\'\':\'\'black\'\';\'\'margin\'\':\'\'0px\'\'5px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'spacerOne\'\'{\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'rowOne\'\',\'\'.\'\'wgThingy\'\'*\'\'tr\'\'.\'\'rowOne\'\'td\'\'{\'\'background\'\':\'\'#\'\'EEEEEE\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'color\'\':\'\'#\'\'000\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'rowTwo\'\',\'\'.\'\'wgThingy\'\'*\'\'tr\'\'.\'\'rowTwo\'\'td\'\'{\'\'background\'\':\'\'#\'\'DBDBDB\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'DDDDDD\'\'1px\'\';\'\'color\'\':\'\'#\'\'000\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgThingsWrapper\'\'img\'\'{\'\'display\'\':\'\'block\'\';\'\'vertical\'\'-\'\'align\'\':\'\'center\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgThingsWrapper\'\'.\'\'label\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'}\'\'.\'\'wgThingy\'\'h2\'\'.\'\'title\'\'{\'\'background\'\':\'\'#\'\'000\'\';\'\'height\'\':\'\'42px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'span\'\'.\'\'smaller\'\'{\'\'font\'\'-\'\'size\'\':\'\'13px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'wgThingy\'\'.\'\'controls\'\'{\'\'line\'\'-\'\'height\'\':\'\'35px\'\';\'\'height\'\':\'\'35px\'\';\'\'background\'\':\'\'#\'\'f1f1f1\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'label\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'.\'\'wgThingy\'\'.\'\'label\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'searchTable\'\'*\'\'input\'\',\'\'.\'\'editThing\'\'*\'\'input\'\'{\'\'background\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'}\'\'.\'\'editThing\'\'{\'\'margin\'\'-\'\'top\'\':\'\'15px\'\';\'\'}\'\'#\'\'thingyList\'\',\'\'#\'\'thingyList\'\'*\'\'{\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'#\'\'thingyList\'\'{\'\'position\'\':\'\'relative\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'visited\'\'{\'\'padding\'\':\'\'2px\'\'25px\'\'2px\'\'2px\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'thingy\'\'-\'\'templates\'\'/\'\'images\'\'/\'\'go\'\'-\'\'btn\'\'.\'\'gif\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\'right\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\',\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'0px\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'width\'\':\'\'300px\'\';\'\'z\'\'-\'\'index\'\':\'\'5000\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'27px\'\';\'\'left\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'727272\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'12px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'12px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}','000001000001000041000006'),('5m5I7__l40C4hhv4ydqAHQ','thingy-ie.css','thingy-ie.css thingy-ie.css root import thingy templates thingy ie.css ','root/import/thingy-templates/thingy-ie.css',1210181698,1216227786,'3','7','12','WebGUI::Asset::Snippet',1,'thingy\'\'-\'\'ie\'\'.\'\'css\'\'thingy\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'thingy\'\'templates\'\'thingy\'\'ie\'\'.\'\'css #\'\'thingyList\'\'.\'\'things\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'width\'\':\'\'200px\'\';\'\'z\'\'-\'\'index\'\':\'\'5000\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'27px\'\';\'\'left\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'727272\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'12px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'12px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'width\'\':\'\'190px\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}','000001000001000041000007'),('4qh0kIsFUdd4Ox-Iu1JZgg','EMS',' ','root/import/ems',1208725439,1208725439,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EMS\'\'EMS\'\'root\'\'import\'\'ems','000001000001000010'),('2rC4ErZ3c77OJzJm7O5s3w','EMS Badge Listing (default)','EMS Badge Listing (default) EMS Badge Listing (default) root import ems ems badge listing default ','root/import/ems/ems-badge-listing-default',1208721232,1224723218,'3','7','12','WebGUI::Asset::Template',1,'EMS\'\'Badge\'\'Listing\'\'(\'\'default\'\')\'\'EMS\'\'Badge\'\'Listing\'\'(\'\'default\'\')\'\'root\'\'import\'\'ems\'\'ems\'\'badge\'\'listing\'\'default EMS','000001000001000010000003'),('PsFn7dJt4wMwBa8hiE3hOA','Print Badge (Default)','Print Badge (Default) Print Badge (Default) root import ems print badge default ','root/import/ems/print-badge-default',1208558071,1208558071,'3','7','12','WebGUI::Asset::Template',1,'Print\'\'Badge\'\'(\'\'Default\'\')\'\'Print\'\'Badge\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'print\'\'badge\'\'default EMS\'\'/\'\'PrintBadge','000001000001000010000004'),('yBwydfooiLvhEFawJb0VTQ','Print Ticket (Default)','Print Ticket (Default) Print Ticket (Default) root import ems print ticket default ','root/import/ems/print-ticket-default',1208629936,1208629936,'3','7','12','WebGUI::Asset::Template',1,'Print\'\'Ticket\'\'(\'\'Default\'\')\'\'Print\'\'Ticket\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'print\'\'ticket\'\'default EMS\'\'/\'\'PrintTicket','000001000001000010000005'),('63ix2-hU0FchXGIWkG3tow','Flat Discount (Default)','Flat Discount (Default) Flat Discount (Default) root import flat discount default ','root/import/flat-discount-default',1209588387,1216169693,'3','7','12','WebGUI::Asset::Template',1,'Flat\'\'Discount\'\'(\'\'Default\'\')\'\'Flat\'\'Discount\'\'(\'\'Default\'\')\'\'root\'\'import\'\'flat\'\'discount\'\'default FlatDiscount','000001000001000034000011'),('gbnRhcWNk1iQe32LFEB5eQ','Shelf','Shelf Shelf root import shelf2 ','root/import/shelf2',1210779723,1212086102,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shelf\'\'Shelf\'\'root\'\'import\'\'shelf2','000001000001000033'),('1XOJDcg_ITRYwVM-QnIcPw','shelf.css','shelf.css shelf.css root import shelf2 shelf.css ','root/import/shelf2/shelf.css',1210779441,1219175575,'3','7','12','WebGUI::Asset::Snippet',1,'shelf\'\'.\'\'css\'\'shelf\'\'.\'\'css\'\'root\'\'import\'\'shelf2\'\'shelf\'\'.\'\'css .\'\'wgShelf\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\',\'\'verdana\'\';\'\'margin\'\':\'\'15px\'\'0px\'\';\'\'}\'\'.\'\'wgShelf\'\'h2\'\'{\'\'background\'\':\'\'black\'\';\'\'padding\'\':\'\'5px\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'line\'\'-\'\'height\'\':\'\'32px\'\';\'\'color\'\':\'\'white\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'32px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'wgShelves\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'height\'\':\'\'29px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'29px\'\';\'\'padding\'\'-\'\'left\'\':\'\'30px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'{\'\'margin\'\':\'\'15px\'\';\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'width\'\':\'\'200px\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'thumbnail\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'margin\'\':\'\'3px\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'{\'\'background\'\':\'\'#\'\'e1e1e1\'\';\'\'height\'\':\'\'30px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'24px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'link\'\',\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'000\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'price\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}','000001000001000033000003'),('C5fPz-Wg85vkYRvCdl-Xqw','UserList','UserList UserList root import userlist ','root/import/userlist',1212160830,1212160830,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'UserList\'\'UserList\'\'root\'\'import\'\'userlist','000001000001000043'),('aNmgn0cd6tldmC1FpW4KbA','Shop','Shop Shop shopping cart collateral items ','shopping-cart-collateral-items',1213122695,1213122695,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Shop\'\'Shop\'\'shopping\'\'cart\'\'collateral\'\'items','000001000001000034'),('2q5fxatSFLgIhXaUX-oSvg','bottom-left.jpg','bottom-left.jpg bottom-left.jpg shopping cart collateral items bottom left.jpg ','shopping-cart-collateral-items/bottom-left.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'bottom\'\'-\'\'left\'\'.\'\'jpg\'\'bottom\'\'-\'\'left\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'bottom\'\'left\'\'.\'\'jpg','000001000001000034000001'),('_d5WTkKjnwct-_Dk7gZHvQ','bottom-right.jpg','bottom-right.jpg bottom-right.jpg shopping cart collateral items bottom right.jpg ','shopping-cart-collateral-items/bottom-right.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'bottom\'\'-\'\'right\'\'.\'\'jpg\'\'bottom\'\'-\'\'right\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'bottom\'\'right\'\'.\'\'jpg','000001000001000034000002'),('Iz2mUR3jCPKyemwAea4b2g','input_bg.jpg','input_bg.jpg input_bg.jpg shopping cart collateral items input bg.jpg ','shopping-cart-collateral-items/input_bg.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'input_bg\'\'.\'\'jpg\'\'input_bg\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'input\'\'bg\'\'.\'\'jpg','000001000001000034000003'),('JU9bjsLRoWj7GVHs__prig','top-left.jpg','top-left.jpg top-left.jpg shopping cart collateral items top left.jpg ','shopping-cart-collateral-items/top-left.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'top\'\'-\'\'left\'\'.\'\'jpg\'\'top\'\'-\'\'left\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'top\'\'left\'\'.\'\'jpg','000001000001000034000004'),('noOlnjQGexHg8c4bGVUo9g','top-right.jpg','top-right.jpg top-right.jpg shopping cart collateral items top right.jpg ','shopping-cart-collateral-items/top-right.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'top\'\'-\'\'right\'\'.\'\'jpg\'\'top\'\'-\'\'right\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'top\'\'right\'\'.\'\'jpg','000001000001000034000005'),('aIpCmr9Hi__vgdZnDTz1jw','Cart (Default)','Cart (Default) Cart (Default) default shopping cart template ','default-shopping-cart-template',1209921197,1227539574,'3','7','3','WebGUI::Asset::Template',1,'Cart\'\'(\'\'Default\'\')\'\'Cart\'\'(\'\'Default\'\')\'\'default\'\'shopping\'\'cart\'\'template Shop\'\'/\'\'Cart','000001000001000034000006'),('4e-_rNs6mSWedZhQ_V5kJA','shelf-ie.css','shelf-ie.css shelf-ie.css root import shelf2 shelf ie.css ','root/import/shelf2/shelf-ie.css',1210779672,1210779672,'3','7','12','WebGUI::Asset::Snippet',1,'shelf\'\'-\'\'ie\'\'.\'\'css\'\'shelf\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'shelf2\'\'shelf\'\'ie\'\'.\'\'css .\'\'wgShelf\'\'.\'\'product\'\'{\'\'margin\'\':\'\'15px\'\';\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'float\'\':\'\'left\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'min\'\'-\'\'height\'\':\'\'100px\'\';\'\'min\'\'-\'\'width\'\':\'\'200px\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'100px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'{\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'shelf2\'\'/\'\'images\'\'/\'\'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'right\'\';\'\'height\'\':\'\'30px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'24px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}','000001000001000033000004'),('2gtFt7c0qAFNU3BG_uvNvg','My Purchases (Default)','My Purchases (Default) My Purchases (Default) shopping cart collateral items my purchases default ','shopping-cart-collateral-items/my-purchases-default',1211824430,1222574694,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Purchases\'\'(\'\'Default\'\')\'\'My\'\'Purchases\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'my\'\'purchases\'\'default Shop\'\'/\'\'MyPurchases','000001000001000034000008'),('bPz1yk6Y9uwMDMBcmMsSCg','Email Receipt (Default)','Email Receipt (Default) Email Receipt (Default) shopping cart collateral items email receipt default ','shopping-cart-collateral-items/email-receipt-default',1211829604,1211829604,'3','7','3','WebGUI::Asset::Template',1,'Email\'\'Receipt\'\'(\'\'Default\'\')\'\'Email\'\'Receipt\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'email\'\'receipt\'\'default Shop\'\'/\'\'EmailReceipt','000001000001000034000009'),('EBlxJpZQ9o-8VBOaGQbChA','MiniCart','MiniCart MiniCart shopping cart collateral items minicart ','shopping-cart-collateral-items/minicart',1212093746,1212093746,'3','7','3','WebGUI::Asset::Template',1,'MiniCart\'\'MiniCart\'\'shopping\'\'cart\'\'collateral\'\'items\'\'minicart Shop\'\'/\'\'MiniCart','000001000001000034000014'),('PBtmpl0000000000000053','Subscription code redemption','Subscription code redemption Subscription code redemption subscription code redemption ','subscription_code_redemption',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Subscription\'\'code\'\'redemption\'\'Subscription\'\'code\'\'redemption\'\'subscription\'\'code\'\'redemption Operation\'\'/\'\'RedeemSubscription','000001000001000034000017'),('6tK47xsaIH-ELw0IBo0uRQ','images','images images root import shelf2 images ','root/import/shelf2/images',1210777115,1210777115,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'shelf2\'\'images','000001000001000033000001'),('XNd7a_g_cTvJVYrVHcx2Mw','Address (Default)','Address (Default) Address (Default) shopping cart collateral items address default ','shopping-cart-collateral-items/address-default',1212099009,1224606020,'3','7','3','WebGUI::Asset::Template',1,'Address\'\'(\'\'Default\'\')\'\'Address\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'address\'\'default Shop\'\'/\'\'Address','000001000001000034000007'),('_bZJ9LA_KNekZiFPaP2SeQ','shelf-titles.jpg','shelf-titles.jpg shelf-titles.jpg root import shelf2 images shelf titles.jpg ','root/import/shelf2/images/shelf-titles.jpg',1210777868,1210777868,'3','7','12','WebGUI::Asset::File::Image',1,'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\'root\'\'import\'\'shelf2\'\'images\'\'shelf\'\'titles\'\'.\'\'jpg','000001000001000033000001000001'),('nFen0xjkZn8WkpM93C9ceQ','Shelf (Default)','Shelf (Default) Shelf (Default) root import shelf default ','root/import/shelf-default',1210779326,1229117831,'3','7','12','WebGUI::Asset::Template',1,'Shelf\'\'(\'\'Default\'\')\'\'Shelf\'\'(\'\'Default\'\')\'\'root\'\'import\'\'shelf\'\'default Shelf','000001000001000033000002'),('mTOiwwk3q4k9g5-XykXhPA','Documentation','With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation. ','documentation',1215717999,1218149728,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Documentation\'\'Documentation\'\'documentation\'\'With\'\'any\'\'large\'\'system\'\',\'\'having\'\'the\'\'right\'\'documentation\'\'to\'\'get\'\'you\'\'started\'\'is\'\'mandatory\'\'.\'\'The\'\'good\'\'news\'\'is\'\'that\'\'WebGUI\'\'has\'\'abundant\'\'documentation\'\'.','000001000002000005'),('j_1qEqM6iLfQLiR6VKy0aA','Free Documentation','There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction. \n\n\n\nPrimer - A download','documentation/free-documentation',1215718151,1215718151,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Free\'\'Documentation\'\'Free\'\'Documentation\'\'documentation\'\'free\'\'documentation\'\'There\'\'are\'\'hundreds\'\'of\'\'pages\'\'of\'\'free\'\'documentation\'\'available\'\'for\'\'WebGUI\'\',\'\'provided\'\'by\'\'both\'\'Plain\'\'Black\'\'and\'\'the\'\'community\'\'at\'\'large\'\'.\'\'The\'\'following\'\'list\'\'is\'\'by\'\'no\'\'means\'\'comprehensive\'\',\'\'but\'\'it\'\'should\'\'get\'\'you\'\'started\'\'in\'\'the\'\'right\'\'direction\'\'.\'\'Primer\'\'-\'\'A\'\'downloadable\'\'PDF\'\'that\'\'shows\'\'you\'\'the\'\'basics\'\'of\'\'publishing\'\'content\'\'in\'\'WebGUI\'\'.\'\'Wiki\'\'-\'\'Hundreds\'\'of\'\'pages\'\'of\'\'WebGUI\'\'community\'\'contributed\'\'content\'\'featuring\'\'a\'\'variety\'\'of\'\'tutorials\'\'.\'\'Worldwide\'\'-\'\'A\'\'collection\'\'of\'\'WebGUI\'\'related\'\'web\'\'sites\'\'from\'\'all\'\'over\'\'the\'\'world\'\'that\'\'have\'\'documentation\'\'and\'\'other\'\'resources\'\'for\'\'WebGUI\'\'.\'\'API\'\'Docs\'\'-\'\'The\'\'documentation\'\'of\'\'all\'\'of\'\'the\'\'WebGUI\'\'source\'\'code\'\'.\'\'Template\'\'Help\'\'-\'\'The\'\'documentation\'\'of\'\'all\'\'of\'\'WebGUI\'\'\'\'\'s\'\'template\'\'variables\'\'. ','000001000002000005000001'),('o_pq_e4vRyhMOKFzs61eag','book-covers.jpg','book-covers.jpg book-covers.jpg documentation book covers.jpg ','documentation/book-covers.jpg',1215714957,1215714957,'3','7','3','WebGUI::Asset::File::Image',1,'book\'\'-\'\'covers\'\'.\'\'jpg\'\'book\'\'-\'\'covers\'\'.\'\'jpg\'\'documentation\'\'book\'\'covers\'\'.\'\'jpg','000001000002000005000002'),('diZvW4bSgZWwyyGP3qXi1g','Commercial Documentation','Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of t','documentation/commercial-documentation',1215717972,1215717972,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Commercial\'\'Documentation\'\'Commercial\'\'Documentation\'\'documentation\'\'commercial\'\'documentation\'\'Plain\'\'Black\'\'has\'\'created\'\'a\'\'whole\'\'line\'\'of\'\'commercial\'\'books\'\'which\'\'total\'\'over\'\'1500\'\'pages\'\'of\'\'detailed\'\'documentation\'\'about\'\'WebGUI\'\'.\'\'Both\'\'black\'\'and\'\'white\'\'and\'\'full\'\'color\'\'editions\'\'of\'\'these\'\'books\'\'are\'\'available\'\',\'\'and\'\'they\'\'are\'\'updated\'\'frequently\'\'to\'\'keep\'\'you\'\'on\'\'top\'\'of\'\'the\'\'latest\'\'WebGUI\'\'features\'\'.\'\'Visit\'\'the\'\'book\'\'store\'\'today\'\'to\'\'stock\'\'your\'\'WebGUI\'\'library\'\'.\'\'Other\'\'than\'\'hands\'\'on\'\'training\'\',\'\'there\'\'is\'\'no\'\'better\'\'way\'\'to\'\'hone\'\'your\'\'WebGUI\'\'skills\'\'.\'\'No\'\'matter\'\'what\'\'your\'\'need\'\',\'\'Plain\'\'Black\'\'has\'\'created\'\'a\'\'book\'\'that\'\'\'\'\'s\'\'right\'\'for\'\'you\'\'and\'\'is\'\'creating\'\'new\'\'books\'\'each\'\'year\'\'. ','000001000002000005000003'),('PBEmsBadgeTemplate0000','Default EMS Badge Template','Default EMS Badge Template Default EMS Badge Template default emsbadge ','default_emsbadge',1221077977,1221692339,'3','7','4','WebGUI::Asset::Template',1,'Default\'\'EMS\'\'Badge\'\'Template\'\'Default\'\'EMS\'\'Badge\'\'Template\'\'default\'\'emsbadge EMSBadge','000001000001000010000006'),('9A-mg2gwWmaYi9o_1C7ArQ','dashboard','dashboard dashboard root import projectmanager dashboard ','root/import/projectmanager/dashboard',1147642478,1222803338,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'dashboard\'\'dashboard\'\'root\'\'import\'\'projectmanager\'\'dashboard','000001000001000027000001'),('yD1SMHelczihzjEmx6eXBA','editTask','editTask editTask root import projectmanager edittask ','root/import/projectmanager/edittask',1147642478,1222803342,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'editTask\'\'editTask\'\'root\'\'import\'\'projectmanager\'\'edittask','000001000001000027000002'),('pV7GnZdpjR3XpZaSINIoeg','gantt','gantt gantt root import projectmanager gantt ','root/import/projectmanager/gantt',1147642478,1222803347,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'gantt\'\'gantt\'\'root\'\'import\'\'projectmanager\'\'gantt','000001000001000027000003'),('71e17KeduiXgODLMlUxiow','project','project project root import projectmanager project ','root/import/projectmanager/project',1147642479,1222803352,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'project\'\'project\'\'root\'\'import\'\'projectmanager\'\'project','000001000001000027000004'),('vTymIDYL2YqEh6PV50F7ew','manager','manager manager root import timetracking manager ','root/import/timetracking/manager',1147642482,1222803302,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'manager\'\'manager\'\'root\'\'import\'\'timetracking\'\'manager','000001000001000042000001'),('lo1ac3BsoJx3ijGQ3gR-bQ','row','row row root import timetracking row ','root/import/timetracking/row',1147642482,1222803309,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'row\'\'row\'\'root\'\'import\'\'timetracking\'\'row','000001000001000042000002'),('huASapWvFDzqwOSbcN-JFQ','user','user user root import timetracking user ','root/import/timetracking/user',1147642483,1222803313,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'user\'\'user\'\'root\'\'import\'\'timetracking\'\'user','000001000001000042000003'),('xSmREZO3GNzK3M5PaueOOQ','LDAP/Account','LDAP/Account LDAP/Account root import auth ldap account ','root/import/auth/ldap/account',1147642466,1222803378,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Account\'\'LDAP\'\'/\'\'Account\'\'root\'\'import\'\'auth\'\'ldap\'\'account','000001000001000004000001'),('0bx-xoL8TSXXubFuqKAoVQ','LDAP/Create','LDAP/Create LDAP/Create root import auth ldap create ','root/import/auth/ldap/create',1147642466,1222803383,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Create\'\'LDAP\'\'/\'\'Create\'\'root\'\'import\'\'auth\'\'ldap\'\'create','000001000001000004000002'),('taX2UYkFF21ALpFZY2rhMw','LDAP/Login','LDAP/Login LDAP/Login root import auth ldap login ','root/import/auth/ldap/login',1147642466,1222803387,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Login\'\'LDAP\'\'/\'\'Login\'\'root\'\'import\'\'auth\'\'ldap\'\'login','000001000001000004000003'),('K0q_N885Httqev1VCqUWxg','WebGUI/Account','WebGUI/Account WebGUI/Account root import auth webgui account ','root/import/auth/webgui/account',1147642466,1222803391,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Account\'\'WebGUI\'\'/\'\'Account\'\'root\'\'import\'\'auth\'\'webgui\'\'account','000001000001000004000004'),('fq1ZkYhH24R5tb96kuT10Q','WebGUI/Create','WebGUI/Create WebGUI/Create root import auth webgui create ','root/import/auth/webgui/create',1147642466,1222803395,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Create\'\'WebGUI\'\'/\'\'Create\'\'root\'\'import\'\'auth\'\'webgui\'\'create','000001000001000004000005'),('oHk7fAFhEEkB7dHzi0QOQA','WebGUI/Expired','WebGUI/Expired WebGUI/Expired root import auth webgui expired ','root/import/auth/webgui/expired',1147642466,1222803399,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Expired\'\'WebGUI\'\'/\'\'Expired\'\'root\'\'import\'\'auth\'\'webgui\'\'expired','000001000001000004000006'),('9M-lrlPQWeeNWfvnDnK_Xg','WebGUI/Login','WebGUI/Login WebGUI/Login root import auth webgui login ','root/import/auth/webgui/login',1147642466,1222803405,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Login\'\'WebGUI\'\'/\'\'Login\'\'root\'\'import\'\'auth\'\'webgui\'\'login','000001000001000004000007'),('_gBYAdTcbkiyamnqi2Xskg','WebGUI/Recovery','WebGUI/Recovery WebGUI/Recovery root import auth webgui recovery ','root/import/auth/webgui/recovery',1147642466,1222803409,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Recovery\'\'WebGUI\'\'/\'\'Recovery\'\'root\'\'import\'\'auth\'\'webgui\'\'recovery','000001000001000004000008'),('tBL7BWiQRZFed2Y-Zjo9tQ','AdminToggle','AdminToggle AdminToggle root import macro admintoggle ','root/import/macro/admintoggle',1147642471,1222803200,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminToggle\'\'AdminToggle\'\'root\'\'import\'\'macro\'\'admintoggle','000001000001000018000001'),('GdkQpvjRtJqtzOUbwIIQRA','a_account','a_account a_account root import macro a account ','root/import/macro/a_account',1147642471,1222803205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'a_account\'\'a_account\'\'root\'\'import\'\'macro\'\'a\'\'account','000001000001000018000002'),('tnc5iYyynX2hfdEs9D3P8w','EditableToggle','EditableToggle EditableToggle root import macro editabletoggle ','root/import/macro/editabletoggle',1147642472,1222803213,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EditableToggle\'\'EditableToggle\'\'root\'\'import\'\'macro\'\'editabletoggle','000001000001000018000003'),('vgXdBcFTqU7h4wBG1ewdBw','File','File File root import macro file ','root/import/macro/file',1147642472,1222803217,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'File\'\'File\'\'root\'\'import\'\'macro\'\'file','000001000001000018000004'),('hcFlqnXlsmC1ujN6Id0F0A','GroupAdd','GroupAdd GroupAdd root import macro groupadd ','root/import/macro/groupadd',1147642473,1222803234,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupAdd\'\'GroupAdd\'\'root\'\'import\'\'macro\'\'groupadd','000001000001000018000005'),('eRJR52fvlaxfetv3DQkQYw','GroupDelete','GroupDelete GroupDelete root import macro groupdelete ','root/import/macro/groupdelete',1147642473,1222803238,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupDelete\'\'GroupDelete\'\'root\'\'import\'\'macro\'\'groupdelete','000001000001000018000006'),('5HIDHq5lAWHV5gpYGS0zLg','H_homeLink','H_homeLink H_homeLink root import macro h homelink ','root/import/macro/h_homelink',1147642473,1222803244,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'H_homeLink\'\'H_homeLink\'\'root\'\'import\'\'macro\'\'h\'\'homelink','000001000001000018000007'),('rYEFwXXo0tkGhQTcbDibvg','LoginToggle','LoginToggle LoginToggle root import macro logintoggle ','root/import/macro/logintoggle',1147642473,1222803249,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LoginToggle\'\'LoginToggle\'\'root\'\'import\'\'macro\'\'logintoggle','000001000001000018000008'),('V3l5S5TtI7wMm1WpIMhvOA','L_loginBox','L_loginBox L_loginBox root import macro l loginbox ','root/import/macro/l_loginbox',1147642473,1222803253,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'L_loginBox\'\'L_loginBox\'\'root\'\'import\'\'macro\'\'l\'\'loginbox','000001000001000018000009'),('nqNbSUAhk9Vd1zda2SCz9A','RandomThread','RandomThread RandomThread root import macro randomthread ','root/import/macro/randomthread',1147642474,1222803258,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RandomThread\'\'RandomThread\'\'root\'\'import\'\'macro\'\'randomthread','000001000001000018000010'),('y8XkRdxIperLKkJ3bL5sSQ','r_printable','r_printable r_printable root import macro r printable ','root/import/macro/r_printable',1147642474,1222803264,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'r_printable\'\'r_printable\'\'root\'\'import\'\'macro\'\'r\'\'printable','000001000001000018000011'),('UserListTmpl0000000002','UserList with search field selection','UserList with search field selection UserList with search field selection root import userlist userlist with search field selection ','root/import/userlist/userlist-with-search-field-selection',1212000800,1228125752,'3','7','12','WebGUI::Asset::Template',1,'UserList\'\'with\'\'search\'\'field\'\'selection\'\'UserList\'\'with\'\'search\'\'field\'\'selection\'\'root\'\'import\'\'userlist\'\'userlist\'\'with\'\'search\'\'field\'\'selection UserList','000001000001000043000002'),('UserListTmpl0000000003','UserList with multiple search keywords','UserList with multiple search keywords UserList with multiple search keywords root import userlist userlist with multiple search keywords ','root/import/userlist/userlist-with-multiple-search-keywords',1212001437,1228125758,'3','7','12','WebGUI::Asset::Template',1,'UserList\'\'with\'\'multiple\'\'search\'\'keywords\'\'UserList\'\'with\'\'multiple\'\'search\'\'keywords\'\'root\'\'import\'\'userlist\'\'userlist\'\'with\'\'multiple\'\'search\'\'keywords UserList','000001000001000043000003'),('UserListTmpl0000000001','Default UserList','Default UserList Default UserList root import userlist default userlist ','root/import/userlist/default-userlist',1212159641,1228125743,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'UserList\'\'Default\'\'UserList\'\'root\'\'import\'\'userlist\'\'default\'\'userlist UserList','000001000001000043000001'),('BMybD3cEnmXVk2wQ_qEsRQ','Badge Builder (Default)','Badge Builder (Default) Badge Builder (Default) root import ems badge builder default ','root/import/ems/badge-builder-default',1208530113,1224723361,'3','7','12','WebGUI::Asset::Template',1,'Badge\'\'Builder\'\'(\'\'Default\'\')\'\'Badge\'\'Builder\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'badge\'\'builder\'\'default EMS\'\'/\'\'BadgeBuilder','000001000001000010000001'),('OOyMH33plAy6oCj_QWrxtg','Lookup Registrant (Default)','Lookup Registrant (Default) Lookup Registrant (Default) root import ems lookup registrant default ','root/import/ems/lookup-registrant-default',1207951375,1224724790,'3','7','12','WebGUI::Asset::Template',1,'Lookup\'\'Registrant\'\'(\'\'Default\'\')\'\'Lookup\'\'Registrant\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'lookup\'\'registrant\'\'default EMS\'\'/\'\'LookupRegistrant','000001000001000010000002'),('stevecoolmenu000000001','Site Nav','Site Nav Site Nav webgui7 style3 hierarchical top nav ','webgui7/style3/hierarchical-top-nav',1147642505,1224116942,'3','7','12','WebGUI::Asset::Template',1,'Site\'\'Nav\'\'Site\'\'Nav\'\'webgui7\'\'style3\'\'hierarchical\'\'top\'\'nav Navigation','000001000001000047000001'),('7-0-style0000000000051','css03.css','css03.css css03.css style3 css03.css ','style3/css03.css',1147642505,1224117026,'3','7','12','WebGUI::Asset::Snippet',1,'css03\'\'.\'\'css\'\'css03\'\'.\'\'css\'\'style3\'\'css03\'\'.\'\'css body\'\',\'\'html\'\'{\'\'margin\'\':\'\'0px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'b53018\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'body\'\'a\'\'{\'\'color\'\':\'\'#\'\'EE963E\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'{\'\'width\'\':\'\'98\'\'%\'\';\'\'/\'\'*\'\'min\'\'-\'\'width\'\':\'\'790px\'\';\'\'*\'\'/\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'20px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'header\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'115px\'\';\'\'}\'\'#\'\'headerTitle\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'left\'\'top\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'headerRight\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\'top\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'headerRight\'\'#\'\'title\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'25px\'\';\'\'left\'\':\'\'20px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'#\'\'title\'\'h1\'\'{\'\'text\'\'-\'\'transform\'\':\'\'uppercase\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'font\'\'-\'\'size\'\':\'\'26pt\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'title\'\'h1\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'26pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}\'\'#\'\'title\'\'h2\'\'{\'\'margin\'\':\'\'0px\'\';\'\'font\'\'-\'\'size\'\':\'\'12pt\'\';\'\'color\'\':\'\'#\'\'bebebe\'\';\'\'padding\'\'-\'\'left\'\':\'\'20px\'\';\'\'}\'\'#\'\'title\'\'img\'\'{\'\'z\'\'-\'\'index\'\':\'\'5\'\';\'\'}\'\'#\'\'login\'\'{\'\'position\'\':\'\'absolute\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'top\'\':\'\'45\'\'%\'\';\'\'right\'\':\'\'150px\'\';\'\'color\'\':\'\'white\'\';\'\'z\'\'-\'\'index\'\':\'\'6\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'}\'\'#\'\'login\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'0px\'\';\'\'}\'\'.\'\'loginBox\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'margin\'\':\'\'0px\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'.\'\'loginBox\'\'input\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'mainBody\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'500px\'\';\'\'background\'\':\'\'#\'\'fff\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainBody\'\'{\'\'height\'\':\'\'auto\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'#\'\'contentArea\'\'{\'\'z\'\'-\'\'index\'\':\'\'2\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\'-\'\'top\'\':\'\'10px\'\';\'\'padding\'\'-\'\'left\'\':\'\'10px\'\';\'\'padding\'\'-\'\'right\'\':\'\'20px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'html\'\'#\'\'main\'\'#\'\'mainBody\'\'#\'\'contentArea\'\'{\'\'height\'\':\'\'1\'\'%\'\';\'\'}\'\'#\'\'topCorner\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'214px\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'/\'\'style3\'\'/\'\'main_top\'\'.\'\'jpg\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'#\'\'bottomCorner\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'211px\'\';\'\'position\'\':\'\'absolute\'\';\'\'bottom\'\':\'\'59px\'\';\'\'right\'\':\'\'0px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'main_bottom\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'*\'\'html\'\'#\'\'bottomCorner\'\'{\'\'bottom\'\':\'\'58px\'\';\'\'}\'\'#\'\'footer\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'background\'\':\'\'#\'\'000\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'footer_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\'top\'\';\'\'height\'\':\'\'57px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'B53018\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'footer\'\'#\'\'copyright\'\'{\'\'color\'\':\'\'#\'\'3b3b3b\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'20px\'\';\'\'left\'\':\'\'30px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'{\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}','000001000001000047000002'),('stevestyle000000000003','Style 03','Style 03 Style 03 style 03 ','style_03',1147642510,1224795533,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'03\'\'Style\'\'03\'\'style\'\'03 style','000001000001000047000020'),('jVKLVakT_iA2010_oEuAwg','Style3 Coolmenu','Style3 Coolmenu Style3 Coolmenu department nav ','department_nav',1224116526,1224116526,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3\'\'Coolmenu\'\'Style3\'\'Coolmenu\'\'department\'\'nav','000001000001000047000024'),('UL-ItI4L1Z6-WSuhuXVvsQ','DataTable','DataTable DataTable root import datatable ','root/import/datatable',1225139673,1225139673,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'DataTable\'\'DataTable\'\'root\'\'import\'\'datatable','000001000001000009'),('3rjnBVJRO6ZSkxlFkYh_ug','Default DataTable Template (YUI)','Default DataTable Template (YUI) Default DataTable Template (YUI) root import datatable default datatable template yui ','root/import/datatable/default-datatable-template-yui',1225139643,1233861835,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'DataTable\'\'Template\'\'(\'\'YUI\'\')\'\'Default\'\'DataTable\'\'Template\'\'(\'\'YUI\'\')\'\'root\'\'import\'\'datatable\'\'default\'\'datatable\'\'template\'\'yui DataTable','000001000001000009000001'),('TuYPpHx7TUyk08639Pc8Bg','Default DataTable Template (HTML)','Default DataTable Template (HTML) Default DataTable Template (HTML) root import datatable default datatable template html ','root/import/datatable/default-datatable-template-html',1225139643,1233861621,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'DataTable\'\'Template\'\'(\'\'HTML\'\')\'\'Default\'\'DataTable\'\'Template\'\'(\'\'HTML\'\')\'\'root\'\'import\'\'datatable\'\'default\'\'datatable\'\'template\'\'html DataTable','000001000001000009000002'),('FJbUTvZ2nUTn65LpW6gjsA','Profile Account Layout','Profile Account Layout Profile Account Layout root import account profile profile account layout ','root/import/account/profile/profile-account-layout',1227070381,1232735095,'3','7','12','WebGUI::Asset::Template',1,'Profile\'\'Account\'\'Layout\'\'Profile\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'profile\'\'profile\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000001000001000001'),('75CmQgpcCSkdsL-oawdn3Q','Default Edit Profile Template','Default Edit Profile Template Default Edit Profile Template root import account profile default edit profile template ','root/import/account/profile/default-edit-profile-template',1227052575,1232561177,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Edit\'\'Profile\'\'Template\'\'Default\'\'Edit\'\'Profile\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'edit\'\'profile\'\'template Account\'\'/\'\'Profile\'\'/\'\'Edit','000001000001000001000001000002'),('2CS-BErrjMmESOtGT90qOg','Default View Profile Template','Default View Profile Template Default View Profile Template root import account profile default view profile template ','root/import/account/profile/default-view-profile-template',1227070888,1232955105,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'View\'\'Profile\'\'Template\'\'Default\'\'View\'\'Profile\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'view\'\'profile\'\'template Account\'\'/\'\'Profile\'\'/\'\'View','000001000001000001000001000003'),('MBmWlA_YEA2I6D29OMGtRg','Default Profile Error Template','Default Profile Error Template Default Profile Error Template root import account profile default profile error template ','root/import/account/profile/default-profile-error-template',1226542675,1228753307,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Profile\'\'Error\'\'Template\'\'Default\'\'Profile\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'profile\'\'error\'\'template Account\'\'/\'\'Profile\'\'/\'\'Error','000001000001000001000001000004'),('IZkrow_zwvbf4FCH-taVTQ','Inbox','Inbox Inbox root import account inbox ','root/import/account/inbox',1226011853,1226011853,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox\'\'Inbox\'\'root\'\'import\'\'account\'\'inbox','000001000001000001000002'),('gfZOwaTWYjbSoVaQtHBBEw','Inbox Account Layout','Inbox Account Layout Inbox Account Layout root import account inbox account layout ','root/import/account/inbox-account-layout',1226974679,1232735116,'3','7','12','WebGUI::Asset::Template',1,'Inbox\'\'Account\'\'Layout\'\'Inbox\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'inbox\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000001000002000001'),('c8xrwVuu5QE0XtF9DiVzLw','Default Inbox View Template','Default Inbox View Template Default Inbox View Template root import account inbox default inbox view template ','root/import/account/inbox/default-inbox-view-template',1226894351,1235331153,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'View\'\'Template\'\'Default\'\'Inbox\'\'View\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'view\'\'template Account\'\'/\'\'Inbox\'\'/\'\'View','000001000001000001000002000002'),('0n4HtbXaWa_XJHkFjetnLQ','Default Inbox View Message Template','Default Inbox View Message Template Default Inbox View Message Template root import account inbox default inbox view message template ','root/import/account/inbox/default-inbox-view-message-template',1226894994,1233168324,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'View\'\'Message\'\'Template\'\'Default\'\'Inbox\'\'View\'\'Message\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'view\'\'message\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ViewMessage','000001000001000001000002000003'),('ErEzulFiEKDkaCDVmxUavw','Default Inbox Error Template','Default Inbox Error Template Default Inbox Error Template root import account inbox default inbox error template ','root/import/account/inbox/default-inbox-error-template',1226895484,1227566394,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'Error\'\'Template\'\'Default\'\'Inbox\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'error\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Error','000001000001000001000002000004'),('6uQEULvXFgCYlRWnYzZsuA','Default Inbox Send Message Template','Default Inbox Send Message Template Default Inbox Send Message Template root import account inbox default inbox send message template ','root/import/account/inbox/default-inbox-send-message-template',1226896682,1233874321,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'Send\'\'Message\'\'Template\'\'Default\'\'Inbox\'\'Send\'\'Message\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'send\'\'message\'\'template Account\'\'/\'\'Inbox\'\'/\'\'SendMessage','000001000001000001000002000005'),('DUoxlTBXhVS-Zl3CFDpt9g','Default Message Confirm Template','Default Message Confirm Template Default Message Confirm Template root import account inbox default message confirm template ','root/import/account/inbox/default-message-confirm-template',1226896802,1226896802,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Message\'\'Confirm\'\'Template\'\'Default\'\'Message\'\'Confirm\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'message\'\'confirm\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Confirm','000001000001000001000002000006'),('1Q4Je3hKCJzeo0ZBB5YB8g','Default Manage Invitations Template','Default Manage Invitations Template Default Manage Invitations Template root import account inbox default manage invitations template ','root/import/account/inbox/default-manage-invitations-template',1226898445,1232753312,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Manage\'\'Invitations\'\'Template\'\'Default\'\'Manage\'\'Invitations\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'manage\'\'invitations\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ManageInvitations','000001000001000001000002000007'),('5A8Hd9zXvByTDy4x-H28qw','Default Invitation Confirmation Template','Default Invitation Confirmation Template Default Invitation Confirmation Template root import account inbox default invitation confirmation template ','root/import/account/inbox/default-invitation-confirmation-template',1226899462,1227566395,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invitation\'\'Confirmation\'\'Template\'\'Default\'\'Invitation\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invitation\'\'confirmation\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Confirm','000001000001000001000002000008'),('VBkY05f-E3WJS50WpdKd1Q','Default View Invitation Template','Default View Invitation Template Default View Invitation Template root import account inbox default view invitation template ','root/import/account/inbox/default-view-invitation-template',1226899241,1233168685,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'View\'\'Invitation\'\'Template\'\'Default\'\'View\'\'Invitation\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'view\'\'invitation\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ViewInvitation','000001000001000001000002000009'),('XgcsoDrbC0duVla7N7JAdw','Default Invite User Email Template','Default Invite User Email Template Default Invite User Email Template root import account inbox default invite user email template ','root/import/account/inbox/default-invite-user-email-template',1226973330,1227566394,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Email\'\'Template\'\'Default\'\'Invite\'\'User\'\'Email\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'email\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUserMessage','000001000001000001000002000010'),('cR0UFm7I1qUI2Wbpj--08Q','Default Invite User Form Template','Default Invite User Form Template Default Invite User Form Template root import account inbox default invite user form template ','root/import/account/inbox/default-invite-user-form-template',1226964738,1232464762,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Form\'\'Template\'\'Default\'\'Invite\'\'User\'\'Form\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'form\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUser','000001000001000001000002000011'),('SVIhz68689hwUGgcDM-gWw','Default Invite User Confirm Template','Default Invite User Confirm Template Default Invite User Confirm Template root import account inbox default invite user confirm template ','root/import/account/inbox/default-invite-user-confirm-template',1226973314,1226973314,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Confirm\'\'Template\'\'Default\'\'Invite\'\'User\'\'Confirm\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'confirm\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUserConfirm','000001000001000001000002000012'),('K0YjxqOqr7RupSo6sIdcAg','Friends','Friends Friends root import account friends ','root/import/account/friends',1227074310,1227074310,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friends\'\'Friends\'\'root\'\'import\'\'account\'\'friends','000001000001000001000003'),('zrNpGbT3odfIkg6nFSUy8Q','Friends Layout Template','Friends Layout Template Friends Layout Template root import account friends friends layout template ','root/import/account/friends/friends-layout-template',1226994016,1232735138,'3','7','12','WebGUI::Asset::Template',1,'Friends\'\'Layout\'\'Template\'\'Friends\'\'Layout\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'friends\'\'layout\'\'template Account\'\'/\'\'Layout','000001000001000001000003000001'),('1Yn_zE_dSiNuaBGNLPbxtw','Default Friends View Template','Default Friends View Template Default Friends View Template root import account friends default friends view template ','root/import/account/friends/default-friends-view-template',1226994422,1232952380,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'View\'\'Template\'\'Default\'\'Friends\'\'View\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'view\'\'template Account\'\'/\'\'Friends\'\'/\'\'View','000001000001000001000003000002'),('AZFU33p0jpPJ-E6qLSWZng','Default Friends Edit Template','Default Friends Edit Template Default Friends Edit Template root import account friends default friends edit template ','root/import/account/friends/default-friends-edit-template',1226994865,1232951869,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Edit\'\'Template\'\'Default\'\'Friends\'\'Edit\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'edit\'\'template Account\'\'/\'\'Friends\'\'/\'\'Edit','000001000001000001000003000003'),('AGJBGviWGAwjnwziiPjvDg','Default Send Request Template','Default Send Request Template Default Send Request Template root import account friends default send request template ','root/import/account/friends/default-send-request-template',1226995497,1232569232,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Send\'\'Request\'\'Template\'\'Default\'\'Send\'\'Request\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'send\'\'request\'\'template Account\'\'/\'\'Friends\'\'/\'\'SendRequest','000001000001000001000003000004'),('7Ijdd8SW32lVgg2H8R-Aqw','Default Friends Error Template','Default Friends Error Template Default Friends Error Template root import account friends default friends error template ','root/import/account/friends/default-friends-error-template',1226995714,1226995714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Error\'\'Template\'\'Default\'\'Friends\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'error\'\'template Account\'\'/\'\'Friends\'\'/\'\'Error','000001000001000001000003000005'),('K8F0j_cq_jgo8dvWY_26Ag','Default Friends Confirmation Template','Default Friends Confirmation Template Default Friends Confirmation Template root import account friends default friends confirmation template ','root/import/account/friends/default-friends-confirmation-template',1226995643,1226995643,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Confirmation\'\'Template\'\'Default\'\'Friends\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'confirmation\'\'template Account\'\'/\'\'Friends\'\'/\'\'Confirm','000001000001000001000003000006'),('G5V6neXIDiFXN05oL-U3AQ','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template Default Remove Friends Confirmation Template root import account friends default remove friends confirmation template ','root/import/account/friends/default-remove-friends-confirmation-template',1226995768,1226995768,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Remove\'\'Friends\'\'Confirmation\'\'Template\'\'Default\'\'Remove\'\'Friends\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'remove\'\'friends\'\'confirmation\'\'template Account\'\'/\'\'Friends\'\'/\'\'Confirm','000001000001000001000003000007'),('_ilRXNR3s8F2vGJ_k9ePcg','User','User User root import account user ','root/import/account/user',1226643205,1226643205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'User\'\'User\'\'root\'\'import\'\'account\'\'user','000001000001000001000004'),('9ThW278DWLV0-Svf68ljFQ','Account Layout','Account Layout Account Layout root import account user account layout ','root/import/account/user/account-layout',1226647187,1232735163,'3','7','12','WebGUI::Asset::Template',1,'Account\'\'Layout\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'user\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000001000004000001'),('AOjPG2NHgfL9Cq6dDJ7mew','Shop','Shop Shop root import account shop ','root/import/account/shop',1226659753,1226659753,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shop\'\'Shop\'\'root\'\'import\'\'account\'\'shop','000001000001000001000005'),('aUDsJ-vB9RgP-AYvPOy8FQ','Shop Account Layout','Shop Account Layout Shop Account Layout root import account shop shop account layout ','root/import/account/shop/shop-account-layout',1226660439,1232735191,'3','7','12','WebGUI::Asset::Template',1,'Shop\'\'Account\'\'Layout\'\'Shop\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'shop\'\'shop\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000001000005000001'),('qaVcU0FFzzraMX_bzELqzw','Contributions','Contributions Contributions root import account contributions ','root/import/account/contributions',1227074362,1227074362,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Contributions\'\'Contributions\'\'root\'\'import\'\'account\'\'contributions','000001000001000001000006'),('b4n3VyUIsAHyIvT-W-jziA','Contributions Layout','Contributions Layout Contributions Layout root import account contributions contributions layout ','root/import/account/contributions/contributions-layout',1227074747,1232735307,'3','7','12','WebGUI::Asset::Template',1,'Contributions\'\'Layout\'\'Contributions\'\'Layout\'\'root\'\'import\'\'account\'\'contributions\'\'contributions\'\'layout Account\'\'/\'\'Layout','000001000001000001000006000001'),('1IzRpX0tgW7iuCfaU2Kk0A','Default Contributions View','Default Contributions View Default Contributions View root import account contributions default contributions view ','root/import/account/contributions/default-contributions-view',1227079721,1234924646,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Contributions\'\'View\'\'Default\'\'Contributions\'\'View\'\'root\'\'import\'\'account\'\'contributions\'\'default\'\'contributions\'\'view Account\'\'/\'\'Contrib\'\'/\'\'View','000001000001000001000006000002'),('N716tpSna0iIQTKxS4gTWA','Default Account Layout','Default Account Layout Default Account Layout root import account default account layout2 ','root/import/account/default-account-layout2',1226604666,1232734726,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Account\'\'Layout\'\'Default\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'default\'\'account\'\'layout2 Account\'\'/\'\'Layout','000001000001000001000007'),('matrixtmpl000000000004','Matrix Default Edit Listing','Matrix Default Edit Listing Matrix Default Edit Listing default matrix edit listing template ','default-matrix-edit-listing-template',1133743239,1228834590,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Edit\'\'Listing\'\'Matrix\'\'Default\'\'Edit\'\'Listing\'\'default\'\'matrix\'\'edit\'\'listing\'\'template Matrix\'\'/\'\'EditListing','000001000001000019000004'),('_9_eiaPgxzF_x_upt6-PNQ','gallery.css','gallery.css gallery.css root import gallery templates gallery.css ','root/import/gallery-templates/gallery.css',1197988920,1230702602,'3','7','3','WebGUI::Asset::Snippet',1,'gallery\'\'.\'\'css\'\'gallery\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'gallery\'\'.\'\'css /\'\'*\'\'FIXES\'\'FLOAT\'\'ISSUES\'\'.\'\'WITHOUT\'\'THIS\'\',\'\'FLOATS\'\'GET\'\'ALL\'\'NUTSY\'\'ESPECIALLY\'\'IN\'\'OPERA\'\'AND\'\'SAFARI\'\'*\'\'/\'\'.\'\'clearfix\'\':\'\'after\'\'{\'\'content\'\':\'\'\"\'\'.\'\'\"\'\';\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'0\'\';\'\'clear\'\':\'\'both\'\';\'\'visibility\'\':\'\'hidden\'\';\'\'}\'\'.\'\'clearfix\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'}\'\'/\'\'*\'\'END\'\'FLOAT\'\'FIX\'\'*\'\'/\'\'.\'\'wgGallery\'\'{\'\'font\'\'-\'\'family\'\':\'\'verdana\'\',\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'firstBar\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'title\'\'{\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'title\'\'a\'\'{\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'height\'\':\'\'42px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'0px\'\'5px\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'.\'\'rss\'\'{\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'29px\'\';\'\'position\'\':\'\'relative\'\';\'\'background\'\':\'\'transparent\'\';\'\'padding\'\'-\'\'top\'\':\'\'13px\'\';\'\'}\'\'.\'\'secondBar\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'8B8B8B\'\'5px\'\';\'\'color\'\':\'\'black\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'}\'\'.\'\'secondBar\'\'.\'\'author\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'secondBar\'\'.\'\'desc\'\'p\'\'{\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'margin\'\'-\'\'top\'\':\'\'0\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'pictures\'\'{\'\'}\'\'.\'\'searchArea\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'searchArea\'\'*\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'searchArea\'\'input\'\'.\'\'searchText\'\'{\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'width\'\':\'\'100px\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'2px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'15px\'\';\'\'margin\'\'-\'\'right\'\':\'\'10px\'\';\'\'}\'\'.\'\'searchArea\'\'input\'\'.\'\'searchBtn\'\'{\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'3px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'center\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'height\'\':\'\'21px\'\';\'\'}\'\'.\'\'searchArea\'\'a\'\':\'\'link\'\',\'\'.\'\'searchArea\'\'a\'\':\'\'visited\'\',\'\'.\'\'secondBar\'\'.\'\'author\'\'a\'\':\'\'link\'\',\'\'.\'\'secondBar\'\'.\'\'author\'\'a\'\':\'\'visited\'\'{\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'searchArea\'\'.\'\'current\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'transform\'\':\'\'uppercase\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgAlbum\'\'{\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'width\'\':\'\'250px\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumTitle\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'10px\'\';\'\'padding\'\'-\'\'right\'\':\'\'50px\'\';\'\'border\'\':\'\'solid\'\'#\'\'475f6f\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'8B8B8B\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'padding\'\'-\'\'top\'\':\'\'15px\'\';\'\'height\'\':\'\'135px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'a\'\'{\'\'height\'\':\'\'135px\'\';\'\'width\'\':\'\'200px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'0px\'\'23px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumDesc\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'black\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'5px\'\'23px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'description\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'40px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'padding\'\':\'\'5px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'fff\'\';\'\'color\'\':\'\'#\'\'222\'\';\'\'}\'\'.\'\'albumDesc\'\'.\'\'description\'\'*\'\'{\'\'margin\'\':\'\'2px\'\'0px\'\';\'\'}\'\'/\'\'*\'\'PAGINATION\'\'STYLES\'\'*\'\'/\'\'.\'\'wgGallery\'\'.\'\'paginationContainer\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\':\'\'black\'\';\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'container\'\'{\'\'clear\'\':\'\'both\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'{\'\'margin\'\':\'\'0px\'\'auto\'\'20px\'\'auto\'\';\'\'display\'\':\'\'table\'\';\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'padding\'\':\'\'0px\'\';\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'li\'\'{\'\'display\'\':\'\'table\'\'-\'\'cell\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'50px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgPicture\'\'a\'\':\'\'link\'\',\'\'.\'\'wgPicture\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'wgPicture\'\'{\'\'width\'\':\'\'250px\'\';\'\'margin\'\':\'\'10px\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'}\'\'.\'\'wgPicture\'\'.\'\'title\'\'{\'\'background\'\':\'\'#\'\'e0e0e0\'\';\'\'display\'\':\'\'block\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'8B8B8B\'\'4px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'padding\'\':\'\'15px\'\'23px\'\'15px\'\'23px\'\';\'\'margin\'\':\'\'0px\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'120px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'pictureDesc\'\'{\'\'padding\'\':\'\'0px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'pictureDesc\'\'.\'\'description\'\'{\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'{\'\'background\'\':\'\'#\'\'e0e0e0\'\';\'\'border\'\':\'\'solid\'\'#\'\'999\'\'1px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'aaa\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'padding\'\':\'\'1px\'\'3px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'.\'\'date\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'.\'\'comments\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'a\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'PHOTO\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Photo\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'wgSnapshot\'\'{\'\'float\'\':\'\'left\'\';\'\'margin\'\':\'\'10px\'\';\'\'max\'\'-\'\'width\'\':\'\'250px\'\';\'\'width\'\':\'\'25\'\'%\'\';\'\'}\'\'.\'\'wgSnapshot\'\'fieldset\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'fefefe\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'padding\'\':\'\'10px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f9f9f9\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgSnapshot\'\'p\'\'{\'\'max\'\'-\'\'width\'\':\'\'230px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'legend\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'max\'\'-\'\'width\'\':\'\'250px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'a\'\'.\'\'thumbnail\'\'img\'\'{\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'.\'\'description\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'border\'\':\'\'solid\'\'#\'\'555555\'\'2px\'\';\'\'padding\'\':\'\'5px\'\';\'\'width\'\':\'\'190px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'fff\'\';\'\'height\'\':\'\'50px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'overflow\'\':\'\'auto\'\';\'\'}\'\'.\'\'wgSnapshot\'\'a\'\'.\'\'fullSize\'\'{\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'a\'\':\'\'link\'\',\'\'.\'\'wgPictureDetails\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'fieldset\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'fefefe\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'padding\'\':\'\'10px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f9f9f9\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'legend\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'rowOne\'\'{\'\'background\'\':\'\'#\'\'EFEFEF\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'rowTwo\'\'{\'\'background\'\':\'\'#\'\'DCDCDC\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'DDDDDD\'\'1px\'\';\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'rowOne\'\'.\'\'label\'\',\'\'.\'\'rowTwo\'\'.\'\'label\'\'{\'\'margin\'\'-\'\'left\'\':\'\'15px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'}\'\'.\'\'rowOne\'\'.\'\'data\'\',\'\'.\'\'rowTwo\'\'.\'\'data\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'a\'\'.\'\'fullSize\'\':\'\'link\'\',\'\'a\'\'.\'\'fullSize\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgComments\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'margin\'\':\'\'10px\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'title\'\'{\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'555555\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'title\'\'a\'\'{\'\'color\'\':\'\'navy\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'comment\'\',\'\'.\'\'wgComments\'\'.\'\'commentAlt\'\'{\'\'position\'\':\'\'relative\'\';\'\'padding\'\':\'\'5px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'comment\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'F7F7F7\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'C9C9C9\'\'1px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'commentAlt\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f0f0f0\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'FBFBFB\'\'1px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'number\'\'{\'\'float\'\':\'\'left\'\';\'\'font\'\'-\'\'size\'\':\'\'30px\'\';\'\'color\'\':\'\'silver\'\';\'\'margin\'\':\'\'5px\'\'10px\'\'5px\'\'5px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'posted\'\'{\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'padding\'\'-\'\'top\'\':\'\'3px\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'color\'\':\'\'gray\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'posted\'\'a\'\'{\'\'color\'\':\'\'navy\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'THUMBNAIL\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Thumbnail\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'thumbView\'\'{\'\'width\'\':\'\'400px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'thumbView\'\'.\'\'thumbnail\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'350px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'thumbView\'\'.\'\'thumbnail\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'width\'\':\'\'350px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'thumb\'\'{\'\'width\'\':\'\'100px\'\';\'\'height\'\':\'\'65px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'thumb\'\'img\'\'{\'\'width\'\':\'\'100px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'{\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'padding\'\':\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'4px\'\';\'\'padding\'\'-\'\'right\'\':\'\'4px\'\';\'\'background\'\'-\'\'color\'\':\'\'silver\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'img\'\'{\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'.\'\'caption\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'SLIDESHOW\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Slideshow\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'wgSlideshow\'\'.\'\'controls\'\'{\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'gallery\'\'-\'\'templates\'\'/\'\'images\'\'/\'\'pagination_bg\'\'.\'\'jpg\'\')\'\';\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'500px\'\';\'\'height\'\':\'\'42px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'}\'\'.\'\'wgSlideshow\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'{\'\'width\'\':\'\'500px\'\';\'\'height\'\':\'\'auto\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'img\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'title\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'white\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'white\'\'1px\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'counter\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'synopsis\'\'{\'\'width\'\':\'\'494px\'\';\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'black\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'SEARCH\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Search\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'#\'\'adminWrapper\'\'{\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'label\'\'{\'\'background\'\':\'\'black\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'adminWrapper\'\'td\'\'.\'\'data\'\'input\'\'{\'\'background\'\':\'\'#\'\'f1f1f1\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'#\'\'adminWrapper\'\'td\'\'.\'\'radio\'\'input\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\':\'\'none\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'forwardButton\'\'{\'\'cursor\'\':\'\'pointer\'\';\'\'float\'\':\'\'rigbt\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'forwardButton\'\':\'\'hover\'\'{\'\'color\'\':\'\'gold\'\';\'\'}','000001000001000013000016'),('kJf77eCr9GAMiEzWrzsBTA','matrix-ie.css','matrix-ie.css matrix-ie.css new matrix matrix ie.css ','new-matrix/matrix-ie.css',1229639255,1229639255,'3','7','12','WebGUI::Asset::Snippet',1,'matrix\'\'-\'\'ie\'\'.\'\'css\'\'matrix\'\'-\'\'ie\'\'.\'\'css\'\'new\'\'matrix\'\'matrix\'\'ie\'\'.\'\'css .\'\'matrixLeft\'\'.\'\'buttons\'\'span\'\',\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'span\'\'{\'\'padding\'\':\'\'0px\'\'0px\'\'0px\'\'0px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\',\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'a\'\'{\'\'top\'\':\'\'-\'\'3px\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'height\'\':\'\'22px\'\';\'\'}\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'padding\'\':\'\'1px\'\'3px\'\';\'\'}','000001000001000019000007'),('4LQT4-bGW4FkiEQLSY5gvQ','show-hide.js','show-hide.js show-hide.js new matrix show hide.js ','new-matrix/show-hide.js',1232400287,1232400287,'3','7','12','WebGUI::Asset::Snippet',1,'show\'\'-\'\'hide\'\'.\'\'js\'\'show\'\'-\'\'hide\'\'.\'\'js\'\'new\'\'matrix\'\'show\'\'hide\'\'.\'\'js function\'\'showHide\'\'(\'\'theLink\'\',\'\'theId\'\')\'\'{\'\'var\'\'theId\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'theId\'\')\'\';\'\'var\'\'theLink\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'theLink\'\')\'\';\'\'if\'\'(\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'=\'\'\'\'\'block\'\'\'\'\')\'\'{\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\'\'\'none\'\'\'\'\';\'\'theLink\'\'.\'\'innerHTML\'\'=\'\'\"\'\'Send\'\'Creator\'\'a\'\'Message\'\'\"\'\';\'\'theLink\'\'.\'\'className\'\'=\'\'\"\'\'showLink\'\'\"\'\'}\'\'else\'\'{\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\'\'\'block\'\'\'\'\';\'\'theLink\'\'.\'\'innerHTML\'\'=\'\'\"\'\'Hide\'\'\"\'\';\'\'theLink\'\'.\'\'className\'\'=\'\'\"\'\'hideLink\'\'\"\'\'}\'\'}','000001000001000019000008'),('alraubvBu-YJJ614jAHD5w','matrix-nav-tmpl','matrix-nav-tmpl matrix-nav-tmpl new matrix matrix nav tmpl ','new-matrix/matrix-nav-tmpl',1232664015,1235706026,'3','7','12','WebGUI::Asset::Template',1,'matrix\'\'-\'\'nav\'\'-\'\'tmpl\'\'matrix\'\'-\'\'nav\'\'-\'\'tmpl\'\'new\'\'matrix\'\'matrix\'\'nav\'\'tmpl Navigation','000001000001000019000009'),('Vch1Ww7G_JpBhOhXX07RDg','matrx-nav','matrx-nav matrix-nav new matrix matrix nav ','new-matrix/matrix-nav',1232664082,1235705952,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'matrx\'\'-\'\'nav\'\'matrix\'\'-\'\'nav\'\'new\'\'matrix\'\'matrix\'\'nav','000001000001000019000010'),('PBtmpl0000000000000063','Default Overview Report','Default Overview Report Default Overview Report root import survey default overview report ','root/import/survey/default_overview_report',1124395696,1233156264,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Overview\'\'Report\'\'Default\'\'Overview\'\'Report\'\'root\'\'import\'\'survey\'\'default\'\'overview\'\'report Survey\'\'/\'\'Overview','000001000001000039000001'),('PBtmpl0000000000000062','Default Gradebook Report','Default Gradebook Report Default Gradebook Report root import survey default gradebook report ','root/import/survey/default_gradebook_report',1124395696,1232981641,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Gradebook\'\'Report\'\'Default\'\'Gradebook\'\'Report\'\'root\'\'import\'\'survey\'\'default\'\'gradebook\'\'report Survey\'\'/\'\'Gradebook','000001000001000039000002'),('HW-sPoDDZR8wBZ0YgFgPtg','images','images images root import account images ','root/import/account/images',1227634350,1227634350,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'account\'\'images','000001000001000001000009'),('hBpisL-_URyZnh9clR5ohA','no_photo.gif','no_photo.gif no_photo.gif root import account images no photo.gif ','root/import/account/images/no_photo.gif',1227634417,1227634417,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo\'\'.\'\'gif\'\'no_photo\'\'.\'\'gif\'\'root\'\'import\'\'account\'\'images\'\'no\'\'photo\'\'.\'\'gif','000001000001000001000009000001'),('FOBV6KkifreXa4GmEAUU4A','no_photo_sm.gif','no_photo_sm.gif no_photo_sm.gif root import account images no photo sm.gif ','root/import/account/images/no_photo_sm.gif',1227634447,1227634447,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo_sm\'\'.\'\'gif\'\'no_photo_sm\'\'.\'\'gif\'\'root\'\'import\'\'account\'\'images\'\'no\'\'photo\'\'sm\'\'.\'\'gif','000001000001000001000009000002'),('_XfvgNH__bY1ykMiKYSobQ','account.css','account.css account.css root import account account.css ','root/import/account/account.css',1233168041,1234924781,'3','7','12','WebGUI::Asset::Snippet',1,'account\'\'.\'\'css\'\'account\'\'.\'\'css\'\'root\'\'import\'\'account\'\'account\'\'.\'\'css /\'\'*\'\'general\'\'*\'\'/\'\'body\'\'{\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'font\'\':\'\'11px\'\'Verdana\'\';\'\'}\'\'a\'\'{\'\'cursor\'\':\'\'pointer\'\';\'\'}\'\'button\'\'{\'\'cursor\'\':\'\'pointer\'\';\'\'}\'\'img\'\'{\'\'border\'\':\'\'none\'\';\'\'}\'\'.\'\'WGbutton\'\'{\'\'float\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'}\'\'.\'\'centered\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGaccount_message\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'BECEF8\'\'1px\'\';\'\'height\'\':\'\'300px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'margin\'\'-\'\'left\'\':\'\'60px\'\';\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'overflow\'\':\'\'-\'\'moz\'\'-\'\'scrollbars\'\'-\'\'vertical\'\';\'\'overflow\'\'-\'\'x\'\':\'\'hidden\'\';\'\'overflow\'\'-\'\'y\'\':\'\'scroll\'\';\'\'padding\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGprofileMember\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'.\'\'WGmember\'\'{\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\':\'\'9px\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGphotostyle\'\'{\'\'border\'\':\'\'solid\'\'#\'\'3e4f77\'\'2px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\'}\'\'#\'\'rightalign\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'/\'\'*\'\'.\'\'WGsend\'\'{\'\'float\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'75px\'\';\'\'}\'\'*\'\'/\'\'/\'\'*\'\'bio\'\',\'\'addtonetwork\'\',\'\'network\'\'*\'\'/\'\'.\'\'WGbordered\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dashed\'\'#\'\'BECEF8\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'.\'\'WGfriendpic\'\'{\'\'border\'\':\'\'solid\'\'#\'\'BECEF8\'\'1px\'\';\'\'}\'\'.\'\'WGinvitemsg\'\'{\'\'width\'\':\'\'600px\'\';\'\'height\'\':\'\'150px\'\';\'\'}\'\'ol\'\'.\'\'WGProfile_interests\'\'{\'\'color\'\':\'\'#\'\'0B2259\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'padding\'\':\'\'5px\'\'5px\'\';\'\'}\'\'ol\'\'.\'\'WGProfile_interests\'\'li\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'ol\'\'.\'\'WGProfile_interests\'\'span\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'WGpBio\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'DDE6FB\'\'1px\'\';\'\'margin\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'}\'\'.\'\'WGpBio\'\'div\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'DDE6FB\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'2px\'\';\'\'}\'\'.\'\'WGprogram\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'/\'\'*\'\'contributions\'\'*\'\'/\'\'.\'\'WGContribCount\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'padding\'\':\'\'3px\'\'}\'\'.\'\'WGContribTitle\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'0B2259\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'3px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'.\'\'WGContribTitleLeft\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'0B2259\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'3px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'.\'\'WGContribEntry\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'WGContribEntryLeft\'\'{\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'/\'\'*\'\'edit\'\'box\'\'*\'\'/\'\'.\'\'WGeditBox\'\'{\'\'/\'\'*\'\'background\'\':\'\'white\'\'url\'\'(\'\'images\'\'/\'\'edit_box_bg\'\'.\'\'jpg\'\')\'\'no\'\'-\'\'repeat\'\'bottom\'\'left\'\';\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'8DABF1\'\'2px\'\';\'\'display\'\':\'\'block\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'left\'\':\'\'100px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'padding\'\':\'\'5px\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'100px\'\';\'\'width\'\':\'\'590px\'\';\'\'z\'\'-\'\'index\'\':\'\'100\'\';\'\'}\'\'.\'\'WGeditBox\'\'input\'\',\'\'.\'\'WGeditBox\'\'select\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'/\'\'*\'\'friends\'\'*\'\'/\'\'.\'\'WGfriends_name\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGfriends_photo\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'10\'\'%\'\';\'\'}\'\'.\'\'WGfriends_photo\'\'img\'\'{\'\'height\'\':\'\'50px\'\';\'\'width\'\':\'\'50px\'\';\'\'}\'\'.\'\'WGfriends_private\'\'{\'\'float\'\':\'\'right\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'width\'\':\'\'50\'\'%\'\';\'\'}\'\'.\'\'WGfriends_ninety\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGfriends_seventy\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'}\'\'.\'\'WGfriends_ten\'\'{\'\'width\'\':\'\'10\'\'%\'\';\'\'}\'\'.\'\'WGfriends_ten\'\'img\'\'{\'\'height\'\':\'\'50px\'\';\'\'width\'\':\'\'50px\'\';\'\'}\'\'.\'\'WGfriends_twenty\'\'{\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGaccepts\'\'{\'\'padding\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'*\'\'/\'\'.\'\'WGProfile_msgcontainer\'\'{\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'WGinbox_count\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'3px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'WGinbox_errors\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'red\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WG_inbox_InviteLabel\'\'{\'\'width\'\':\'\'50px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'.\'\'WG_inbox_InviteLabelView\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'120px\'\';\'\'}\'\'.\'\'WGmsgcontainer\'\'{\'\'padding\'\':\'\'6px\'\';\'\'display\'\':\'\'block\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'6px\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'contacts\'\'*\'\'/\'\'.\'\'WGdatacells\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dashed\'\'#\'\'BECEF8\'\'1px\'\';\'\'}\'\'.\'\'WGinbox_contactsTbl\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'EEF2FD\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'contacts\'\'{\'\'height\'\':\'\'275px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'forms\'\'*\'\'/\'\'.\'\'WGbuttons_left\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'WGbuttons_right\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'WGinbox_from\'\'{\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGinbox_subject\'\'{\'\'width\'\':\'\'530px\'\';\'\'}\'\'.\'\'WGinbox_messageTo\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'BECEF8\'\'1px\'\';\'\'height\'\':\'\'50px\'\';\'\'overflow\'\':\'\'-\'\'moz\'\'-\'\'scrollbars\'\'-\'\'vertical\'\';\'\'overflow\'\'-\'\'x\'\':\'\'hidden\'\';\'\'overflow\'\'-\'\'y\'\':\'\'scroll\'\';\'\'width\'\':\'\'530px\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'pagination\'\'*\'\'/\'\'.\'\'WGinbox_buttons\'\'{\'\'display\'\':\'\'inline\'\';\'\'float\'\':\'\'left\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'}\'\'.\'\'WGinbox_pagination\'\'{\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGinbox_messagerpp\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGmessage\'\'{\'\'display\'\':\'\'inline\'\';\'\'float\'\':\'\'left\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'}\'\'.\'\'WGmessagerpp\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'WG\'\'-\'\'previous\'\'-\'\'next\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'threads\'\'*\'\'/\'\'.\'\'WGevenThread\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e8fb\'\';\'\'border\'\'-\'\'bottom\'\':\'\'1px\'\'solid\'\'#\'\'bfcef9\'\';\'\'padding\'\':\'\'8px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGoddThread\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'eef2fd\'\';\'\'border\'\'-\'\'bottom\'\':\'\'1px\'\'solid\'\'#\'\'bfcef9\'\';\'\'padding\'\':\'\'8px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'/\'\'*\'\'pagination\'\'*\'\'/\'\'.\'\'WGProfile_pagination\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGProfile_messagerpp\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGProfile_paginationLeft\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGProfile_paginationCenter\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'a\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'bfc8dc\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'1px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'d8dee8\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'.\'\'prevNext\'\'{\'\'background\'\'-\'\'color\'\':\'\'transparent\'\';\'\'border\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'.\'\'prevNext\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'transparent\'\';\'\'border\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'.\'\'active\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'d8dee8\'\';\'\'border\'\':\'\'solid\'\'#\'\'bfc8dc\'\'1px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'1px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'img\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'margin\'\'-\'\'top\'\':\'\'2px\'\';\'\'border\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'profile\'\'*\'\'/\'\'.\'\'WGProfile_registration\'\'{\'\'background\'\':\'\'none\'\';\'\'border\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'header\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'818997\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'header\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'help\'\'a\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'inputText\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'right\'\':\'\'1px\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'label\'\'{\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'width\'\':\'\'1\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'labelLeft\'\'{\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'width\'\':\'\'1\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'smallLabel\'\'{\'\'font\'\'-\'\'size\'\':\'\'8px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'smallText\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'.\'\'WGinboxTbl\'\'{\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'4px\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'bar\'\',\'\'.\'\'WGProfile_registration\'\'.\'\'barRight\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\':\'\'10px\'\'0px\'\'10px\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'4px\'\'4px\'\'0px\'\'4px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'bar\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barRight\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'bar\'\'a\'\'{\'\'color\'\':\'\'#\'\'0B2259\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barFive\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'2px\'\';\'\'width\'\':\'\'4\'\'.\'\'3\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barTen\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'7\'\'.\'\'2\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barFifteen\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'15\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barFifty\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'50\'\'%\'\';\'\'}\'\'.\'\'WGbarContainer\'\'{\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'10px\'\'0px\'\'10px\'\'0px\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'/\'\'*\'\'profile\'\'edit\'\'*\'\'/\'\'.\'\'WGfields\'\'{\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'WGfields_left\'\'{\'\'padding\'\':\'\'2px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'15\'\'%\'\';\'\'}\'\'.\'\'WGfields_right\'\'{\'\'display\'\':\'\'inline\'\'float\'\':\'\'right\'\';\'\'padding\'\':\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'80\'\'%\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'WGProfile\'\'{\'\'display\'\':\'\'table\'\';\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'WGProfileFields\'\'{\'\'border\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'margin\'\':\'\'0\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'WGProfileFields\'\'ol\'\'{\'\'display\'\':\'\'inline\'\';\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfileFields\'\'ul\'\'{\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'.\'\'WGProfileFields\'\'ul\'\'li\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'*\'\'display\'\':\'\'inline\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'/\'\'*\'\'profile\'\'view\'\'*\'\'/\'\'.\'\'WGProfile_accepts\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'gray\'\';\'\'padding\'\':\'\'4px\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'WGviewContainer\'\'{\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGinternational\'\'{\'\'background\'\'-\'\'color\'\':\'\'red\'\';\'\'color\'\':\'\'white\'\';\'\'display\'\':\'\'inline\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'4px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGcategoryLabel\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGprivateMessage\'\'{\'\'background\'\'-\'\'color\'\':\'\'gray\'\';\'\'padding\'\':\'\'4px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'.\'\'WGprofileAlert\'\'{\'\'background\'\'-\'\'color\'\':\'\'red\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'4px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'WGprofilePhoto\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'/\'\'*\'\'profile\'\'errors\'\'*\'\'/\'\'#\'\'WGprofileErrors\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'ff0000\'\';\'\'color\'\':\'\'#\'\'ffffff\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGprofilefield_required_off\'\'{\'\'}\'\'.\'\'WGprofilefield_required\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'ffd6bb\'\';\'\'}\'\'.\'\'WGprofilefield_error\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'FF9494\'\';\'\'}\'\'.\'\'WGerrorMsg\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'red\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'/\'\'*\'\'user\'\'*\'\'/\'\'.\'\'WGuserInvite_subject\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'BECEF8\'\'1px\'\';\'\'height\'\':\'\'25px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'width\'\':\'\'500px\'\';\'\'/\'\'*\'\'margin\'\'-\'\'left\'\':\'\'50px\'\';\'\'*\'\'/\'\'/\'\'*\'\'margin\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'*\'\'/\'\'/\'\'*\'\'overflow\'\':\'\'-\'\'moz\'\'-\'\'scrollbars\'\'-\'\'vertical\'\';\'\'overflow\'\'-\'\'x\'\':\'\'hidden\'\';\'\'overflow\'\'-\'\'y\'\':\'\'scroll\'\';\'\'*\'\'/\'\'}\'\'/\'\'*\'\'view\'\'profile\'\'*\'\'/\'\'.\'\'WGprofile_canEdit\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\'-\'\'color\'\':\'\'red\'\';\'\'padding\'\':\'\'4px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'WGprofile_fieldLabel\'\'{\'\'background\'\':\'\'#\'\'DDE6FB\'\';\'\'padding\'\':\'\'2px\'\';\'\'width\'\':\'\'200px\'\';\'\'}\'\'.\'\'WGprofile_fieldData\'\'{\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'.\'\'WGprofile_fieldStatus\'\'{\'\'padding\'\':\'\'4px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\'}\'\'/\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'/\'\'/\'\'*\'\'TABS\'\'*\'\'/\'\'/\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'/\'\'/\'\'*\'\'TABS\'\'-\'\'outer\'\'*\'\'/\'\'.\'\'WGbottombutton\'\'{\'\'float\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'2px\'\';\'\'padding\'\'-\'\'top\'\':\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'WGcontent\'\'{\'\'padding\'\':\'\'10px\'\';\'\'}\'\'.\'\'WGcleartab\'\'{\'\'clear\'\':\'\'both\'\';\'\'height\'\':\'\'0\'\';\'\'}\'\'.\'\'WGsubContent\'\'{\'\'/\'\'*\'\'color\'\'setting\'\'for\'\'border\'\'under\'\'outer\'\'tabs\'\'that\'\'surrounds\'\'inner\'\'tabs\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'6px\'\';\'\'}\'\'.\'\'WGtopbutton\'\'{\'\'float\'\':\'\'right\'\';\'\'clear\'\':\'\'both\'\';\'\'padding\'\'-\'\'right\'\':\'\'2px\'\';\'\'padding\'\'-\'\'top\'\':\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\',\'\'ul\'\'.\'\'WGtopTabs\'\'li\'\'{\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'margin\'\':\'\'10px\'\'0px\'\'0px\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'width\'\':\'\'auto\'\';\'\'Xposition\'\':\'\'relative\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\'li\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\'li\'\'b\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'eef2fd\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'display\'\':\'\'block\'\';\'\'padding\'\':\'\'4px\'\'8px\'\';\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'1px\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\'{\'\'/\'\'*\'\'non\'\'-\'\'selected\'\'tabs\'\'color\'\'settings\'\'*\'\'/\'\'display\'\':\'\'block\'\';\'\'color\'\':\'\'#\'\'9ea0bb\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\':\'\'hover\'\',\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\':\'\'hover\'\'b\'\',\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\'.\'\'selected\'\',\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\'.\'\'selected\'\'b\'\'{\'\'/\'\'*\'\'selected\'\'tab\'\'color\'\'settings\'\'*\'\'/\'\'background\'\'-\'\'color\'\':\'\'#\'\'d8dee8\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'}\'\'/\'\'*\'\'TABS\'\'-\'\'YUI\'\'*\'\'/\'\'.\'\'WGcleardiv\'\'{\'\'clear\'\':\'\'both\'\';\'\'margin\'\':\'\'0px\'\'0px\'\'0px\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'.\'\'WGview\'\'{\'\'border\'\':\'\'none\'\';\'\'font\'\':\'\'bold\'\'10px\'\'Verdana\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'position\'\':\'\'absolute\'\';\'\'right\'\':\'\'4px\'\';\'\'top\'\':\'\'4px\'\';\'\'}\'\'.\'\'WGprofile_displayView\'\'{\'\'-\'\'x\'\'-\'\'system\'\'-\'\'font\'\':\'\'none\'\';\'\'border\'\':\'\'medium\'\'none\'\';\'\'color\'\':\'\'#\'\'0B2258\'\';\'\'display\'\':\'\'inline\'\';\'\'float\'\':\'\'right\'\';\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'size\'\'-\'\'adjust\'\':\'\'none\'\';\'\'font\'\'-\'\'stretch\'\':\'\'normal\'\';\'\'font\'\'-\'\'style\'\':\'\'normal\'\';\'\'font\'\'-\'\'variant\'\':\'\'normal\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'line\'\'-\'\'height\'\':\'\'normal\'\';\'\'padding\'\'-\'\'right\'\':\'\'8px\'\';\'\'padding\'\'-\'\'top\'\':\'\'3px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGprofile_displaySubContent\'\'{\'\'/\'\'*\'\'border\'\'around\'\'friends\'\'tab\'\'content\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'6px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'d8dee8\'\'18px\'\';\'\'}\'\'/\'\'*\'\'Copyright\'\'(\'\'c\'\')\'\'2008\'\',\'\'Yahoo\'\'!\'\'Inc\'\'.\'\'All\'\'rights\'\'reserved\'\'.\'\'Code\'\'licensed\'\'under\'\'the\'\'BSD\'\'License\'\':\'\'http\'\':\'\'/\'\'/\'\'developer\'\'.\'\'yahoo\'\'.\'\'net\'\'/\'\'yui\'\'/\'\'license\'\'.\'\'txt\'\'version\'\':\'\'2\'\'.\'\'6\'\'.\'\'0\'\'*\'\'/\'\'/\'\'*\'\'yui\'\'tabs\'\'color\'\'settings\'\'below\'\'*\'\'/\'\'/\'\'*\'\'.\'\'yui\'\'-\'\'navset\'\'defaults\'\'to\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'/\'\'*\'\'protect\'\'nested\'\'tabviews\'\'from\'\'other\'\'orientations\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'color\'\'between\'\'tab\'\'list\'\'and\'\'content\'\'*\'\'/\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'5px\'\';\'\'Xposition\'\':\'\'relative\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'{\'\'background\'\':\'\'#\'\'ffffff\'\';\'\'/\'\'*\'\'tab\'\'background\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'ffffff\'\';\'\'border\'\'-\'\'width\'\':\'\'0\'\'1px\'\';\'\'color\'\':\'\'#\'\'bfccdd\'\';\'\'position\'\':\'\'relative\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\':\'\'solid\'\'#\'\'eef2fd\'\';\'\'border\'\'-\'\'width\'\':\'\'1px\'\'0\'\'0\'\';\'\'cursor\'\':\'\'hand\'\';\'\'padding\'\':\'\'0\'\'.\'\'25em\'\'.\'\'75em\'\';\'\'left\'\':\'\'0\'\';\'\'right\'\':\'\'0\'\';\'\'bottom\'\':\'\'0\'\';\'\'/\'\'*\'\'protect\'\'from\'\'other\'\'orientations\'\'*\'\'/\'\'top\'\':\'\'-\'\'1px\'\';\'\'/\'\'*\'\'for\'\'1px\'\'rounded\'\'corners\'\'*\'\'/\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\':\'\'focus\'\',\'\'/\'\'*\'\'no\'\'focus\'\'effect\'\'for\'\'selected\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\':\'\'hover\'\'{\'\'/\'\'*\'\'no\'\'hover\'\'effect\'\'for\'\'selected\'\'*\'\'/\'\'background\'\':\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'selected\'\'tab\'\'background\'\'*\'\'/\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\'em\'\'{\'\'border\'\'-\'\'color\'\':\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'selected\'\'tab\'\'border\'\'color\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'focus\'\'{\'\'background\'\':\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'hover\'\'tab\'\'background\'\'*\'\'/\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'outline\'\':\'\'0\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'background\'\':\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'content\'\'background\'\'color\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'content\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'border\'\':\'\'5px\'\'solid\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'content\'\'border\'\'*\'\'/\'\'padding\'\':\'\'0\'\'.\'\'75em\'\'1em\'\';\'\'/\'\'*\'\'content\'\'padding\'\'*\'\'/\'\'}\'\'/\'\'*\'\'left\'\'and\'\'right\'\'orientations\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'5px\'\'0\'\'0\'\';\'\'Xposition\'\':\'\'absolute\'\';\'\'/\'\'*\'\'from\'\'tabview\'\'-\'\'core\'\';\'\'have\'\'to\'\'reiterate\'\'for\'\'skin\'\'-\'\'sam\'\'due\'\'to\'\'pos\'\':\'\'rel\'\'on\'\'skin\'\'-\'\'sam\'\'yui\'\'-\'\'nav\'\'*\'\'/\'\'top\'\':\'\'0\'\';\'\'bottom\'\':\'\'0\'\';\'\'/\'\'*\'\'stretch\'\'to\'\'fill\'\'content\'\'height\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'0\'\'5px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'0\'\'.\'\'3em\'\';\'\'/\'\'*\'\'space\'\'between\'\'tabs\'\'*\'\'/\'\'padding\'\':\'\'0\'\'0\'\'0\'\'1px\'\';\'\'/\'\'*\'\'gecko\'\':\'\'make\'\'room\'\'for\'\'overflow\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'padding\'\':\'\'0\'\'1px\'\'0\'\'0\'\';\'\'/\'\'*\'\'gecko\'\':\'\'make\'\'room\'\'for\'\'overflow\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'0\'\'-\'\'1px\'\'0\'\'.\'\'16em\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'0\'\'0\'\'0\'\'.\'\'16em\'\'-\'\'1px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'{\'\'border\'\'-\'\'width\'\':\'\'1px\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'0\'\'1px\'\';\'\'padding\'\':\'\'0\'\'.\'\'2em\'\'.\'\'75em\'\';\'\'top\'\':\'\'auto\'\';\'\'left\'\':\'\'-\'\'1px\'\';\'\'/\'\'*\'\'for\'\'1px\'\'rounded\'\'corners\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'1px\'\'0\'\'0\'\';\'\'left\'\':\'\'auto\'\';\'\'right\'\':\'\'-\'\'1px\'\';\'\'/\'\'*\'\'for\'\'1px\'\'rounded\'\'corners\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'image\'\':\'\'none\'\';\'\'/\'\'*\'\'no\'\'left\'\'-\'\'right\'\'or\'\'bottom\'\'-\'\'top\'\'gradient\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'border\'\':\'\'1px\'\'solid\'\'#\'\'d8dee8\'\';\'\'/\'\'*\'\'content\'\'border\'\'*\'\'/\'\'}\'\'/\'\'*\'\'bottom\'\'orientation\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'5px\'\'0\'\'0\'\';\'\'/\'\'*\'\'color\'\'between\'\'tab\'\'list\'\'and\'\'content\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'-\'\'1px\'\'0\'\'.\'\'3em\'\'0\'\'0\'\';\'\'/\'\'*\'\'for\'\'overlap\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'padding\'\':\'\'0\'\'0\'\'1px\'\'0\'\';\'\'/\'\'*\'\'gecko\'\':\'\'make\'\'room\'\'for\'\'overflow\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'{\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'1px\'\';\'\'top\'\':\'\'auto\'\';\'\'bottom\'\':\'\'-\'\'1px\'\';\'\'/\'\'*\'\'for\'\'1px\'\'rounded\'\'corners\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'content\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'border\'\':\'\'1px\'\'solid\'\'#\'\'f2f5fa\'\';\'\'/\'\'*\'\'content\'\'border\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'d8dee8\'\';\'\'padding\'\':\'\'10px\'\'5\'\'5\'\'5px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'/\'\'*\'\'yui\'\'tab\'\'placement\'\'settings\'\'below\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'.\'\'3em\'\'0\'\'0\'\';\'\'/\'\'*\'\'space\'\'between\'\'tabs\'\'*\'\'/\'\'padding\'\':\'\'5px\'\'0\'\'0\'\';\'\'/\'\'*\'\'gecko\'\':\'\'make\'\'room\'\'for\'\'overflow\'\'*\'\'/\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'0\'\'0\'\'.\'\'3em\'\'-\'\'1px\'\'0\'\';\'\'/\'\'*\'\'for\'\'overlap\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'.\'\'5em\'\'0\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'0\'\'.\'\'5em\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'content\'\'.\'\'yui\'\'-\'\'hidden\'\'{\'\'display\'\':\'\'none\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'width\'\':\'\'6em\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'width\'\':\'\'auto\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'{\'\'padding\'\':\'\'0\'\'0\'\'0\'\'6em\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'{\'\'padding\'\':\'\'0\'\'6em\'\'0\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'{\'\'padding\'\':\'\'auto\'\';\'\'}\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'list\'\'-\'\'style\'\':\'\'none\'\';\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'li\'\'em\'\'{\'\'font\'\'-\'\'style\'\':\'\'normal\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'{\'\'position\'\':\'\'relative\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'stack\'\';\'\'*\'\'display\'\':\'\'inline\'\';\'\'vertical\'\'-\'\'align\'\':\'\'bottom\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'{\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'vertical\'\'-\'\'align\'\':\'\'bottom\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'text\'\'-\'\'top\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'em\'\'{\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'position\'\':\'\'absolute\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'position\'\':\'\'static\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'left\'\':\'\'0\'\';\'\'right\'\':\'\'auto\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'left\'\':\'\'auto\'\';\'\'right\'\':\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\'em\'\'{\'\'padding\'\':\'\'0\'\'.\'\'35em\'\'0\'\'.\'\'75em\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'5px\'\'0\'\'0\'\';\'\'bottom\'\':\'\'0\'\';\'\'top\'\':\'\'0\'\';\'\'Xposition\'\':\'\'absolute\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'0\'\'5px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'0\'\'.\'\'16em\'\';\'\'padding\'\':\'\'0\'\'0\'\'0\'\'1px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'padding\'\':\'\'0\'\'1px\'\'0\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'{\'\'border\'\'-\'\'width\'\':\'\'1px\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'0\'\'1px\'\';\'\'left\'\':\'\'-\'\'1px\'\';\'\'padding\'\':\'\'0\'\'.\'\'2em\'\'.\'\'75em\'\';\'\'top\'\':\'\'auto\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'1px\'\'0\'\'0\'\';\'\'left\'\':\'\'auto\'\';\'\'right\'\':\'\'-\'\'1px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'image\'\':\'\'none\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'-\'\'1px\'\'0\'\'.\'\'16em\'\'0\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'padding\'\':\'\'0\'\'0\'\'1px\'\'0\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}','000001000001000001000008'),('hkj6WeChxFyqfP85UlRP8w','matrix.css','matrix.css matrix.css new matrix matrix.css ','new-matrix/matrix.css',1232664229,1235708941,'3','7','12','WebGUI::Asset::Snippet',1,'matrix\'\'.\'\'css\'\'matrix\'\'.\'\'css\'\'new\'\'matrix\'\'matrix\'\'.\'\'css .\'\'wg\'\'-\'\'clear\'\'{\'\'display\'\':\'\'inline\'\';\'\'clear\'\':\'\'both\'\';\'\'font\'\'-\'\'size\'\':\'\'0px\'\';\'\'line\'\'-\'\'height\'\':\'\'0px\'\';\'\'}\'\'/\'\'*\'\'COLUMN\'\'STYLES\'\'*\'\'/\'\'#\'\'matrixLeft\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'65\'\'%\'\';\'\'padding\'\':\'\'1\'\'%\'\';\'\'min\'\'-\'\'height\'\':\'\'1\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixRight\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'25\'\'%\'\';\'\'padding\'\':\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'1\'\'%\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'/\'\'*\'\'DROPSHADOW\'\'BUTTONS\'\'*\'\'/\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'span\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'888\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\':\'\'5px\'\'0px\'\'0px\'\'0px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\',\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\'{\'\'border\'\':\'\'solid\'\'#\'\'2f495e\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'padding\'\':\'\'auto\'\'3px\'\';\'\'margin\'\':\'\'0px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'line\'\'-\'\'height\'\':\'\'13px\'\';\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'6px\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'height\'\':\'\'22px\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\'2px\'\'10px\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\':\'\'hover\'\',\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\':\'\'hover\'\'{\'\'border\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'444\'\';\'\'}\'\'/\'\'*\'\'WHITE\'\'AREA\'\'FOR\'\'THE\'\'LISTING\'\'OF\'\'OBJECTS\'\'TO\'\'COMPARE\'\'*\'\'/\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'_height\'\':\'\'300px\'\';\'\'min\'\'-\'\'height\'\':\'\'300px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'margin\'\':\'\'10px\'\'2px\'\'20px\'\'2px\'\';\'\'padding\'\':\'\'auto\'\'10px\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'link\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'color\'\':\'\'#\'\'111\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'GRAY\'\'BAR\'\'THAT\'\'HOLDS\'\'THE\'\'SORT\'\'BUTTONS\'\'*\'\'/\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'.\'\'sortButtons\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'D2D2D2\'\'2px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'/\'\'*\'\'STYLES\'\'TO\'\'OVERRIDE\'\'THE\'\'SORT\'\'BUTTON\'\'CSS\'\'BUILT\'\'INTO\'\'THE\'\'PERL\'\'CODE\'\'*\'\'/\'\'#\'\'sortByViews\'\'-\'\'button\'\',\'\'#\'\'sortByCompares\'\'-\'\'button\'\',\'\'#\'\'sortByUpdated\'\'-\'\'button\'\',\'\'#\'\'sortByClicks\'\'-\'\'button\'\'{\'\'background\'\':\'\'none\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'4px\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\'-\'\'color\'\':\'\'transparent\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'}\'\'#\'\'sortByViews\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByCompares\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByUpdated\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByClicks\'\'-\'\'button\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'/\'\'*\'\'MATRIX\'\'STATISTICS\'\'*\'\'/\'\'#\'\'matrixRight\'\'.\'\'mainTitle\'\'{\'\'font\'\'-\'\'size\'\':\'\'20px\'\';\'\'padding\'\':\'\'5px\'\'10px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'}\'\'#\'\'matrixRight\'\'.\'\'textBox\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'padding\'\':\'\'10px\'\'5px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'{\'\'padding\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'title\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'statistics\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'label\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'100px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'a\'\'{\'\'color\'\':\'\'#\'\'111\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'LINKS\'\'TO\'\'CONTROL\'\'ADMIN\'\'FUNCTIONS\'\'*\'\'/\'\'.\'\'adminLinks\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\':\'\'link\'\',\'\'.\'\'adminLinks\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'link\'\',\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'visited\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'3498d1\'\';\'\'color\'\':\'\'white\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'39a6e5\'\';\'\'}\'\'/\'\'*\'\'STYLE\'\'FOR\'\'THE\'\'DETAILED\'\'LISTING\'\'*\'\'/\'\'#\'\'matrixDetail\'\'{\'\'min\'\'-\'\'width\'\':\'\'1000px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'line\'\'-\'\'height\'\':\'\'11px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'margin\'\'-\'\'left\'\':\'\'10px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'.\'\'screenshot\'\'{\'\'float\'\':\'\'left\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'commentsMail\'\'strong\'\'.\'\'title\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'padding\'\':\'\'2px\'\'10px\'\';\'\'border\'\':\'\'solid\'\'1px\'\'gray\'\';\'\'border\'\'-\'\'bottom\'\'-\'\'color\'\':\'\'silver\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'{\'\'margin\'\':\'\'0px\'\'0px\'\'20px\'\'0px\'\';\'\'border\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomRight\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'.\'\'assetAspectComment\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'padding\'\':\'\'3px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f5f5f5\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'.\'\'assetAspectCommentForm\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'d2d2d2\'\'5px\'\';\'\'padding\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\',\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'{\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'{\'\'display\'\':\'\'block\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'margin\'\':\'\'4px\'\'0px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'strong\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'130px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\'-\'\'right\'\':\'\'5px\'\';\'\'margin\'\'-\'\'right\'\':\'\'5px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'3px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'}\'\'.\'\'showLink\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'showLink\'\':\'\'hover\'\',\'\'.\'\'hideLink\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'555\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'hideLink\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'border\'\'-\'\'bottom\'\'-\'\'style\'\':\'\'none\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'#\'\'matrixMail\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\':\'\'15px\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'0px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'0px\'\';\'\'margin\'\'-\'\'top\'\':\'\'1px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'.\'\'tableData\'\'{\'\'padding\'\':\'\'5px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'input\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'.\'\'formDescription\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'matrixMail\'\'form\'\'*\'\'img\'\'{\'\'margin\'\'-\'\'top\'\':\'\'-\'\'18px\'\';\'\'}\'\'#\'\'matrixMail\'\'#\'\'verify_formId\'\'{\'\'height\'\':\'\'45px\'\';\'\'line\'\'-\'\'height\'\':\'\'45px\'\';\'\'font\'\'-\'\'size\'\':\'\'35px\'\';\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixRatings\'\'{\'\'width\'\':\'\'264px\'\';\'\'position\'\':\'\'relative\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'top\'\':\'\'12px\'\';\'\'}\'\'#\'\'matrixRatings\'\'table\'\'{\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixRatings\'\'td\'\'{\'\'overflow\'\':\'\'hidden\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'97BCD1\'\';\'\'border\'\':\'\'solid\'\'#\'\'4D606B\'\'1px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10x\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'»\'\'\"\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'color\'\':\'\'red\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'#\'\'matrixAttributes\'\'{\'\'float\'\':\'\'left\'\';\'\'_width\'\':\'\'40\'\'%\'\';\'\'min\'\'-\'\'width\'\':\'\'20\'\'%\'\';\'\'max\'\'-\'\'width\'\':\'\'45\'\'%\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'rightDetails\'\'{\'\'float\'\':\'\'left\'\';\'\'_width\'\':\'\'20\'\'%\'\';\'\'min\'\'-\'\'width\'\':\'\'20\'\'%\'\';\'\'max\'\'-\'\'width\'\':\'\'45\'\'%\'\';\'\'}\'\'#\'\'attributes\'\'{\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'margin\'\'-\'\'top\'\':\'\'10px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'padding\'\':\'\'10px\'\';\'\'}\'\'#\'\'attributes\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'attributes\'\'table\'\'*\'\'td\'\'{\'\'padding\'\':\'\'2px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'dt0\'\'-\'\'col\'\'-\'\'value\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'padding\'\':\'\'3px\'\';\'\'white\'\'-\'\'space\'\':\'\'no\'\'-\'\'wrap\'\';\'\'}\'\'/\'\'*\'\'COMPARISON\'\'STYLES\'\'*\'\'/\'\'#\'\'compareList\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'}\'\'#\'\'compareList\'\'table\'\'*\'\'th\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'1px\'\'5px\'\';\'\'}\'\'#\'\'compareList\'\'table\'\'*\'\'td\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'{\'\'color\'\':\'\'#\'\'39A6E5\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'col\'\'-\'\'name\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'{\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'col\'\'-\'\'name\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'b\'\'{\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'style\'\':\'\'normal\'\';\'\'padding\'\'-\'\'right\'\':\'\'25px\'\';\'\'color\'\':\'\'black\'\';\'\'}','000001000001000019000006'),('wrq7hMxb1ewQqZ46xmd8Gg','equal-cols.js','equal-cols.js equal-cols.js matrix equal cols.js ','matrix/equal-cols.js',1235706620,1235706620,'3','7','12','WebGUI::Asset::Snippet',1,'equal\'\'-\'\'cols\'\'.\'\'js\'\'equal\'\'-\'\'cols\'\'.\'\'js\'\'matrix\'\'equal\'\'cols\'\'.\'\'js function\'\'equalCol\'\'(\'\')\'\'{\'\'var\'\'colOne\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'\'\'\'compareForm\'\'\'\'\')\'\';\'\'var\'\'colTwo\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'\'\'\'matrixRight\'\'\'\'\')\'\';\'\'var\'\'colOneH\'\'=\'\'colOne\'\'.\'\'offsetHeight\'\';\'\'var\'\'colTwoH\'\'=\'\'colTwo\'\'.\'\'offsetHeight\'\';\'\'/\'\'/\'\'alert\'\'(\'\'colOneH\'\'+\'\'\"\'\',\'\'\"\'\'+\'\'colTwoH\'\')\'\';\'\'colOne\'\'.\'\'style\'\'.\'\'overflow\'\'=\'\'\"\'\'scroll\'\'\"\'\';\'\'colOne\'\'.\'\'style\'\'.\'\'height\'\'=\'\'(\'\'colTwoH\'\'-\'\'150\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'}','000001000001000050'); +INSERT INTO `assetVersionTag` VALUES ('pbversion0000000000001','Base 7.6.14 Install',1,1236110747,'3',1236110747,'3',0,'','3','',NULL,NULL,NULL,NULL,0); INSERT INTO `authentication` VALUES ('1','LDAP','ldapUrl',NULL),('3','LDAP','ldapUrl',''),('1','LDAP','connectDN',NULL),('3','LDAP','connectDN',''),('1','WebGUI','identifier','No Login'),('3','WebGUI','identifier','RvlMjeFPs2aAhQdo/xt/Kg'),('1','WebGUI','passwordLastUpdated','1078704037'),('1','WebGUI','passwordTimeout','3122064000'),('1','WebGUI','changeUsername','1'),('1','WebGUI','changePassword','1'),('3','WebGUI','passwordLastUpdated','1078704037'),('3','WebGUI','passwordTimeout','3122064000'),('3','WebGUI','changeUsername','1'),('3','WebGUI','changePassword','1'); INSERT INTO `databaseLink` VALUES ('0',NULL,NULL,NULL,NULL,NULL,1,''); INSERT INTO `groupGroupings` VALUES ('4','12'),('6','12'),('8','12'),('11','12'),('3','2'),('3','4'),('3','6'),('3','7'),('3','8'),('3','13'),('3','11'),('3','12'),('3','14'),('3','pbgroup000000000000015'),('3','pbgroup000000000000016'),('3','pbgroup000000000000017'),('3','1'); @@ -2606,14 +2520,14 @@ INSERT INTO `imagePaletteColors` VALUES ('defaultPalette','UVL-iDSq7VTks3RCH2FEW INSERT INTO `ldapLink` VALUES ('1uBbhUm686mkFZ1ghv7Lag','Default LDAP Connection','ldap://ldap.mycompany.com:389/o=MyCompany','','','cn','shortname','LDAP Shortname','LDAP Password','0','Welcome to our site.','PBtmpl0000000000000004','PBtmpl0000000000000005','PBtmpl0000000000000006',NULL); INSERT INTO `paymentGateway` VALUES ('gzUxkEZJxREF9JpylOg2zw','WebGUI::Shop::PayDriver::Cash','{\"receiptEmailTemplateId\":\"bPz1yk6Y9uwMDMBcmMsSCg\",\"saleNotificationGroupId\":3,\"groupToUse\":7,\"label\":\"Cash\",\"enabled\":1}'),('BaSs55o1bnOlAj4F0hHYag','WebGUI::Shop::PayDriver::ITransact','{\"receiptEmailTemplateId\":\"bPz1yk6Y9uwMDMBcmMsSCg\",\"saleNotificationGroupId\":3,\"credentialsTemplateId\":\"itransact_credentials1\",\"groupToUse\":7,\"label\":\"ITransact\",\"enabled\":1}'); INSERT INTO `replacements` VALUES ('1','[quote]','
'),('2','[/quote]','
'),('3','[image]',''),('5','shit','crap'),('6','fuck','farg'),('7','asshole','icehole'),('8','nigger','guy'),('9','[b]',''),('10','[/b]',''),('11','[i]',''),('12','[/i]',''); -INSERT INTO `settings` VALUES ('maxAttachmentSize','100000'),('sessionTimeout','7200'),('smtpServer','localhost'),('companyEmail','info@mycompany.com'),('companyName','My Company'),('companyURL','http://www.mycompany.com'),('authMethod','WebGUI'),('anonymousRegistration','0'),('notFoundPage','68sKwDgf9cGH58-NZcU4lg'),('webguiRecoverPasswordEmail','Someone (probably you) requested your account information be sent. Your password has been reset. The following represents your new account information:'),('profileName','1'),('profileExtraContact','1'),('profileMisc','1'),('profileHome','0'),('profileWork','0'),('preventProxyCache','0'),('thumbnailSize','50'),('textBoxSize','30'),('defaultPage','68sKwDgf9cGH58-NZcU4lg'),('defaultVersionTagWorkflow','pbworkflow000000000003'),('useKarma','0'),('karmaPerLogin','1'),('runOnRegistration',''),('maxImageSize','100000'),('showDebug','0'),('richEditor','PBrichedit000000000001'),('selfDeactivation','1'),('snippetsPreviewLength','30'),('mailFooter','^c;\n^e;\n^u;\n'),('webguiSendWelcomeMessage','0'),('webguiWelcomeMessage','Welcome to our site.'),('encryptLogin','0'),('hostToUse','HTTP_HOST'),('webguiExpirePasswordOnCreation','0'),('webguiPasswordLength','0'),('webguiPasswordRecovery','0'),('webguiPasswordTimeout','3122064000'),('commerceCheckoutCanceledTemplateId','PBtmpl0000000000000015'),('webguiChangePassword','1'),('webguiChangeUsername','1'),('metaDataEnabled','0'),('passiveProfilingEnabled','0'),('urlExtension',''),('commerceConfirmCheckoutTemplateId','PBtmpl0000000000000016'),('commercePaymentPlugin','PayFlowPro'),('commerceSelectPaymentGatewayTemplateId','PBtmpl0000000000000017'),('AdminConsoleTemplate','PBtmpl0000000000000001'),('userFunctionStyleId','stevestyle000000000003'),('webguiValidateEmail','0'),('webguiUseCaptcha','1'),('webguiAccountTemplate','PBtmpl0000000000000010'),('webguiCreateAccountTemplate','PBtmpl0000000000000011'),('webguiExpiredPasswordTemplate','PBtmpl0000000000000012'),('webguiLoginTemplate','PBtmpl0000000000000013'),('webguiPasswordRecoveryTemplate','PBtmpl0000000000000014'),('ldapConnection','1uBbhUm686mkFZ1ghv7Lag'),('commerceSelectShippingMethodTemplateId','PBtmplCSSM000000000001'),('commerceViewShoppingCartTemplateId','PBtmplVSC0000000000001'),('commerceSendDailyReportTo',''),('debugIp',''),('showPerformanceIndicators','0'),('mailReturnPath',NULL),('commercePurchaseHistoryTemplateId','PBtmpl0000000000000019'),('webguiNonWordCharacters','0'),('webguiRequiredMixedCase','0'),('webguiRequiredDigits','0'),('automaticLDAPRegistration','0'),('commerceEnableSalesTax','0'),('trashWorkflow',NULL),('purgeWorkflow',NULL),('changeUrlWorkflow',NULL),('webguiPasswordRecoveryRequireUsername','1'),('groupIdCashier','3'),('skipCommitComments','1'),('groupIdAdminCache','3'),('groupIdAdminSpectre','3'),('groupIdAdminAdSpace','3'),('groupIdAdminWorkflow','pbgroup000000000000015'),('groupIdAdminGroupAdmin','11'),('groupIdAdminProfileSettings','3'),('groupIdAdminDatabaseLink','3'),('groupIdAdminActiveSessions','3'),('groupIdAdminLDAPLink','3'),('groupIdAdminStatistics','3'),('groupIdAdminHelp','7'),('groupIdAdminCommerce','3'),('groupIdAdminWorkflowRun','3'),('groupIdAdminUserAdd','11'),('groupIdAdminUser','3'),('groupIdAdminVersionTag','12'),('groupIdAdminGraphics','3'),('groupIdAdminGroup','3'),('groupIdAdminCron','3'),('groupIdAdminLoginHistory','3'),('groupIdAdminReplacements','3'),('runOnAdminCreateUser',''),('runOnAdminUpdateUser',''),('shopCartTemplateId','aIpCmr9Hi__vgdZnDTz1jw'),('shopAddressBookTemplateId','3womoo7Teyy2YKFa25-MZg'),('shopAddressTemplateId','XNd7a_g_cTvJVYrVHcx2Mw'),('shopMyPurchasesTemplateId','2gtFt7c0qAFNU3BG_uvNvg'),('shopMyPurchasesDetailTemplateId','g8W53Pd71uHB9pxaXhWf_A'),('showMessageOnLoginTimes','0'),('showMessageOnLogin','0'),('showMessageOnLoginBody',''),('versionTagMode','autoCommit'),('profileStyleTemplateId',''),('profileLayoutTemplateId','FJbUTvZ2nUTn65LpW6gjsA'),('profileEditTemplateId','75CmQgpcCSkdsL-oawdn3Q'),('inboxStyleTemplateId',''),('inboxViewTemplateId','c8xrwVuu5QE0XtF9DiVzLw'),('inboxViewMessageTemplateId','0n4HtbXaWa_XJHkFjetnLQ'),('inboxSendMessageTemplateId','6uQEULvXFgCYlRWnYzZsuA'),('inboxErrorTemplateId','ErEzulFiEKDkaCDVmxUavw'),('inboxMessageConfirmationTemplateId','DUoxlTBXhVS-Zl3CFDpt9g'),('inboxManageInvitationsTemplateId','1Q4Je3hKCJzeo0ZBB5YB8g'),('inboxViewInvitationTemplateId','VBkY05f-E3WJS50WpdKd1Q'),('inboxInvitationConfirmTemplateId','5A8Hd9zXvByTDy4x-H28qw'),('inboxInviteUserEnabled','0'),('inboxInviteUserRestrictSubject','0'),('inboxInviteUserSubject','^International(invite subject,Account_Inbox,^u;);'),('inboxInviteUserRestrictMessage','0'),('inboxInviteUserMessage','^International(invite message,Account_Inbox);'),('inboxInviteUserMessageTemplateId','XgcsoDrbC0duVla7N7JAdw'),('inboxInviteUserTemplateId','cR0UFm7I1qUI2Wbpj--08Q'),('inboxInviteUserConfirmTemplateId','SVIhz68689hwUGgcDM-gWw'),('friendsStyleTemplateId',''),('friendsViewTemplateId','1Yn_zE_dSiNuaBGNLPbxtw'),('friendsEditTemplateId','AZFU33p0jpPJ-E6qLSWZng'),('friendsSendRequestTemplateId','AGJBGviWGAwjnwziiPjvDg'),('friendsErrorTemplateId','7Ijdd8SW32lVgg2H8R-Aqw'),('friendsConfirmTemplateId','K8F0j_cq_jgo8dvWY_26Ag'),('friendsRemoveConfirmTemplateId','G5V6neXIDiFXN05oL-U3AQ'),('userAccountStyleTemplateId',''),('userAccountLayoutTemplateId','9ThW278DWLV0-Svf68ljFQ'),('shopStyleTemplateId',''),('shopLayoutTemplateId','aUDsJ-vB9RgP-AYvPOy8FQ'),('contribStyleTemplateId',''),('contribLayoutTemplateId','b4n3VyUIsAHyIvT-W-jziA'),('contribViewTemplateId','1IzRpX0tgW7iuCfaU2Kk0A'),('profileViewTemplateId','2CS-BErrjMmESOtGT90qOg'),('profileErrorTemplateId','MBmWlA_YEA2I6D29OMGtRg'),('inboxLayoutTemplateId','gfZOwaTWYjbSoVaQtHBBEw'),('friendsLayoutTemplateId','zrNpGbT3odfIkg6nFSUy8Q'),('specialState','init'),('inboxRichEditId','PBrichedit000000000001'); +INSERT INTO `settings` VALUES ('maxAttachmentSize','100000'),('sessionTimeout','7200'),('smtpServer','localhost'),('companyEmail','info@mycompany.com'),('companyName','My Company'),('companyURL','http://www.mycompany.com'),('authMethod','WebGUI'),('anonymousRegistration','0'),('notFoundPage','68sKwDgf9cGH58-NZcU4lg'),('webguiRecoverPasswordEmail','Someone (probably you) requested your account information be sent. Your password has been reset. The following represents your new account information:'),('profileName','1'),('profileExtraContact','1'),('profileMisc','1'),('profileHome','0'),('profileWork','0'),('preventProxyCache','0'),('thumbnailSize','50'),('textBoxSize','30'),('defaultPage','68sKwDgf9cGH58-NZcU4lg'),('defaultVersionTagWorkflow','pbworkflow000000000003'),('useKarma','0'),('karmaPerLogin','1'),('runOnRegistration',''),('maxImageSize','100000'),('showDebug','0'),('richEditor','PBrichedit000000000001'),('selfDeactivation','1'),('snippetsPreviewLength','30'),('mailFooter','^c;\n^e;\n^u;\n'),('webguiSendWelcomeMessage','0'),('webguiWelcomeMessage','Welcome to our site.'),('encryptLogin','0'),('hostToUse','HTTP_HOST'),('webguiExpirePasswordOnCreation','0'),('webguiPasswordLength','0'),('webguiPasswordRecovery','0'),('webguiPasswordTimeout','3122064000'),('commerceCheckoutCanceledTemplateId','PBtmpl0000000000000015'),('webguiChangePassword','1'),('webguiChangeUsername','1'),('metaDataEnabled','0'),('passiveProfilingEnabled','0'),('urlExtension',''),('commerceConfirmCheckoutTemplateId','PBtmpl0000000000000016'),('commercePaymentPlugin','PayFlowPro'),('commerceSelectPaymentGatewayTemplateId','PBtmpl0000000000000017'),('AdminConsoleTemplate','PBtmpl0000000000000001'),('userFunctionStyleId','stevestyle000000000003'),('webguiValidateEmail','0'),('webguiUseCaptcha','1'),('webguiAccountTemplate','PBtmpl0000000000000010'),('webguiCreateAccountTemplate','PBtmpl0000000000000011'),('webguiExpiredPasswordTemplate','PBtmpl0000000000000012'),('webguiLoginTemplate','PBtmpl0000000000000013'),('webguiPasswordRecoveryTemplate','PBtmpl0000000000000014'),('ldapConnection','1uBbhUm686mkFZ1ghv7Lag'),('commerceSelectShippingMethodTemplateId','PBtmplCSSM000000000001'),('commerceViewShoppingCartTemplateId','PBtmplVSC0000000000001'),('commerceSendDailyReportTo',''),('debugIp',''),('showPerformanceIndicators','0'),('mailReturnPath',NULL),('commercePurchaseHistoryTemplateId','PBtmpl0000000000000019'),('webguiNonWordCharacters','0'),('webguiRequiredMixedCase','0'),('webguiRequiredDigits','0'),('automaticLDAPRegistration','0'),('commerceEnableSalesTax','0'),('trashWorkflow',NULL),('purgeWorkflow',NULL),('changeUrlWorkflow',NULL),('webguiPasswordRecoveryRequireUsername','1'),('groupIdCashier','3'),('skipCommitComments','1'),('groupIdAdminCache','3'),('groupIdAdminSpectre','3'),('groupIdAdminAdSpace','3'),('groupIdAdminWorkflow','pbgroup000000000000015'),('groupIdAdminGroupAdmin','11'),('groupIdAdminProfileSettings','3'),('groupIdAdminDatabaseLink','3'),('groupIdAdminActiveSessions','3'),('groupIdAdminLDAPLink','3'),('groupIdAdminStatistics','3'),('groupIdAdminHelp','7'),('groupIdAdminCommerce','3'),('groupIdAdminWorkflowRun','3'),('groupIdAdminUserAdd','11'),('groupIdAdminUser','3'),('groupIdAdminVersionTag','12'),('groupIdAdminGraphics','3'),('groupIdAdminGroup','3'),('groupIdAdminCron','3'),('groupIdAdminLoginHistory','3'),('groupIdAdminReplacements','3'),('runOnAdminCreateUser',''),('runOnAdminUpdateUser',''),('shopCartTemplateId','aIpCmr9Hi__vgdZnDTz1jw'),('shopAddressBookTemplateId','3womoo7Teyy2YKFa25-MZg'),('shopAddressTemplateId','XNd7a_g_cTvJVYrVHcx2Mw'),('shopMyPurchasesTemplateId','2gtFt7c0qAFNU3BG_uvNvg'),('shopMyPurchasesDetailTemplateId','g8W53Pd71uHB9pxaXhWf_A'),('showMessageOnLoginTimes','0'),('showMessageOnLogin','0'),('showMessageOnLoginBody',''),('versionTagMode','autoCommit'),('profileStyleTemplateId',''),('profileLayoutTemplateId','FJbUTvZ2nUTn65LpW6gjsA'),('profileEditTemplateId','75CmQgpcCSkdsL-oawdn3Q'),('inboxStyleTemplateId',''),('inboxViewTemplateId','c8xrwVuu5QE0XtF9DiVzLw'),('inboxViewMessageTemplateId','0n4HtbXaWa_XJHkFjetnLQ'),('inboxSendMessageTemplateId','6uQEULvXFgCYlRWnYzZsuA'),('inboxErrorTemplateId','ErEzulFiEKDkaCDVmxUavw'),('inboxMessageConfirmationTemplateId','DUoxlTBXhVS-Zl3CFDpt9g'),('inboxManageInvitationsTemplateId','1Q4Je3hKCJzeo0ZBB5YB8g'),('inboxViewInvitationTemplateId','VBkY05f-E3WJS50WpdKd1Q'),('inboxInvitationConfirmTemplateId','5A8Hd9zXvByTDy4x-H28qw'),('inboxInviteUserEnabled','0'),('inboxInviteUserRestrictSubject','0'),('inboxInviteUserSubject','^International(invite subject,Account_Inbox,^u;);'),('inboxInviteUserRestrictMessage','0'),('inboxInviteUserMessage','^International(invite message,Account_Inbox);'),('inboxInviteUserMessageTemplateId','XgcsoDrbC0duVla7N7JAdw'),('inboxInviteUserTemplateId','cR0UFm7I1qUI2Wbpj--08Q'),('inboxInviteUserConfirmTemplateId','SVIhz68689hwUGgcDM-gWw'),('friendsStyleTemplateId',''),('friendsViewTemplateId','1Yn_zE_dSiNuaBGNLPbxtw'),('friendsEditTemplateId','AZFU33p0jpPJ-E6qLSWZng'),('friendsSendRequestTemplateId','AGJBGviWGAwjnwziiPjvDg'),('friendsErrorTemplateId','7Ijdd8SW32lVgg2H8R-Aqw'),('friendsConfirmTemplateId','K8F0j_cq_jgo8dvWY_26Ag'),('friendsRemoveConfirmTemplateId','G5V6neXIDiFXN05oL-U3AQ'),('userAccountStyleTemplateId',''),('userAccountLayoutTemplateId','9ThW278DWLV0-Svf68ljFQ'),('shopStyleTemplateId',''),('shopLayoutTemplateId','aUDsJ-vB9RgP-AYvPOy8FQ'),('contribStyleTemplateId',''),('contribLayoutTemplateId','b4n3VyUIsAHyIvT-W-jziA'),('contribViewTemplateId','1IzRpX0tgW7iuCfaU2Kk0A'),('profileViewTemplateId','2CS-BErrjMmESOtGT90qOg'),('profileErrorTemplateId','MBmWlA_YEA2I6D29OMGtRg'),('inboxLayoutTemplateId','gfZOwaTWYjbSoVaQtHBBEw'),('friendsLayoutTemplateId','zrNpGbT3odfIkg6nFSUy8Q'),('inboxRichEditId','PBrichedit000000000001'),('useRecaptcha',NULL),('recaptchaPublicKey',NULL),('recaptchaPrivateKey',NULL),('specialState','init'); INSERT INTO `shipper` VALUES ('defaultfreeshipping000','WebGUI::Shop::ShipDriver::FlatRate','{\"label\":\"Free Shipping\",\"enabled\":1}'); -INSERT INTO `snippet` VALUES ('SynConXSLT000000000001','\n\n\n \n \n \n \n \n \nYou\'re viewing an RSS version 0.9 feed. Please use an RSS feed reader to view this content as intended.\n
\n
\n \n
\n
\n \n
\n
    \n \n
\n
\n
\n \n
  • \n \n \n \n
  • \n
    \n
    ',0,'application/xml',1124395707,3600),('SynConXSLT000000000002','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 0.91 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n
    \n \n\n
    \n
  • \n
    \n
    ',0,'application/xml',1124395707,3600),('SynConXSLT000000000003','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 1.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n (\n )\n \n\n
    \n \n
    \n
  • \n
    \n
    \n',0,'application/xml',1124395707,3600),('SynConXSLT000000000004','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 2.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n ()\n \n\n
    \n \n
    \n
  • \n
    \n
    ',0,'application/xml',1124395707,3600),('7.0-style0000000000003','body, html\n{\n text-align:center;\n margin:0px;\n height:100%; \n background-color:#494949;\n}\n\n#main\n{\n width:800px;\n background: url(\'^FileUrl(style1/main_bg.jpg);\') repeat-y;\n height:100%;\n margin-left:auto;\n margin-right:auto;\n margin-top:0px;\n margin-bottom:0px;\n position:relative;\n}\nbody > #main\n{\n height:auto;\n min-height:100%;\n}\n\n#main #mainHeader\n{\n width:800px;\n height:133px;\n background: url(\'^FileUrl(style1/header.jpg);\') top left no-repeat;\n margin-bottom:0px;\n position:relative;\n}\n#main #mainHeader #title\n{\n position:absolute;\n top:23px;\n left:145px;\n font-size:32pt;\n font-family:arial;\n color:white;\n font-weight:bold;\n}\n#main #mainHeader #title a {\n color:white;\n text-decoration:none;\n}\n\n#main #mainContent\n{\n background: url(\'^FileUrl(style1/orange_left01.jpg);\') left top no-repeat;\n width:100%;\n height:100%; \n margin-top:0px;\n text-align:left;\n border:solid red 0px;\n}\n#main > #mainContent\n{\n margin-top:0px;\n min-height:500px;\n}\n#main > #mainContent > p {\n margin-top:0px;\n}\n#main #mainContent #mainText a:link {\n color:#FF7F23;\n}\n#main #mainContent #mainText a:visited {\n color:#D25900;\n}\n\n/* LEVEL 1 AND 2 NAVIGATION */\n#main .mainNav_1, #main .mainNav_2 {\n border-bottom:dashed #DADADA 1px; \n width:621px;\n height:25px;\n text-align:left;\n position:relative;\n margin-left:137px; \n clear:both;\n}\n#main .mainNav_1 a:link, #main .mainNav_1 a:visited, #main .mainNav_2 a:link, #main .mainNav_2 a:visited {\n color:white;\n text-decoration:none;\n top:5px;\n position:relative;\n -moz-box-sizing:border-box;\n}\n#main .mainNav_1 a:hover,#main .mainNav_2 a:hover {\n color:black;\n}\n#main .mainNav_1 div .left, #main .mainNav_2 div .left {\n width:12px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .left {\n background: url(\'^FileUrl(style1/nav2_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div .center, #main .mainNav_2 div .center { \n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_center.jpg);\') repeat-x top left;\n color:white;\n font-family:arial, verdana;\n font-size:8pt;\n}\n#main .mainNav_2 div .center {\n background: url(\'^FileUrl(style1/nav2_off_center.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div .right, #main .mainNav_2 div .right {\n width:10px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .right {\n background: url(\'^FileUrl(style1/nav2_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .left {\n background: url(\'^FileUrl(style1/nav1_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .center {\n background: url(\'^FileUrl(style1/nav1_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div.navOn .right {\n background: url(\'^FileUrl(style1/nav1_on_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .left {\n background: url(\'^FileUrl(style1/nav2_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .center {\n background: url(\'^FileUrl(style1/nav2_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_2 div.navOn .right {\n background: url(\'^FileUrl(style1/nav2_on_right.jpg);\') no-repeat top left;\n} \n#main .mainNav_1 div.navOn a:link, #main .mainNav_1 div.navOn a:visited, #main .mainNav_2 div.navOn a:link, #main .mainNav_2 div.navOn a:visited {\n color:black;\n}\n/* ENDOF LEVEL 1 AND 2 NAVIGATION */\n\n#main #crumbTrail {\n margin-left:177px;\n margin-bottom:0px;\n color:gray;\n font-size:8pt;\n font-weight:bold;\n}\n#main #crumbTrail a.crumbTrail:visited, #main #crumbTrail a.crumbTrail:link {\n color:silver;\n font-size:8pt; \n font-family:arial;\n text-decoration:none;\n font-weight:normal;\n}\n#main #crumbTrail a.crumbTrail:hover {\n color:gray;\n}\n\n#main #mainText\n{\n padding-left:150px;\n font-family:verdana;\n font-size:9pt;\n width:600px;\n margin-top:0px;\n}\n\n#main #gui\n{\n bottom:0px;\n left:0px;\n position:absolute;\n width:135px;\n font-size:8pt;\n color:black;\n font-family:arial;\n text-align:right;\n}\n#main #gui .loginBox {\n padding-right:12px;\n -moz-box-sizing:border-box;\n width:100px; \n float:right;\n margin-bottom:10px;\n}\n#main #gui .loginBox .loginBoxField {\n width:75px;\n}\n#main #gui .loginBox .loginBoxButton {\n background-color:#D65501;\n color:white;\n border:solid white 2px;\n margin-top:4px;\n font-variant:small-caps;\n}\n#main #gui a\n{\n color:white; \n}\n#copyright {\n color:#fff;\n position:absolute;\n top:110px;\n right:40px;\n font-family:verdana;\n font-size:8pt;\n font-weight:bold;\n background-color:#2D2D2D;\n opacity:0.4;\n -moz-opacity:0.4;\n -khtml-opacity:0.4; \n padding:2px;\n}\n* html #copyright {\n background: transparent;\n}\n',1,'text/css',1147642492,3600),('7.0-style0000000000033','body, html { \n height:100%; \n}\nbody {\n background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg);\') repeat-y right; \n margin:0px;\n}\n.rightColumn {\n width:20%;\n height:100%;\n background: #eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg);\') repeat-y right; \n text-align:center; \n}\n.rightColumn #pb_wg_bg {\n background: url(\'^FileUrl(style2/pb_wg_bg.jpg);\') repeat-x;\n width:100%;\n text-align:left; \n}\n.rightColumn #pb_wg {\n background: url(\'^FileUrl(style2/pb_wg.jpg);\') left no-repeat;\n height:53px;\n}\n.leftColumn { \n width:80%; \n background: white url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; \n} \n.leftColumn #header {\n width:100%;\n background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg);\') right no-repeat; \n height:86px;\n position:relative;\n}\n.leftColumn #header #title, .leftColumn #header #title_bg {\n color:white;\n font-size:36pt;\n font-weight:bold;\n font-family:arial;\n font-variant:small-caps;\n letter-spacing:12px;\n top:15px;\n left:5px;\n position:absolute;\n z-index:10;\n}\n.leftColumn #header #title a {\n color:white;\n text-decoration:none;\n}\n.leftColumn #header #title_bg {\n color:black;\n z-index:5;\n top:17px;\n left:7px;\n}\n.leftColumn #context {\n /*background: #fff url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; */\n width:95%;\n font-family:verdana;\n font-size:9pt;\n color:#242424;\n -moz-box-sizing:border-box; \n position:relative;\n padding-left:1%;\n padding-right:1%;\n padding-bottom:15px;\n}\n.leftColumn #context a {\n color:#7C9AB0;\n font-weight:bold;\n}\n.leftColumn #context a:hover {\n text-decoration:none;\n}\n.leftColumn #pageTitleBG {\n background: url(\'^FileUrl(style2/page_title_bg.jpg);\') repeat-x; \n width:100%;\n}\n.leftColumn #pageTitleBG #pageTitle {\n background: url(\'^FileUrl(style2/page_title.jpg);\') right no-repeat; \n width:100%;\n height:50px;\n} \n.leftColumn #pageTitleBG #pageTitle h2 {\n font-size:14pt;\n color:#696969;\n font-family:arial;\n font-weight:normal;\n margin:0px;\n padding-top:2px;\n padding-left:25px;\n letter-spacing:3px;\n}\n.rightColumn #nav {\n width:85%;\n background: #b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg);\') repeat-x top; \n border-right:solid #848484 1px;\n margin-left:auto;\n margin-right:auto;\n text-align:left;\n padding-left:3px;\n padding-top:7px;\n padding-bottom:7px;\n}\n.rightColumn #nav a {\n color:white;\n font-size:8pt;\n font-weight:bold;\n text-decoration:none;\n font-family:arial;\n line-height:8pt; \n} \n.rightColumn #nav .selectedMenuItem {\n color:yellow;\n}\n#loginStyles {\n font-size:8pt;\n font-family:arial;\n padding-bottom:25px;\n}\n#loginStyles a {\n color:#89ACCF;\n font-weight:bold; \n border-bottom:solid transparent 2px;\n text-decoration:none;\n}\n#loginStyles a:hover {\n border-bottom:dotted #B2C9D9 2px;\n} \n\n.copyright {\n border-top:solid silver 3px;\n background-color:gray;\n font-family:arial;\n font-size:9pt;\n color:silver; \n text-align:center;\n}\n',0,'text/css',1147642500,3600),('pbrobot000000000000001','User-agent: googlebot\nDisallow: *?op=displayLogin\nDisallow: *?op=makePrintable\n',0,'text/plain',1147642511,3600),('MBZK_LPVzqhb4TV4mMRTJg','input.captionEnter {\r\n margin-left: -5px;\r\n width: 92px;\r\n}',0,'text/css',1197330678,3600),('3qiVYhNTXMVC5hfsumVHgg','var BrowserDetect = {\r\n init: function () {\r\n this.browser = this.searchString(this.dataBrowser) || \"An unknown browser\";\r\n this.version = this.searchVersion(navigator.userAgent)\r\n || this.searchVersion(navigator.appVersion)\r\n || \"an unknown version\";\r\n this.OS = this.searchString(this.dataOS) || \"an unknown OS\";\r\n },\r\n searchString: function (data) {\r\n for (var i=0;i= items.length ) {\r\n showIndex = 0;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex >= items.length ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n if ( items[ hideIndex ] )\r\n items[ hideIndex ].style.display = \"none\";\r\n if ( items[ showIndex ] ) {\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n }\r\n};\r\n\r\n/**\r\n showPrevious ( )\r\n Show the previous slide\r\n*/\r\nWebGUI.Slideshow.prototype.showPrevious\r\n= function () {\r\n var items = this.getSlideshowItems();\r\n \r\n var hideIndex = this.currentIndex;\r\n var showIndex = this.currentIndex - 1;\r\n\r\n // Wrap around\r\n if ( this.wrap && showIndex < 0 ) {\r\n showIndex = items.length - 1;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex < 0 ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n items[ hideIndex ].style.display = \"none\";\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n};\r\n\r\n/**\r\n togglePlay ( )\r\n If it\'s paused, play it. If it\'s playing, pause it.\r\n Return true if the slideshow is now playing.\r\n*/\r\nWebGUI.Slideshow.prototype.togglePlay\r\n= function () {\r\n if ( this.isPlaying == false ) {\r\n this.play();\r\n return true;\r\n }\r\n else {\r\n this.pause();\r\n }\r\n};\r\n\r\n/**\r\n updatePlayPauseButton ( )\r\n Update the Play/Pause button to have the correct image\r\n*/\r\nWebGUI.Slideshow.prototype.updatePlayPauseButton\r\n= function () {\r\n if ( this.playPauseButtonId ) {\r\n if ( this.isPlaying && this.playImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.pauseImageSrc;\r\n }\r\n else if ( this.pauseImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.playImageSrc;\r\n }\r\n }\r\n};',0,'text/javascript',1218582812,3600),('1XOJDcg_ITRYwVM-QnIcPw',' .wgShelf {\r\n font-size:12px;\r\n font-family:arial, verdana; \r\n margin:15px 0px;\r\n }\r\n .wgShelf h2 {\r\n background: black;\r\n padding:5px;\r\n padding-left:15px;\r\n line-height:32px;\r\n color:white;\r\n margin:0px;\r\n height:32px;\r\n }\r\n .wgShelf .wgShelves {\r\n background: #F1F1F1;\r\n height:29px;\r\n padding:3px;\r\n line-height:29px;\r\n padding-left:30px;\r\n }\r\n .wgShelf .product {\r\n margin:15px;\r\n margin-left:0px; \r\n text-align:left;\r\n background-color:#f1f1f1;\r\n border:solid #e1e1e1 1px;\r\n width: 200px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n }\r\n .wgShelf .product .thumbnail {\r\n display:block;\r\n text-align:left;\r\n margin:3px;\r\n float:left;\r\n }\r\n .wgShelf .product .link {\r\n background: #e1e1e1;\r\n height:30px;\r\n padding:3px;\r\n line-height:24px;\r\n margin-bottom:5px; \r\n text-align:left;\r\n display:block;\r\n }\r\n .wgShelf .product .link a:link,\r\n .wgShelf .product .link a:visited {\r\n color:#000; \r\n display:block;\r\n }\r\n .wgShelf .product .link a:hover {\r\n text-decoration:underline;\r\n }\r\n .wgShelf .product .price {\r\n display:block;\r\n text-align:right;\r\n font-size:18px;\r\n font-weight:bold;\r\n }',0,'text/css',1219175575,0),('THQhn1C-ooj-TLlEP7aIJQ','.wgPicture {\r\n float:left;\r\n}\r\n.wgAlbum {\r\n float:left;\r\n}\r\n.wgGallery .pagination li, \r\n.wgGallery .pagination a {\r\n float:left;\r\n}\r\n.wgGallery .container {\r\n display:inline-block;\r\n}',0,'text/html',1225313951,3600),('7.0-style0000000000051','body, html {\r\n margin:0px;\r\n background-color:#b53018;\r\n padding:0px;\r\n}\r\nbody a {\r\n color:#EE963E;font-weight:bold;\r\n letter-spacing:1px;\r\n font-size:8pt;\r\n}\r\n#main {\r\n width:98%;\r\n /*min-width:790px;*/\r\n margin:0px;\r\n padding:0px;\r\n padding-top:20px;\r\n padding-bottom:20px;\r\n position:relative;\r\n}\r\n#header { \r\n background: url(\'^FileUrl(style3/header_bg.jpg);\') repeat-x;\r\n width:100%;\r\n margin:0px;\r\n height:115px;\r\n}\r\n#headerTitle {\r\n background: url(\'^FileUrl(style3/header_left.jpg);\') no-repeat left top;\r\n height:100%;\r\n width:100%;\r\n}\r\n#headerRight {\r\n background: url(\'^FileUrl(style3/header_right.jpg);\') no-repeat right top;\r\n width:100%;\r\n height:100%;\r\n text-align:right;\r\n position:relative;\r\n}\r\n#headerRight #title {\r\n position:absolute;\r\n top:25px;\r\n left:20px;\r\n font-family:arial;\r\n text-align:left;\r\n}\r\n#title h1 {\r\n text-transform:uppercase;\r\n margin-bottom:0px;\r\n font-weight:normal;\r\n font-size:26pt;\r\n margin-top:0px;\r\n color:white;\r\n}\r\n#title h1 a {\r\n color:white;\r\n text-decoration:none; font-size: 26pt; font-weight: normal; \r\n}\r\n#title h2 {\r\n margin:0px;\r\n font-size:12pt;\r\n color:#bebebe;\r\n padding-left:20px;\r\n}\r\n#title img {\r\n z-index:5;\r\n}\r\n#login {\r\n position:absolute;\r\n font-size:8pt;\r\n top:45%;\r\n right:150px;\r\n color:white;\r\n z-index:6;\r\n font-family:arial;\r\n}\r\n#login a {\r\n color:white; font-weight: normal; letter-spacing: 0px;\r\n}\r\n.loginBox {\r\n font-size:8pt;\r\n margin:0px;\r\n display:inline;\r\n}\r\n.loginBox input {\r\n font-size:8pt;\r\n}\r\n\r\n#mainBody {\r\n width:100%;\r\n margin:0px;\r\n height:500px;\r\n background: #fff;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#main > #mainBody {\r\n height:auto;\r\n min-height:500px;\r\n}\r\n#contentArea {\r\n z-index:2;\r\n position:relative;\r\n padding-top:10px;\r\n padding-left:10px;\r\n padding-right:20px;\r\n padding-bottom:20px;\r\n -moz-box-sizing:border-box;\r\n font-family:verdana;\r\n font-size:9pt;\r\n min-height:500px;\r\n}\r\nhtml #main #mainBody #contentArea {\r\n height:1%;\r\n}\r\n#topCorner {\r\n width:100%;\r\n height:214px;\r\n position:absolute;\r\n top:0px;\r\n left:0px;\r\n background: url(^FileUrl(/style3/main_top.jpg);) no-repeat;\r\n z-index:1;\r\n}\r\n#bottomCorner {\r\n width:100%;\r\n height:211px;\r\n position:absolute;\r\n bottom:59px;\r\n right:0px;\r\n background: url(\'^FileUrl(style3/main_bottom.jpg);\') no-repeat right;\r\n z-index:1;\r\n}\r\n* html #bottomCorner {\r\n bottom:58px;\r\n}\r\n\r\n#footer {\r\n width:100%;\r\n margin:0px;\r\n background:#000 url(\'^FileUrl(style3/footer_right.jpg);\') no-repeat right top;\r\n height:57px;\r\n border-top:solid #B53018 2px;\r\n text-align:right;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#footer #copyright {\r\n color:#3b3b3b;\r\n font-family:arial;\r\n position:absolute;\r\n top:20px;\r\n left:30px;\r\n font-size:8pt;\r\n}\r\n#main .yui-skin-sam {\r\n font-family:verdana;\r\n font-size:9pt;\r\n font-weight:normal;\r\n}',0,'text/css',1224117026,3600),('_9_eiaPgxzF_x_upt6-PNQ','/* FIXES FLOAT ISSUES. WITHOUT THIS, FLOATS GET ALL NUTSY ESPECIALLY IN OPERA AND SAFARI */\r\n.clearfix:after {\r\n content: \".\";\r\n display: block;\r\n height: 0;\r\n clear: both;\r\n visibility: hidden;\r\n}\r\n.clearfix {display: inline-block;}\r\n/* END FLOAT FIX */\r\n\r\n\r\n\r\n.wgGallery {\r\n font-family:verdana, arial;\r\n text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n.firstBar {\r\n background: black;\r\n color:white;\r\n font-size:18px;\r\n font-weight:bold;\r\n}\r\n\r\n.firstBar .title { \r\n margin-left:20px; \r\n line-height:42px; \r\n}\r\n.firstBar .title a {\r\n font-size:18px;\r\n font-weight:bold;\r\n color:white;\r\n}\r\n.firstBar .buttons {\r\n float:right;\r\n}\r\n.firstBar .buttons a {\r\n display:block;\r\n float:left;\r\n height:42px;\r\n line-height:42px; \r\n font-size:10px;\r\n color:white;\r\n font-weight:bold;\r\n text-align:center;\r\n padding:0px 5px; \r\n}\r\n.firstBar .buttons .rss {\r\n display:block;\r\n height:29px;\r\n position:relative;\r\n background:transparent;\r\n padding-top:13px;\r\n}\r\n\r\n\r\n\r\n\r\n.secondBar {\r\n background: #F1F1F1;\r\n text-align:left;\r\n border-top:solid #8B8B8B 5px; \r\n color: black;\r\n overflow: hidden;\r\n}\r\n.secondBar .author {\r\n font-size:10px;\r\n}\r\n\r\n\r\n.secondBar .desc p {\r\n margin-left: 20px;\r\n margin-top: 0;\r\n color: black;\r\n}\r\n\r\n.pictures {\r\n \r\n}\r\n\r\n\r\n.searchArea {\r\n float:right;\r\n}\r\n.searchArea * {\r\n float:left;\r\n} \r\n.searchArea input.searchText {\r\n border:solid black 1px; \r\n width:100px; \r\n margin:0px;\r\n padding:2px;\r\n margin-top:5px;\r\n font-size:10px;\r\n height:15px;\r\n margin-right:10px;\r\n} \r\n.searchArea input.searchBtn {\r\n border:solid black 1px; \r\n margin:0px;\r\n padding:3px;\r\n margin-top:5px;\r\n font-size:10px; \r\n vertical-align:center;\r\n cursor:pointer;\r\n height:21px;\r\n} \r\n.searchArea a:link,\r\n.searchArea a:visited,\r\n.secondBar .author a:link,\r\n.secondBar .author a:visited {\r\n font-size:11px;\r\n color:black;\r\n}\r\n.searchArea .current {\r\n font-weight:bold;\r\n text-transform:uppercase;\r\n text-decoration:none;\r\n font-size:10px;\r\n} \r\n\r\n\r\n\r\n\r\n.wgAlbum {\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n width:250px;\r\n margin:10px;\r\n}\r\n.wgAlbum .albumTitle { \r\n background: black;\r\n color:white;\r\n font-size:12px;\r\n font-weight:bold;\r\n padding:10px;\r\n padding-right:50px;\r\n border:solid #475f6f 1px;\r\n border-bottom:solid #8B8B8B 5px;\r\n text-align:left;\r\n display:block;\r\n}\r\n.wgAlbum .albumImage {\r\n background: #F1F1F1;\r\n border-left: solid black 1px;\r\n border-right: solid black 1px;\r\n padding-top:15px;\r\n height:135px;\r\n} \r\n.wgAlbum .albumImage a {\r\n height:135px;\r\n width:200px;\r\n overflow:hidden; \r\n display:block;\r\n margin:0px 23px;\r\n}\r\n.wgAlbum .albumImage img { \r\n border-style:none;\r\n display:block;\r\n width:200px;\r\n height:auto; \r\n border:solid black 1px; \r\n}\r\n.wgAlbum .albumDesc {\r\n background: #F1F1F1;\r\n border-left: solid black 1px;\r\n border-right: solid black 1px;\r\n border-bottom: solid black 1px;\r\n text-align:center;\r\n padding: 5px 23px;\r\n}\r\n.wgAlbum .description {\r\n font-size:10px; \r\n height:40px;\r\n overflow:auto;\r\n text-align:left;\r\n border:solid silver 1px;\r\n padding:5px;\r\n background-color: #fff;\r\n color:#222;\r\n}\r\n.albumDesc .description * {\r\n margin:2px 0px;\r\n}\r\n\r\n\r\n\r\n\r\n/* PAGINATION STYLES */\r\n.wgGallery .paginationContainer {\r\n text-align:center; \r\n background: black;\r\n height:42px;\r\n}\r\n.wgGallery .container {\r\n clear:both; \r\n text-align:center;\r\n}\r\n.wgGallery .pagination { \r\n margin:0px auto 20px auto;\r\n display:table;\r\n list-style-type:none;\r\n white-space:nowrap;\r\n padding:0px;\r\n height:42px;\r\n}\r\n.wgGallery .pagination li {\r\n display:table-cell;\r\n}\r\n.wgGallery .pagination a {\r\n display:block;\r\n width:50px; \r\n line-height:42px;\r\n color:white; \r\n font-size:10px; \r\n text-align:center;\r\n}\r\n\r\n\r\n\r\n.wgPicture a:link,\r\n.wgPicture a:visited {\r\n color:black;\r\n}\r\n.wgPicture {\r\n width:250px;\r\n margin:10px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n}\r\n.wgPicture .title {\r\n background:#e0e0e0;\r\n display:block;\r\n font-size:12px;\r\n text-align:center;\r\n padding:2px 5px;\r\n border:solid black 1px;\r\n border-bottom:solid #8B8B8B 4px;\r\n}\r\n.wgPicture .thumbnail {\r\n text-align:center;\r\n background: #F1F1F1;\r\n padding:15px 23px 15px 23px;\r\n margin:0px;\r\n border-left:solid black 1px;\r\n\r\n\r\n\r\n\r\n\r\n border-right:solid black 1px;\r\n}\r\n.wgPicture .thumbnail a {\r\n display:block;\r\n width:200px;\r\n height:120px;\r\n overflow:hidden;\r\n border:solid black 1px;\r\n}\r\n.wgPicture .thumbnail img {\r\n border-style:none;\r\n width:200px;\r\n height:auto;\r\n}\r\n.wgPicture .pictureDesc {\r\n padding:0px;\r\n border-top:solid #e1e1e1 1px;\r\n border-bottom:solid gray 1px;\r\n border-left:solid black 1px;\r\n border-right:solid black 1px;\r\n background:#F1F1F1;\r\n margin:0px;\r\n}\r\n.wgPicture .pictureDesc .description {\r\n margin:0px;\r\n padding:5px;\r\n font-size:10px;\r\n}\r\n.wgPicture .details {\r\n background:#e0e0e0;\r\n border:solid #999 1px;\r\n border-top:solid #aaa 1px;\r\n font-size:9px;\r\n padding:1px 3px; \r\n}\r\n.wgPicture .details .date {\r\n float:right;\r\n}\r\n.wgPicture .details .comments {\r\n float:left;\r\n}\r\n.wgPicture .details a { \r\n font-size:9px; \r\n}\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR PHOTO VIEW --\r\n * The Photo view uses some/all of the above classes, plus those in this section.\r\n*/\r\n.wgSnapshot {\r\n float:left;\r\n margin:10px;\r\n max-width:250px; \r\n width:25%;\r\n}\r\n.wgSnapshot fieldset { \r\n background-color:#fefefe;\r\n border:solid #555 2px;\r\n padding:10px;\r\n background-color:#f9f9f9;\r\n text-align:center;\r\n}\r\n.wgSnapshot p {\r\n max-width:230px;\r\n}\r\n.wgSnapshot legend {\r\n color:#333;\r\n font-size:15px;\r\n font-weight:bold;\r\n max-width:250px;\r\n}\r\n.wgSnapshot a.thumbnail img {\r\n width:200px;\r\n height:auto;\r\n border:solid #555 2px;\r\n}\r\n.wgSnapshot .description {\r\n font-size:9px;\r\n border:solid #555555 2px;\r\n padding:5px;\r\n width:190px;\r\n margin:0px auto;\r\n background-color:#fff;\r\n height:50px;\r\n overflow:auto;\r\n text-align:left;\r\n overflow:auto;\r\n}\r\n.wgSnapshot a.fullSize {\r\n margin:0px auto;\r\n}\r\n\r\n\r\n\r\n.wgPictureDetails {\r\n float:left;\r\n width:70%; \r\n margin:10px;\r\n} \r\n.wgPictureDetails a:link,\r\n.wgPictureDetails a:visited {\r\n color:black;\r\n}\r\n.wgPictureDetails fieldset { \r\n background-color:#fefefe;\r\n border:solid #555 2px;\r\n padding:10px;\r\n background-color:#f9f9f9; \r\n margin-bottom:10px;\r\n}\r\n.wgPictureDetails legend {\r\n color:#333;\r\n font-size:15px;\r\n font-weight:bold;\r\n}\r\n\r\n\r\n\r\n.rowOne {\r\n background: #EFEFEF;\r\n margin:1px;\r\n border:solid #CDCDCD 1px;\r\n color:black;\r\n padding:3px;\r\n}\r\n.rowTwo {\r\n background: #DCDCDC;\r\n margin:1px;\r\n border:solid #DDDDDD 1px;\r\n color:black; \r\n padding:3px;\r\n}\r\n.rowOne .label, .rowTwo .label {\r\n margin-left:15px;\r\n display:inline;\r\n text-align:left;\r\n font-weight:bold;\r\n font-size:11px;\r\n}\r\n.rowOne .data, .rowTwo .data { \r\n font-size:10px;\r\n margin-left:5px;\r\n display:inline;\r\n}\r\na.fullSize:link,\r\na.fullSize:visited { \r\n color:black;\r\n display:block;\r\n text-align:center;\r\n font-weight:bold;\r\n font-size:10px; \r\n}\r\n\r\n\r\n\r\n\r\n.wgComments { \r\n font-size:9px; \r\n margin:10px;\r\n width:90%;\r\n}\r\n.wgComments .title {\r\n font-size:14px;\r\n font-weight:bold;\r\n color:#333;\r\n border-bottom:solid #555555 2px;\r\n padding-bottom:2px;\r\n} \r\n.wgComments .title a {\r\n color:navy;\r\n text-decoration:none;\r\n}\r\n.wgComments .comment, .wgComments .commentAlt {\r\n position:relative; \r\n padding:5px; \r\n}\r\n.wgComments .comment {\r\n background-color:#e1e1e1;\r\n border-top:solid #F7F7F7 1px;\r\n border-bottom:solid #C9C9C9 1px;\r\n}\r\n.wgComments .commentAlt {\r\n background-color:#f0f0f0; \r\n border-bottom:solid #CDCDCD 1px;\r\n border-top:solid #FBFBFB 1px;\r\n}\r\n.wgComments .number {\r\n float:left;\r\n font-size:30px;\r\n color:silver;\r\n margin:5px 10px 5px 5px;\r\n}\r\n.wgComments .posted { \r\n font-style:italic;\r\n padding-top:3px;\r\n font-size:9px;\r\n color:gray;\r\n}\r\n.wgComments .posted a {\r\n color:navy;\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR THUMBNAIL VIEW --\r\n * The Thumbnail view uses some/all of the above classes, plus those in this section.\r\n*/\r\n\r\n.thumbView {\r\n width:400px;\r\n height:auto;\r\n}\r\n.thumbView .thumbnail a {\r\n display:block;\r\n width:350px;\r\n height:auto; \r\n border:solid black 1px;\r\n}\r\n.thumbView .thumbnail img {\r\n border-style:none;\r\n width:350px;\r\n height:auto;\r\n}\r\n.thumb {\r\n width:100px;\r\n height:65px;\r\n overflow:hidden;\r\n display:block;\r\n float:left;\r\n border:solid black 2px;\r\n margin:10px;\r\n}\r\n.thumb img {\r\n width:100px;\r\n height:auto;\r\n border-style:none;\r\n}\r\n.thumb-popup {\r\n border:solid #555 1px;\r\n padding:2px;\r\n padding-bottom:4px;\r\n padding-right:4px;\r\n background-color:silver;\r\n}\r\n.thumb-popup img {\r\n border:solid #555 1px;\r\n}\r\n.thumb-popup .caption {\r\n background-color:black;\r\n color:white;\r\n padding:4px;\r\n border:solid #555 2px;\r\n}\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR SLIDESHOW VIEW --\r\n * The Slideshow view uses some/all of the above classes, plus those in this section.\r\n*/\r\n.wgSlideshow .controls {\r\n background: url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg);) repeat-x;\r\n width:500px;\r\n height:42px;\r\n margin:0px auto;\r\n border:solid black 2px;\r\n}\r\n.wgSlideshow { \r\n text-align:center;\r\n}\r\n#slideshow-container {\r\n width:500px;\r\n height:auto;\r\n margin:0px auto;\r\n text-align:center;\r\n border:solid black 2px;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#slideshow-container .slideshow-item img {\r\n width:100%;\r\n height:auto;\r\n border-style:none;\r\n display:block;\r\n}\r\n#slideshow-container .slideshow-item .title {\r\n background-color:black;\r\n padding:3px;\r\n color:white;\r\n border-top:solid white 1px;\r\n border-bottom:solid white 1px;\r\n}\r\n#slideshow-container .slideshow-item .title a {\r\n color:white;\r\n font-size:11px;\r\n font-weight:bold; \r\n}\r\n#slideshow-container .slideshow-item .counter {\r\n background-color:black;\r\n padding:3px;\r\n color:white;\r\n font-size:11px;\r\n font-weight:bold;\r\n}\r\n#slideshow-container .slideshow-item .synopsis {\r\n width:494px;\r\n background-color:white;\r\n padding:3px;\r\n color:black;\r\n font-size:11px;\r\n font-weight:bold;\r\n border-top:solid black 1px;\r\n text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR SEARCH VIEW --\r\n * The Search view uses some/all of the above classes, plus those in this section.\r\n*/\r\n#adminWrapper {\r\n margin-top:20px;\r\n}\r\n#adminWrapper .label {\r\n background:black;\r\n font-weight:bold; \r\n font-size:10px;\r\n color:white;\r\n}\r\n#adminWrapper td.data input {\r\n background: #f1f1f1;\r\n vertical-align:middle;\r\n}\r\n#adminWrapper td.radio input {\r\n border-style:none;\r\n background:none;\r\n}\r\n#adminWrapper .forwardButton {\r\n cursor:pointer;\r\n float:rigbt;\r\n}\r\n#adminWrapper .forwardButton:hover {\r\n color:gold;\r\n}',0,'text/css',1230702602,3600),('hkj6WeChxFyqfP85UlRP8w','.wg-clear {\r\n display: inline;\r\n clear: both;\r\n}\r\n\r\n/* COLUMN STYLES */\r\n.matrixLeft {\r\n float:left;\r\n width:65%;\r\n padding:1%;\r\n min-height:1%;\r\n background-color:#d2d2d2;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n}\r\n.matrixRight {\r\n float:left;\r\n width:25%;\r\n padding:0px;\r\n min-height:1%;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n border: solid silver 1px;\r\n background-color:white; \r\n margin-left:5px;\r\n}\r\n\r\n\r\n\r\n/* DROPSHADOW BUTTONS */\r\n.matrixLeft .buttons span {\r\n background-color:#888;\r\n position:relative;\r\n padding:5px 0px 0px 0px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n\r\n}\r\n.matrixLeft .buttons button,\r\n.matrixLeft .buttons a#return {\r\n border:solid #2f495e 2px;\r\n position:relative;\r\n background-color:#e1e1e1;\r\n padding:auto 3px;\r\n margin:0px;\r\n font-size:11px;\r\n line-height:13px;\r\n position:relative;\r\n top:-6px;\r\n left:-2px;\r\n height:22px;\r\n cursor:pointer;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n font-weight:bold;\r\n text-decoration:none;\r\n color:#333;\r\n}\r\n.matrixLeft .buttons a#return {\r\n font-size:10px;\r\n padding:3px 10px 2px 10px;\r\n}\r\n.matrixLeft .buttons button:hover,\r\n.matrixLeft .buttons a#return:hover {\r\n border-color:black;\r\n color:white;\r\n background-color:#444;\r\n}\r\n\r\n\r\n\r\n/* WHITE AREA FOR THE LISTING OF OBJECTS TO COMPARE */\r\n.matrixLeft .matrixListing {\r\n background-color:white;\r\n height:300px;\r\n overflow:auto;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n margin:10px 2px 20px 2px;\r\n padding:auto 10px;\r\n}\r\n.matrixLeft .matrixListing table {\r\n border-collapse:collapse;\r\n margin:0px;\r\n padding:0px;\r\n display:block;\r\n}\r\n.matrixLeft .matrixListing table a:link {\r\n font-size:12px;\r\n color:#111;\r\n}\r\n.matrixLeft .matrixListing table a:visited {\r\n color:#333;\r\n font-size:12px;\r\n text-decoration:none;\r\n}\r\n.matrixLeft .matrixListing table a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* GRAY BAR THAT HOLDS THE SORT BUTTONS */\r\n.matrixLeft .matrixListing .sortButtons {\r\n background-color:#f1f1f1;\r\n border:solid silver 1px;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft: 4px;\r\n -webkit-border-radius-topRight: 4px; \r\n border-bottom:solid #D2D2D2 2px;\r\n display:block;\r\n}\r\n\r\n\r\n\r\n/* STYLES TO OVERRIDE THE SORT BUTTON CSS BUILT INTO THE PERL CODE */\r\n#sortByViews-button,\r\n#sortByCompares-button,\r\n#sortByUpdated-button,\r\n#sortByClicks-button {\r\n background: none;\r\n white-space:nowrap;\r\n border-style:none;\r\n cursor:pointer;\r\n padding-bottom:4px;\r\n border-style:none;\r\n background-color:transparent;\r\n border-right:solid silver 1px;\r\n color:#555;\r\n}\r\n#sortByViews-button:hover,\r\n#sortByCompares-button:hover,\r\n#sortByUpdated-button:hover,\r\n#sortByClicks-button:hover {\r\n color:black;\r\n}\r\n\r\n\r\n\r\n/* MATRIX STATISTICS */\r\n.matrixRight .mainTitle {\r\n font-size:20px;\r\n padding:5px 10px;\r\n border-bottom: solid gray 1px;\r\n background-color:#d2d2d2;\r\n line-height:20px;\r\n}\r\n.matrixRight .textBox {\r\n border-top:solid silver 1px;\r\n padding:10px 5px;\r\n}\r\n.matrixStatistics {\r\n padding:10px;\r\n}\r\n.matrixStatistics .title {\r\n font-weight:bold;\r\n background-color:#f1f1f1;\r\n padding:2px 5px;\r\n font-size:11px;\r\n -moz-border-radius:4px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n.matrixStatistics .statistics {\r\n margin-bottom:15px;\r\n}\r\n.matrixStatistics .label {\r\n text-align:right;\r\n width:100px;\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data {\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data a {\r\n color:#111;\r\n}\r\n.matrixStatistics .data a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* LINKS TO CONTROL ADMIN FUNCTIONS */\r\n.adminLinks {\r\n background-color:#f1f1f1;\r\n}\r\n.adminLinks a:link,\r\n.adminLinks a:visited {\r\n display:block;\r\n text-align:center;\r\n text-decoration:none;\r\n color:#555;\r\n font-weight:normal;\r\n font-size:10px;\r\n padding:2px 5px;\r\n border-top:solid silver 1px;\r\n}\r\n.adminLinks a:hover {\r\n color:black;\r\n}\r\n.adminLinks a.newLink:link,\r\n.adminLinks a.newLink:visited {\r\n background-color:#3498d1;\r\n color:white;\r\n border-top-style:none;\r\n display:block;\r\n}\r\n.adminLinks a.newLink:hover {\r\n background-color:#39a6e5;\r\n}\r\n\r\n\r\n\r\n/* STYLE FOR THE DETAILED LISTING */\r\n#matrixDetail {\r\n min-width:1000px;\r\n}\r\n#matrixDetail .editBtns {\r\n font-size:9px;\r\n line-height:11px;\r\n vertical-align:middle;\r\n font-weight:normal;\r\n margin-left:10px;\r\n}\r\n#matrixDetail .editBtns a {\r\n color:black;\r\n text-decoration:underline;\r\n}\r\n#matrixDetail .editBtns a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n#matrixDetail .stats .screenshot {\r\n float:left;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixDetail .commentsMail strong.title {\r\n margin-bottom:0px;\r\n margin-top:20px;\r\n display:block;\r\n background-color:#d2d2d2;\r\n padding:2px 10px;\r\n border:solid 1px gray;\r\n border-bottom-color:silver;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n}\r\n\r\n#matrixDetail .assetAspectComments {\r\n margin:0px 0px 20px 0px;\r\n border:solid gray 1px;\r\n background-color:#f1f1f1;\r\n -moz-border-radius-bottomLeft:4px;\r\n -moz-border-radius-bottomRight:4px;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectComment {\r\n border-top:solid silver 1px;\r\n border-bottom:solid gray 1px;\r\n padding:3px;\r\n background-color:#f5f5f5;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectCommentForm {\r\n border-top:solid #d2d2d2 5px;\r\n padding:20px;\r\n}\r\n\r\n\r\n\r\n#matrixDetail .stats ul, #matrixDetail .stats ul li {\r\n list-style-type:none;\r\n margin:0px;\r\n padding:0px;\r\n}\r\n#matrixDetail .stats ul li {\r\n display:block;\r\n line-height:20px;\r\n margin:4px 0px;\r\n}\r\n#matrixDetail .stats ul li strong {\r\n display:block;\r\n float:left;\r\n width:130px;\r\n text-align:right;\r\n background-color:#f1f1f1;\r\n padding-right:5px;\r\n margin-right:5px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:3px;\r\n font-size:11px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n\r\n\r\n.showLink {\r\n background-color:#e1e1e1;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n.showLink:hover,\r\n.hideLink:hover {\r\n background-color:#555;\r\n color:white;\r\n}\r\n.hideLink {\r\n background-color:#f1f1f1;\r\n border:2px solid #2F495E;\r\n border-bottom-style:none;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft:4px;\r\n -webkit-border-radius-topRight:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n\r\n#matrixMail {\r\n background-color:#f1f1f1;\r\n padding:15px;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -moz-border-radius-topLeft:0px;\r\n -webkit-border-radius:4px;\r\n -webkit-border-radius-topLeft:0px;\r\n margin-top:1px;\r\n}\r\n#matrixMail * .tableData {\r\n padding:5px;\r\n margin:0px;\r\n}\r\n#matrixMail * input {\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#matrixMail * .formDescription {\r\n text-align:right;\r\n vertical-align:middle;\r\n padding-right:10px;\r\n font-weight:bold;\r\n}\r\n#matrixMail form * img {\r\n margin-top:-18px;\r\n}\r\n#matrixMail #verify_formId {\r\n height:45px;\r\n line-height:45px;\r\n font-size:35px;\r\n padding:0px;\r\n margin:0px;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixRatings {\r\n width:264px;\r\n position:relative;\r\n left:-2px;\r\n top:12px;\r\n}\r\n#matrixRatings table {\r\n margin-left:0px;\r\n}\r\n#matrixRatings td {\r\n overflow:hidden;\r\n}\r\n#matrixRatings .formDescription {\r\n text-align:right;\r\n background-color:#97BCD1;\r\n border:solid #4D606B 1px;\r\n padding:2px 5px;\r\n font-weight:bold;\r\n font-size:10x;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n color:#333;\r\n}\r\n#matrixRatings .formDescription a:before {\r\n content: \"» \";\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a {\r\n display:block;\r\n color:red;\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a:hover {\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n#matrixAttributes {\r\n float:left;\r\n width:20%;\r\n margin-right:20px;\r\n}\r\n#rightDetails {\r\n float:left;\r\n width:70%\r\n}\r\n\r\n\r\n\r\n#attributes {\r\n border:solid #d2d2d2 1px;\r\n background-color:#f1f1f1;\r\n margin-top:10px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:10px;\r\n}\r\n#attributes table {\r\n border-collapse:collapse;\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#attributes table * td {\r\n padding:2px;\r\n margin:0px;\r\n}\r\n\r\n\r\n.yui-dt0-col-value {\r\n font-weight:bold;\r\n font-size:14px;\r\n padding:3px;\r\n white-space:no-wrap;\r\n}\r\n\r\n\r\n\r\n/* COMPARISON STYLES */\r\n#compareList table {\r\n border-collapse:collapse;\r\n border:solid silver 1px;\r\n margin-top:5px;\r\n}\r\n#compareList table * th a {\r\n color:black;\r\n padding:1px 5px;\r\n}\r\n#compareList table * td {\r\n background-color:#f1f1f1;\r\n border-top:solid gray 1px;\r\n border-bottom:solid silver 1px;\r\n}\r\n\r\n#compareList .yui-dt-liner {\r\n color:#39A6E5;\r\n}\r\n\r\n#compareList .yui-dt-col-name .yui-dt-liner {\r\n font-style:italic;\r\n font-size:10px;\r\n color:#555;\r\n}\r\n#compareList .yui-dt-col-name .yui-dt-liner b {\r\n font-size:15px;\r\n font-style:normal;\r\n padding-right:25px;\r\n color:black;\r\n}',0,'text/css',1232664229,0),('kJf77eCr9GAMiEzWrzsBTA','.matrixLeft .buttons span,\r\n.matrixRight .buttons span {\r\n padding:0px 0px 0px 0px;\r\n}\r\n\r\n.matrixLeft .buttons button,\r\n.matrixRight .buttons a {\r\n top:-3px;\r\n left:-2px;\r\n height:22px;\r\n}\r\n.matrixRight .buttons a {\r\n color:black;\r\n text-decoration:none;\r\n padding:1px 3px;\r\n}',0,'text/css',1229639255,3600),('4LQT4-bGW4FkiEQLSY5gvQ','function showHide(theLink,theId) {\r\n var theId = document.getElementById(theId);\r\n var theLink = document.getElementById(theLink);\r\n if(theId.style.display == \'block\') {\r\n theId.style.display = \'none\';\r\n theLink.innerHTML = \"Send Creator a Message\";\r\n theLink.className = \"showLink\"\r\n }\r\n else {\r\n theId.style.display = \'block\';\r\n theLink.innerHTML = \"Hide\"; \r\n theLink.className = \"hideLink\" \r\n }\r\n}',0,'text/javascript',1232400287,0); -INSERT INTO `template` VALUES ('\">','Macro/AdminToggle',1,1,'PBtmpl0000000000000036',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/a_account',1,1,'PBtmpl0000000000000037',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/EditableToggle',1,1,'PBtmpl0000000000000038',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/GroupAdd',1,1,'PBtmpl0000000000000040',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/GroupDelete',1,1,'PBtmpl0000000000000041',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/H_homeLink',1,1,'PBtmpl0000000000000042',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/LoginToggle',1,1,'PBtmpl0000000000000043',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/r_printable',1,1,'PBtmpl0000000000000045',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/File',1,1,'PBtmpl0000000000000091',1129049189,'WebGUI::Asset::Template::HTMLTemplate',1),('','style',0,0,'PBtmpl0000000000000132',1129049190,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n
    /opaque.gif);\">\n \n
    \n\n\n\n
    /opaque.gif);\">\n \n
    \n
    \n
    \n','Shortcut',1,1,'PBtmpl0000000000000140',1129573244,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n\n\n
    \n \n
    \n
    \n
    :
    \n
    \n
    \n
    \n
    \n\n\n
    \n
    \n
    \n \n
    \n
    \n
    \n \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n','AdminConsole',1,1,'PBtmplHelp000000000001',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n\n \n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n\n \n\n \n \n \n \n \n\n\n
    \">\">\">\">\">\">
    oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
    \n\n\n
    \n · · \n
    \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000208',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n
    \n\n\n
    \n
    \n \">
    \n ()\n \n \n \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000128',1147642411,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

    \n
    \n \n

    \n
    \n \n\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n > \n\n','Navigation',1,1,'PBtmpl0000000000000093',1147642412,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n
    \n \n
    \n\n\n\n\n \n \n\n\n
    \n

    \n\" class=\"backLabel\">\n\n\n','DataForm',1,1,'PBtmpl0000000000000104',1147642412,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n\n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n\n
    \n · · \n
    \n
    \n\n\n','Collaboration/Search',1,1,'PBtmpl0000000000000031',1147642413,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n

    \n\">RSS 0.90\n\">RSS 0.91\n\">RSS 1.0\n\">RSS 2.0\n

    \n\n\n

    \n
    \n\n\n \n

    \n\n\n

    \n\n \" target=\"_blank\">\n\n \n\n

    \n\n\n

    \n\n\n

    \n','SyndicatedContent',1,1,'DPUROtmpl0000000000001',1147642413,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n \n

    \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n\n\n
    \n
      \n \n
    • \">
    • \n
      \n\n
    \n
    ','Auth/LDAP/Login',1,1,'PBtmpl0000000000000006',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n class=\"even\">\n \">
    \n \n \n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n \">\n by\n \n \n \n \">\n \n on @ \n \n
    \n \n
    \n\n

    \n \n
    \n
    \n \n

    \n \n\n\n\n','MessageBoard',1,1,'PBtmpl0000000000000047',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1),('\nThis is the Manager\'s View\n\n','TimeTracking_manager',1,1,'TimeTrackingTMPL000002',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000066',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n \n

    \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n\n\n
    \n \n
    ','Auth/WebGUI/Login',1,1,'PBtmpl0000000000000013',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n \n

    \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n \n \n \n
    \n \n \n \n
    \n \n \n \n
    \n \n
    \n','Auth/WebGUI/Expired',1,1,'PBtmpl0000000000000012',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n\n

    \n\n

    \n\n
    \n\n\">\n\n          \n\n\">\n\n
    \n','prompt',1,1,'PBtmpl0000000000000057',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(\"title\"); - WebGUI\n \n\n\n ^AdminBar;\n
    \n\n
    \n ^AssetProxy(flexmenu);\n
    \n\n
    \n \n
    \n
    \n
    \n ^LoginToggle;   ^a(^@;);   ^H;   ^AdminToggle;\n
    \n\n
    \n\n\n\n','style',0,1,'PBtmpl0000000000000060',1147642419,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \">\" alt=\"\" style=\"border-style:none;\" />','FileAsset',1,1,'PBtmpl0000000000000024',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

    \n \n

    \n \n \n \n

    \">

    \n \n \n \n\n \n \n \n \n\n \n\n \n \n \n\n
    \n\n \">\" border=\"0\" alt=\"\" />\n \">\n\n \" border=\"0\" alt=\"\" />\n\n \n \n
    \n \n \n \n \n \n\n \">\" border=\"0\" alt=\"\" />\n \">\n\n \" border=\"0\" alt=\"\" />\n\n \n ^D(\"%z %Z\",);
    \n','Folder',1,1,'PBtmpl0000000000000078',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />()','Macro/File',1,1,'PBtmpl0000000000000107',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n

    \n','Account/Inbox/InviteUserMessage',1,1,'XgcsoDrbC0duVla7N7JAdw',1227566394,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

    \n
    \n \n

    \n
    \n \n\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\"
    >\n · \n\n','Navigation',1,1,'PBtmpl0000000000000108',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \" />','ImageAsset',1,1,'PBtmpl0000000000000088',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n \">\n
    \n\n\n - \n

    \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

    \n
    \n\n\n - \n\n','Article',1,1,'PBtmpl0000000000000123',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n \');\">\n\n\n\n - \n

    \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

    \n
    \n\n\n - \n\n','Article',1,1,'PBtmpl0000000000000129',1147642422,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000077',1147642422,'WebGUI::Asset::Template::HTMLTemplate',1),('

    RandomThread macro debug output:

    \n
    \n
    approve.url:
    \n
    assetId:
    \n
    assetSize:
    \n\n
    <tmpl_loop attachment_loop>:
    \n
    \n
    filename:
    \n
    icon:
    \n
    isImage:
    \n
    thumbnail:
    \n
    url:
    \n</tmpl_loop>\n\n\n
    attachment.icon:
    \n
    attachment.thumbnail:
    \n
    attachment.url:
    \n
    className:
    \n
    content:
    \n
    contentType:
    \n
    createdBy:
    \n
    creationDate:
    \n
    dateSubmitted:
    \n
    dateSubmitted.human:
    \n
    dateUpdated:
    \n
    dateUpdated.human:
    \n
    delete.url:
    \n
    deny.url:
    \n
    edit.url:
    \n
    encryptPage:
    \n
    endDate:
    \n
    extraHeadTags:
    \n
    groupIdEdit:
    \n
    groupIdView:
    \n
    hasRated:
    \n
    image.url
    \n
    image.thumbnail
    \n
    isHidden:
    \n
    isLocked:
    \n
    isLockedBy:
    \n
    isMarkedRead:
    \n
    isPackage:
    \n
    isPrototype:
    \n
    isSticky:
    \n
    isSystem:
    \n
    lastPostDate:
    \n
    lastPostId:
    \n
    lineage:
    \n
    menuTitle:
    \n
    newWindow:
    \n
    ownerUserId:
    \n
    parentId:
    \n
    rate.url.1:
    \n
    rate.url.2:
    \n
    rate.url.3:
    \n
    rate.url.4:
    \n
    rate.url.5:
    \n
    rating:
    \n
    rating.value:
    \n
    replies:
    \n
    reply.url:
    \n
    reply.withquote.url:
    \n
    revisedBy:
    \n
    revisionDate:
    \n
    startDate:
    \n
    state:
    \n
    stateChanged:
    \n
    stateChangedBy:
    \n
    status:
    \n
    storageId:
    \n
    subscriptionGroupId:
    \n
    synopsis:
    \n
    tagId:
    \n
    threadId:
    \n
    title:
    \n
    title.short:
    \n
    url:
    \n
    user.canEdit:
    \n
    user.isPoster:
    \n
    userDefined1:
    \n
    userDefined2:
    \n
    userDefined3:
    \n
    userDefined4:
    \n
    userDefined5:
    \n
    userId:
    \n
    userProfile.url:
    \n
    username:
    \n
    views:
    \n
    \n','Macro/RandomThread',1,1,'WVtmpl0000000000000001',1147642426,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

    \n
    \n \n

    \n
    \n \n\n\n
    \n\n
    \n \">\n
    \n \n
    \n \n
    \n \n
    \n \n
    \n
    \n
    \n
    ','Navigation',1,1,'PBtmpl0000000000000136',1147642428,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

    \n
    \n \n

    \n
    \n \n\n\n\n \n \n \n \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n','Navigation',1,1,'PBtmpl0000000000000124',1147642429,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n\n\n class=\"selectedMenuItem\" onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n
    \n
    \n
    \n','Navigation',1,1,'PBtmpl0000000000000048',1147642431,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(title); - <tmpl_var session.setting.companyName>\n \n \n \n\n\n\n^AdminBar(\"PBtmpl0000000000000090\");\n\n\n

    \n^AdminToggle();\n

    \n\n\n','style',1,1,'PBtmplBlankStyle000001',1147642431,'WebGUI::Asset::Template::HTMLTemplate',1),('

    ^International(error label,Account_Inbox);

    \r\n

    \r\n

    \">^International(back label,Account_Inbox);

    \n','Account/Inbox/Error',1,1,'ErEzulFiEKDkaCDVmxUavw',1227566394,'WebGUI::Asset::Template::HTMLTemplate',1),('

    ^International(invitation confirm label,Account_Inbox);

    \r\n

    ^International(invitation confirm message,Account_Inbox);

    \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
    \r\n

    \">^International(invitations back label,Account_Inbox);

    \n','Account/Inbox/Confirm',1,1,'5A8Hd9zXvByTDy4x-H28qw',1227566395,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n

    \n\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n

    \n ','FileAsset',1,1,'pbtmpl0000000000000221',1147642465,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n
    \n \n\n

    \n
    \n \n\n \n \n \n       \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n\n
    \n','Navigation',1,1,'stevenav00000000000001',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n
    \n \n\n

    \n
    \n \n\n \n \n \n       \n \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n \n','Navigation',1,1,'PBnav000000style01lvl2',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \n\n \n
    \n
    \n
    \n
    \n \n \n \n

    \">

    \n
    \n\n \n \">.\n \">\n \n \n \n
    \n
    \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000044',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \">\n \n\n \n \">.\n \">\n \n
    \n
    \n
    \n
    \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000092',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n
      \n\n\n\n\n
    \n
    \n\n
  • \">onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n\n
      \n\n \n\n\n \n \n \n
    \n \n
  • \n\n\n','Navigation',1,1,'PBnav00000000000bullet',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n

    \n
    \n
    \n\n\n
    \n \" style=\"height:auto;min-height:100px;width:100%;display:block;\">\n \" /> \n \n
    ','FileAsset',1,1,'pbtmpl0000000000000220',1148579525,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n
    \n\n

    \n\n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000133',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n \n \n [\">] \n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n

    \n \" target=\"_blank\">\n \n - \n \n

    \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000083',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n
      \n \n
    1. \n \n \n [\">]\n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n \" target=\"_blank\">\n \n - \n \n
    2. \n
      \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000101',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n
    \n\n\n
    \n
    \n
    ()
    \n \n \n
    \n
    \n
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000121',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \"> \n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n \n \n \">\n \n \n \n\n \n \n \n \n \n \"> •\n \n \n \n (\">)
    \n\n
    \n

    \n Q: \n A: \n

    \n

    \n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000081',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n \n  [\">]\n \n

    \n\n\n \n \n \">\n \n \n \n \n \n \n \n \n \"> •\n \n \n \n (\">)\n
    \n

    \n \n

    \n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000079',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000082',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n

    \n\n\n

    \n \n
    \n
    \n \n \">\n -\n \n \n - \n \n \n - \n \n \n - \n \n \n \n \n \">\" border=\"0\" alt=\"\" align=\"right\" />\n \n \n
    \n \">\n
    \n
    \n

    \n\n\n\n

    \n \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000112',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\" style=\"border-style:none;vertical-align:middle;\" alt=\"\" />\n','Macro/File',1,1,'PBtmpl0000000000000039',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n
    \n\n \n

    \n\n\n
    \n\n\n \n \n
    \n
    \n

    \n \n \n\n \n \" alt=\"graph\" />\n \n \n
    \n \n \n \n \n \n
    \" class=\"pollColor\">^Spacer(1,1);  % ()
    \n
    \n


    : \n
    \n\n
    \n\n\n','Poll',1,1,'PBtmpl0000000000000055',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n^Page(title); - <tmpl_var session.setting.companyName>\n\n\n\n\n\n\n\n^AdminBar(\"\");\n\n
    \"plainblack\"
    \n\n
    \n \n
    \n\n
    © 2001-2004 Plain Black LLC
    \n\n\n\n','style',1,1,'PBtmpl0000000000000111',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\nBatch: \n\n\n
    \n\n','Operation/RedeemSubscription',1,1,'PBtmpl0000000000000053',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n \n \">\" border=\"0\" alt=\"\" />\n \n  \n \n oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n\n
    \n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000097',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n
    \n \n\n

    \n
    \n \n\n \n\n \n\n','Navigation',1,1,'PBnav00000000indentnav',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
    \n \n
    \n
    \n \n
    \n
    \n
    \n  \n
    \n \n \n \n \n \n
    \n  \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \" >
    \n
    \n
    \n
    \n \n
    \n \n \">
    \n
    \n
    \n
    \n
    \n \">
    \n ^AdminToggle;
    \n ^LoginToggle;
    \n
    \n
    \n
    \n \n
    \n
    \n \n \')\">\"?\"\n \n
    \n
    \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n\"*\"\n
    \n
    \n \" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
    \n\n\n','AdminConsole',1,1,'PBtmpl0000000000000001',1157679164,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n class=\"odd\">\n \n \n \n \n\n
    /\">\n \" />\n \n (\'\', \'\')\">/\" style=\"border-style:none;\" alt=\"\" title=\"\" />\n
    \n','ProjectManager_resourceList',1,1,'ProjectManagerTMPL0006',1157679165,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n\n
    \n \" align=\"right\" border=\"0\" alt=\"\" />\n\n\n\n\n \n\n\n\n \n \n

    \n \">\n \n \n

    \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

    \n
    \n\n\n\n·\n\n·\n\n\n\n\n\n
    \n
    \n
    \n','Article',1,1,'PBtmpl0000000000000002',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n
    \n \n \n
    px;top:px;\">♦
    \n
    \n
    px;top:px;width:px;background-color:\">\n
    %;\">
    \n \n
    \n
    \n \n
    px;top:3px;margin-top:-3px;\">
    \n
    \n
    \n
    \n
    \n \" id=\"projectTableWidth\">\n \" id=\"projectScrollPercentWidth\">\n px;z-index:1;\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \" class=\"monthName\" style=\"height:20px;\">
    \" class=\"empty\" style=\"height:21px;\"> 
    \n
    \n
    \n\n','ProjectManager_gantt',1,1,'ProjectManagerTMPL0003',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
      \n\n
    • at () by
    • \n
      \n
    \n','WikiPage_pageHistory',1,1,'WikiPHTmpl000000000001',1165460175,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n\n
      \n
    1. \">
    2. \n
    \n\n
    \"> | \"> | \">
    \n\n','WikiMaster_mostPopular',1,1,'WikiMPTmpl000000000001',1165460175,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n\n\n\n','InOutBoard/Report',1,1,'IOB0000000000000000002',1166019641,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n\n\n\n\n

    \n \n \n \n
    \n · · \n
    \n
    \n

    \n

    \">

    \n \n

    \n

    \">

    \n
    \n
    \n
    \"> | \"> | \">
    \n','WikiMaster_search',1,1,'WikiSearchTmpl00000001',1168480840,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n\n
      \n
    • \n \n \"> - on by \n \n - on by \n \n ( \"> )\n \n \n
    • \n
    \n\n
    \"> | \"> | \">
    \n\n\n','WikiMaster_recentChanges',1,1,'WikiRCTmpl000000000001',1169092823,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n \n

    \n
    \n
    \n\n\n
      \n
    • \n
    \n
    \n\n\n \">\n\n \n \n \n \n \n \n','ZipArchiveAsset',1,1,'ZipArchiveTMPL00000001',1169738426,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

    \n
    \n\n \n

    \n
    \n\n
    \n \n

    \n
    \n\n
    \n\n \">\n\n\n \n  · \n \n \">\n\n
    \n\n \n
    \n \n
    \n
    \n \n \n \n \n \n \n \n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n \n \n \n

    \n \n \n\n','InOutBoard',1,1,'IOB0000000000000000001',1169795123,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n\n','RSSCapable/RSS',1,1,'PBtmpl0000000000000142',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n \n \n
    [\">]
    \n
    \n
    \n \n
    \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n
    \n
    \n \" id=\"id\">
    \n \n

    \">[top]

    \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000080',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n','SQLReport/Download',1,1,'SQLReportDownload00001',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n\n\n

    \n \">
    \n

    \n

    \n
    \n\n

    \n\n','newsletter',1,1,'newsletter000000000001',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000026',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n \r\n

    \r\n\r\n\r\n\r\n

    \r\n\r\n\r\n \r\n \r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    ','Auth/LDAP/Account',1,1,'PBtmpl0000000000000004',1227026214,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n

    \n \n
    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000029',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n\n\n\n','WikiMaster_byKeyword',1,1,'WikiKeyword00000000001',1185754571,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n

    \n\n\n

    \n\n
    \n\n
    \n

    \">

    \n
      \n
    • \n \n \">\n \n ()\n \n
    • \n
    \n
    \n
    \n

    \">

    \n
      \n
    1. \">
    2. \n
    \n\n
    \n
    \n\n
    \n\n\n','WikiMaster_front',1,1,'WikiFrontTmpl000000001',1185754572,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

    \n

    \n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n
    \n
    \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000068',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n
    \n
    \n\n\n\n

    \">

    \n\n\n\n\n','TimeTracking_user',1,1,'TimeTrackingTMPL000001',1201205738,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
    :
    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
    :
    \r\n
    \r\n
    ','DataForm',1,1,'PBtmpl0000000000000085',1202884864,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n

    ^International(errors,Asset_Event);

    \r\n
      \r\n\r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n
    \r\n ^International(tab event,Asset_Event);\r\n ^International(recurrence,Asset_Event);\r\n \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(event title,Asset_Event);
    ^International(short title,Asset_Event);
    ^International(location,Asset_Event);
    ^International(description,Asset_Event);
    ^International(start date,Asset_Event);
    ^International(end date,Asset_Event);
    ^International(time,Asset_Event);
     
    ^International(related material,Asset_Event);\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \'> \r\n \r\n \r\n \r\n \r\n \r\n\r\n
    \r\n\r\n
    \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\r\n \' value=\'\'>\r\n \' value=\"\">\r\n
    \'>\r\n\' name=\'\' value=\'\'>\r\n\' name=\'rel_delconfirm_\' value=\'0\'>\r\n
    \r\n
    \r\n
    ^International(group to view,Asset_Event);
    ^International(attachments for event,Asset_Event);
    \r\n
    \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
    ^International(recurrence pattern,Asset_Event);
    ^International(recurrence range,Asset_Event);\r\n

    ^International(start,Asset_Event);:

    \r\n

    \r\n

    ^International(end,Asset_Event);:

    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','Calendar/EventEdit',1,1,'CalendarEventEdit00001',1205160982,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Month',1,1,'CalendarPrintMonth0001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n   -   \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Week',1,1,'CalendarPrintWeek00001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    :00\r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Day',1,1,'CalendarPrintDay000001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

    \r\n
    \r\n\r\n

    \r\n\r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n :
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n \r\n : [ \"> \"> ]
    \r\n \r\n \r\n :
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n

    \r\n \r\n
    \r\n\r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n
    \r\n

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n :
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n :
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \" class=\"controlLink\"> \r\n •\r\n \r\n \" class=\"controlLink\">\r\n \r\n \r\n •\r\n \" class=\"controlLink\"> \r\n \r\n \r\n •\r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \r\n \r\n \" class=\"controlLink\">\r\n \r\n \" class=\"controlLink\">\r\n \r\n \r\n
    \r\n
    \r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000067',1206998733,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n

    \">

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n
    \r\n
    \r\n :
    \r\n : \r\n \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n
    \r\n \r\n : [ \"> \"> ]
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \r\n \r\n \"> •\r\n \r\n \r\n \r\n \"> •\r\n \r\n \"> •\r\n \r\n \r\n \"> •\r\n \r\n \"> •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
    \r\n\r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000032',1206998756,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

    \r\n
    \r\n\r\n

    \r\n\r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n :
    \r\n :
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n \r\n :     [ \">     [ \"> ]
    \r\n \r\n \r\n :
    \r\n
    \r\n
    \r\n\r\n :
    \r\n:\r\n\r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n
    \r\n

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> \r\n •\r\n \r\n \">\r\n \r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
    \r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000209',1206998862,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n , \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n\r\n','EMS/PrintBadge',1,1,'PsFn7dJt4wMwBa8hiE3hOA',1208558071,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n \r\n / \r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n\r\n\r\n','EMS/PrintTicket',1,1,'yBwydfooiLvhEFawJb0VTQ',1208629936,'WebGUI::Asset::Template::HTMLTemplate',1),('

    ^International(thank you message,Shop);

    \r\n\r\n\r\n

    \">^International(order number,Shop);

    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(date,Shop);
    ^International(amount,Shop);
    ^International(in shop credit used,Shop);
    ^International(taxes,Shop);
    ^International(shipping method,Shop);
    ^International(shipping amount,Shop);
    ^International(shipping address,Shop);
    ^International(payment method,Shop);
    ^International(status message,Shop);
    ^International(payment address,Shop);
    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    \r\n ','Shop/EmailReceipt',1,1,'bPz1yk6Y9uwMDMBcmMsSCg',1211829604,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n

    Cart

    \r\n
    \r\n \r\n
    ) ()
    \r\n
    \r\n
    \r\n
    \r\n ^International(total,Shop);: \r\n
    \r\n
    \r\n ^ViewCart;\r\n
    \r\n
    \r\n','Shop/MiniCart',1,1,'EBlxJpZQ9o-8VBOaGQbChA',1212093746,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \" alt=\"\" />\r\n
    \r\n
     
    \r\n\r\n
    \r\n X\r\n
    \r\n
    \r\n
    \r\n
    °F
    \r\n

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\">\r\n
    \"The
    \r\n','WeatherData',1,1,'WeatherDataTmpl0000001',1210711353,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
    ^International(location,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(description label,Asset_Event);
    \r\n
    \r\n
    \r\n
    \r\n
    ^International(scheduled,Asset_Event);
    \r\n
    \r\n
    \r\n ,\r\n \r\n \r\n : , \r\n \r\n \r\n : \r\n
    \r\n
    \r\n
    ^International(related material,Asset_Event);
    \r\n
    \r\n \">
    \r\n
    \r\n
    \r\n','Calendar/Print/Event',1,1,'CalendarPrintEvent0001',1215396964,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n

    \">^International(continue shopping button,Shop);\r\n\r\n\r\n\r\n\r\n','FlatDiscount',1,1,'63ix2-hU0FchXGIWkG3tow',1216169693,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','Navigation',1,1,'PBtmpl0000000000000130',1219072470,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n
    \n\n \n\n\n\n \n \">\n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl0000000000000054',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n
    \n\n \n\n\n\n \n \">\n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n\n \n
    \n
    \n
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl000000000table54',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n
     
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl0000000000000125',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n\n

    \n
    \n\n\n\n \n \n\n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n \n
    \n\n\n \n\n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl00000000table125',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n\n

    \n
    \n\n\n \n\n\n\n\n \n\n\n \n \n \n\n \n\n
    \n \n
    \n \n \n \n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl00000000table094',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n\n

    \n
    \n\n\n \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n
     
    \n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n
     
    \n\n\n
     
    \n \n
    \n\n','Layout',1,1,'PBtmpl0000000000000109',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n \n\n\n \n \n \n\n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n\n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl00000000table109',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
     
    \r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
     
    \r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
     
    \r\n \r\n
    \r\n','Layout',1,1,'PBtmpl0000000000000094',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n
     
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl0000000000000131',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n \n \n\n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl00000000table131',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n\n

    \n
    \n\n\n \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n
     
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl0000000000000135',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n \n \n\n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl00000000table135',1220655706,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n
     
    \n\n\n
    \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n\n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl0000000000000118',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

    \n
    \n\n\n\n

    \n
    \n\n\n \n\n\n\n\n \n \n \n\n\n \n\n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n
    \n\n \n
    \n
    \n
    \n \n
    \n\n\n
     
    \n \n
    \n','Layout',1,1,'PBtmpl00000000table118',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n
    \r\n
    Add/Edit Task
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
     
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n :

    \r\n \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/users.gif\" />     \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/groups.gif\" /> \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    \n','ProjectManager_editTask',1,1,'ProjectManagerTMPL0004',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n\r\n\r\npx;\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
     Task NameDurationStartFinishPred\" valign=\"top\" id=\"scrolltd\" style=\"border-style:none;width:%;\">\r\n
    \r\n \r\n
    \r\n
     
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n
     
     
    \r\n\r\n\r\n\r\n
    \n','ProjectManager_project',1,1,'ProjectManagerTMPL0002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n\n\n \n \n\n\n\n\n \n\n\n
    \n\n\n\n\n \n\n','WikiPage_edit',1,1,'WikiPageEditTmpl000001',1221692341,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\nalt\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
    ^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
    \r\n \r\n
    \r\n \r\n \r\n ^International(not applicable,Shop);\r\n
    \r\n
     
      
    ^International(subtotal,Shop);
    ^International(tax,Shop);
    ^International(shipping,Shop);
    \r\n \r\n \r\n \r\n
    \r\n \r\n
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
     
    ^International(order for,Shop);
     
    \r\n\r\n\r\n','Shop/Cart',1,1,'aIpCmr9Hi__vgdZnDTz1jw',1227539574,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n

    \n

    ^International(badge holder information,Asset_EventManagementSystem);

    \n\n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(name,Shop);
    ^International(organization,Asset_EventManagementSystem);
    ^International(address,Shop);
     
     
    ^International(city,Shop);
    ^International(state,Shop);
    ^International(code,Shop);
    ^International(country,Shop);
    ^International(phone number,Shop);
    ^International(email address,Asset_EventManagementSystem);
    \n\n\n','EMSBadge',1,1,'PBEmsBadgeTemplate0000',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n \r\n

    \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n
      \r\n
    • \">
    • \r\n \r\n
    \r\n
    ','Auth/LDAP/Create',1,1,'PBtmpl0000000000000005',1221612327,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n \n
    \n
    );\">
    \n
    \n
    \n
    \n \n
    \n · · \n
    \n
    \n
    \n\n','Search',1,1,'PBtmpl0000000000000200',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
     
    \r\n\r\n\r\n
    \r\n
      \r\n
    • \">
    • \r\n \r\n
    • \">
    • \r\n
      \r\n
    \r\n
    \r\n','Auth/WebGUI/Create',1,1,'PBtmpl0000000000000011',1221612288,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
      \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
    \r\n
    \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n
  • \r\n \r\n
    \r\n\n','Navigation',1,1,'PBtmpl0000000000000134',1222574692,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n
      \r\n\r\n
    • \r\n\r\n
    \r\n
    \r\n\r\n\r\n
    \r\n \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n \">\r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n
    \r\n
    ^International(template captcha label,Asset_DataForm);
    \r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000020',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    ^International(my subscriptions,Asset_Newsletter);

    \n\n\n

    ^International(newsletter categories,Asset_Newsletter);

    \n\n


    \n

    \n \n
    \n
    \n

    \n
    \n\n\n\n','newsletter/mysubscriptions',1,1,'newslettersubscrip0001',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n
      \r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n\r\n

    \r\n \">\r\n • \">\r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
    \r\n \r\n
    \r\n
    ^International(template captcha label,Asset_DataForm);
    \r\n
    \r\n\r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000141',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n\r\n
    \r\n \r\n
    \r\n \r\n ^D(\"%y\",);\r\n \r\n \r\n ^D(\"%c %y\",);\r\n \r\n \r\n ^D(\"%w, %c %d %y\",);\r\n \r\n
    \r\n\r\n
    \r\n

    \"> , ,

    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n
    \r\n
    \n','Calendar/List',1,1,'kj3b-X3i6zRKnhLb4ZiCLw',1222574694,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    (\">)
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \n','Subscription',1,1,'eqb9sWjFEVq0yHunGV8IGw',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n

    ^International(my purchases,Shop); · ^a(\"Return to Account\");

    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);
    \">
    \r\n
    \n','Shop/MyPurchases',1,1,'2gtFt7c0qAFNU3BG_uvNvg',1222574694,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n
    \r\n\r\n

    ^International(order number,Shop);

    \r\n \r\n \r\n \r\n \r\n\r\n
      \r\n
    • ^International(date,Shop);
    • \r\n
    • ^International(amount,Shop);
    • \r\n
    • ^International(in shop credit used,Shop);
    • \r\n
    • ^International(taxes,Shop);
    • \r\n
    • ^International(shipping method,Shop);
    • \r\n
    • ^International(shipping amount,Shop);
    • \r\n
    • ^International(payment method,Shop);
    • \r\n
    • ^International(status message,Shop);
    • \r\n
    \r\n \r\n
    \r\n
    ^International(payment address,Shop);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    ^International(shipping address,Shop);
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    \r\n
    \n','Shop/MyPurchasesDetail',1,1,'g8W53Pd71uHB9pxaXhWf_A',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(title);\n \n \n \n \n\n\n ^AdminBar();\n
    \n
    \n
    \n ^H(^c(););\n
    \n \n
    \n © ^D(%y); ^c;\n
    \n
    \n\n
    \n
    \n ^AssetProxy(roottab_level0);\n
    \n
    \n
    \n ^AssetProxy(roottab_level1);\n
    \n
    \n ^AssetProxy(crumbtrail); \n
    \n
     
    \n
    \n \n
    \n
     
    \n
    \n \n
    \n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\n
    ^AdminToggle;
    \n ^AssetProxy(style1/gui_bottom.jpg);
    \n \"WebGUI\n
    \n
    \n\n \n','style',1,1,'stevestyle000000000001',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\n\n \n ^c; - ^Page(title);\n \n \n \n\n\r\n^AdminBar();\r\n\n\n \n \n\r\n\r\n \r\n\n
    \n
    \n
    ^H(^c;);
    \n
    ^c;
    \n
    \n
    \n

    ^Page(title);

    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \r\n \"plain\"webgui\"
    \n
    \n
    \n
    \n \n \n \n \n \n
    \n
    \n ^AssetProxy(flexmenu);\n
    \n \n \n \n \n \n
    \n
    \n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\n ^AdminToggle;\n
    \n
    \r\n © ^D(%y); ^c;\r\n
    \r\n\n\n\n','style',1,1,'stevestyle000000000002',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n
      \r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n \">\r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n \r\n )\" id=\"tab\" class=\"tab\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n^International(template captcha label,Asset_DataForm);
    \r\n\r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000116',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    • View

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \">\r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \n','Thingy/ViewThing',1,1,'ThingyTmpl000000000002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n

    \r\n\r\n\r\n\r\n
    \r\n\r\n
    ','DataTable',1,1,'3rjnBVJRO6ZSkxlFkYh_ug',1225139643,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ','DataTable',1,1,'TuYPpHx7TUyk08639Pc8Bg',1225139643,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n \r\n
    \r\n\r\n

    \r\n \">^International(add a ticket,Asset_EventManagementSystem);\r\n •\r\n \">^International(meta fields,Asset_EventManagementSystem);\r\n •\r\n \">^International(import,Asset_EventManagementSystem);\r\n •\r\n \">^International(export,Asset_EventManagementSystem);\r\n

    \r\n
    \r\n


    \r\n

    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n \r\n\r\n \r\n
    \r\n\r\n

    \">^International(add a ribbon,Asset_EventManagementSystem);

    \r\n
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n
    \r\n\r\n

    \">^International(add a token,Asset_EventManagementSystem);

    \r\n
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^ViewCart;\r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n\r\n \r\n\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','EMS/BadgeBuilder',1,1,'BMybD3cEnmXVk2wQ_qEsRQ',1224723361,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n

    \r\n
    \r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n','EMS',1,1,'2rC4ErZ3c77OJzJm7O5s3w',1224723218,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n','EMS/LookupRegistrant',1,1,'OOyMH33plAy6oCj_QWrxtg',1224724790,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n\r\n \r\n
    \" class=\"yuimenubar\">\r\n
    \r\n
      \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
    \r\n
    \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n
  • \r\n \r\n
    \r\n\r\n\r\n','Navigation',1,1,'stevecoolmenu000000001',1224116942,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n

    Add Address

    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(label help,Shop);
    \r\n \r\n\r\n
    \r\n','Shop/Address',1,1,'XNd7a_g_cTvJVYrVHcx2Mw',1224606020,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n\r\n ^c; - ^Page(title);\r\n \r\n\r\n^AdminBar();\r\n\r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\r\n
    \r\n
    \r\n

    ^H(^c;);

    \r\n

    ^Page(title);

    \r\n
    \r\n \"webgui\"
    \r\n
    \r\n
    \r\n
    \r\n ^AssetProxy(style3_coolmenu);\r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n \"plain
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000003',1224795533,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n\r\n \r\n
      \r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    wgRowOnewgRowTwo label\" valign=\"top\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\" valign=\"top\" colspan=\"2\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n','Thingy/EditThing',1,1,'ThingyTmpl000000000003',1224518002,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n

    \r\n  :
    \r\n  
    \r\n  
    \r\n  \r\n

    \r\n\r\n \r\n

    \r\n  :
    \r\n \r\n \" title=\"Link to profile\">
    \r\n
    \r\n

    \r\n
    \r\n
    \r\n
    \r\n\r\n','Macro/UsersOnline',1,1,'h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n

    \r\n  :
    \r\n  
    \r\n  
    \r\n  \r\n

    \r\n

    \r\n  :
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
    \" alt=\"Avatar of \"/> \" title=\"Link to profile\">

    \r\n

    \r\n

    \r\n  :
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

    \r\n

    \r\n
    \r\n\r\n','Macro/UsersOnline',1,1,'4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n

    \n\n \">\n\n \n\n

    \n\n\n \n

    \n\n\n

      \n\n
    • \n \n \">\n \n \n \n \n - \n \n
    • \n
      \n
    ','SyndicatedContent',1,1,'PBtmpl0000000000000065',1226457084,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
    \r\n\r\n\r\n
    \r\n \r\n
    \r\n','Auth/WebGUI/Account',1,1,'PBtmpl0000000000000010',1227026287,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n \n \n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n
    \n\n\n
    \n \n
    \n','Auth/WebGUI/Recovery2',1,1,'PBtmpl0000000000000014',1227218041,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

    \n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n
    \n
    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000099',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n
    \n

    \n

    \n

    \n

    \n

    \n
    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n

    \n

    \n

    \n
    \n
    \n

    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000122',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000114',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n |\n \n \n \">^International(my subscriptions,Asset_Newsletter);\n |\n \n \">\n

    \n\n

    \n\n\n

    \">
    \n

    \n
    \n\n\n
    \n \n
    \n
    \n','newsletter',1,1,'newslettercs0000000001',1226896423,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n\n\n\n

    \n \n
    \n','Collaboration/PostForm',1,1,'PBtmpl0000000000000210',1227480812,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
    \r\n \r\n \r\n
    \r\n\r\n
    \r\n\" class=\"profile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\r\n
    subContentprofile_displaySubContent\">\r\n
    \r\n
    \r\n
    \r\n \r\n \" class=\"view\">^International(profile as others label,Account_Profile);\r\n \r\n \r\n
    \r\n
    \r\n \r\n
    * -  ^International(\'required field\',Account_Profile);
    † - ^International(\'set by admin\',Account_Profile);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n','Account/Layout',1,1,'FJbUTvZ2nUTn65LpW6gjsA',1227070381,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
    \">\r\n\r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

    \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    *
    \r\n
    \r\n
    \r\n
    \r\n
    ','Account/Profile/Edit',1,1,'75CmQgpcCSkdsL-oawdn3Q',1227052575,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n

    \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n );\'\"/>\r\n  \r\n );\'\"/>\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n ^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    colspan=2 class=\"bar\">\r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    32\" class=\"bar\">
    greenredblue;padding:4px;color:white;font-weight:bold;\">
    \r\n
    \r\n );\" class=\"photostyle\"/>
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n );\'\"/>\r\n  \r\n );\'\"/>\r\n
    \r\n

    \r\n
    \r\n','Account/Profile/View',1,1,'2CS-BErrjMmESOtGT90qOg',1227070888,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n

    ^International(error label,Account_Inbox);

    \r\n

    \r\n

    \">^International(back label,Account_Profile);

    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Account/Profile/Error',1,1,'MBmWlA_YEA2I6D29OMGtRg',1226542675,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n
    \r\n','Account/Layout',1,1,'gfZOwaTWYjbSoVaQtHBBEw',1226974679,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n oddThreadevenThread\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\r\n \r\n \r\n \r\n
    \r\n
     \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
    old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \'\" />\r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(message count,\'Account_Inbox\');\r\n
    \r\n
    \r\n','Account/Inbox/View',1,1,'c8xrwVuu5QE0XtF9DiVzLw',1226894351,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
    disabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>
     
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(subject label,Account_Inbox);:
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
    ^International(status label,Account_Inbox);:
    \r\n
    \r\n
    \r\n
    \r\n
    ','Account/Inbox/ViewMessage',1,1,'0n4HtbXaWa_XJHkFjetnLQ',1226894994,'WebGUI::Asset::Template::HTMLTemplate',1),(' \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
    ^International(reply message labelcompose message label,Account_Inbox);
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
    class=\"inbox_messageTo\"> [];
    ^International(subject label,Account_Inbox);:
    32\" class=\"send\">\r\n   \r\n \'\" />\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    _name\"> []
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n','Account/Inbox/SendMessage',1,1,'6uQEULvXFgCYlRWnYzZsuA',1226896682,'WebGUI::Asset::Template::HTMLTemplate',1),('

    ^International(message sent label,Account_Inbox);

    \r\n

    ^International(message sent text,Account_Inbox);

    \r\n

    \">^International(back label,Account_Inbox);

    ','Account/Inbox/Confirm',1,1,'DUoxlTBXhVS-Zl3CFDpt9g',1226896802,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n oddThreadevenThread\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    ^International(from label,Account_Inbox);^International(invitation label,Account_Inbox);^International(date label,Account_Inbox);
    \" class=\"inbox_from\">\">^International(invitation message,Account_Inbox,);
    ^International(no invitations,Account_Inbox);
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(invitation count,\'Account_Inbox\');\r\n
    \r\n
    \r\n','Account/Inbox/ManageInvitations',1,1,'1Q4Je3hKCJzeo0ZBB5YB8g',1226898445,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
    \'\" />\'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>
     
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n','Account/Inbox/ViewInvitation',1,1,'VBkY05f-E3WJS50WpdKd1Q',1226899241,'WebGUI::Asset::Template::HTMLTemplate',1),(' \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
    ^International(invite a friend,Account_Inbox);
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(to label,Account_Inbox);:
    ^International(subject label,Account_Inbox);:
    \r\n   \r\n \'\" />\r\n
    \r\n
    \r\n
    \r\n','Account/Inbox/InviteUser',1,1,'cR0UFm7I1qUI2Wbpj--08Q',1226964738,'WebGUI::Asset::Template::HTMLTemplate',1),('

    ^International(invitation sent label,Account_Inbox);

    \r\n

    ^International(invitation sent text,Account_Inbox);

    \r\n

    \">^International(back label,Account_Inbox);

    ','Account/Inbox/InviteUserConfirm',1,1,'SVIhz68689hwUGgcDM-gWw',1226973314,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n
    \r\n\" class=\"profile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"profile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"profile_displayView\">^International(\'back label\',\'Account_Friends\');\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Account/Layout',1,1,'zrNpGbT3odfIkg6nFSUy8Q',1226994016,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    class=\"bordered\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \">\"\"^Extras(account/images/no_photo.gif);\"/>\r\n \">
    \r\n \r\n ^International(member since,Account_Friends); ^D(%z,);
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n

    ','Account/Friends/View',1,1,'1Yn_zE_dSiNuaBGNLPbxtw',1226994422,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    class=\"bordered\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \">\"\"^Extras(account/images/no_photo.gif);\"/>
    ^International(online,Friends);^International(offline,Friends);
    \r\n \">
    \r\n \r\n ^International(member since,Account_Friends); ^D(%z,);
    \r\n ^User(homeCountry,);\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n

    ','Account/Friends/Edit',1,1,'AZFU33p0jpPJ-E6qLSWZng',1226994865,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n
    ^International(add to network label,Account_Friends);
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(adding user message,Account_Friends,);
    ^International(sending to message,Account_Friends);
    \r\n
    \r\n
    \r\n

    \r\n','Account/Friends/SendRequest',1,1,'AGJBGviWGAwjnwziiPjvDg',1226995497,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n

    ^International(error label,Account_Friends);

    \r\n

    \r\n

    \">^International(back label,Account_Inbox);

    \r\n

    \r\n','Account/Friends/Error',1,1,'7Ijdd8SW32lVgg2H8R-Aqw',1226995714,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n

    ^International(message sent label,Account_Friends);

    \r\n

    ^International(add to friends confirmation,Account_Friends,);

    \r\n

    \">^International(back to user profile,Account_Friends);

    \r\n

    ','Account/Friends/Confirm',1,1,'K8F0j_cq_jgo8dvWY_26Ag',1226995643,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n

    ^International(remove confirm label,Account_Friends);

    \r\n

    ^International(remove confirm message,Account_Friends,);

    \r\n

    \r\n \">^International(remove confirm no,Account_Friends); · \r\n \">^International(remove confirm yes,Account_Friends);\r\n

    \r\n

    ','Account/Friends/Confirm',1,1,'G5V6neXIDiFXN05oL-U3AQ',1226995768,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Account/Layout',1,1,'9ThW278DWLV0-Svf68ljFQ',1226647187,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    ','Account/Layout',1,1,'aUDsJ-vB9RgP-AYvPOy8FQ',1226660439,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Account/Layout',1,1,'b4n3VyUIsAHyIvT-W-jziA',1227074747,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n oddThreadevenThread\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
     \r\n \r\n \r\n \r\n
    \r\n
    \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
    \">^D(,);
    ^International(no contributions,Account_Contributions);
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
     \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(contribution count,\'Account_Contributions\');\r\n
    \r\n
    ','Account/Contrib/View',1,1,'1IzRpX0tgW7iuCfaU2Kk0A',1227079721,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \r\n\r\n
    \r\n','Account/Layout',1,1,'N716tpSna0iIQTKxS4gTWA',1226604666,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n\r\n \r\n
    \r\n
    ^ViewCart;
    \r\n \">^International(continue shopping button,Shop);\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n','Donation',1,1,'vrKXEtluIhbmAS9xmPukDA',1226698051,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n

    ','Survey',1,1,'PBtmpl0000000000000061',1227252733,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n\r\n\r\n \"> \r\n •\r\n \"> \r\n •\r\n \"> \r\n\r\n\">

    \r\n:
    \r\n:
    \r\n: \r\n\r\n

    \r\n\r\n\r\n
    \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n \r\n \r\n
    \r\n

    \r\n','Survey/Response',1,1,'PBtmpl0000000000000064',1226009610,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n

    \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n >\r\n\r\n
    ','Survey/Take',1,1,'d8jMMMRddSQ7twP4l1ZSIw',1227248175,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n out of \r\n
    \r\n
    \r\n\r\n
    \r\n minutes left\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n
    \r\n

    required\'>

    \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \' id=\'\' size=\'50\' />\r\n \r\n \r\n verbatim\' >\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \' value=\'\'>\r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n verbatim\'>\r\n \r\n \r\n
    \r\n
    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n button\" value=\"\">\r\n \r\n button\">\r\n \r\n \" id=\"\" value=\"\">\r\n \r\n \r\n \r\n verbatim\' name=\'verbatim\'>\r\n
    \r\n \r\n
    \r\n \r\n button\" value=\"\">\r\n \r\n button\">\r\n \r\n \" id=\"\" value=\"\">\r\n \r\n verbatim\' name=\'verbatim\'>\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
    container\'>
    \r\n \' id=\'\' type=text>\r\n button\'>\r\n \r\n verbatim\'>\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n \' name=\'\' value=0>\r\n \r\n \r\n \' name=\'\' value=\"\">\r\n \r\n\r\n \r\n

    \r\n
    \r\n \r\n show\'>0\r\n \r\n \r\n \r\n show\'>\r\n \r\n
    0  \r\n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\r\n \r\n
    slider-min-thumb\' class=slider-min-thumb>\r\n \r\n
    \r\n \r\n
    slider-max-thumb\' class=slider-max-thumb>\r\n \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n
    \r\n\r\n
    \r\n\r\n \r\n \r\n \r\n\r\n \r\n

    \r\n
    \r\n | \' name=\'\'> | \r\n \r\n
    0  \r\n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\r\n
    slider-thumb\' class=slider-thumb>\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n

    Comment:

    \r\n
    \r\n\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n','Survey/Take',1,1,'CxMpE_UPauZA3p8jdrOABw',1227556536,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    default\">\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n','Shop/AddressBook',1,1,'3womoo7Teyy2YKFa25-MZg',1226703362,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \">
    \r\n \r\n
    \r\n\r\n \r\n

    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \r\n \r\n \r\n \r\n
    \">\r\n

    Search Results

    \r\n
    \r\n \">\r\n
    \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n · · \r\n
    \r\n
    \r\n
    \r\n','Thingy/SearchThing',1,1,'ThingyTmpl000000000004',1227044214,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\">\r\n\r\n\r\n | \r\n\r\n
    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000001',1228125743,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n
    \r\n\r\n:
    \r\n:
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000003',1228125758,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n
    \r\n\r\n\r\n
    \r\n^International(\'search in label\',\'Asset_UserList\');
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000002',1228125752,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    • ^International(manage things label,Asset_Thingy);

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n\r\n \r\n
    \r\n \r\n
    rowOnerowTwo\">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Thingy',1,1,'ThingyTmpl000000000001',1227753116,'WebGUI::Asset::Template::HTMLTemplate',1),('

    ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

    \r\n\r\n','Matrix/EditListing',1,1,'matrixtmpl000000000004',1228834590,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n\n\n\n \n\n\n\n \n \n

    \n \">\n \n \n \n

    \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />


    \n \n
    \n\n\n\n·\n\n·\n\n\n\n\n','Article',1,1,'PBtmpl0000000000000207',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n\n
    \" alt=\"\" border=\"0\" />
    \n
    \n
    \n\n\n \n

    \n\n\n\n\n \n

    \n \">\n \n\n

    \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

    \n
    \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000084',1229100305,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n \n \n \n \n \n
     
    /delete.gif\" border=\"0\" onclick=\"removeRow(\'\')\" style=\"cursor:pointer\" alt=\"delete\" />
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \" class=\"PM_blueLink\"> ^International(last week,Asset_TimeTracking);\" class=\"PM_blueLink\">^International(next week,Asset_TimeTracking);
     
    \n \n \n \" onclick=\"addRow();\" />   \" />\n
    \n
    \n\n\n\n \n \">\n \n \n \n \n \n \n \n \n
    /delete.gif\" border=\"0\" onclick=\"removeRow()\" style=\"cursor:pointer\" alt=\"delete\" />
    \n
    ','TimeTracking_row',1,1,'TimeTrackingTMPL000003',1229311434,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n
    \r\n \r\n

    \r\n ^ViewCart();
    \r\n \">^International(continue shopping button,Shop);\r\n \r\n ^ViewCart(); (^CartItemCount;)\r\n

    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n
      \r\n ^International(variants,Asset_Product);\r\n \r\n
    • \r\n
      \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n ^International(30,Asset_Product);\r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n \r\n \r\n
      \r\n ^International(54,Asset_Product);\r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n \r\n
      \r\n ^International(31,Asset_Product);\r\n \r\n
    • :
    • \r\n
      \r\n
    \r\n
    \r\n \r\n \r\n
      \r\n ^International(32,Asset_Product);\r\n \r\n
    • \">
    • \r\n
      \r\n
    \r\n
    \r\n \r\n \r\n
      \r\n ^International(33,Asset_Product);\r\n \r\n
    • \">
    • \r\n
      \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n','Product',1,1,'PBtmpl0000000000000056',1228934532,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n\n
    \n \" alt=\"\" align=\"left\" border=\"0\" />\n\n\n\n\n \n

    \n\n\n\n\n \n

    \n \">\n \n\n\n

    \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

    \n\n\n\n\n
    \n
    \n
    \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000103',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n\n
    \n \n \n
    \n \n \">\n \" alt=\"\" border=\"0\" />
    \n
    \n \n \" alt=\"\" border=\"0\" />
    \n
    \n
    \n\n\n\n\n \n

    \n\n\n\n

    \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

    \n\n\n\n\n
    \n
    \n
    \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000115',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('

    Calendar

    \r\n\r\n\r\n

    \r\n \r\n ^International(New Year,Asset_Calendar);,\r\n \r\n \r\n ^International(New Month,Asset_Calendar);,\r\n \r\n \r\n ^International(New Day,Asset_Calendar);\r\n \r\n

    \r\n\r\n

    \">

    \r\n \r\n

    \r\n\r\n
    \r\n\r\n\r\n \"><< ^International(previous page,Asset_Calendar);\r\n\r\n\r\n \">^International(next page,Asset_Calendar); >>\r\n','Calendar/Print/List',1,1,'uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n
    \r\n ^ViewCart(); (^CartItemCount;)\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n \r\n\r\n \r\n
    \r\n ^International(subcategories,Asset_Shelf);: \r\n \r\n \r\n \">\r\n \r\n
    \r\n
    \r\n\r\n \r\n
    \r\n \r\n \r\n \" class=\"thumbnail\">\" alt=\"\" />\r\n \r\n \r\n
    \r\n \r\n ()\r\n
    \r\n
    \r\n
    \r\n \r\n \n \n
    \r\n
    ','Shelf',1,1,'nFen0xjkZn8WkpM93C9ceQ',1229117831,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\"> \n \n \n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n\n \n \n \n \n \n \n
    \n
    \n \n \n \n \n \n
    ^International(Stock Watch,Asset_StockData);\n
    \n ^International(Last Update,Asset_StockData);: EDT
    \n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n qmmt_cycleqmmt_main\'> \n \n \n \n \n \n \n \n
    Name SymbolLastTickChg
    \n \')\">\n \n /\" alt=\"\" /> \n _up_down\" style=\"text-align: right;whitespace:nowrap;\">
    \n
    ','StockData',1,1,'StockDataTMPL000000001',1229453697,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n WebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\n \n \n \n\n\n

    \n \n
    \n\n','style',1,0,'PBtmpl0000000000000137',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n
    \r\n
    ^International(hide new content list,Asset_Dashboard);
    \r\n
    \r\n
    \r\n\r\n\r\n\">\r\n
    _div\" class=\"dragable\">\r\n
    _div\">
    \r\n
    \r\n
    \r\n\r\n
    Add New Content
    \r\n\r\n

    \r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n

    \r\n\r\n

    \r\n
    \r\n
    ^L(\"17\",\"\",\"PBtmpl0000000000000092\"); ^AdminToggle(Modify the Default User\'s Perspective,Leave Default User Perspective (Admin Mode));
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\r\n \">\r\n\r\n
    _div\" class=\"dragable\">\r\n
    _div\">
    \r\n
    \r\n\r\n\r\n\r\n\">\r\n\r\n
    _div\" class=\"dragable\">\r\n
    _div\">
    \r\n
    \r\n\r\n\r\n\">\r\n\r\n
    _div\" class=\"dragable\">\r\n
    _div\">
    \r\n
    \r\n
    \r\n
     
    \r\n\r\n
    ','Dashboard',1,1,'DashboardViewTmpl00001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\n\n

    \n

    \n\n\n

    \n • \">\n \n • \" onclick=\"\">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n\n\n\n \n \n \n\n\n\n\n\n \n \n \n \n \n \n \n\n\n
    ^International(Entry ID,Asset_DataForm);^International(Submission Date,Asset_DataForm);
    \">
    ','DataForm/List',1,1,'PBtmpl0000000000000021',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n<tmpl_var title>\n\n\n/taskEdit.css\" />\n\n\n
    \">\n\" />\n\n\" />\n\" />\n
    \n
    \" size=\"20\" class=\"inputBox\" />\n\n
    \n\n

    \n

    \n','ProjectManager_resourcePopup',1,1,'ProjectManagerTMPL0005',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n
    \n
    \n\n\n\n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \"> \n
    \">
    \n \">\n \n
    \n
    %;\">
    \n
    %
    \n
    \n
    \n \n \">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n \'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
    ','ProjectManager_dashboard',1,1,'ProjectManagerTMPL0001',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n

    \r\n\r\n
    \r\n
      \r\n
    • \r\n
    • \r\n
    \r\n
    \r\n
    \r\n
    \r\n

    ^International(keywords,Asset);: \">

    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \"> | \"> | \"> | \">
    ','WikiPage',1,1,'WikiPageTmpl0000000001',1229706257,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n \n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n
     
    ^International(has posted to one of your subscriptions,Asset_Collaboration);
    \">
      
    \n

    \">

    ','Collaboration/Notification',1,1,'PBtmpl0000000000000027',1230159257,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \n \n \n \n \n ^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n\n\n\n\n\n \n \n \n \n \n ^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n','HttpProxy',1,1,'PBtmpl0000000000000033',1230159454,'WebGUI::Asset::Template::HTMLTemplate',1),('

    ^International(post received,Asset_Post);

    \">^International(493,WebGUI);

    ','Collaboration/PostReceived',1,1,'default_post_received1',1230356300,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \">^International(Download this data,Asset_SQLReport);\n\n\n\n

      \n \n
    • \n
      \n
    \n
    \n\n\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n\n
    \n \n
    \n
    ','SQLReport',1,1,'PBtmpl0000000000000059',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

    \n
    \n\n\n

    \n
    \n\n\n\n
    \n\n

    \n\n

    \n
    ','Navigation',1,1,'PBtmpl0000000000000117',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n :     [ \"> \"> ]
    \r\n
    \r\n
    \r\n\r\n\r\n ^International(job description,Asset_Collaboration);
    \r\n

    \r\n
    \r\n\r\n\r\n ^International(job requirements,Asset_Collaboration);
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
    ^International(date posted,Asset_Collaboration); 
    ^International(location,Asset_Collaboration); 
    ^International(compensation,Asset_Collaboration); 
    ^International(views,Asset_Collaboration); 
    \r\n\r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n\r\n
    \r\n

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n
    \r\n
    \r\n :
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n \r\n :
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n
    \r\n
    \r\n :
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n \r\n :
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> \r\n •\r\n \r\n \"> \r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \"> \r\n \r\n \">\r\n \r\n \r\n
    ','Collaboration/Thread',1,1,'PBtmpl0000000000000098',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n :     [ \"> \"> ]
    \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n ^International(Link Description,Asset_Collaboration);

    \r\n
    \r\n \r\n ^International(Link URL,Asset_Collaboration);

    \r\n \">

    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n\r\n
    \r\n

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    Current\">\r\n \" id=\"id\">\r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n
    \r\n
    \r\n :
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n \r\n :
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \"> • \r\n \r\n \r\n \"> •\r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    px;\">\r\n
    Current\">\r\n \" id=\"id\">\r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n
    \r\n
    \r\n :
    \r\n : \r\n \r\n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\r\n
    \r\n
    \r\n \r\n :
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> \r\n •\r\n \r\n \">^International(List All Links,Asset_Collaboration);\r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n \r\n \r\n •\r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
    ','Collaboration/Thread',1,1,'PBtmpl0000000000000113',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('\"> \n \n \n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n

    \n
    \n\n\n \n \n\n\n \n \n\n
    ^International(364,WebGUI);:\n \n
    ^International(For,WebGUI);: 
    \n
    \n
    ','MultiSearch',1,1,'MultiSearchTmpl0000001',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n , , \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    :00
    \r\n
    \r\n
      \r\n
    • \r\n \">\r\n
    • \r\n
    \r\n
    \r\n
    ','Calendar/Day',1,1,'CalendarDay00000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n \r\n
    \r\n \r\n \r\n
    \r\n ^International(event details,Asset_Event);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    ^International(event title,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(location,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(description,Asset_Event);
    \r\n
    \r\n
    \r\n
    \r\n
    ^International(scheduled,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(related material,Asset_Event);
    \r\n
    \r\n \r\n
    \r\n
    ^International(attachments,Asset_Event);
    \r\n
    \r\n \"> \" />
    \r\n
    \r\n
    \r\n
    ','Calendar/Event',1,1,'CalendarEvent000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    active current\">\r\n \r\n \">\r\n \r\n \r\n \r\n \" class=\"moreButton\" onmouseover=\"return showEvents(\'overlay\');\">\r\n /wobject/Calendar/images/more.gif\" />\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \" class=\"moreDisplay\">\r\n
    \r\n
      \r\n \r\n
    • \">
    • \r\n
      \r\n
    \r\n
    \r\n
    \r\n
    ','Calendar/Month',1,1,'CalendarMonth000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n ?type=day\">^International(label day,Asset_Calendar);\r\n ?type=week\">^International(label week,Asset_Calendar);\r\n ?type=month\">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n
    \r\n  \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    ^International(keyword,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(start date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(end date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \" style=\"padding-left:10px\">\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    ','Calendar/Search',1,1,'CalendarSearch00000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n , to , \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    curDay\"> \r\n \r\n \r\n
    \r\n
    \r\n
    ','Calendar/Week',1,1,'CalendarWeek0000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n

    ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

    \r\n\r\n

    ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\r\n \" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\r\n ^International(\'template upload archive\',\'Asset_GalleryAlbum\');\r\n
    ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n \r\n\r\n
    ','GalleryAlbum/AddArchive',1,1,'0X4Q3tBWUb_thsVbsYz9xQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','GalleryAlbum/ViewRss',1,1,'mM3bjP_iG9sv5nQb4S17tQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n^International(template url_delete,Asset_Photo);\n
    \r\n\r\n

    \r\n\r\n
    \r\n \r\n
    \r\n\r\n
    ','GalleryAlbum/Delete',1,1,'UTNFeV7B_aSCRmmaFCq4Vw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n^International(template url_delete,Asset_Photo);\n
    \r\n\r\n

    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n ^International(\"template delete message\",\"Asset_Photo\");\r\n
    \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    ','GalleryFile/Delete',1,1,'zcX-wIUct0S_np14xxOA-A',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
    \n\n

    \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n
    ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
    \n
    \n
    \n\n ^International(\'editForm assetIdThumbnail label\',\'Asset_GalleryAlbum\');

    \n \n
    \n
    \n \n\n
    \n

    \n
    \n\n
    \n \n
    \n
     
    \n
    \n
    \n
    \n\n\n
    \n \n
    \n
    \n','GalleryAlbum/Edit',1,1,'6X-7Twabn5KKO_AbgK3PEw',1230585542,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \"\"\n \n \"\"\n \"\"\n \n \"\"\n
    \n
    \n
    \n\n

    \n\n
    \n ^International(\"template comment add title\",\"Asset_Photo\");\n ^International(\"template comment edit title\",\"Asset_Photo\");\n \n \n
    \n
    \n \n
    \n \n
    \n
    \n
    \n
    \n','GalleryFile/EditComment',1,1,'OxJWQgnGsgyGohP2L3zJPQ',1230585543,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
    \n\n

    \n\n

    \n\n \n

    ^International(\'template error happened\',\'Asset_Photo\');

    \n
      \n \n
    • \n
      \n
    \n
    \n\n \n\n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n ^International(\'template upload single\',\'Asset_GalleryAlbum\');\n \" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'editForm title label\',\'Asset_Photo\');\n \n
    ^International(\'editForm synopsis label\',\'Asset_Photo\');\n \n
    ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n \n
    ^International(\'editForm keywords\',\'Asset_Photo\');\n \n
    ^International(\'editForm location\',\'Asset_Photo\');\n \n
    ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n \n
    \n\n \n\n
    \n\n','GalleryFile/Edit',1,1,'7JCTAiu1U_bT9ldr655Blw',1230585543,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListAlbumsRss',1,1,'ilu5BrM-VGaOsec9Lm7M6Q',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n \r\n
    ','Gallery/ListAlbums',1,1,'azCqD0IjdQSlM3ar29k5Sg',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListFilesForUserRss',1,1,'-ANLpoTEP-n4POAdRxCzRw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n \r\n\r\n

    ^International(template listFilesForUser albums title,Asset_Gallery);

    \r\n \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n

    ^International(template listFilesForUser pictures title,Asset_Gallery);

    \r\n \r\n \r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    ','Gallery/ListFilesForUser',1,1,'OkphOEdaSGTXnFGhK4GT5A',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n ^International(template makeShortcut title,Asset_Photo);\n
    \n\n

    \n\n
    \n\n \n \n \n \n \n \n \n \n \n \n
    ^International(template makeShortcut file,Asset_Photo);
    ^International(template makeShortcut album,Asset_Photo);
    \n\n
    \n \n
    \n\n
    \n
    \n','GalleryFile/MakeShortcut',1,1,'m3IbBavqzuKDd2PGGhKPlA',1230585543,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(\'template search title\',\'Asset_Gallery\');\r\n
    \r\n\r\n \r\n\r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'template search field title\',\'Asset_Gallery\');
    ^International(\'template search field description\',\'Asset_Gallery\');
    ^International(\'template search field keywords\',\'Asset_Gallery\');
    ^International(\'template search field className\',\'Asset_Gallery\');\r\n \r\n
    ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
     \r\n \r\n
    \r\n
    \r\n \r\n\r\n

    \r\n\r\n \r\n
    \r\n \r\n
    \r\n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\r\n
    \r\n\r\n

    Albums

    \r\n \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n

    Pictures

    \r\n \r\n \r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    Created ^D(\"%M/%d/%Y\",^International(\'template file creationDate\',\'Asset_GalleryAlbum\'););
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    ','Gallery/Search',1,1,'jME5BEDYVDlBZ8jIQA9-jQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
    \r\n\r\n \r\n\r\n
    \r\n
    \r\n \"Previous\r\n \r\n \"Next\r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \">\" style=\"border: none\" /> \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    ','GalleryAlbum/ViewSlideshow',1,1,'KAMdiUdJykjN02CPHpyZOw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n\n\n','GalleryAlbum/ViewThumbnails',1,1,'q5O62aH4pjUXsrQR3Pq4lw',1230585542,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url,Asset_GalleryAlbum);    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
    \r\n\r\n\r\n \r\n\r\n \r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    ^International(template file creationDate,Asset_GalleryAlbum); ^D(\"%z\",);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    ','GalleryAlbum/View',1,1,'05FpjceLYhq4csF1Kww1KQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
    \r\n \r\n\r\n
    \r\n
    \r\n \">^International(\'template url_album\',\'Asset_Photo\');    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(\'template by\',\'Asset_Gallery\');: \">\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n ^International(template view details,Asset_Photo);\r\n
    \r\n
    \r\n ^International(\'template creationDate\',\'Asset_Photo\');:\r\n
    \r\n
    \r\n ^D(\"%z %Z\", );\r\n
    \r\n
    \r\n
    \r\n
    \r\n ^International(\'template views\',\'Asset_Photo\');:\r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n ^International(\'template by\',\'Asset_Gallery\');:\r\n
    \r\n
    \r\n \">\r\n
    \r\n
    \r\n
    \r\n
    \r\n ^International(\'template friendsOnly label\',\'Asset_Photo\');:\r\n
    \r\n
    \r\n ^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\r\n
    \r\n
    \r\n
    \r\n
    \r\n ^International(\'template location\',\'Asset_Photo\');:\r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n ^International(template view available resolutions,Asset_Photo);\r\n
    \r\n
    \r\n \r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n ^International(\'template keywords\',\'Asset_Photo\');\r\n \r\n \">, \r\n \r\n
    \r\n
    \r\n
    \r\n ^International(more details,Asset_Photo);\r\n
    \r\n \r\n
    rowOnerowTwo\">\r\n
    \r\n :\r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n ^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    ','GalleryFile/View',1,1,'TEId5V-jEvUULsZA0wuRuA',1230702582,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n
    \n
      \n
    • \n
    \n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \n \r\n \r\n \r\n \r\n \n \r\n \r\n \r\n \r\n
    \r\n \r\n\r\n
    \n','Shop/Credentials',1,1,'itransact_credentials1',1228953856,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n \n \n \n \n \n \n
    \n
    \n \n \n \n \n \n
    ()\n \n
    1:23 PM EDT
    \n \n
    \n
    \n
    \n
    \n \n \n \n \n \n \n
    \n &t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n \n \n \n \n \n \n \n \n \n \n
    Today5d1m3m1y5y20y
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(stocks.last,Asset_StockData);
    ^International(Market Cap,Asset_StockData);
    ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n /\' alt=\"\" /> \n
    ^International(Open,Asset_StockData);
    ^International(Day High,Asset_StockData);
    ^International(stocks.bid,Asset_StockData);
    ^International(52 Wk High,Asset_StockData);
    ^International(EPS,Asset_StockData);
    ^International(stocks.ex_div,Asset_StockData);
    ^International(Yield,Asset_StockData);
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(Last Trade,Asset_StockData);
    ^International(Volume,Asset_StockData); m
    ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
    ^International(Prev Close,Asset_StockData);
    ^International(Day Low,Asset_StockData);
    ^International(stocks.ask,Asset_StockData);
    ^International(52 Wk Low,Asset_StockData);
    ^International(stocks.pe,Asset_StockData);
    ^International(Dividend,Asset_StockData);
    ^International(Exchange,Asset_StockData);
    \n
    \n
    \n\n\n\n','StockData/Display',1,1,'StockDataTMPL000000002',1229494994,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n

    \n\n \">\n\n \n\n

    \n\n\n

    \n\n\n\n \n \n
    \n \n
    \n \n
    \n \" style=\"font-size: 9px;\">^International(read more,WebGUI);...\n
    \n
    \n
    \n
    ','SyndicatedContent',1,1,'GNvjCFQWjY2AF2uf0aCM8Q',1230356300,'WebGUI::Asset::Template::HTMLTemplate',1),('

    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n
    ^International(\'comparison label\',\'Asset_Matrix\');
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n
    \r\n
    \r\n
    \r\n\r\n','Matrix/Compare',1,1,'matrixtmpl000000000002',1233132357,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n
    \r\n ^International(\'expand the matrix label\',\'Asset_Matrix\');\r\n
    \r\n \r\n
    \r\n \r\n ^International(\'add new listing text\',\'Asset_Matrix\');\r\n \r\n ^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    ^International(\'listing statistics label\',\'Asset_Matrix\');
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
    ^International(\'most views label\',\'Asset_Matrix\');\"> ()
    ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
    \r\n \r\n
    ^International(\'most recently updated label\',\'Asset_Matrix\');
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \">
    \r\n \r\n
    ^International(\'best rated label\',\'Asset_Matrix\');
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \"> (/10)
    \r\n \r\n
    ^International(\'worst rated label\',\'Asset_Matrix\');
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \"> (/10)
    \r\n \r\n
    ^International(\'site statistics label\',\'Asset_Matrix\');
    \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'listing count label\',\'Asset_Matrix\');
    \r\n
    \r\n \r\n \r\n \r\n\r\n \r\n \r\n
    ^International(\'pending listings label\',\'Asset_Matrix\');:
    \r\n
    \r\n
      \r\n \r\n
    • \">
    • \r\n
      \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Matrix',1,1,'matrixtmpl000000000001',1232674109,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n \r\n \r\n

    \r\n
    \r\n \r\n

    \r\n \r\n \r\n [\r\n ^AssetProxy(new-matrix/matrix-nav);\r\n blockblockblock\">\r\n \r\n • \">Edit\r\n \r\n \r\n \r\n • \">Approve\r\n \r\n • \">Delete\r\n \r\n \r\n ]\r\n \r\n

    \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n ^International(\'description label\',\'Asset_MatrixListing\');\r\n \r\n \r\n \r\n Add a Description\r\n \r\n No Description\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
      \r\n
    • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\">
    • \r\n
    • ^International(\'version label\',\'Asset_MatrixListing\');
    • \r\n
    • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\">
    • \r\n
    • ^International(\'last updated label\',\'Asset_MatrixListing\');
    • \r\n
    • ^International(\'clicks label\',\'Asset_Matrix\');
    • \r\n
    • ^International(\'views label\',\'Asset_Matrix\');
    • \r\n
    • ^International(\'compares label\',\'Asset_Matrix\');
    • \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n Comments\r\n \r\n Send Creator a Message\r\n
    \r\n \r\n
    ^International(\'message sent message\',\'Asset_MatrixListing\');
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Matrix/Detail',1,1,'matrixtmpl000000000003',1232674242,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n
    ^International(\'search label\',\'Asset_Matrix\');
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n\r\n\r\n','Matrix/Search',1,1,'matrixtmpl000000000005',1232674190,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \">Return to Matrix\r\n\r\n','Navigation',1,1,'alraubvBu-YJJ614jAHD5w',1232664015,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n
    ^International(\'please enter answer information\',\'Asset_Survey\');
    \r\n
    \r\n\r\n
    \r\n\r\n \r\n
    \r\n

    ^International(\'answer number\',\'Asset_Survey\');
    ^International(\'answer number description\',\'Asset_Survey\');
    \r\n \'>\r\n

    \r\n

    ^International(\'verbatim\',\'Asset_Survey\');
    ^International(\'verbatim description\',\'Asset_Survey\');
    \r\n ^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');

    \r\n

    ^International(\'min\',\'Asset_Survey\');
    ^International(\'min description\',\'Asset_Survey\');
    \' name=min size=2>

    \r\n

    ^International(\'max\',\'Asset_Survey\');
    ^International(\'max description\',\'Asset_Survey\');
    \' name=max size=2>

    \r\n

    ^International(\'step\',\'Asset_Survey\');
    ^International(\'step description\',\'Asset_Survey\');
    \' name=step size=2>

    \r\n\r\n
    \r\n\r\n

    ^International(\'recorded answer\',\'Asset_Survey\');
    ^International(\'recorded answer description\',\'Asset_Survey\');

    \r\n

    ^International(\'jump to\',\'Asset_Survey\');
    ^International(\'jump to description\',\'Asset_Survey\');
    \' name=goto size=4>\r\n

    ^International(\'cols\',\'Asset_Survey\');
    ^International(\'cols description\',\'Asset_Survey\');
    \' name=textCols>\r\n
    ^International(\'rows\',\'Asset_Survey\');
    ^International(\'rows description\',\'Asset_Survey\');
    \r\n \' name=textRows>

    \r\n

    ^International(\'is this the correct answer\',\'Asset_Survey\');
    ^International(\'is this the correct answer description\',\'Asset_Survey\');
    \r\n checked>^International(\'yes\',\'Asset_Survey\');\r\n checked>^International(\'no\',\'Asset_Survey\');

    \r\n\r\n

    ^International(\'answer value\',\'Asset_Survey\');
    ^International(\'answer value description\',\'Asset_Survey\');
    \' name=value>

    \r\n
    \r\n

    ^International(\'answer text\',\'Asset_Survey\');
    ^International(\'answer text description\',\'Asset_Survey\');

    \r\n
    \r\n
    \r\n
    ','Survey/Edit',1,1,'AjhlNO3wZvN5k4i4qioWcg',1232726656,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n
    ^International(\'please enter question information\',\'Asset_Survey\');
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
    \r\n

    ^International(\'question number\',\'Asset_Survey\');
    ^International(\'question number description\',\'Asset_Survey\');

    \r\n \'>\r\n \r\n \r\n

    ^International(\'question text\',\'Asset_Survey\');
    ^International(\'question text description\',\'Asset_Survey\');
    \r\n

    \r\n

    ^International(\'question variable name\',\'Asset_Survey\');
    ^International(\'question variable name description\',\'Asset_Survey\');
    \' name=variable size=2>

    \r\n

    ^International(\'randomize answers\',\'Asset_Survey\');
    ^International(\'randomize answers description\',\'Asset_Survey\');
    \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

    \r\n

    ^International(\'question type\',\'Asset_Survey\');
    ^International(\'question type description\',\'Asset_Survey\');
    \r\n

    \r\n\r\n
    \r\n\r\n

    ^International(\'vertical display\',\'Asset_Survey\');
    ^International(\'vertical display description\',\'Asset_Survey\');
    \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

    \r\n

    ^International(\'show text in button\',\'Asset_Survey\');
    ^International(\'show text in button description\',\'Asset_Survey\');
    \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

    \r\n\r\n

    ^International(\'allow comment\',\'Asset_Survey\');
    ^International(\'allow comment description\',\'Asset_Survey\');
    \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');\r\n   
    ^International(\'cols\',\'Asset_Survey\');
    ^International(\'cols description\',\'Asset_Survey\');
    \' name=commentCols> \r\n
    ^International(\'rows\',\'Asset_Survey\');
    ^International(\'rows description\',\'Asset_Survey\');
    \r\n \' name=commentRows>
    \r\n

    \r\n

    ^International(\'maximum number of answers\',\'Asset_Survey\');
    ^International(\'maximum number of answers description\',\'Asset_Survey\');
    \' name=maxAnswers size=2>

    \r\n

    ^International(\'required\',\'Asset_Survey\');
    ^International(\'required description\',\'Asset_Survey\');
    \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

    \r\n

    ^International(\'question value\',\'Asset_Survey\');
    ^International(\'question value description\',\'Asset_Survey\');
    \' name=value>

    \r\n
    \r\n
    \r\n
    \r\n
    ','Survey/Edit',1,1,'wAc4azJViVTpo-2NYOXWvg',1232907257,'WebGUI::Asset::Template::HTMLTemplate',1),('
    \r\n
    ^International(\'please enter section information\',\'Asset_Survey\');
    \r\n
    \r\n
    \r\n\r\n
    \r\n

    ^International(\'section number\',\'Asset_Survey\');
    ^International(\'section number description\',\'Asset_Survey\');

    \r\n \'>\r\n \r\n \r\n

    ^International(\'section name\',\'Asset_Survey\');
    ^International(\'section name description\',\'Asset_Survey\');
    \' type=text>

    \r\n
    \r\n

    ^International(\'randomize questions\',\'Asset_Survey\');
    ^International(\'randomize questions description\',\'Asset_Survey\');

    \r\n\r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');\r\n\r\n

    ^International(\'section custom variable name\',\'Asset_Survey\');
    ^International(\'section custom variable name description\',\'Asset_Survey\');
    \' name=variable size=2>

    \r\n

    ^International(\'section branch goto variable name\',\'Asset_Survey\');
    ^International(\'section branch goto variable name description\',\'Asset_Survey\');
    \' name=goto size=2>

    \r\n

    ^International(\'questions per page\',\'Asset_Survey\');
    ^International(\'questions per page description\',\'Asset_Survey\');
    \r\n

    \r\n
    \r\n

    ^International(\'questions on section page\',\'Asset_Survey\');
    ^International(\'questions on section page description\',\'Asset_Survey\');
    \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

    \r\n


    \r\n\r\n

    ^International(\'title on every page\',\'Asset_Survey\');
    ^International(\'title on every page description\',\'Asset_Survey\');
    \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

    \r\n

    ^International(\'text on every page\',\'Asset_Survey\');
    ^International(\'text on every page description\',\'Asset_Survey\');
    \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

    \r\n

    ^International(\'terminal section\',\'Asset_Survey\');
    ^International(\'terminal section description\',\'Asset_Survey\');
    \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

    \r\n

    ^International(\'terminal section url\',\'Asset_Survey\');
    ^International(\'terminal section url description\',\'Asset_Survey\');
    \'>\r\n
    \r\n

    ^International(\'section text\',\'Asset_Survey\');
    ^International(\'section text description\',\'Asset_Survey\');

    \r\n
    \r\n
    \r\n\r\n','Survey/Edit',1,1,'1oBRscNIcFOI-pETrCOspA',1232648656,'WebGUI::Asset::Template::HTMLTemplate',1),(' \r\nWebGUI ^International(assetName,Asset_Survey);\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n\r\n
      \r\n\r\n
      \r\n
      \r\n\r\n\r\n\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n\r\n','Survey/Edit',1,1,'GRUNFctldUgop-qRLuo_DA',1232646902,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n\r\n\r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
      ^International(\'user label\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
      /%
      \r\n\r\n\r\n\r\n
      \r\n · · \r\n
      \r\n
      \r\n','Survey/Gradebook',1,1,'PBtmpl0000000000000062',1232981641,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n\r\n\r\n\r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \" style=\"display:none;\">\r\n \r\n \r\n \r\n \r\n
      ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
      \');\">^International(\'show comments label\',\'Asset_Survey\');
      \r\n \r\n

      \r\n
      \r\n
      \r\n \r\n
      \r\n \');\">^International(\'show responses label\',\'Asset_Survey\');\r\n
      \r\n
      \" style=\"display:none;\">\r\n \r\n

      \r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n


      \r\n
      \r\n\r\n\r\n
      \r\n · · \r\n
      \r\n
      \r\n','Survey/Overview',1,1,'PBtmpl0000000000000063',1233156264,'WebGUI::Asset::Template::HTMLTemplate',1); +INSERT INTO `snippet` VALUES ('SynConXSLT000000000001','\n\n\n \n \n \n \n \n \nYou\'re viewing an RSS version 0.9 feed. Please use an RSS feed reader to view this content as intended.\n
      \n
      \n \n
      \n
      \n \n
      \n
        \n \n
      \n
      \n
      \n \n
    • \n \n \n \n
    • \n
      \n
      ',0,'application/xml',1124395707,3600),('SynConXSLT000000000002','\n\n\n \n \n \n \n \n \n
      \nYou\'re viewing an RSS version 0.91 feed. Please use an RSS feed reader to view this content as intended.\n
      \n \n
      \n
      \n \n
      \n
        \n \n
      \n\n
      \n
      \n \n
    • \n \n \n \n
      \n \n\n
      \n
    • \n
      \n
      ',0,'application/xml',1124395707,3600),('SynConXSLT000000000003','\n\n\n \n \n \n \n \n \n
      \nYou\'re viewing an RSS version 1.0 feed. Please use an RSS feed reader to view this content as intended.\n
      \n \n
      \n
      \n \n
      \n
        \n \n
      \n\n
      \n
      \n \n
    • \n \n \n \n \n (\n )\n \n\n
      \n \n
      \n
    • \n
      \n
      \n',0,'application/xml',1124395707,3600),('SynConXSLT000000000004','\n\n\n \n \n \n \n \n \n
      \nYou\'re viewing an RSS version 2.0 feed. Please use an RSS feed reader to view this content as intended.\n
      \n \n
      \n
      \n \n
      \n
        \n \n
      \n\n
      \n
      \n \n
    • \n \n \n \n \n ()\n \n\n
      \n \n
      \n
    • \n
      \n
      ',0,'application/xml',1124395707,3600),('7-0-style0000000000003','body, html\n{\n text-align:center;\n margin:0px;\n height:100%; \n background-color:#494949;\n}\n\n#main\n{\n width:800px;\n background: url(\'^FileUrl(style1/main_bg.jpg);\') repeat-y;\n height:100%;\n margin-left:auto;\n margin-right:auto;\n margin-top:0px;\n margin-bottom:0px;\n position:relative;\n}\nbody > #main\n{\n height:auto;\n min-height:100%;\n}\n\n#main #mainHeader\n{\n width:800px;\n height:133px;\n background: url(\'^FileUrl(style1/header.jpg);\') top left no-repeat;\n margin-bottom:0px;\n position:relative;\n}\n#main #mainHeader #title\n{\n position:absolute;\n top:23px;\n left:145px;\n font-size:32pt;\n font-family:arial;\n color:white;\n font-weight:bold;\n}\n#main #mainHeader #title a {\n color:white;\n text-decoration:none;\n}\n\n#main #mainContent\n{\n background: url(\'^FileUrl(style1/orange_left01.jpg);\') left top no-repeat;\n width:100%;\n height:100%; \n margin-top:0px;\n text-align:left;\n border:solid red 0px;\n}\n#main > #mainContent\n{\n margin-top:0px;\n min-height:500px;\n}\n#main > #mainContent > p {\n margin-top:0px;\n}\n#main #mainContent #mainText a:link {\n color:#FF7F23;\n}\n#main #mainContent #mainText a:visited {\n color:#D25900;\n}\n\n/* LEVEL 1 AND 2 NAVIGATION */\n#main .mainNav_1, #main .mainNav_2 {\n border-bottom:dashed #DADADA 1px; \n width:621px;\n height:25px;\n text-align:left;\n position:relative;\n margin-left:137px; \n clear:both;\n}\n#main .mainNav_1 a:link, #main .mainNav_1 a:visited, #main .mainNav_2 a:link, #main .mainNav_2 a:visited {\n color:white;\n text-decoration:none;\n top:5px;\n position:relative;\n -moz-box-sizing:border-box;\n}\n#main .mainNav_1 a:hover,#main .mainNav_2 a:hover {\n color:black;\n}\n#main .mainNav_1 div .left, #main .mainNav_2 div .left {\n width:12px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .left {\n background: url(\'^FileUrl(style1/nav2_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div .center, #main .mainNav_2 div .center { \n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_center.jpg);\') repeat-x top left;\n color:white;\n font-family:arial, verdana;\n font-size:8pt;\n}\n#main .mainNav_2 div .center {\n background: url(\'^FileUrl(style1/nav2_off_center.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div .right, #main .mainNav_2 div .right {\n width:10px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .right {\n background: url(\'^FileUrl(style1/nav2_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .left {\n background: url(\'^FileUrl(style1/nav1_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .center {\n background: url(\'^FileUrl(style1/nav1_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div.navOn .right {\n background: url(\'^FileUrl(style1/nav1_on_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .left {\n background: url(\'^FileUrl(style1/nav2_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .center {\n background: url(\'^FileUrl(style1/nav2_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_2 div.navOn .right {\n background: url(\'^FileUrl(style1/nav2_on_right.jpg);\') no-repeat top left;\n} \n#main .mainNav_1 div.navOn a:link, #main .mainNav_1 div.navOn a:visited, #main .mainNav_2 div.navOn a:link, #main .mainNav_2 div.navOn a:visited {\n color:black;\n}\n/* ENDOF LEVEL 1 AND 2 NAVIGATION */\n\n#main #crumbTrail {\n margin-left:177px;\n margin-bottom:0px;\n color:gray;\n font-size:8pt;\n font-weight:bold;\n}\n#main #crumbTrail a.crumbTrail:visited, #main #crumbTrail a.crumbTrail:link {\n color:silver;\n font-size:8pt; \n font-family:arial;\n text-decoration:none;\n font-weight:normal;\n}\n#main #crumbTrail a.crumbTrail:hover {\n color:gray;\n}\n\n#main #mainText\n{\n padding-left:150px;\n font-family:verdana;\n font-size:9pt;\n width:600px;\n margin-top:0px;\n}\n\n#main #gui\n{\n bottom:0px;\n left:0px;\n position:absolute;\n width:135px;\n font-size:8pt;\n color:black;\n font-family:arial;\n text-align:right;\n}\n#main #gui .loginBox {\n padding-right:12px;\n -moz-box-sizing:border-box;\n width:100px; \n float:right;\n margin-bottom:10px;\n}\n#main #gui .loginBox .loginBoxField {\n width:75px;\n}\n#main #gui .loginBox .loginBoxButton {\n background-color:#D65501;\n color:white;\n border:solid white 2px;\n margin-top:4px;\n font-variant:small-caps;\n}\n#main #gui a\n{\n color:white; \n}\n#copyright {\n color:#fff;\n position:absolute;\n top:110px;\n right:40px;\n font-family:verdana;\n font-size:8pt;\n font-weight:bold;\n background-color:#2D2D2D;\n opacity:0.4;\n -moz-opacity:0.4;\n -khtml-opacity:0.4; \n padding:2px;\n}\n* html #copyright {\n background: transparent;\n}\n',1,'text/css',1147642492,3600),('7-0-style0000000000033','body, html { \n height:100%; \n}\nbody {\n background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg);\') repeat-y right; \n margin:0px;\n}\n.rightColumn {\n width:20%;\n height:100%;\n background: #eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg);\') repeat-y right; \n text-align:center; \n}\n.rightColumn #pb_wg_bg {\n background: url(\'^FileUrl(style2/pb_wg_bg.jpg);\') repeat-x;\n width:100%;\n text-align:left; \n}\n.rightColumn #pb_wg {\n background: url(\'^FileUrl(style2/pb_wg.jpg);\') left no-repeat;\n height:53px;\n}\n.leftColumn { \n width:80%; \n background: white url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; \n} \n.leftColumn #header {\n width:100%;\n background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg);\') right no-repeat; \n height:86px;\n position:relative;\n}\n.leftColumn #header #title, .leftColumn #header #title_bg {\n color:white;\n font-size:36pt;\n font-weight:bold;\n font-family:arial;\n font-variant:small-caps;\n letter-spacing:12px;\n top:15px;\n left:5px;\n position:absolute;\n z-index:10;\n}\n.leftColumn #header #title a {\n color:white;\n text-decoration:none;\n}\n.leftColumn #header #title_bg {\n color:black;\n z-index:5;\n top:17px;\n left:7px;\n}\n.leftColumn #context {\n /*background: #fff url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; */\n width:95%;\n font-family:verdana;\n font-size:9pt;\n color:#242424;\n -moz-box-sizing:border-box; \n position:relative;\n padding-left:1%;\n padding-right:1%;\n padding-bottom:15px;\n}\n.leftColumn #context a {\n color:#7C9AB0;\n font-weight:bold;\n}\n.leftColumn #context a:hover {\n text-decoration:none;\n}\n.leftColumn #pageTitleBG {\n background: url(\'^FileUrl(style2/page_title_bg.jpg);\') repeat-x; \n width:100%;\n}\n.leftColumn #pageTitleBG #pageTitle {\n background: url(\'^FileUrl(style2/page_title.jpg);\') right no-repeat; \n width:100%;\n height:50px;\n} \n.leftColumn #pageTitleBG #pageTitle h2 {\n font-size:14pt;\n color:#696969;\n font-family:arial;\n font-weight:normal;\n margin:0px;\n padding-top:2px;\n padding-left:25px;\n letter-spacing:3px;\n}\n.rightColumn #nav {\n width:85%;\n background: #b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg);\') repeat-x top; \n border-right:solid #848484 1px;\n margin-left:auto;\n margin-right:auto;\n text-align:left;\n padding-left:3px;\n padding-top:7px;\n padding-bottom:7px;\n}\n.rightColumn #nav a {\n color:white;\n font-size:8pt;\n font-weight:bold;\n text-decoration:none;\n font-family:arial;\n line-height:8pt; \n} \n.rightColumn #nav .selectedMenuItem {\n color:yellow;\n}\n#loginStyles {\n font-size:8pt;\n font-family:arial;\n padding-bottom:25px;\n}\n#loginStyles a {\n color:#89ACCF;\n font-weight:bold; \n border-bottom:solid transparent 2px;\n text-decoration:none;\n}\n#loginStyles a:hover {\n border-bottom:dotted #B2C9D9 2px;\n} \n\n.copyright {\n border-top:solid silver 3px;\n background-color:gray;\n font-family:arial;\n font-size:9pt;\n color:silver; \n text-align:center;\n}\n',0,'text/css',1147642500,3600),('pbrobot000000000000001','User-agent: googlebot\nDisallow: *?op=displayLogin\nDisallow: *?op=makePrintable\n',0,'text/plain',1147642511,3600),('MBZK_LPVzqhb4TV4mMRTJg','input.captionEnter {\r\n margin-left: -5px;\r\n width: 92px;\r\n}',0,'text/css',1197330678,3600),('3qiVYhNTXMVC5hfsumVHgg','var BrowserDetect = {\r\n init: function () {\r\n this.browser = this.searchString(this.dataBrowser) || \"An unknown browser\";\r\n this.version = this.searchVersion(navigator.userAgent)\r\n || this.searchVersion(navigator.appVersion)\r\n || \"an unknown version\";\r\n this.OS = this.searchString(this.dataOS) || \"an unknown OS\";\r\n },\r\n searchString: function (data) {\r\n for (var i=0;i= items.length ) {\r\n showIndex = 0;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex >= items.length ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n if ( items[ hideIndex ] )\r\n items[ hideIndex ].style.display = \"none\";\r\n if ( items[ showIndex ] ) {\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n }\r\n};\r\n\r\n/**\r\n showPrevious ( )\r\n Show the previous slide\r\n*/\r\nWebGUI.Slideshow.prototype.showPrevious\r\n= function () {\r\n var items = this.getSlideshowItems();\r\n \r\n var hideIndex = this.currentIndex;\r\n var showIndex = this.currentIndex - 1;\r\n\r\n // Wrap around\r\n if ( this.wrap && showIndex < 0 ) {\r\n showIndex = items.length - 1;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex < 0 ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n items[ hideIndex ].style.display = \"none\";\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n};\r\n\r\n/**\r\n togglePlay ( )\r\n If it\'s paused, play it. If it\'s playing, pause it.\r\n Return true if the slideshow is now playing.\r\n*/\r\nWebGUI.Slideshow.prototype.togglePlay\r\n= function () {\r\n if ( this.isPlaying == false ) {\r\n this.play();\r\n return true;\r\n }\r\n else {\r\n this.pause();\r\n }\r\n};\r\n\r\n/**\r\n updatePlayPauseButton ( )\r\n Update the Play/Pause button to have the correct image\r\n*/\r\nWebGUI.Slideshow.prototype.updatePlayPauseButton\r\n= function () {\r\n if ( this.playPauseButtonId ) {\r\n if ( this.isPlaying && this.playImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.pauseImageSrc;\r\n }\r\n else if ( this.pauseImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.playImageSrc;\r\n }\r\n }\r\n};',0,'text/javascript',1218582812,3600),('1XOJDcg_ITRYwVM-QnIcPw',' .wgShelf {\r\n font-size:12px;\r\n font-family:arial, verdana; \r\n margin:15px 0px;\r\n }\r\n .wgShelf h2 {\r\n background: black;\r\n padding:5px;\r\n padding-left:15px;\r\n line-height:32px;\r\n color:white;\r\n margin:0px;\r\n height:32px;\r\n }\r\n .wgShelf .wgShelves {\r\n background: #F1F1F1;\r\n height:29px;\r\n padding:3px;\r\n line-height:29px;\r\n padding-left:30px;\r\n }\r\n .wgShelf .product {\r\n margin:15px;\r\n margin-left:0px; \r\n text-align:left;\r\n background-color:#f1f1f1;\r\n border:solid #e1e1e1 1px;\r\n width: 200px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n }\r\n .wgShelf .product .thumbnail {\r\n display:block;\r\n text-align:left;\r\n margin:3px;\r\n float:left;\r\n }\r\n .wgShelf .product .link {\r\n background: #e1e1e1;\r\n height:30px;\r\n padding:3px;\r\n line-height:24px;\r\n margin-bottom:5px; \r\n text-align:left;\r\n display:block;\r\n }\r\n .wgShelf .product .link a:link,\r\n .wgShelf .product .link a:visited {\r\n color:#000; \r\n display:block;\r\n }\r\n .wgShelf .product .link a:hover {\r\n text-decoration:underline;\r\n }\r\n .wgShelf .product .price {\r\n display:block;\r\n text-align:right;\r\n font-size:18px;\r\n font-weight:bold;\r\n }',0,'text/css',1219175575,0),('THQhn1C-ooj-TLlEP7aIJQ','.wgPicture {\r\n float:left;\r\n}\r\n.wgAlbum {\r\n float:left;\r\n}\r\n.wgGallery .pagination li, \r\n.wgGallery .pagination a {\r\n float:left;\r\n}\r\n.wgGallery .container {\r\n display:inline-block;\r\n}',0,'text/html',1225313951,3600),('7-0-style0000000000051','body, html {\r\n margin:0px;\r\n background-color:#b53018;\r\n padding:0px;\r\n}\r\nbody a {\r\n color:#EE963E;font-weight:bold;\r\n letter-spacing:1px;\r\n font-size:8pt;\r\n}\r\n#main {\r\n width:98%;\r\n /*min-width:790px;*/\r\n margin:0px;\r\n padding:0px;\r\n padding-top:20px;\r\n padding-bottom:20px;\r\n position:relative;\r\n}\r\n#header { \r\n background: url(\'^FileUrl(style3/header_bg.jpg);\') repeat-x;\r\n width:100%;\r\n margin:0px;\r\n height:115px;\r\n}\r\n#headerTitle {\r\n background: url(\'^FileUrl(style3/header_left.jpg);\') no-repeat left top;\r\n height:100%;\r\n width:100%;\r\n}\r\n#headerRight {\r\n background: url(\'^FileUrl(style3/header_right.jpg);\') no-repeat right top;\r\n width:100%;\r\n height:100%;\r\n text-align:right;\r\n position:relative;\r\n}\r\n#headerRight #title {\r\n position:absolute;\r\n top:25px;\r\n left:20px;\r\n font-family:arial;\r\n text-align:left;\r\n}\r\n#title h1 {\r\n text-transform:uppercase;\r\n margin-bottom:0px;\r\n font-weight:normal;\r\n font-size:26pt;\r\n margin-top:0px;\r\n color:white;\r\n}\r\n#title h1 a {\r\n color:white;\r\n text-decoration:none; font-size: 26pt; font-weight: normal; \r\n}\r\n#title h2 {\r\n margin:0px;\r\n font-size:12pt;\r\n color:#bebebe;\r\n padding-left:20px;\r\n}\r\n#title img {\r\n z-index:5;\r\n}\r\n#login {\r\n position:absolute;\r\n font-size:8pt;\r\n top:45%;\r\n right:150px;\r\n color:white;\r\n z-index:6;\r\n font-family:arial;\r\n}\r\n#login a {\r\n color:white; font-weight: normal; letter-spacing: 0px;\r\n}\r\n.loginBox {\r\n font-size:8pt;\r\n margin:0px;\r\n display:inline;\r\n}\r\n.loginBox input {\r\n font-size:8pt;\r\n}\r\n\r\n#mainBody {\r\n width:100%;\r\n margin:0px;\r\n height:500px;\r\n background: #fff;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#main > #mainBody {\r\n height:auto;\r\n min-height:500px;\r\n}\r\n#contentArea {\r\n z-index:2;\r\n position:relative;\r\n padding-top:10px;\r\n padding-left:10px;\r\n padding-right:20px;\r\n padding-bottom:20px;\r\n -moz-box-sizing:border-box;\r\n font-family:verdana;\r\n font-size:9pt;\r\n min-height:500px;\r\n}\r\nhtml #main #mainBody #contentArea {\r\n height:1%;\r\n}\r\n#topCorner {\r\n width:100%;\r\n height:214px;\r\n position:absolute;\r\n top:0px;\r\n left:0px;\r\n background: url(^FileUrl(/style3/main_top.jpg);) no-repeat;\r\n z-index:1;\r\n}\r\n#bottomCorner {\r\n width:100%;\r\n height:211px;\r\n position:absolute;\r\n bottom:59px;\r\n right:0px;\r\n background: url(\'^FileUrl(style3/main_bottom.jpg);\') no-repeat right;\r\n z-index:1;\r\n}\r\n* html #bottomCorner {\r\n bottom:58px;\r\n}\r\n\r\n#footer {\r\n width:100%;\r\n margin:0px;\r\n background:#000 url(\'^FileUrl(style3/footer_right.jpg);\') no-repeat right top;\r\n height:57px;\r\n border-top:solid #B53018 2px;\r\n text-align:right;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#footer #copyright {\r\n color:#3b3b3b;\r\n font-family:arial;\r\n position:absolute;\r\n top:20px;\r\n left:30px;\r\n font-size:8pt;\r\n}\r\n#main .yui-skin-sam {\r\n font-family:verdana;\r\n font-size:9pt;\r\n font-weight:normal;\r\n}',0,'text/css',1224117026,3600),('_9_eiaPgxzF_x_upt6-PNQ','/* FIXES FLOAT ISSUES. WITHOUT THIS, FLOATS GET ALL NUTSY ESPECIALLY IN OPERA AND SAFARI */\r\n.clearfix:after {\r\n content: \".\";\r\n display: block;\r\n height: 0;\r\n clear: both;\r\n visibility: hidden;\r\n}\r\n.clearfix {display: inline-block;}\r\n/* END FLOAT FIX */\r\n\r\n\r\n\r\n.wgGallery {\r\n font-family:verdana, arial;\r\n text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n.firstBar {\r\n background: black;\r\n color:white;\r\n font-size:18px;\r\n font-weight:bold;\r\n}\r\n\r\n.firstBar .title { \r\n margin-left:20px; \r\n line-height:42px; \r\n}\r\n.firstBar .title a {\r\n font-size:18px;\r\n font-weight:bold;\r\n color:white;\r\n}\r\n.firstBar .buttons {\r\n float:right;\r\n}\r\n.firstBar .buttons a {\r\n display:block;\r\n float:left;\r\n height:42px;\r\n line-height:42px; \r\n font-size:10px;\r\n color:white;\r\n font-weight:bold;\r\n text-align:center;\r\n padding:0px 5px; \r\n}\r\n.firstBar .buttons .rss {\r\n display:block;\r\n height:29px;\r\n position:relative;\r\n background:transparent;\r\n padding-top:13px;\r\n}\r\n\r\n\r\n\r\n\r\n.secondBar {\r\n background: #F1F1F1;\r\n text-align:left;\r\n border-top:solid #8B8B8B 5px; \r\n color: black;\r\n overflow: hidden;\r\n}\r\n.secondBar .author {\r\n font-size:10px;\r\n}\r\n\r\n\r\n.secondBar .desc p {\r\n margin-left: 20px;\r\n margin-top: 0;\r\n color: black;\r\n}\r\n\r\n.pictures {\r\n \r\n}\r\n\r\n\r\n.searchArea {\r\n float:right;\r\n}\r\n.searchArea * {\r\n float:left;\r\n} \r\n.searchArea input.searchText {\r\n border:solid black 1px; \r\n width:100px; \r\n margin:0px;\r\n padding:2px;\r\n margin-top:5px;\r\n font-size:10px;\r\n height:15px;\r\n margin-right:10px;\r\n} \r\n.searchArea input.searchBtn {\r\n border:solid black 1px; \r\n margin:0px;\r\n padding:3px;\r\n margin-top:5px;\r\n font-size:10px; \r\n vertical-align:center;\r\n cursor:pointer;\r\n height:21px;\r\n} \r\n.searchArea a:link,\r\n.searchArea a:visited,\r\n.secondBar .author a:link,\r\n.secondBar .author a:visited {\r\n font-size:11px;\r\n color:black;\r\n}\r\n.searchArea .current {\r\n font-weight:bold;\r\n text-transform:uppercase;\r\n text-decoration:none;\r\n font-size:10px;\r\n} \r\n\r\n\r\n\r\n\r\n.wgAlbum {\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n width:250px;\r\n margin:10px;\r\n}\r\n.wgAlbum .albumTitle { \r\n background: black;\r\n color:white;\r\n font-size:12px;\r\n font-weight:bold;\r\n padding:10px;\r\n padding-right:50px;\r\n border:solid #475f6f 1px;\r\n border-bottom:solid #8B8B8B 5px;\r\n text-align:left;\r\n display:block;\r\n}\r\n.wgAlbum .albumImage {\r\n background: #F1F1F1;\r\n border-left: solid black 1px;\r\n border-right: solid black 1px;\r\n padding-top:15px;\r\n height:135px;\r\n} \r\n.wgAlbum .albumImage a {\r\n height:135px;\r\n width:200px;\r\n overflow:hidden; \r\n display:block;\r\n margin:0px 23px;\r\n}\r\n.wgAlbum .albumImage img { \r\n border-style:none;\r\n display:block;\r\n width:200px;\r\n height:auto; \r\n border:solid black 1px; \r\n}\r\n.wgAlbum .albumDesc {\r\n background: #F1F1F1;\r\n border-left: solid black 1px;\r\n border-right: solid black 1px;\r\n border-bottom: solid black 1px;\r\n text-align:center;\r\n padding: 5px 23px;\r\n}\r\n.wgAlbum .description {\r\n font-size:10px; \r\n height:40px;\r\n overflow:auto;\r\n text-align:left;\r\n border:solid silver 1px;\r\n padding:5px;\r\n background-color: #fff;\r\n color:#222;\r\n}\r\n.albumDesc .description * {\r\n margin:2px 0px;\r\n}\r\n\r\n\r\n\r\n\r\n/* PAGINATION STYLES */\r\n.wgGallery .paginationContainer {\r\n text-align:center; \r\n background: black;\r\n height:42px;\r\n}\r\n.wgGallery .container {\r\n clear:both; \r\n text-align:center;\r\n}\r\n.wgGallery .pagination { \r\n margin:0px auto 20px auto;\r\n display:table;\r\n list-style-type:none;\r\n white-space:nowrap;\r\n padding:0px;\r\n height:42px;\r\n}\r\n.wgGallery .pagination li {\r\n display:table-cell;\r\n}\r\n.wgGallery .pagination a {\r\n display:block;\r\n width:50px; \r\n line-height:42px;\r\n color:white; \r\n font-size:10px; \r\n text-align:center;\r\n}\r\n\r\n\r\n\r\n.wgPicture a:link,\r\n.wgPicture a:visited {\r\n color:black;\r\n}\r\n.wgPicture {\r\n width:250px;\r\n margin:10px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n}\r\n.wgPicture .title {\r\n background:#e0e0e0;\r\n display:block;\r\n font-size:12px;\r\n text-align:center;\r\n padding:2px 5px;\r\n border:solid black 1px;\r\n border-bottom:solid #8B8B8B 4px;\r\n}\r\n.wgPicture .thumbnail {\r\n text-align:center;\r\n background: #F1F1F1;\r\n padding:15px 23px 15px 23px;\r\n margin:0px;\r\n border-left:solid black 1px;\r\n\r\n\r\n\r\n\r\n\r\n border-right:solid black 1px;\r\n}\r\n.wgPicture .thumbnail a {\r\n display:block;\r\n width:200px;\r\n height:120px;\r\n overflow:hidden;\r\n border:solid black 1px;\r\n}\r\n.wgPicture .thumbnail img {\r\n border-style:none;\r\n width:200px;\r\n height:auto;\r\n}\r\n.wgPicture .pictureDesc {\r\n padding:0px;\r\n border-top:solid #e1e1e1 1px;\r\n border-bottom:solid gray 1px;\r\n border-left:solid black 1px;\r\n border-right:solid black 1px;\r\n background:#F1F1F1;\r\n margin:0px;\r\n}\r\n.wgPicture .pictureDesc .description {\r\n margin:0px;\r\n padding:5px;\r\n font-size:10px;\r\n}\r\n.wgPicture .details {\r\n background:#e0e0e0;\r\n border:solid #999 1px;\r\n border-top:solid #aaa 1px;\r\n font-size:9px;\r\n padding:1px 3px; \r\n}\r\n.wgPicture .details .date {\r\n float:right;\r\n}\r\n.wgPicture .details .comments {\r\n float:left;\r\n}\r\n.wgPicture .details a { \r\n font-size:9px; \r\n}\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR PHOTO VIEW --\r\n * The Photo view uses some/all of the above classes, plus those in this section.\r\n*/\r\n.wgSnapshot {\r\n float:left;\r\n margin:10px;\r\n max-width:250px; \r\n width:25%;\r\n}\r\n.wgSnapshot fieldset { \r\n background-color:#fefefe;\r\n border:solid #555 2px;\r\n padding:10px;\r\n background-color:#f9f9f9;\r\n text-align:center;\r\n}\r\n.wgSnapshot p {\r\n max-width:230px;\r\n}\r\n.wgSnapshot legend {\r\n color:#333;\r\n font-size:15px;\r\n font-weight:bold;\r\n max-width:250px;\r\n}\r\n.wgSnapshot a.thumbnail img {\r\n width:200px;\r\n height:auto;\r\n border:solid #555 2px;\r\n}\r\n.wgSnapshot .description {\r\n font-size:9px;\r\n border:solid #555555 2px;\r\n padding:5px;\r\n width:190px;\r\n margin:0px auto;\r\n background-color:#fff;\r\n height:50px;\r\n overflow:auto;\r\n text-align:left;\r\n overflow:auto;\r\n}\r\n.wgSnapshot a.fullSize {\r\n margin:0px auto;\r\n}\r\n\r\n\r\n\r\n.wgPictureDetails {\r\n float:left;\r\n width:70%; \r\n margin:10px;\r\n} \r\n.wgPictureDetails a:link,\r\n.wgPictureDetails a:visited {\r\n color:black;\r\n}\r\n.wgPictureDetails fieldset { \r\n background-color:#fefefe;\r\n border:solid #555 2px;\r\n padding:10px;\r\n background-color:#f9f9f9; \r\n margin-bottom:10px;\r\n}\r\n.wgPictureDetails legend {\r\n color:#333;\r\n font-size:15px;\r\n font-weight:bold;\r\n}\r\n\r\n\r\n\r\n.rowOne {\r\n background: #EFEFEF;\r\n margin:1px;\r\n border:solid #CDCDCD 1px;\r\n color:black;\r\n padding:3px;\r\n}\r\n.rowTwo {\r\n background: #DCDCDC;\r\n margin:1px;\r\n border:solid #DDDDDD 1px;\r\n color:black; \r\n padding:3px;\r\n}\r\n.rowOne .label, .rowTwo .label {\r\n margin-left:15px;\r\n display:inline;\r\n text-align:left;\r\n font-weight:bold;\r\n font-size:11px;\r\n}\r\n.rowOne .data, .rowTwo .data { \r\n font-size:10px;\r\n margin-left:5px;\r\n display:inline;\r\n}\r\na.fullSize:link,\r\na.fullSize:visited { \r\n color:black;\r\n display:block;\r\n text-align:center;\r\n font-weight:bold;\r\n font-size:10px; \r\n}\r\n\r\n\r\n\r\n\r\n.wgComments { \r\n font-size:9px; \r\n margin:10px;\r\n width:90%;\r\n}\r\n.wgComments .title {\r\n font-size:14px;\r\n font-weight:bold;\r\n color:#333;\r\n border-bottom:solid #555555 2px;\r\n padding-bottom:2px;\r\n} \r\n.wgComments .title a {\r\n color:navy;\r\n text-decoration:none;\r\n}\r\n.wgComments .comment, .wgComments .commentAlt {\r\n position:relative; \r\n padding:5px; \r\n}\r\n.wgComments .comment {\r\n background-color:#e1e1e1;\r\n border-top:solid #F7F7F7 1px;\r\n border-bottom:solid #C9C9C9 1px;\r\n}\r\n.wgComments .commentAlt {\r\n background-color:#f0f0f0; \r\n border-bottom:solid #CDCDCD 1px;\r\n border-top:solid #FBFBFB 1px;\r\n}\r\n.wgComments .number {\r\n float:left;\r\n font-size:30px;\r\n color:silver;\r\n margin:5px 10px 5px 5px;\r\n}\r\n.wgComments .posted { \r\n font-style:italic;\r\n padding-top:3px;\r\n font-size:9px;\r\n color:gray;\r\n}\r\n.wgComments .posted a {\r\n color:navy;\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR THUMBNAIL VIEW --\r\n * The Thumbnail view uses some/all of the above classes, plus those in this section.\r\n*/\r\n\r\n.thumbView {\r\n width:400px;\r\n height:auto;\r\n}\r\n.thumbView .thumbnail a {\r\n display:block;\r\n width:350px;\r\n height:auto; \r\n border:solid black 1px;\r\n}\r\n.thumbView .thumbnail img {\r\n border-style:none;\r\n width:350px;\r\n height:auto;\r\n}\r\n.thumb {\r\n width:100px;\r\n height:65px;\r\n overflow:hidden;\r\n display:block;\r\n float:left;\r\n border:solid black 2px;\r\n margin:10px;\r\n}\r\n.thumb img {\r\n width:100px;\r\n height:auto;\r\n border-style:none;\r\n}\r\n.thumb-popup {\r\n border:solid #555 1px;\r\n padding:2px;\r\n padding-bottom:4px;\r\n padding-right:4px;\r\n background-color:silver;\r\n}\r\n.thumb-popup img {\r\n border:solid #555 1px;\r\n}\r\n.thumb-popup .caption {\r\n background-color:black;\r\n color:white;\r\n padding:4px;\r\n border:solid #555 2px;\r\n}\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR SLIDESHOW VIEW --\r\n * The Slideshow view uses some/all of the above classes, plus those in this section.\r\n*/\r\n.wgSlideshow .controls {\r\n background: url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg);) repeat-x;\r\n width:500px;\r\n height:42px;\r\n margin:0px auto;\r\n border:solid black 2px;\r\n}\r\n.wgSlideshow { \r\n text-align:center;\r\n}\r\n#slideshow-container {\r\n width:500px;\r\n height:auto;\r\n margin:0px auto;\r\n text-align:center;\r\n border:solid black 2px;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#slideshow-container .slideshow-item img {\r\n width:100%;\r\n height:auto;\r\n border-style:none;\r\n display:block;\r\n}\r\n#slideshow-container .slideshow-item .title {\r\n background-color:black;\r\n padding:3px;\r\n color:white;\r\n border-top:solid white 1px;\r\n border-bottom:solid white 1px;\r\n}\r\n#slideshow-container .slideshow-item .title a {\r\n color:white;\r\n font-size:11px;\r\n font-weight:bold; \r\n}\r\n#slideshow-container .slideshow-item .counter {\r\n background-color:black;\r\n padding:3px;\r\n color:white;\r\n font-size:11px;\r\n font-weight:bold;\r\n}\r\n#slideshow-container .slideshow-item .synopsis {\r\n width:494px;\r\n background-color:white;\r\n padding:3px;\r\n color:black;\r\n font-size:11px;\r\n font-weight:bold;\r\n border-top:solid black 1px;\r\n text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR SEARCH VIEW --\r\n * The Search view uses some/all of the above classes, plus those in this section.\r\n*/\r\n#adminWrapper {\r\n margin-top:20px;\r\n}\r\n#adminWrapper .label {\r\n background:black;\r\n font-weight:bold; \r\n font-size:10px;\r\n color:white;\r\n}\r\n#adminWrapper td.data input {\r\n background: #f1f1f1;\r\n vertical-align:middle;\r\n}\r\n#adminWrapper td.radio input {\r\n border-style:none;\r\n background:none;\r\n}\r\n#adminWrapper .forwardButton {\r\n cursor:pointer;\r\n float:rigbt;\r\n}\r\n#adminWrapper .forwardButton:hover {\r\n color:gold;\r\n}',0,'text/css',1230702602,3600),('kJf77eCr9GAMiEzWrzsBTA','.matrixLeft .buttons span,\r\n.matrixRight .buttons span {\r\n padding:0px 0px 0px 0px;\r\n}\r\n\r\n.matrixLeft .buttons button,\r\n.matrixRight .buttons a {\r\n top:-3px;\r\n left:-2px;\r\n height:22px;\r\n}\r\n.matrixRight .buttons a {\r\n color:black;\r\n text-decoration:none;\r\n padding:1px 3px;\r\n}',0,'text/css',1229639255,3600),('4LQT4-bGW4FkiEQLSY5gvQ','function showHide(theLink,theId) {\r\n var theId = document.getElementById(theId);\r\n var theLink = document.getElementById(theLink);\r\n if(theId.style.display == \'block\') {\r\n theId.style.display = \'none\';\r\n theLink.innerHTML = \"Send Creator a Message\";\r\n theLink.className = \"showLink\"\r\n }\r\n else {\r\n theId.style.display = \'block\';\r\n theLink.innerHTML = \"Hide\"; \r\n theLink.className = \"hideLink\" \r\n }\r\n}',0,'text/javascript',1232400287,0),('qsG6B24a0SC5KrhQjmdZBw','body {\r\n margin: 0;\r\n background-repeat: repeat-y;\r\n background-position: 0px 0px;\r\n}\r\n.survey-header {\r\n width: 80%;\r\n height: 20px;\r\n margin-left: 80px;\r\n}\r\n#survey {\r\n margin-left: 80px;\r\n width: 85%;\r\n}\r\n\r\ndiv.dateanswer {\r\n min-height: 250px;\r\n}\r\ndiv.slider-bg {\r\n position: relative;\r\n background:url(/extras/wobject/Survey/bg-fader-500.gif) 5px 0 no-repeat;\r\n height:68px;\r\n width:529px; \r\n}\r\ndiv.slider-thumb {\r\n cursor:default;\r\n position: absolute;\r\n top: 30px;\r\n left: 4px;\r\n}\r\ndiv.slider-min-thumb {\r\n cursor:default;\r\n position: absolute;\r\n top: 4px;\r\n}\r\ndiv.slider-max-thumb {\r\n cursor:default;\r\n position: absolute;\r\n top: 4px;\r\n}\r\n#headertitle {\r\n display: none;\r\n}\r\n#headertext {\r\n display: none;\r\n}\r\n#questions {\r\n display: none;\r\n}\r\ninput.mcbutton{\r\n font-size: 10px;\r\n font-weight: bold;\r\n text-decoration: none;\r\n background-color: #CCCCCC;\r\n background-repeat: repeat-x;\r\n text-align: center;\r\n display: block;\r\n margin: 0.5em;\r\n padding: .8em;\r\n width: 60px;\r\n font-family: Verdana, Arial, Helvetica, sans-serif;\r\n color: #000000;\r\n background-image: url(/extras/wobject/Survey/gradient-glossy.png);\r\n}\r\ninput.mcbutton:hover{\r\n background-color: #B6D2F1;\r\n font-family: Verdana, Arial, Helvetica, sans-serif;\r\n font-size: 10px;\r\n color: #000000;\r\n}\r\ninput.mcbutton-selected{\r\n background-color: #172D9D;\r\n background-repeat: repeat-x;\r\n color: #FFFFFF;\r\n font-family: Verdana, Arial, Helvetica, sans-serif;\r\n font-size: 10px;\r\n margin: 0.5em;\r\n padding: .8em;\r\n width: 60px;\r\n text-align: center;\r\n display: block;\r\n font-weight: bold;\r\n background-image: url(/extras/wobject/Survey/gradient-glossy.png);\r\n background-position: 0px 0px;\r\n}\r\n\r\n/* By default the marker for invalid (required) fields is a red \'*\' */ \r\n.survey-invalid-marker {\r\n color: #FF0000;\r\n}\r\n\r\n\r\n#survey {\r\n font-family: Verdana, Arial, Helvetica, sans-serif;\r\n font-size: 10px;\r\n border: 3px solid #1e1e1e;\r\n}\r\n\r\n#survey #survey-header {\r\n background-color: #cfcfcf;\r\n padding-top: 1px;\r\n}\r\n\r\n#survey #headertitle {\r\n padding-left: 5px;\r\n}\r\n\r\n#survey #progress {\r\n position: relative;\r\n top: -26px;\r\n right: 5px;\r\n text-align: right;\r\n font-style: italic;\r\n}\r\n\r\n#survey #progress:before {\r\n content: \"Progress: \";\r\n}\r\n\r\n#survey #headertext {\r\n border-bottom: 2px solid #1e1e1e;\r\n padding: 5px;\r\n position: relative;\r\n top: -20px;\r\n}\r\n\r\n#survey #questions {\r\n position: relative;\r\n top: -20px;\r\n}\r\n\r\n#survey .question {\r\n background-color: #dfdfdf;\r\n padding: 10px 5px 10px 5px;\r\n}\r\n\r\n#survey .question p:before {\r\n content: \"Q: \";\r\n}\r\n\r\n#survey .scale:before {\r\n content: \"A: \";\r\n}\r\n\r\n#survey #submitbutton {\r\n margin-left: 5px;\r\n}\r\n\r\n',0,'text/css',1233860274,3600),('_XfvgNH__bY1ykMiKYSobQ','/* general */ \n\nbody {\n margin:0;\n padding:0;\n font: 11px Verdana;\n }\na {\n cursor: pointer;\n}\nbutton {\n cursor: pointer;\n}\nimg {\n border: none;\n}\n.WGbutton {\n float:right;\n padding-right:10px;\n} \n.centered {\n text-align: center;\n}\n.WGaccount_message {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 300px;\n margin-bottom: 10px;\n margin-left: 60px;\n margin-top: 20px;\n overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;\n padding:10px;\n text-align: left;\n vertical-align:top;\n width: 90%;\n}\n\n.WGprofileMember {\n font-size:9px;\n margin-right:20px;\n text-align:right;\n}\n.WGmember {\n color:#3e4f77;\n font: 9px Verdana, Arial, Helvetica, sans-serif;\n text-align:center;\n}\n.WGphotostyle {\n border:solid #3e4f77 2px;\n margin-bottom:5px;\n margin-top:5px\n }\n#rightalign {\n float: right;\n}\n/*.WGsend {\n float:right;\n padding-right: 75px;\n}*/\n\n\n/* bio, addtonetwork, network */\n.WGbordered {\n border-bottom: dashed #BECEF8 2px;\n padding-bottom: 10px;\n}\n.WGfriendpic {\n border: solid #BECEF8 1px;\n}\n.WGinvitemsg {\n width: 600px;\n height: 150px;\n}\nol.WGProfile_interests {\n color:#0B2259;\n font-size:15px;\n font-weight:bold;\n list-style-type:none;\n margin:0px;\n padding:0px;\n padding:5px 5px;\n}\nol.WGProfile_interests li {\n margin-bottom:15px;\n}\nol.WGProfile_interests span {\n font-size:12px;\n font-weight:normal;\n color:black;\n}\n.WGpBio {\n border-bottom:solid #DDE6FB 1px;\n margin:0px;\n margin-bottom:5px;\n padding-bottom:5px; \n}\n.WGpBio div {\n background-color:#DDE6FB;\n padding:2px 5px;\n margin-bottom:2px;\n}\n.WGprogram {\n font-size: 9px;\n}\n\n/* contributions */\n\n.WGContribCount {\n font-size:12px;\n text-align:left;\n padding:3px\n}\n.WGContribTitle {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#0B2259;\n font-size:12px;\n font-weight:bold;\n min-height:25px;\n padding:3px;\n text-align:center;\n text-decoration: underline;\n}\n.WGContribTitleLeft {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#0B2259;\n font-size:12px;\n font-weight:bold;\n min-height:25px;\n padding:3px;\n text-align:center;\n text-decoration: underline;\n} \n.WGContribEntry {\n text-align:center;\n padding:3px;\n}\n.WGContribEntryLeft {\n text-align:left;\n padding:3px;\n}\n \n/* edit box */\n.WGeditBox {\n /*background:white url(images/edit_box_bg.jpg) no-repeat bottom left;*/\n border:solid #8DABF1 2px;\n display:block;\n font-family:verdana;\n font-size:9px;\n font-weight:bold;\n left:100px;\n -moz-box-sizing:border-box;\n padding:5px;\n position:absolute;\n top:100px;\n width:590px;\n z-index:100;\n \n}\n.WGeditBox input, .WGeditBox select {\n font-size:9px; \n}\n\n/* friends */\n\n.WGfriends_name {\n font-weight:bold;\n width:90%;\n}\n.WGfriends_photo {\n font-weight:bold;\n width:10%;\n}\n.WGfriends_photo img {\n height: 50px; \n width: 50px;\n}\n.WGfriends_private { \n float:right;\n padding-bottom: 5px;\n width: 50%;\n}\n.WGfriends_ninety { \n vertical-align:top;\n width: 90%;\n}\n.WGfriends_seventy { \n vertical-align:top;\n width: 70%;\n}\n.WGfriends_ten { \n width: 10%;\n}\n.WGfriends_ten img {\n height: 50px; \n width: 50px;\n}\n.WGfriends_twenty { \n width: 20%;\n}\n.WGaccepts {\n padding-bottom: 5px;\n}\n\n/* inbox */\n\n.WGProfile_msgcontainer {\n padding:2px;\n}\n.WGinbox_count {\n font-size:12px;\n font-weight:bold;\n padding:3px;\n text-align:left;\n}\n.WGinbox_errors {\n font-weight:bold;\n color:red;\n text-align:center;\n}\n.WG_inbox_InviteLabel {\n width:50px;\n text-align:right;\n}\n.WG_inbox_InviteLabelView {\n font-weight:bold;\n width:120px;\n}\n.WGmsgcontainer {\n padding:6px;\n display:block;\n margin-bottom:6px;\n}\n/* inbox contacts */\n.WGdatacells {\n border-bottom: dashed #BECEF8 1px;\n}\n.WGinbox_contactsTbl {\n background-color:#EEF2FD;\n font-family:arial;\n font-size:9pt;\n width:100%;\n}\n#contacts {\n height: 275px;\n overflow: auto;\n}\n/* inbox forms */\n.WGbuttons_left {\n float: left;\n}\n.WGbuttons_right {\n float: right;\n}\n.WGinbox_from {\n color: black;\n font-weight: normal;\n text-decoration: none;\n}\n.WGinbox_subject {\n width: 530px;\n}\n.WGinbox_messageTo {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 50px;\n overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;\n width: 530px;\n}\n/* inbox pagination */\n.WGinbox_buttons {\n display:inline;\n float:left;\n font-size:10px;\n text-align:left;\n width:70%; \n}\n.WGinbox_pagination {\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGinbox_messagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGmessage {\n display:inline;\n float:left;\n font-size:10px;\n text-align:left;\n width:70%;\n}\n\n.WGmessagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n float: right;\n}\n\n.WG-previous-next {\n float: right;\n}\n\n/* inbox threads */\n\n.WGevenThread {\n background-color: #e1e8fb;\n border-bottom: 1px solid #bfcef9;\n padding: 8px;\n text-align:center;\n}\n.WGoddThread {\n background-color: #eef2fd;\n border-bottom: 1px solid #bfcef9;\n padding: 8px;\n text-align: center;\n}\n\n/* pagination */\n.WGProfile_pagination {\n font-size:10px;\n text-align:right;\n width:20%;\n}\n.WGProfile_messagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGProfile_paginationLeft {\n font-size:10px;\n text-align:left;\n width:20%;\n}\n.WGProfile_paginationCenter {\n font-size:10px;\n text-align:center;\n width:20%;\n}\n.WGProfile_pagination a {\n background-color:#f2f5fa;\n border:solid #bfc8dc 1px;\n font-size:10px;\n font-weight:bold;\n padding:1px 5px;\n text-decoration:none;\n}\n.WGProfile_pagination a:hover {\n background-color:#d8dee8;\n color:white;\n}\n.WGProfile_pagination .prevNext {\n background-color: transparent;\n border: none;\n color: black;\n}\n.WGProfile_pagination .prevNext:hover {\n background-color: transparent;\n border: none;\n color: black;\n}\n.WGProfile_pagination .active {\n background-color:#d8dee8;\n border:solid #bfc8dc 1px;\n color:white; \n font-size:10px;\n font-weight:bold;\n padding:1px 5px;\n text-decoration:none;\n}\n.WGProfile_pagination img {\n vertical-align:middle;\n margin-top:2px;\n border:none;\n}\n/* profile */\n.WGProfile_registration {\n background:none;\n border:none;\n font-size:9pt;\n font-family:arial;\n margin:0;\n padding:0;\n width:100%;\n}\n.WGProfile_registration .header {\n background-color:#818997;\n color:#3e4f77;\n font-size:10px;\n font-weight:bold;\n text-align:left; \n}\n.WGProfile_registration .header a {\n color:white;\n text-decoration:none; \n}\n.WGProfile_registration .help a {\n font-weight:bold;\n text-decoration:none;\n}\n.WGProfile_registration .inputText {\n font-size:10px;\n margin-right:1px;\n}\n.WGProfile_registration .label {\n font-size:9pt;\n font-weight:bold;\n text-align:right;\n white-space:nowrap;\n width:1%;\n} \n.WGProfile_registration .labelLeft {\n font-size:9pt;\n font-weight:bold;\n white-space:nowrap;\n width:1%;\n text-align: left;\n vertical-align: top;\n}\n.WGProfile_registration .smallLabel {\n font-size:8px;\n text-align:center;\n}\n.WGProfile_registration .smallText {\n font-size:9px;\n}\n\n.WGinboxTbl {\n display:block;\n margin: 4px;\n padding: 2px;\n}\n\n.WGProfile_registration .bar, .WGProfile_registration .barRight {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin:10px 0px 10px 0px;\n min-height:25px;\n padding:4px 4px 0px 4px;\n vertical-align:middle;\n}\n.WGProfile_registration .bar {\n text-align: center;\n}\n.WGProfile_registration .barRight {\n text-align: right;\n}\n.WGProfile_registration .bar a {\n color:#0B2259;\n font-size:10px;\n font-weight:bold;\n}\n.WGProfile_registration .barFive {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n text-align:center;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n width:4.3%;\n}\n.WGProfile_registration .barTen {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:7.2%;\n}\n.WGProfile_registration .barFifteen {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:15%;\n}\n.WGProfile_registration .barFifty {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:50%; \n}\n.WGbarContainer {\n display:block;\n margin:10px 0px 10px 0px; \n width:100%;\n\n}\n\n/* profile edit */\n\n.WGfields {\n padding: 2px;\n\n}\n.WGfields_left {\n padding:2px;\n vertical-align:top;\n width: 15%;\n}\n.WGfields_right {\n display:inline\n float:right;\n padding:2px;\n text-align:right;\n width:80%;\n vertical-align: top;\n}\n.WGProfile {\n display:table;\n margin: 0;\n padding: 0;\n width:100%;\n}\n.WGProfileFields {\n border:0;\n padding: 0;\n margin:0;\n width: 100%;\n \n}\n.WGProfileFields ol {\n display: inline;\n list-style-type: none;\n \n}\n.WGProfileFields ul {\n list-style-type: none;\n display: inline;\n}\n.WGProfileFields ul li {\n display: inline-block;\n *display: inline;\n zoom: 1;\n}\n/* profile view */\n.WGProfile_accepts {\n text-align:right;\n background-color:gray;\n padding:4px;\n width:100%;\n}\n.WGviewContainer {\n margin:0;\n padding:0;\n width:90%;\n}\n.WGinternational {\n background-color:red;\n color:white;\n display:inline;\n font-weight:bold;\n padding:4px;\n text-align:center;\n}\n\n.WGcategoryLabel {\n vertical-align:top; \n width:90%;\n}\n\n.WGprivateMessage {\n background-color:gray;\n padding:4px;\n text-align:right;\n}\n\n.WGprofileAlert {\n background-color:red;\n color:white;\n font-weight:bold;\n padding:4px;\n text-align:center;\n width:100%;\n}\nWGprofilePhoto {\n vertical-align:top;\n}\n\n/* profile errors */\n#WGprofileErrors {\n background-color: #ff0000;\n color: #ffffff;\n font-weight: bold;\n text-align: center;\n}\n.WGprofilefield_required_off {\n}\n.WGprofilefield_required {\n background-color: #ffd6bb;\n}\n.WGprofilefield_error {\n background-color: #FF9494;\n}\n.WGerrorMsg {\n font-weight:bold;\n color:red;\n text-align:center;\n}\n/* user */\n.WGuserInvite_subject {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 25px;\n text-align: left;\n width: 500px;\n /*margin-left: 50px;*/\n /*margin-bottom: 20px;*/\n /*overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;*/\n}\n/* view profile */\n\n.WGprofile_canEdit {\n text-align:center;\n background-color:red;\n padding:4px;\n color:white;\n font-weight:bold;\n}\n.WGprofile_fieldLabel {\n background: #DDE6FB;\n padding:2px;\n width:200px;\n}\n.WGprofile_fieldData {\n margin-left: 5px;\n}\n.WGprofile_fieldStatus {\n padding:4px;\n color:white;\n font-weight:bold\n}\n\n/**********************************************************************/\n/* TABS */\n/**********************************************************************/\n\n/* TABS - outer */\n\n.WGbottombutton {\n float:right;\n padding-right:2px;\n padding-top: 2px;\n position: relative;\n} \n.WGcontent {\n padding:10px;\n\n}\n.WGcleartab {\n clear: both; \n height:0;\n}\n.WGsubContent { /* color setting for border under outer tabs that surrounds inner tabs */\n border: solid #d8dee8 6px;\n}\n.WGtopbutton {\n float:right;\n clear:both;\n padding-right:2px;\n padding-top: 2px;\n position: relative;\n}\n\n\nul.WGtopTabs,\nul.WGtopTabs li {\n list-style-type:none;\n margin:10px 0px 0px 0px;\n padding:0px;\n position:relative;\n width:auto;\n Xposition:relative;\n zoom:1;\n}\nul.WGtopTabs li {\n display:block;\n float:left;\n margin-right: 3px;\n}\nul.WGtopTabs li b { \n background-color: #eef2fd;\n border-top:solid #d8dee8 1px;\n display:block;\n padding:4px 8px;\n position:relative;\n top:-1px; \n}\nul.WGtopTabs a { /* non-selected tabs color settings */\n display:block;\n color:#9ea0bb;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n background-color:#f2f5fa;\n border-left: solid #d8dee8 1px;\n border-right: solid #d8dee8 1px; \n}\n\nul.WGtopTabs a:hover,\nul.WGtopTabs a:hover b,\nul.WGtopTabs a.selected,\nul.WGtopTabs a.selected b { /* selected tab color settings */\n background-color:#d8dee8;\n color:#3e4f77;\n}\n\n/* TABS - YUI */\n\n.WGcleardiv {\n clear: both;\n margin: 0px 0px 0px 0px;\n padding: 0px;\n}\n\n.WGview {\n border: none;\n font: bold 10px Verdana;\n color: #3e4f77;\n text-decoration:none;\n position: absolute;\n right: 4px;\n top:4px;\n}\n\n.WGprofile_displayView {\n -x-system-font:none;\n border:medium none;\n color:#0B2258;\n display:inline;\n float:right;\n font-family:Verdana;\n font-size:10px;\n font-size-adjust:none;\n font-stretch:normal;\n font-style:normal;\n font-variant:normal;\n font-weight:bold;\n line-height:normal;\n padding-right:8px;\n padding-top:3px;\n text-decoration: none;\n}\n\n.WGprofile_displaySubContent { /* border around friends tab content */\n border: solid #d8dee8 6px;\n border-top: solid #d8dee8 18px;\n}\n\n\n /*\nCopyright (c) 2008, Yahoo! Inc. All rights reserved.\nCode licensed under the BSD License:\nhttp://developer.yahoo.net/yui/license.txt\nversion: 2.6.0\n*/\n\n/* yui tabs color settings below */\n\n/* .yui-navset defaults to .yui-navset-top */\n.yui-skin-sam .yui-navset .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav { /* protect nested tabviews from other orientations */\n border:solid #eef2fd; /* color between tab list and content */\n border-width:0 0 5px;\n Xposition:relative;\n zoom:1;\n}\n.yui-skin-sam .yui-navset .yui-nav a,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a {\n background:#ffffff; /* tab background */\n border:solid #ffffff;\n border-width:0 1px;\n color:#bfccdd;\n position:relative;\n text-decoration:none;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n font-weight: bold;\n}\n\n.yui-skin-sam .yui-navset .yui-nav a em,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a em {\n border:solid #eef2fd;\n border-width:1px 0 0;\n cursor:hand;\n padding:0.25em .75em;\n left:0; right: 0; bottom: 0; /* protect from other orientations */\n top:-1px; /* for 1px rounded corners */\n position:relative;\n}\n\n.yui-skin-sam .yui-navset .yui-nav .selected a,\n.yui-skin-sam .yui-navset .yui-nav .selected a:focus, /* no focus effect for selected */\n.yui-skin-sam .yui-navset .yui-nav .selected a:hover { /* no hover effect for selected */\n background: #eef2fd; /* selected tab background */\n color: #3e4f77;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n font-weight: bold;\n}\n.yui-skin-sam .yui-navset .yui-nav .selected a,\n.yui-skin-sam .yui-navset .yui-nav .selected a em {\n border-color:#eef2fd; /* selected tab border color */\n}\n\n.yui-skin-sam .yui-navset .yui-nav a:hover,\n.yui-skin-sam .yui-navset .yui-nav a:focus {\n background: #eef2fd; /* hover tab background */\n color: #3e4f77;\n outline:0;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n font-weight: bold;\n\n}\n.yui-skin-sam .yui-navset .yui-content {\n background: #eef2fd; /* content background color */\n}\n\n.yui-skin-sam .yui-navset .yui-content,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-content {\n border:5px solid #eef2fd; /* content border */\n padding:0.75em 1em; /* content padding */\n}\n\n/* left and right orientations */\n.yui-skin-sam .yui-navset-left .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,\n.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 5px 0 0;\n Xposition:absolute; /* from tabview-core; have to reiterate for skin-sam due to pos:rel on skin-sam yui-nav */\n top:0; bottom:0; /* stretch to fill content height */\n}\n\n.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,\n.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 0 0 5px;\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav li,\n.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,\n.yui-skin-sam .yui-navset-right .yui-nav li {\n margin:0 0 0.3em; /* space between tabs */\n padding:0 0 0 1px; /* gecko: make room for overflow */\n}\n\n.yui-skin-sam .yui-navset-right .yui-nav li {\n padding:0 1px 0 0; /* gecko: make room for overflow */\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav .selected,\n.yui-skin-sam .yui-navset .yui-navset-left .yui-nav .selected { \n margin:0 -1px 0.16em 0;\n}\n\n.yui-skin-sam .yui-navset-right .yui-nav .selected { \n margin:0 0 0.16em -1px;\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav a,\n.yui-skin-sam .yui-navset-right .yui-nav a {\n border-width:1px 0;\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav a em,\n.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,\n.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 0 0 1px;\n padding:0.2em .75em;\n top:auto;\n left:-1px; /* for 1px rounded corners */\n}\n\n.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 1px 0 0;\n left:auto;\n right:-1px; /* for 1px rounded corners */\n}\n.yui-skin-sam .yui-navset-left .yui-nav a,\n.yui-skin-sam .yui-navset-left .yui-nav .selected a,\n.yui-skin-sam .yui-navset-left .yui-nav a:hover,\n.yui-skin-sam .yui-navset-right .yui-nav a,\n.yui-skin-sam .yui-navset-right .yui-nav .selected a,\n.yui-skin-sam .yui-navset-right .yui-nav a:hover,\n.yui-skin-sam .yui-navset-bottom .yui-nav a,\n.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,\n.yui-skin-sam .yui-navset-bottom .yui-nav a:hover {\n background-image:none; /* no left-right or bottom-top gradient */\n}\n.yui-skin-sam .yui-navset-left .yui-content {\n border:1px solid #d8dee8; /* content border */\n}\n/* bottom orientation */\n.yui-skin-sam .yui-navset-bottom .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav {\n border-width:5px 0 0; /* color between tab list and content */\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,\n.yui-skin-sam .yui-navset-bottom .yui-nav .selected { \n margin:-1px 0.3em 0 0; /* for overlap */\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,\n.yui-skin-sam .yui-navset-bottom .yui-nav li { \n padding:0 0 1px 0; /* gecko: make room for overflow */\n vertical-align:top;\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li a,\n.yui-skin-sam .yui-navset-bottom .yui-nav li a { \n}\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav a em,\n.yui-skin-sam .yui-navset-bottom .yui-nav a em {\n border-width:0 0 1px;\n top:auto;\n bottom:-1px; /* for 1px rounded corners */\n}\n.yui-skin-sam .yui-navset-bottom .yui-content,\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-content {\n border:1px solid #f2f5fa; /* content border */\n}\n.yui-skin-sam {\n background-color: #d8dee8;\n padding: 10px 5 5 5px;\n display:block;\n}\n\n/* yui tab placement settings below */\n\n.yui-skin-sam .yui-navset .yui-nav li,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav li {\n margin:0 0.3em 0 0; /* space between tabs */\n padding:5px 0 0; /* gecko: make room for overflow */\n zoom:1;\n}\n\n.yui-skin-sam .yui-navset .yui-nav .selected,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav .selected { \n margin:0 0.3em -1px 0; /* for overlap */\n}\n\n.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,\n.yui-navset .yui-navset-bottom .yui-nav li {\n margin:0 0.5em 0 0;\n}\n.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li {\n margin:0 0 0.5em;\n}\n.yui-navset .yui-content .yui-hidden {\n display:none;\n}\n.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,\n.yui-navset-left .yui-nav,.yui-navset-right .yui-nav {\n width:6em;\n}\n.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav {\n width:auto;\n}\n.yui-navset .yui-navset-left,.yui-navset-left {\n padding:0 0 0 6em;\n}\n.yui-navset-right {\n padding:0 6em 0 0;\n}\n.yui-navset-top,.yui-navset-bottom {\n padding:auto;\n}\n.yui-nav,.yui-nav li {\n list-style:none;\n margin:0;\n padding:0; \n}\n.yui-navset li em {\n font-style:normal;\n}\n.yui-navset {\n position:relative;\n zoom:1;\n}\n.yui-navset .yui-content {\n zoom:1;\n}\n.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,\n.yui-navset .yui-navset-bottom .yui-nav li {\n display:inline-block;\n display:-moz-inline-stack;\n *display:inline;\n vertical-align:bottom;\n cursor:pointer;\n zoom:1;\n}\n.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li {\n display:block;\n}\n.yui-navset .yui-nav a {\n position:relative;\n}\n.yui-navset .yui-nav li a,.yui-navset-top .yui-nav li a,\n.yui-navset-bottom .yui-nav li a {\n display:block;\n display:inline-block;\n vertical-align:bottom;\n zoom:1;\n}\n.yui-navset-left .yui-nav li a,.yui-navset-right .yui-nav li a {\n display:block;\n}\n.yui-navset-bottom .yui-nav li a {\n vertical-align:text-top;\n}\n.yui-navset .yui-nav li a em,.yui-navset-top .yui-nav li a em,\n.yui-navset-bottom .yui-nav li a em {\n display:block;\n}\n.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,\n.yui-navset-left .yui-nav,.yui-navset-right .yui-nav {\n position:absolute;\n z-index:1;\n}\n.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav {\n position:static;\n}\n.yui-navset .yui-navset-left .yui-nav,.yui-navset-left .yui-nav {\n left:0;\n right:auto;\n}\n.yui-navset .yui-navset-right .yui-nav,.yui-navset-right .yui-nav {\n left:auto;\n right:0;\n}\n.yui-skin-sam .yui-navset .yui-nav .selected a em {\n padding:0.35em 0.75em;\n}\n.yui-skin-sam .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 5px 0 0;\n bottom:0;\n top:0;\n Xposition:absolute;\n}\n.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 0 0 5px;\n}\n.yui-skin-sam .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,\n.yui-skin-sam .yui-navset-right .yui-nav li {\n margin:0 0 0.16em;\n padding:0 0 0 1px;\n}\n.yui-skin-sam .yui-navset-right .yui-nav li {\n padding:0 1px 0 0;\n}\n.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav a {\n border-width:1px 0;\n}\n.yui-skin-sam .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 0 0 1px;\n left:-1px;\n padding:0.2em .75em;\n top:auto;\n}\n.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 1px 0 0;\n left:auto;\n right:-1px;\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-left .yui-nav .selected a,.yui-skin-sam .yui-navset-left .yui-nav a:hover,\n.yui-skin-sam .yui-navset-right .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav .selected a,.yui-skin-sam .yui-navset-right .yui-nav a:hover,\n.yui-skin-sam .yui-navset-bottom .yui-nav a,.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,\n.yui-skin-sam .yui-navset-bottom .yui-nav a:hover {\n background-image:none;\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,\n.yui-skin-sam .yui-navset-bottom .yui-nav .selected {\n margin:-1px 0.16em 0 0;\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,\n.yui-skin-sam .yui-navset-bottom .yui-nav li {\n padding:0 0 1px 0;\n vertical-align:top;\n}\n',0,'text/css',1234924781,3600),('wrq7hMxb1ewQqZ46xmd8Gg','function equalCol() {\r\n var colOne = document.getElementById(\'compareForm\');\r\n var colTwo = document.getElementById(\'matrixRight\'); \r\n var colOneH = colOne.offsetHeight;\r\n var colTwoH = colTwo.offsetHeight; \r\n \r\n //alert(colOneH + \", \" + colTwoH);\r\n colOne.style.overflow = \"scroll\";\r\n colOne.style.height = (colTwoH - 150) + \"px\";\r\n}',0,'text/javascript',1235706620,3600),('hkj6WeChxFyqfP85UlRP8w','.wg-clear {\r\n display: inline;\r\n clear: both;\r\n font-size:0px;\r\n line-height:0px;\r\n}\r\n\r\n/* COLUMN STYLES */\r\n#matrixLeft {\r\n float:left;\r\n width:65%;\r\n padding:1%;\r\n min-height:1%;\r\n background-color:#d2d2d2;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n}\r\n#matrixRight {\r\n float:left;\r\n width:25%;\r\n padding:0px;\r\n min-height:1%;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n border: solid silver 1px;\r\n background-color:white; \r\n margin-left:5px;\r\n}\r\n\r\n\r\n\r\n/* DROPSHADOW BUTTONS */\r\n#matrixLeft .buttons span {\r\n background-color:#888;\r\n position:relative;\r\n padding:5px 0px 0px 0px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n\r\n}\r\n#matrixLeft .buttons button,\r\n#matrixLeft .buttons a#return {\r\n border:solid #2f495e 2px;\r\n position:relative;\r\n background-color:#e1e1e1;\r\n padding:auto 3px;\r\n margin:0px;\r\n font-size:11px;\r\n line-height:13px;\r\n position:relative;\r\n top:-6px;\r\n left:-2px;\r\n height:22px;\r\n cursor:pointer;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n font-weight:bold;\r\n text-decoration:none;\r\n color:#333;\r\n}\r\n#matrixLeft .buttons a#return {\r\n font-size:10px;\r\n padding:3px 10px 2px 10px;\r\n}\r\n#matrixLeft .buttons button:hover,\r\n#matrixLeft .buttons a#return:hover {\r\n border-color:black;\r\n color:white;\r\n background-color:#444;\r\n}\r\n\r\n\r\n\r\n/* WHITE AREA FOR THE LISTING OF OBJECTS TO COMPARE */\r\n#matrixLeft .matrixListing {\r\n background-color:white;\r\n _height:300px;\r\n min-height:300px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n margin:10px 2px 20px 2px;\r\n padding:auto 10px;\r\n}\r\n#matrixLeft .matrixListing table {\r\n border-collapse:collapse;\r\n margin:0px;\r\n padding:0px;\r\n display:block;\r\n}\r\n#matrixLeft .matrixListing table a:link {\r\n font-size:12px;\r\n color:#111;\r\n}\r\n#matrixLeft .matrixListing table a:visited {\r\n color:#333;\r\n font-size:12px;\r\n text-decoration:none;\r\n}\r\n#matrixLeft .matrixListing table a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* GRAY BAR THAT HOLDS THE SORT BUTTONS */\r\n#matrixLeft .matrixListing .sortButtons {\r\n background-color:#f1f1f1;\r\n border:solid silver 1px;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft: 4px;\r\n -webkit-border-radius-topRight: 4px; \r\n border-bottom:solid #D2D2D2 2px;\r\n display:block;\r\n}\r\n\r\n\r\n\r\n/* STYLES TO OVERRIDE THE SORT BUTTON CSS BUILT INTO THE PERL CODE */\r\n#sortByViews-button,\r\n#sortByCompares-button,\r\n#sortByUpdated-button,\r\n#sortByClicks-button {\r\n background: none;\r\n white-space:nowrap;\r\n border-style:none;\r\n cursor:pointer;\r\n padding-bottom:4px;\r\n border-style:none;\r\n background-color:transparent;\r\n border-right:solid silver 1px;\r\n color:#555;\r\n}\r\n#sortByViews-button:hover,\r\n#sortByCompares-button:hover,\r\n#sortByUpdated-button:hover,\r\n#sortByClicks-button:hover {\r\n color:black;\r\n}\r\n\r\n\r\n\r\n/* MATRIX STATISTICS */\r\n#matrixRight .mainTitle {\r\n font-size:20px;\r\n padding:5px 10px;\r\n border-bottom: solid gray 1px;\r\n background-color:#d2d2d2;\r\n}\r\n#matrixRight .textBox {\r\n border-top:solid silver 1px;\r\n padding:10px 5px;\r\n}\r\n.matrixStatistics {\r\n padding:10px;\r\n}\r\n.matrixStatistics .title {\r\n font-weight:bold;\r\n background-color:#f1f1f1;\r\n padding:2px 5px;\r\n font-size:11px;\r\n -moz-border-radius:4px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n.matrixStatistics .statistics {\r\n margin-bottom:15px;\r\n}\r\n.matrixStatistics .label {\r\n text-align:right;\r\n width:100px;\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data {\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data a {\r\n color:#111;\r\n}\r\n.matrixStatistics .data a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* LINKS TO CONTROL ADMIN FUNCTIONS */\r\n.adminLinks {\r\n background-color:#f1f1f1;\r\n}\r\n.adminLinks a:link,\r\n.adminLinks a:visited {\r\n display:block;\r\n text-align:center;\r\n text-decoration:none;\r\n color:#555;\r\n font-weight:normal;\r\n font-size:10px;\r\n padding:2px 5px;\r\n border-top:solid silver 1px;\r\n}\r\n.adminLinks a:hover {\r\n color:black;\r\n}\r\n.adminLinks a.newLink:link,\r\n.adminLinks a.newLink:visited {\r\n background-color:#3498d1;\r\n color:white;\r\n display:block;\r\n}\r\n.adminLinks a.newLink:hover {\r\n background-color:#39a6e5;\r\n}\r\n\r\n\r\n\r\n/* STYLE FOR THE DETAILED LISTING */\r\n#matrixDetail {\r\n min-width:1000px;\r\n}\r\n#matrixDetail .editBtns {\r\n font-size:9px;\r\n line-height:11px;\r\n vertical-align:middle;\r\n font-weight:normal;\r\n margin-left:10px;\r\n}\r\n#matrixDetail .editBtns a {\r\n color:black;\r\n text-decoration:underline;\r\n}\r\n#matrixDetail .editBtns a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n#matrixDetail .stats .screenshot {\r\n float:left;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixDetail .commentsMail strong.title {\r\n margin-bottom:0px;\r\n margin-top:20px;\r\n display:block;\r\n background-color:#d2d2d2;\r\n padding:2px 10px;\r\n border:solid 1px gray;\r\n border-bottom-color:silver;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n}\r\n\r\n#matrixDetail .assetAspectComments {\r\n margin:0px 0px 20px 0px;\r\n border:solid gray 1px;\r\n background-color:#f1f1f1;\r\n -moz-border-radius-bottomLeft:4px;\r\n -moz-border-radius-bottomRight:4px;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectComment {\r\n border-top:solid silver 1px;\r\n border-bottom:solid gray 1px;\r\n padding:3px;\r\n background-color:#f5f5f5;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectCommentForm {\r\n border-top:solid #d2d2d2 5px;\r\n padding:20px;\r\n}\r\n\r\n\r\n\r\n#matrixDetail .stats ul, #matrixDetail .stats ul li {\r\n list-style-type:none;\r\n margin:0px;\r\n padding:0px;\r\n}\r\n#matrixDetail .stats ul li {\r\n display:block;\r\n line-height:20px;\r\n margin:4px 0px;\r\n}\r\n#matrixDetail .stats ul li strong {\r\n display:block;\r\n float:left;\r\n width:130px;\r\n text-align:right;\r\n background-color:#f1f1f1;\r\n padding-right:5px;\r\n margin-right:5px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:3px;\r\n font-size:11px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n\r\n\r\n.showLink {\r\n background-color:#e1e1e1;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n.showLink:hover,\r\n.hideLink:hover {\r\n background-color:#555;\r\n color:white;\r\n}\r\n.hideLink {\r\n background-color:#f1f1f1;\r\n border:2px solid #2F495E;\r\n border-bottom-style:none;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft:4px;\r\n -webkit-border-radius-topRight:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n\r\n#matrixMail {\r\n background-color:#f1f1f1;\r\n padding:15px;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -moz-border-radius-topLeft:0px;\r\n -webkit-border-radius:4px;\r\n -webkit-border-radius-topLeft:0px;\r\n margin-top:1px;\r\n}\r\n#matrixMail * .tableData {\r\n padding:5px;\r\n margin:0px;\r\n}\r\n#matrixMail * input {\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#matrixMail * .formDescription {\r\n text-align:right;\r\n vertical-align:middle;\r\n padding-right:10px;\r\n font-weight:bold;\r\n}\r\n#matrixMail form * img {\r\n margin-top:-18px;\r\n}\r\n#matrixMail #verify_formId {\r\n height:45px;\r\n line-height:45px;\r\n font-size:35px;\r\n padding:0px;\r\n margin:0px;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixRatings {\r\n width:264px;\r\n position:relative;\r\n left:-2px;\r\n top:12px;\r\n}\r\n#matrixRatings table {\r\n margin-left:0px;\r\n}\r\n#matrixRatings td {\r\n overflow:hidden;\r\n}\r\n#matrixRatings .formDescription {\r\n text-align:right;\r\n background-color:#97BCD1;\r\n border:solid #4D606B 1px;\r\n padding:2px 5px;\r\n font-weight:bold;\r\n font-size:10x;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n color:#333;\r\n}\r\n#matrixRatings .formDescription a:before {\r\n content: \"» \";\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a {\r\n display:block;\r\n color:red;\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a:hover {\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n#matrixAttributes {\r\n float:left;\r\n _width:40%;\r\n min-width:20%;\r\n max-width:45%;\r\n margin-right:20px;\r\n}\r\n#rightDetails {\r\n float:left;\r\n _width:20%;\r\n min-width:20%;\r\n max-width:45%;\r\n}\r\n\r\n\r\n\r\n#attributes {\r\n border:solid #d2d2d2 1px;\r\n background-color:#f1f1f1;\r\n margin-top:10px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:10px;\r\n}\r\n#attributes table {\r\n border-collapse:collapse;\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#attributes table * td {\r\n padding:2px;\r\n margin:0px;\r\n}\r\n\r\n\r\n.yui-dt0-col-value {\r\n font-weight:bold;\r\n font-size:14px;\r\n padding:3px;\r\n white-space:no-wrap;\r\n}\r\n\r\n\r\n\r\n/* COMPARISON STYLES */\r\n#compareList table {\r\n border-collapse:collapse;\r\n border:solid silver 1px;\r\n margin-top:5px;\r\n}\r\n#compareList table * th a {\r\n color:black;\r\n padding:1px 5px;\r\n}\r\n#compareList table * td {\r\n background-color:#f1f1f1;\r\n border-top:solid gray 1px;\r\n border-bottom:solid silver 1px;\r\n}\r\n\r\n#compareList .yui-dt-liner {\r\n color:#39A6E5;\r\n}\r\n\r\n#compareList .yui-dt-col-name .yui-dt-liner {\r\n font-style:italic;\r\n font-size:10px;\r\n color:#555;\r\n}\r\n#compareList .yui-dt-col-name .yui-dt-liner b {\r\n font-size:15px;\r\n font-style:normal;\r\n padding-right:25px;\r\n color:black;\r\n}',0,'text/css',1235708941,0); +INSERT INTO `template` VALUES ('\">','Macro/AdminToggle',1,1,'PBtmpl0000000000000036',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/a_account',1,1,'PBtmpl0000000000000037',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/EditableToggle',1,1,'PBtmpl0000000000000038',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/GroupAdd',1,1,'PBtmpl0000000000000040',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/GroupDelete',1,1,'PBtmpl0000000000000041',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/H_homeLink',1,1,'PBtmpl0000000000000042',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/LoginToggle',1,1,'PBtmpl0000000000000043',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/r_printable',1,1,'PBtmpl0000000000000045',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/File',1,1,'PBtmpl0000000000000091',1129049189,'WebGUI::Asset::Template::HTMLTemplate',1),('','style',0,0,'PBtmpl0000000000000132',1129049190,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n
      /opaque.gif);\">\n \n
      \n\n\n\n
      /opaque.gif);\">\n \n
      \n
      \n
      \n','Shortcut',1,1,'PBtmpl0000000000000140',1129573244,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n\n\n
      \n \n
      \n
      \n
      :
      \n
      \n
      \n
      \n
      \n\n\n
      \n
      \n
      \n \n
      \n
      \n
      \n \n
      \n
      \n
      \n \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n\n','AdminConsole',1,1,'PBtmplHelp000000000001',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

      \n\n\n\n \n \n\n \n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n\n \n\n \n \n \n \n \n\n\n
      \">\">\">\">\">\">
      oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
      \n\n\n
      \n · · \n
      \n
      \n\n','Collaboration',1,1,'PBtmpl0000000000000208',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

      \n\n\n
      \n\n\n
      \n
      \n \">
      \n ()\n \n \n \n
      \n \n
      \n
      \n\n
      \n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000128',1147642411,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

      \n
      \n \n

      \n
      \n \n\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\"
      >\n > \n\n','Navigation',1,1,'PBtmpl0000000000000093',1147642412,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n
      \n \n
      \n\n\n\n\n \n \n\n\n
      \n

      \n\" class=\"backLabel\">\n\n\n','DataForm',1,1,'PBtmpl0000000000000104',1147642412,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n

      \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
      \n
      \n\n\n
      \n · · \n
      \n
      \n\n\n','Collaboration/Search',1,1,'PBtmpl0000000000000031',1147642413,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n \n

      \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
      \n\n\n
      \n
        \n \n
      • \">
      • \n
        \n\n
      \n
      ','Auth/LDAP/Login',1,1,'PBtmpl0000000000000006',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n

      \n\n\n\n \">\n

      \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n class=\"even\">\n \">
      \n \n \n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n \">\n by\n \n \n \n \">\n \n on @ \n \n
      \n \n
      \n\n

      \n \n
      \n
      \n \n

      \n \n\n\n\n','MessageBoard',1,1,'PBtmpl0000000000000047',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1),('\nThis is the Manager\'s View\n\n','TimeTracking_manager',1,1,'TimeTrackingTMPL000002',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

      \n\n\n\n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n\n\n
      \">\">\">
      oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
      \n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000066',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n \n

      \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
      \n\n\n
      \n \n
      ','Auth/WebGUI/Login',1,1,'PBtmpl0000000000000013',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n \n

      \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
      \n \n \n \n
      \n \n \n \n
      \n \n \n \n
      \n \n
      \n','Auth/WebGUI/Expired',1,1,'PBtmpl0000000000000012',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n\n

      \n\n

      \n\n
      \n\n\">\n\n          \n\n\">\n\n
      \n','prompt',1,1,'PBtmpl0000000000000057',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(\"title\"); - WebGUI\n \n\n\n ^AdminBar;\n
      \n\n
      \n ^AssetProxy(flexmenu);\n
      \n\n
      \n \n
      \n
      \n
      \n ^LoginToggle;   ^a(^@;);   ^H;   ^AdminToggle;\n
      \n\n
      \n\n\n\n','style',0,1,'PBtmpl0000000000000060',1147642419,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \">\" alt=\"\" style=\"border-style:none;\" />','FileAsset',1,1,'PBtmpl0000000000000024',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

      \n \n

      \n \n \n \n

      \">

      \n \n \n \n\n \n \n \n \n\n \n\n \n \n \n\n
      \n\n \">\" border=\"0\" alt=\"\" />\n \">\n\n \" border=\"0\" alt=\"\" />\n\n \n \n
      \n \n \n \n \n \n\n \">\" border=\"0\" alt=\"\" />\n \">\n\n \" border=\"0\" alt=\"\" />\n\n \n ^D(\"%z %Z\",);
      \n','Folder',1,1,'PBtmpl0000000000000078',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />()','Macro/File',1,1,'PBtmpl0000000000000107',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n

      \n','Account/Inbox/InviteUserMessage',1,1,'XgcsoDrbC0duVla7N7JAdw',1227566394,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

      \n
      \n \n

      \n
      \n \n\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\"
      >\n · \n\n','Navigation',1,1,'PBtmpl0000000000000108',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \" />','ImageAsset',1,1,'PBtmpl0000000000000088',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n \">\n
      \n\n\n - \n

      \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

      \n
      \n\n\n - \n\n','Article',1,1,'PBtmpl0000000000000123',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n \');\">\n
      \n\n\n - \n

      \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

      \n
      \n\n\n - \n\n','Article',1,1,'PBtmpl0000000000000129',1147642422,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

      \n\n\n\n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n
      oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
      \n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000077',1147642422,'WebGUI::Asset::Template::HTMLTemplate',1),('

      RandomThread macro debug output:

      \n
      \n
      approve.url:
      \n
      assetId:
      \n
      assetSize:
      \n\n
      <tmpl_loop attachment_loop>:
      \n
      \n
      filename:
      \n
      icon:
      \n
      isImage:
      \n
      thumbnail:
      \n
      url:
      \n</tmpl_loop>\n\n\n
      attachment.icon:
      \n
      attachment.thumbnail:
      \n
      attachment.url:
      \n
      className:
      \n
      content:
      \n
      contentType:
      \n
      createdBy:
      \n
      creationDate:
      \n
      dateSubmitted:
      \n
      dateSubmitted.human:
      \n
      dateUpdated:
      \n
      dateUpdated.human:
      \n
      delete.url:
      \n
      deny.url:
      \n
      edit.url:
      \n
      encryptPage:
      \n
      endDate:
      \n
      extraHeadTags:
      \n
      groupIdEdit:
      \n
      groupIdView:
      \n
      hasRated:
      \n
      image.url
      \n
      image.thumbnail
      \n
      isHidden:
      \n
      isLocked:
      \n
      isLockedBy:
      \n
      isMarkedRead:
      \n
      isPackage:
      \n
      isPrototype:
      \n
      isSticky:
      \n
      isSystem:
      \n
      lastPostDate:
      \n
      lastPostId:
      \n
      lineage:
      \n
      menuTitle:
      \n
      newWindow:
      \n
      ownerUserId:
      \n
      parentId:
      \n
      rate.url.1:
      \n
      rate.url.2:
      \n
      rate.url.3:
      \n
      rate.url.4:
      \n
      rate.url.5:
      \n
      rating:
      \n
      rating.value:
      \n
      replies:
      \n
      reply.url:
      \n
      reply.withquote.url:
      \n
      revisedBy:
      \n
      revisionDate:
      \n
      startDate:
      \n
      state:
      \n
      stateChanged:
      \n
      stateChangedBy:
      \n
      status:
      \n
      storageId:
      \n
      subscriptionGroupId:
      \n
      synopsis:
      \n
      tagId:
      \n
      threadId:
      \n
      title:
      \n
      title.short:
      \n
      url:
      \n
      user.canEdit:
      \n
      user.isPoster:
      \n
      userDefined1:
      \n
      userDefined2:
      \n
      userDefined3:
      \n
      userDefined4:
      \n
      userDefined5:
      \n
      userId:
      \n
      userProfile.url:
      \n
      username:
      \n
      views:
      \n
      \n','Macro/RandomThread',1,1,'WVtmpl0000000000000001',1147642426,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

      \n
      \n \n

      \n
      \n \n\n\n
      \n\n
      \n \">\n
      \n \n
      \n \n
      \n \n
      \n \n
      \n
      \n
      \n
      ','Navigation',1,1,'PBtmpl0000000000000136',1147642428,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

      \n
      \n \n

      \n
      \n \n\n\n\n \n \n \n \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\"
      >\n \n','Navigation',1,1,'PBtmpl0000000000000124',1147642429,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n
      \n\n

      \n
      \n\n
      \n
      \n\n\n\n class=\"selectedMenuItem\" onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n
      \n
      \n
      \n','Navigation',1,1,'PBtmpl0000000000000048',1147642431,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(title); - <tmpl_var session.setting.companyName>\n \n \n \n\n\n\n^AdminBar(\"PBtmpl0000000000000090\");\n\n\n

      \n^AdminToggle();\n

      \n\n\n','style',1,1,'PBtmplBlankStyle000001',1147642431,'WebGUI::Asset::Template::HTMLTemplate',1),('

      ^International(error label,Account_Inbox);

      \r\n

      \r\n

      \">^International(back label,Account_Inbox);

      \n','Account/Inbox/Error',1,1,'ErEzulFiEKDkaCDVmxUavw',1227566394,'WebGUI::Asset::Template::HTMLTemplate',1),('

      ^International(invitation confirm label,Account_Inbox);

      \r\n

      ^International(invitation confirm message,Account_Inbox);

      \r\n\r\n \r\n \r\n \r\n \r\n \r\n
      ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
      \r\n

      \">^International(invitations back label,Account_Inbox);

      \n','Account/Inbox/Confirm',1,1,'5A8Hd9zXvByTDy4x-H28qw',1227566395,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n

      \n\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n

      \n ','FileAsset',1,1,'pbtmpl0000000000000221',1147642465,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n
      \n \n\n

      \n
      \n \n\n \n \n \n       \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n\n
      \n','Navigation',1,1,'stevenav00000000000001',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n
      \n \n\n

      \n
      \n \n\n \n \n \n       \n \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n \n','Navigation',1,1,'PBnav000000style01lvl2',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \n\n \n
      \n
      \n
      \n
      \n \n \n \n

      \">

      \n
      \n\n \n \">.\n \">\n \n \n \n
      \n
      \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000044',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \n\n \n \n \n \n \n \n \n \n \n \n \n \n
      \n \">\n \n\n \n \">.\n \">\n \n
      \n
      \n
      \n
      \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000092',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
      \n
      \n\n

      \n
      \n\n

      \n
      \n\n\n\n
        \n\n\n\n\n
      \n
      \n\n
    • \">onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n\n
        \n\n \n\n\n \n \n \n
      \n \n
    • \n\n\n','Navigation',1,1,'PBnav00000000000bullet',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n

      \n
      \n
      \n\n\n
      \n \" style=\"height:auto;min-height:100px;width:100%;display:block;\">\n \" /> \n \n
      ','FileAsset',1,1,'pbtmpl0000000000000220',1148579525,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

      \n\n\n\n\n
      \n\n

      \n\n\n\n\n

      \n · · \n
      \n\n','Collaboration',1,1,'PBtmpl0000000000000133',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

      \n\n\n \n \n [\">] \n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n

      \n \" target=\"_blank\">\n \n - \n \n

      \n
      \n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000083',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

      \n\n
        \n \n
      1. \n \n \n [\">]\n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n \" target=\"_blank\">\n \n - \n \n
      2. \n
        \n
      \n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000101',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

      \n\n
      \n\n\n
      \n
      \n
      ()
      \n \n \n
      \n
      \n
      \n\n
      \n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000121',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \"> •\n \n \n \n \"> \n \n \">\n \n \n •\n \n \n \n \">\n \n

      \n\n\n \n \n \">\n \n \n \n\n \n \n \n \n \n \"> •\n \n \n \n (\">)
      \n\n
      \n

      \n Q: \n A: \n

      \n

      \n\n\n\n

      \n · · \n
      \n\n','Collaboration',1,1,'PBtmpl0000000000000081',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n \n  [\">]\n \n

      \n\n\n \n \n \">\n \n \n \n \n \n \n \n \n \"> •\n \n \n \n (\">)\n
      \n

      \n \n

      \n\n\n\n

      \n · · \n
      \n\n','Collaboration',1,1,'PBtmpl0000000000000079',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n \n \n •\n \n \n \n \">\n \n

      \n\n\n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000082',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

      \n\n

      \n\n\n

      \n \n
      \n
      \n \n \">\n -\n \n \n - \n \n \n - \n \n \n - \n \n \n \n \n \">\" border=\"0\" alt=\"\" align=\"right\" />\n \n \n
      \n \">\n
      \n
      \n

      \n\n\n\n

      \n \n
      \n\n','Collaboration',1,1,'PBtmpl0000000000000112',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\" style=\"border-style:none;vertical-align:middle;\" alt=\"\" />\n','Macro/File',1,1,'PBtmpl0000000000000039',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n
      \n\n \n

      \n\n\n
      \n\n\n \n \n
      \n
      \n

      \n \n \n\n \n \" alt=\"graph\" />\n \n \n
      \n \n \n \n \n \n
      \" class=\"pollColor\">^Spacer(1,1);  % ()
      \n
      \n


      : \n
      \n\n
      \n\n\n','Poll',1,1,'PBtmpl0000000000000055',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n^Page(title); - <tmpl_var session.setting.companyName>\n\n\n\n\n\n\n\n^AdminBar(\"\");\n\n
      \"plainblack\"
      \n\n
      \n \n
      \n\n
      © 2001-2004 Plain Black LLC
      \n\n\n\n','style',1,1,'PBtmpl0000000000000111',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\nBatch: \n\n\n
      \n\n','Operation/RedeemSubscription',1,1,'PBtmpl0000000000000053',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

      \n\n\n\n \n \n \n \n \n \n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
      \">\">\">
      oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n \n \">\" border=\"0\" alt=\"\" />\n \n  \n \n oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
      \n\n\n
      \n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000097',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n
      \n \n\n

      \n
      \n \n\n \n\n \n\n','Navigation',1,1,'PBnav00000000indentnav',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
      \n \n
      \n
      \n \n
      \n
      \n
      \n  \n
      \n \n \n \n \n \n
      \n  \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n \n
      \n \n \" >
      \n
      \n
      \n
      \n \n
      \n \n \">
      \n
      \n
      \n
      \n
      \n \">
      \n ^AdminToggle;
      \n ^LoginToggle;
      \n
      \n
      \n
      \n \n
      \n
      \n \n \')\">\"?\"\n \n
      \n
      \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
      \n
      \n\"*\"\n
      \n
      \n \" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
      \n\n\n','AdminConsole',1,1,'PBtmpl0000000000000001',1157679164,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n class=\"odd\">\n \n \n \n \n\n
      /\">\n \" />\n \n (\'\', \'\')\">/\" style=\"border-style:none;\" alt=\"\" title=\"\" />\n
      \n','ProjectManager_resourceList',1,1,'ProjectManagerTMPL0006',1157679165,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n\n
      \n \" align=\"right\" border=\"0\" alt=\"\" />\n\n\n\n\n \n\n\n\n \n \n

      \n \">\n \n \n

      \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

      \n
      \n\n\n\n·\n\n·\n\n\n\n\n\n
      \n
      \n
      \n','Article',1,1,'PBtmpl0000000000000002',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n
      \n \n \n
      px;top:px;\">♦
      \n
      \n
      px;top:px;width:px;background-color:\">\n
      %;\">
      \n \n
      \n
      \n \n
      px;top:3px;margin-top:-3px;\">
      \n
      \n
      \n
      \n
      \n \" id=\"projectTableWidth\">\n \" id=\"projectScrollPercentWidth\">\n px;z-index:1;\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \" class=\"monthName\" style=\"height:20px;\">
      \" class=\"empty\" style=\"height:21px;\"> 
      \n
      \n
      \n\n','ProjectManager_gantt',1,1,'ProjectManagerTMPL0003',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
        \n\n
      • at () by
      • \n
        \n
      \n','WikiPage_pageHistory',1,1,'WikiPHTmpl000000000001',1165460175,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n\n
        \n
      1. \">
      2. \n
      \n\n
      \"> | \"> | \">
      \n\n','WikiMaster_mostPopular',1,1,'WikiMPTmpl000000000001',1165460175,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n
      \n
      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \n
      \n
      \n\n\n\n','InOutBoard/Report',1,1,'IOB0000000000000000002',1166019641,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n\n\n\n\n

      \n \n \n \n
      \n · · \n
      \n
      \n

      \n

      \">

      \n \n

      \n

      \">

      \n
      \n
      \n
      \"> | \"> | \">
      \n','WikiMaster_search',1,1,'WikiSearchTmpl00000001',1168480840,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n\n
        \n
      • \n \n \"> - on by \n \n - on by \n \n ( \"> )\n \n \n
      • \n
      \n\n
      \"> | \"> | \">
      \n\n\n','WikiMaster_recentChanges',1,1,'WikiRCTmpl000000000001',1169092823,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n \n

      \n
      \n
      \n\n\n
        \n
      • \n
      \n
      \n\n\n \">\n\n \n \n \n \n \n \n','ZipArchiveAsset',1,1,'ZipArchiveTMPL00000001',1169738426,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

      \n
      \n\n \n

      \n
      \n\n
      \n \n

      \n
      \n\n
      \n\n \">\n\n\n \n  · \n \n \">\n\n
      \n\n \n
      \n \n
      \n
      \n \n \n \n \n \n \n \n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n \n \n \n

      \n \n \n\n','InOutBoard',1,1,'IOB0000000000000000001',1169795123,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n\n','RSSCapable/RSS',1,1,'PBtmpl0000000000000142',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

      \n\n\n\n\n \n \n
      [\">]
      \n
      \n
      \n \n
      \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n
      \n
      \n \" id=\"id\">
      \n \n

      \">[top]

      \n
      \n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000080',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
      \">\n \n \n \n \n \n
       \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \">\n \n \n \n \n \n
       \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \">\n \n \n \n \n \n
       \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \">\n \n \n \n \n \n
       \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n','SQLReport/Download',1,1,'SQLReportDownload00001',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n\n\n

      \n \">
      \n

      \n

      \n
      \n\n

      \n\n','newsletter',1,1,'newsletter000000000001',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

      \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
      \">\">\">\">\">
      oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
      \n\n\n
      \n · · \n
      \n
      \n','Collaboration',1,1,'PBtmpl0000000000000026',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n \r\n

      \r\n\r\n\r\n\r\n

      \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n\r\n
      \r\n \r\n
      ','Auth/LDAP/Account',1,1,'PBtmpl0000000000000004',1227026214,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n\n\n\n','WikiMaster_byKeyword',1,1,'WikiKeyword00000000001',1185754571,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n

      \n\n\n

      \n\n
      \n\n
      \n

      \">

      \n
        \n
      • \n \n \">\n \n ()\n \n
      • \n
      \n
      \n
      \n

      \">

      \n
        \n
      1. \">
      2. \n
      \n\n
      \n
      \n\n
      \n\n\n','WikiMaster_front',1,1,'WikiFrontTmpl000000001',1185754572,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n

      \n
      \n\n\n

      \n
      \n\n\n
      \n \n
      \n
      \n\n\n\n

      \">

      \n\n\n\n\n','TimeTracking_user',1,1,'TimeTrackingTMPL000001',1201205738,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
      :
      \r\n
      \r\n\r\n\r\n

      \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
      :
      \r\n
      \r\n
      ','DataForm',1,1,'PBtmpl0000000000000085',1202884864,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
      \r\n
        \r\n
      • \r\n
        \r\n
      \r\n
      \r\n\r\n
      \r\n © Plain Black 2006\r\n
      \r\n','Calendar/Print/Month',1,1,'CalendarPrintMonth0001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n   -   \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
      \r\n
        \r\n
      • \r\n
        \r\n
      \r\n
      \r\n\r\n
      \r\n © Plain Black 2006\r\n
      \r\n','Calendar/Print/Week',1,1,'CalendarPrintWeek00001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
      :00\r\n
        \r\n
      • \r\n
        \r\n
      \r\n
      \r\n\r\n
      \r\n © Plain Black 2006\r\n
      \r\n','Calendar/Print/Day',1,1,'CalendarPrintDay000001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

      \r\n
      \r\n\r\n

      \r\n\r\n
      \r\n\r\n
      \r\n\" alt=\"\" />\r\n
      \r\n
      \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n :
      \r\n :
      \r\n : \r\n \r\n     [ \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" /> |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n \r\n : [ \"> \"> ]
      \r\n \r\n \r\n :
      \r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n

      \r\n \r\n
      \r\n\r\n\r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n
      \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n \r\n
      \r\n
      \r\n\r\n
      \r\n\r\n\r\n
      \r\n

      \r\n
      \r\n
      \r\n \r\n \">\r\n \r\n \">\r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      Current\">\r\n \">\r\n
      \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
      \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n : \r\n
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n :
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      px;\">\r\n
      Current\">\r\n \">\r\n
      \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
      \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n : \r\n
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n :
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n \r\n \r\n
      \r\n [ | | ]\r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n \r\n \" class=\"controlLink\"> \r\n •\r\n \r\n \" class=\"controlLink\">\r\n \r\n \r\n •\r\n \" class=\"controlLink\"> \r\n \r\n \r\n •\r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \r\n \r\n \" class=\"controlLink\">\r\n \r\n \" class=\"controlLink\">\r\n \r\n \r\n
      \r\n
      \r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000067',1206998733,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n

      \r\n
      \r\n\r\n \r\n
      \r\n

      \">

      \r\n
      \r\n
      \r\n \r\n \">\r\n \r\n \">\r\n \r\n
      \r\n
      \r\n\r\n\r\n
      px;\">\r\n
      Current\">\r\n \">\r\n
      \r\n \r\n
      \r\n
      \r\n\r\n
      \r\n\" alt=\"\" />\r\n
      \r\n
      \r\n
      \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n :
      \r\n
      \r\n
      \r\n :
      \r\n : \r\n \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n
      \r\n \r\n : [ \"> \"> ]
      \r\n
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n [ | | ]\r\n
      \r\n
      \r\n\r\n
      \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \r\n \r\n \"> •\r\n \r\n \r\n \r\n \"> •\r\n \r\n \"> •\r\n \r\n \r\n \"> •\r\n \r\n \"> •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
      \r\n\r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000032',1206998756,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

      \r\n
      \r\n\r\n

      \r\n\r\n
      \r\n\r\n
      \r\n\" alt=\"\" />\r\n
      \r\n
      \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n :
      \r\n :
      \r\n :
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n \r\n :     [ \">     [ \"> ]
      \r\n \r\n \r\n :
      \r\n
      \r\n
      \r\n\r\n :
      \r\n:\r\n\r\n
      \r\n
      \r\n\r\n
      \r\n \r\n
      \r\n\r\n\r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
      \r\n
      \r\n\r\n
      \r\n\r\n\r\n
      \r\n

      \r\n
      \r\n
      \r\n \r\n \">\r\n \r\n \">\r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      Current\">\r\n \">\r\n
      \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
      \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n : \r\n
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      px;\">\r\n
      Current\">\r\n \">\r\n
      \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
      \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n : \r\n
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n \r\n \r\n
      \r\n [ | | ]\r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n \r\n \"> \r\n •\r\n \r\n \">\r\n \r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
      \r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000209',1206998862,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n \r\n \r\n , \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n\r\n\r\n','EMS/PrintBadge',1,1,'PsFn7dJt4wMwBa8hiE3hOA',1208558071,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
      \r\n
      \r\n : \r\n
      \r\n
      \r\n \r\n / \r\n
      \r\n
      \r\n : \r\n
      \r\n
      \r\n\r\n\r\n','EMS/PrintTicket',1,1,'yBwydfooiLvhEFawJb0VTQ',1208629936,'WebGUI::Asset::Template::HTMLTemplate',1),('

      ^International(thank you message,Shop);

      \r\n\r\n\r\n

      \">^International(order number,Shop);

      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(date,Shop);
      ^International(amount,Shop);
      ^International(in shop credit used,Shop);
      ^International(taxes,Shop);
      ^International(shipping method,Shop);
      ^International(shipping amount,Shop);
      ^International(shipping address,Shop);
      ^International(payment method,Shop);
      ^International(status message,Shop);
      ^International(payment address,Shop);
      \r\n
      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n
      ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
      \">
      \r\n ','Shop/EmailReceipt',1,1,'bPz1yk6Y9uwMDMBcmMsSCg',1211829604,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n

      Cart

      \r\n
      \r\n \r\n
      ) ()
      \r\n
      \r\n
      \r\n
      \r\n ^International(total,Shop);: \r\n
      \r\n
      \r\n ^ViewCart;\r\n
      \r\n
      \r\n','Shop/MiniCart',1,1,'EBlxJpZQ9o-8VBOaGQbChA',1212093746,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
      \" alt=\"\" />\r\n
      \r\n
       
      \r\n\r\n
      \r\n X\r\n
      \r\n
      \r\n
      \r\n
      °F
      \r\n

      \r\n\r\n
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n
      \r\n\">\r\n
      \"The
      \r\n','WeatherData',1,1,'WeatherDataTmpl0000001',1210711353,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
      \r\n
      ^International(location,Asset_Event);
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      ^International(description label,Asset_Event);
      \r\n
      \r\n
      \r\n
      \r\n
      ^International(scheduled,Asset_Event);
      \r\n
      \r\n
      \r\n ,\r\n \r\n \r\n : , \r\n \r\n \r\n : \r\n
      \r\n
      \r\n
      ^International(related material,Asset_Event);
      \r\n
      \r\n \">
      \r\n
      \r\n
      \r\n','Calendar/Print/Event',1,1,'CalendarPrintEvent0001',1215396964,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n

      \r\n

      \">^International(continue shopping button,Shop);\r\n\r\n\r\n\r\n\r\n','FlatDiscount',1,1,'63ix2-hU0FchXGIWkG3tow',1216169693,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n \r\n\r\n\r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n','Navigation',1,1,'PBtmpl0000000000000130',1219072470,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n
      \n\n \n\n\n\n \n \">\n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl0000000000000054',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n
      \n\n \n\n\n\n \n \">\n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
      \n\n \n
      \n
      \n
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl000000000table54',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n
       
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl0000000000000125',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n\n

      \n
      \n\n\n\n \n \n\n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n \n
      \n\n\n \n\n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl00000000table125',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n\n

      \n
      \n\n\n \n\n\n\n\n \n\n\n \n \n \n\n \n\n
      \n \n
      \n \n \n \n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl00000000table094',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n\n

      \n
      \n\n\n \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n
       
      \n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n
       
      \n\n\n
       
      \n \n
      \n\n','Layout',1,1,'PBtmpl0000000000000109',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n\n\n \n\n\n \n \n \n\n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n\n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl00000000table109',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n \r\n\r\n\r\n\r\n
      \r\n\r\n \r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
      _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
      \r\n\r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n
       
      \r\n\r\n\r\n
      \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
      _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
      \r\n\r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n
      \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
      _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
      \r\n\r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n
       
      \r\n\r\n\r\n
      \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
      _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
      \r\n\r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n
       
      \r\n \r\n
      \r\n','Layout',1,1,'PBtmpl0000000000000094',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n
       
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl0000000000000131',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n\n\n \n \n\n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl00000000table131',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n\n

      \n
      \n\n\n \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n
       
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl0000000000000135',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n\n\n \n \n\n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl00000000table135',1220655706,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n
       
      \n\n\n
      \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n\n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl0000000000000118',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

      \n
      \n\n\n\n

      \n
      \n\n\n \n\n\n\n\n \n \n \n\n\n \n\n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n \n
      \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
      _div\" class=\"dragable uncommitted-asset\">\n \n\n
      \n\n \n
      \n
      \n
      \n \n
      \n\n\n
       
      \n \n
      \n','Layout',1,1,'PBtmpl00000000table118',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n
      \r\n
      Add/Edit Task
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
       
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
           
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n :

      \r\n \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/users.gif\" />     \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/groups.gif\" /> \r\n \r\n
      \r\n
      \r\n\r\n
      \r\n
      \n','ProjectManager_editTask',1,1,'ProjectManagerTMPL0004',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n\r\n\r\npx;\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
       Task NameDurationStartFinishPred\" valign=\"top\" id=\"scrolltd\" style=\"border-style:none;width:%;\">\r\n
      \r\n \r\n
      \r\n
       
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n
       
       
      \r\n\r\n\r\n\r\n
      \n','ProjectManager_project',1,1,'ProjectManagerTMPL0002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n\n\n \n \n\n\n\n\n \n\n\n
      \n\n\n\n\n \n\n','WikiPage_edit',1,1,'WikiPageEditTmpl000001',1221692341,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n\r\n
      \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\nalt\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
      ^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
      \r\n \r\n
      \r\n \r\n \r\n ^International(not applicable,Shop);\r\n
      \r\n
       
        
      ^International(subtotal,Shop);
      ^International(tax,Shop);
      ^International(shipping,Shop);
      \r\n \r\n \r\n \r\n
      \r\n \r\n
      ^International(in shop credit,Shop);(^International(available,Shop);: )
      ^International(total,Shop);
        
       
      ^International(order for,Shop);
       
      \r\n\r\n\r\n','Shop/Cart',1,1,'aIpCmr9Hi__vgdZnDTz1jw',1227539574,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n

      \n

      ^International(badge holder information,Asset_EventManagementSystem);

      \n\n\n

      \n
      \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      ^International(name,Shop);
      ^International(organization,Asset_EventManagementSystem);
      ^International(address,Shop);
       
       
      ^International(city,Shop);
      ^International(state,Shop);
      ^International(code,Shop);
      ^International(country,Shop);
      ^International(phone number,Shop);
      ^International(email address,Asset_EventManagementSystem);
      \n\n\n','EMSBadge',1,1,'PBEmsBadgeTemplate0000',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n \r\n

      \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n\r\n
      \r\n
        \r\n
      • \">
      • \r\n \r\n
      \r\n
      ','Auth/LDAP/Create',1,1,'PBtmpl0000000000000005',1221612327,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n\n \n
      \n
      );\">
      \n
      \n
      \n
      \n \n
      \n · · \n
      \n
      \n
      \n\n','Search',1,1,'PBtmpl0000000000000200',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
       
      \r\n\r\n\r\n
      \r\n
        \r\n
      • \">
      • \r\n \r\n
      • \">
      • \r\n
        \r\n
      \r\n
      \r\n','Auth/WebGUI/Create',1,1,'PBtmpl0000000000000011',1221612288,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n
      \r\n\r\n \r\n
      \r\n
      \r\n
        \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
    • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
      \r\n
      \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n
    • \r\n \r\n
      \r\n\n','Navigation',1,1,'PBtmpl0000000000000134',1222574692,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n
        \r\n\r\n
      • \r\n\r\n
      \r\n
      \r\n\r\n\r\n
      \r\n \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n \">\r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n
      \r\n
      ^International(template captcha label,Asset_DataForm);
      \r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000020',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      ^International(my subscriptions,Asset_Newsletter);

      \n\n\n

      ^International(newsletter categories,Asset_Newsletter);

      \n\n


      \n

      \n \n
      \n
      \n

      \n
      \n\n\n\n','newsletter/mysubscriptions',1,1,'newslettersubscrip0001',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n
        \r\n \r\n
      • \r\n
        \r\n
      \r\n
      \r\n\r\n\r\n \r\n

      \r\n\r\n\r\n\r\n

      \r\n \">\r\n • \">\r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
      \r\n
      \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
      \r\n \r\n
      \r\n
      ^International(template captcha label,Asset_DataForm);
      \r\n
      \r\n\r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000141',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n
      \r\n\r\n \r\n

      \r\n
      \r\n\r\n \r\n\r\n
      \r\n \r\n
      \r\n \r\n ^D(\"%y\",);\r\n \r\n \r\n ^D(\"%c %y\",);\r\n \r\n \r\n ^D(\"%w, %c %d %y\",);\r\n \r\n
      \r\n\r\n
      \r\n

      \"> , ,

      \r\n \r\n
      \r\n
      \r\n
      \r\n\r\n \r\n
      \r\n
      \n','Calendar/List',1,1,'kj3b-X3i6zRKnhLb4ZiCLw',1222574694,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \" id=\"id\">\r\n\r\n \r\n
      \r\n
      \r\n
      \r\n\r\n \r\n

      \r\n
      \r\n\r\n \r\n \r\n \r\n
      \r\n \r\n
      \r\n
      \r\n \r\n
      (\">)
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      \n','Subscription',1,1,'eqb9sWjFEVq0yHunGV8IGw',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n

      ^International(my purchases,Shop); · ^a(\"Return to Account\");

      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);
      \">
      \r\n
      \n','Shop/MyPurchases',1,1,'2gtFt7c0qAFNU3BG_uvNvg',1222574694,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n
      \r\n\r\n

      ^International(order number,Shop);

      \r\n \r\n \r\n \r\n \r\n\r\n
        \r\n
      • ^International(date,Shop);
      • \r\n
      • ^International(amount,Shop);
      • \r\n
      • ^International(in shop credit used,Shop);
      • \r\n
      • ^International(taxes,Shop);
      • \r\n
      • ^International(shipping method,Shop);
      • \r\n
      • ^International(shipping amount,Shop);
      • \r\n
      • ^International(payment method,Shop);
      • \r\n
      • ^International(status message,Shop);
      • \r\n
      \r\n \r\n
      \r\n
      ^International(payment address,Shop);
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      ^International(shipping address,Shop);
      \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
      \">
      \r\n
      \n','Shop/MyPurchasesDetail',1,1,'g8W53Pd71uHB9pxaXhWf_A',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(title);\n \n \n \n \n\n\n ^AdminBar();\n
      \n
      \n
      \n ^H(^c(););\n
      \n \n
      \n © ^D(%y); ^c;\n
      \n
      \n\n
      \n
      \n ^AssetProxy(roottab_level0);\n
      \n
      \n
      \n ^AssetProxy(roottab_level1);\n
      \n
      \n ^AssetProxy(crumbtrail); \n
      \n
       
      \n
      \n \n
      \n
       
      \n
      \n \n
      \n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\n
      ^AdminToggle;
      \n ^AssetProxy(style1/gui_bottom.jpg);
      \n \"WebGUI\n
      \n
      \n\n \n','style',1,1,'stevestyle000000000001',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\n\n \n ^c; - ^Page(title);\n \n \n \n\n\r\n^AdminBar();\r\n\n\n \n \n\r\n\r\n \r\n\n
      \n
      \n
      ^H(^c;);
      \n
      ^c;
      \n
      \n
      \n

      ^Page(title);

      \n
      \n
      \n
      \n \n
      \n
      \n
      \n
      \r\n \"plain\"webgui\"
      \n
      \n
      \n
      \n \n \n \n \n \n
      \n
      \n ^AssetProxy(flexmenu);\n
      \n \n \n \n \n \n
      \n
      \n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\n ^AdminToggle;\n
      \n
      \r\n © ^D(%y); ^c;\r\n
      \r\n\n\n\n','style',1,1,'stevestyle000000000002',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n
        \r\n \r\n
      • \r\n
        \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n \">\r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n \r\n )\" id=\"tab\" class=\"tab\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
      \r\n \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n \r\n
      \r\n^International(template captcha label,Asset_DataForm);
      \r\n\r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000116',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n

      \r\n
      \r\n\r\n \r\n

      • View

      \r\n
      \r\n\r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \">\r\n \r\n \r\n \r\n
      \r\n
      \r\n\r\n
      \n','Thingy/ViewThing',1,1,'ThingyTmpl000000000002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n\r\n\r\n\r\n \r\n\r\n \r\n
      \r\n\r\n

      \r\n \">^International(add a ticket,Asset_EventManagementSystem);\r\n •\r\n \">^International(meta fields,Asset_EventManagementSystem);\r\n •\r\n \">^International(import,Asset_EventManagementSystem);\r\n •\r\n \">^International(export,Asset_EventManagementSystem);\r\n

      \r\n
      \r\n


      \r\n

      \r\n

      \r\n
      \r\n\r\n\r\n\r\n
      \r\n\r\n\r\n\r\n \r\n\r\n \r\n
      \r\n\r\n

      \">^International(add a ribbon,Asset_EventManagementSystem);

      \r\n
      \r\n

      \r\n
      \r\n\r\n\r\n\r\n
      \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n
      \r\n\r\n

      \">^International(add a token,Asset_EventManagementSystem);

      \r\n
      \r\n

      \r\n
      \r\n\r\n\r\n\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^ViewCart;\r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n\r\n \r\n\r\n\r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n','EMS/BadgeBuilder',1,1,'BMybD3cEnmXVk2wQ_qEsRQ',1224723361,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n

      \r\n
      \r\n\r\n

      \r\n
      \r\n\r\n\r\n\r\n\r\n\r\n','EMS',1,1,'2rC4ErZ3c77OJzJm7O5s3w',1224723218,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n','EMS/LookupRegistrant',1,1,'OOyMH33plAy6oCj_QWrxtg',1224724790,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n
      \r\n\r\n \r\n
      \" class=\"yuimenubar\">\r\n
      \r\n
        \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
    • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
      \r\n
      \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n
    • \r\n \r\n
      \r\n\r\n\r\n','Navigation',1,1,'stevecoolmenu000000001',1224116942,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n

      Add Address

      \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(label help,Shop);
      \r\n \r\n\r\n
      \r\n','Shop/Address',1,1,'XNd7a_g_cTvJVYrVHcx2Mw',1224606020,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n\r\n ^c; - ^Page(title);\r\n \r\n\r\n^AdminBar();\r\n\r\n\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n ^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\r\n
      \r\n
      \r\n

      ^H(^c;);

      \r\n

      ^Page(title);

      \r\n
      \r\n \"webgui\"
      \r\n
      \r\n
      \r\n
      \r\n ^AssetProxy(style3_coolmenu);\r\n \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n
      \r\n © ^D(%y); ^c;\r\n
      \r\n \"plain
      \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000003',1224795533,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n

      \r\n
      \r\n\r\n \r\n

      \r\n
      \r\n\r\n \r\n
      \r\n
      \r\n\r\n \r\n \r\n\r\n \r\n
        \r\n \r\n
      • \r\n
        \r\n
      \r\n
      \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      wgRowOnewgRowTwo label\" valign=\"top\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\" valign=\"top\" colspan=\"2\">\r\n \r\n \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n\r\n','Thingy/EditThing',1,1,'ThingyTmpl000000000003',1224518002,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n

      \r\n  :
      \r\n  
      \r\n  
      \r\n  \r\n

      \r\n\r\n \r\n

      \r\n  :
      \r\n \r\n \" title=\"Link to profile\">
      \r\n
      \r\n

      \r\n
      \r\n
      \r\n
      \r\n\r\n','Macro/UsersOnline',1,1,'h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n

      \r\n  :
      \r\n  
      \r\n  
      \r\n  \r\n

      \r\n

      \r\n  :
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
      \" alt=\"Avatar of \"/> \" title=\"Link to profile\">

      \r\n

      \r\n

      \r\n  :
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

      \r\n

      \r\n
      \r\n\r\n','Macro/UsersOnline',1,1,'4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n

      \n\n\n

      \n\n \">\n\n \n\n

      \n\n\n \n

      \n\n\n

        \n\n
      • \n \n \">\n \n \n \n \n - \n \n
      • \n
        \n
      ','SyndicatedContent',1,1,'PBtmpl0000000000000065',1226457084,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
      \r\n\r\n\r\n
      \r\n \r\n
      \r\n','Auth/WebGUI/Account',1,1,'PBtmpl0000000000000010',1227026287,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \n\n

      \n
      \n\n\n\n\n\n\n\n\n \n \n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n
      \n\n\n
      \n \n
      \n','Auth/WebGUI/Recovery2',1,1,'PBtmpl0000000000000014',1227218041,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n\n\n

      \n \n \">\n |\n \n \n \">^International(my subscriptions,Asset_Newsletter);\n |\n \n \">\n

      \n\n

      \n\n\n

      \">
      \n

      \n
      \n\n\n
      \n \n
      \n
      \n','newsletter',1,1,'newslettercs0000000001',1226896423,'WebGUI::Asset::Template::HTMLTemplate',1),('

      ^International(message sent label,Account_Inbox);

      \r\n

      ^International(message sent text,Account_Inbox);

      \r\n

      \">^International(back label,Account_Inbox);

      ','Account/Inbox/Confirm',1,1,'DUoxlTBXhVS-Zl3CFDpt9g',1226896802,'WebGUI::Asset::Template::HTMLTemplate',1),('

      ^International(invitation sent label,Account_Inbox);

      \r\n

      ^International(invitation sent text,Account_Inbox);

      \r\n

      \">^International(back label,Account_Inbox);

      ','Account/Inbox/InviteUserConfirm',1,1,'SVIhz68689hwUGgcDM-gWw',1226973314,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n

      ^International(error label,Account_Friends);

      \r\n

      \r\n

      \">^International(back label,Account_Inbox);

      \r\n

      \r\n','Account/Friends/Error',1,1,'7Ijdd8SW32lVgg2H8R-Aqw',1226995714,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n

      ^International(message sent label,Account_Friends);

      \r\n

      ^International(add to friends confirmation,Account_Friends,);

      \r\n

      \">^International(back to user profile,Account_Friends);

      \r\n

      ','Account/Friends/Confirm',1,1,'K8F0j_cq_jgo8dvWY_26Ag',1226995643,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n

      ^International(remove confirm label,Account_Friends);

      \r\n

      ^International(remove confirm message,Account_Friends,);

      \r\n

      \r\n \">^International(remove confirm no,Account_Friends); · \r\n \">^International(remove confirm yes,Account_Friends);\r\n

      \r\n

      ','Account/Friends/Confirm',1,1,'G5V6neXIDiFXN05oL-U3AQ',1226995768,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \" id=\"id\">\r\n\r\n \r\n
      \r\n
      \r\n\r\n \r\n

      \r\n
      \r\n\r\n\r\n \r\n
      \r\n
      ^ViewCart;
      \r\n \">^International(continue shopping button,Shop);\r\n \r\n \r\n
      \r\n
      \r\n
      \r\n\r\n \r\n \r\n \r\n \r\n \r\n
      \r\n','Donation',1,1,'vrKXEtluIhbmAS9xmPukDA',1226698051,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n \r\n

      \r\n\r\n\r\n

      ','Survey',1,1,'PBtmpl0000000000000061',1227252733,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n\r\n\r\n \"> \r\n •\r\n \"> \r\n •\r\n \"> \r\n\r\n\">

      \r\n:
      \r\n:
      \r\n: \r\n\r\n

      \r\n\r\n\r\n
      \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
      \r\n \r\n \r\n
      \r\n

      \r\n','Survey/Response',1,1,'PBtmpl0000000000000064',1226009610,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n \r\n
      default\">\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n
      \r\n','Shop/AddressBook',1,1,'3womoo7Teyy2YKFa25-MZg',1226703362,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n

      \r\n
      \r\n\r\n \r\n

      \r\n
      \r\n\r\n \r\n
      \r\n
      \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      \">
      \r\n \r\n
      \r\n\r\n \r\n

      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \r\n \r\n \r\n \r\n
      \">\r\n

      Search Results

      \r\n
      \r\n \">\r\n
      \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n · · \r\n
      \r\n
      \r\n
      \r\n','Thingy/SearchThing',1,1,'ThingyTmpl000000000004',1227044214,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n

      \r\n\r\n\r\n\r\n\r\n\r\n\">\r\n\r\n\r\n | \r\n\r\n
      \r\n
      \r\n\r\n
      \r\n\r\n
      \r\n\r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
      ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
      \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
      ^International(\'No users message\',\'Asset_UserList\');
      \r\n\r\n

      \r\n · · \r\n
      \r\n
      ','UserList',1,1,'UserListTmpl0000000001',1228125743,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n

      \r\n\r\n\r\n
      \r\n
      \r\n\r\n:
      \r\n:
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
      ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">\r\n\">
      \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
      ^International(\'No users message\',\'Asset_UserList\');
      \r\n\r\n

      \r\n · · \r\n
      \r\n
      ','UserList',1,1,'UserListTmpl0000000003',1228125758,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n

      \r\n\r\n\r\n
      \r\n
      \r\n\r\n\r\n
      \r\n^International(\'search in label\',\'Asset_UserList\');
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
      ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
      \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
      ^International(\'No users message\',\'Asset_UserList\');
      \r\n\r\n

      \r\n · · \r\n
      \r\n
      ','UserList',1,1,'UserListTmpl0000000002',1228125752,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n

      \r\n
      \r\n\r\n \r\n

      • ^International(manage things label,Asset_Thingy);

      \r\n
      \r\n\r\n \r\n
      \r\n
      \r\n\r\n \r\n \r\n \r\n\r\n \r\n
      \r\n \r\n
      rowOnerowTwo\">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      ','Thingy',1,1,'ThingyTmpl000000000001',1227753116,'WebGUI::Asset::Template::HTMLTemplate',1),('

      ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

      \r\n\r\n','Matrix/EditListing',1,1,'matrixtmpl000000000004',1228834590,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n\n\n\n \n\n\n\n \n \n

      \n \">\n \n \n \n

      \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />


      \n \n
      \n\n\n\n·\n\n·\n\n\n\n\n','Article',1,1,'PBtmpl0000000000000207',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n\n
      \" alt=\"\" border=\"0\" />
      \n
      \n
      \n\n\n \n

      \n\n\n\n\n \n

      \n \">\n \n\n

      \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

      \n
      \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000084',1229100305,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n \n \n \n \n \n
       
      /delete.gif\" border=\"0\" onclick=\"removeRow(\'\')\" style=\"cursor:pointer\" alt=\"delete\" />
      \n \n \n \n \n \n \n \n \n \n \n \n \n
      \" class=\"PM_blueLink\"> ^International(last week,Asset_TimeTracking);\" class=\"PM_blueLink\">^International(next week,Asset_TimeTracking);
       
      \n \n \n \" onclick=\"addRow();\" />   \" />\n
      \n
      \n\n\n\n \n \">\n \n \n \n \n \n \n \n \n
      /delete.gif\" border=\"0\" onclick=\"removeRow()\" style=\"cursor:pointer\" alt=\"delete\" />
      \n
      ','TimeTracking_row',1,1,'TimeTrackingTMPL000003',1229311434,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \" id=\"id\">\r\n\r\n \r\n
      \r\n
      \r\n\r\n \r\n

      \r\n
      \r\n\r\n \r\n \r\n
      \r\n \r\n

      \r\n ^ViewCart();
      \r\n \">^International(continue shopping button,Shop);\r\n \r\n ^ViewCart(); (^CartItemCount;)\r\n

      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n
        \r\n ^International(variants,Asset_Product);\r\n \r\n
      • \r\n
        \r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n ^International(30,Asset_Product);\r\n \r\n
      • \r\n
        \r\n
      \r\n
      \r\n \r\n \r\n
        \r\n ^International(54,Asset_Product);\r\n \r\n
      • \r\n
        \r\n
      \r\n
      \r\n\r\n \r\n
        \r\n ^International(31,Asset_Product);\r\n \r\n
      • :
      • \r\n
        \r\n
      \r\n
      \r\n \r\n \r\n
        \r\n ^International(32,Asset_Product);\r\n \r\n
      • \">
      • \r\n
        \r\n
      \r\n
      \r\n \r\n \r\n
        \r\n ^International(33,Asset_Product);\r\n \r\n
      • \">
      • \r\n
        \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n\r\n','Product',1,1,'PBtmpl0000000000000056',1228934532,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n\n
      \n \" alt=\"\" align=\"left\" border=\"0\" />\n\n\n\n\n \n

      \n\n\n\n\n \n

      \n \">\n \n\n\n

      \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

      \n\n\n\n\n
      \n
      \n
      \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000103',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n\n
      \n \n \n
      \n \n \">\n \" alt=\"\" border=\"0\" />
      \n
      \n \n \" alt=\"\" border=\"0\" />
      \n
      \n
      \n\n\n\n\n \n

      \n\n\n\n

      \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

      \n\n\n\n\n
      \n
      \n
      \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000115',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('

      Calendar

      \r\n\r\n\r\n

      \r\n \r\n ^International(New Year,Asset_Calendar);,\r\n \r\n \r\n ^International(New Month,Asset_Calendar);,\r\n \r\n \r\n ^International(New Day,Asset_Calendar);\r\n \r\n

      \r\n\r\n

      \">

      \r\n \r\n

      \r\n\r\n
      \r\n\r\n\r\n \"><< ^International(previous page,Asset_Calendar);\r\n\r\n\r\n \">^International(next page,Asset_Calendar); >>\r\n','Calendar/Print/List',1,1,'uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n

      \r\n
      \r\n\r\n \r\n

      \r\n
      \r\n\r\n
      \r\n ^ViewCart(); (^CartItemCount;)\r\n
      \r\n\r\n \r\n
      \r\n
      \r\n \r\n\r\n \r\n
      \r\n ^International(subcategories,Asset_Shelf);: \r\n \r\n \r\n \">\r\n \r\n
      \r\n
      \r\n\r\n \r\n
      \r\n \r\n \r\n \" class=\"thumbnail\">\" alt=\"\" />\r\n \r\n \r\n
      \r\n \r\n ()\r\n
      \r\n
      \r\n
      \r\n \r\n \n \n
      \r\n
      ','Shelf',1,1,'nFen0xjkZn8WkpM93C9ceQ',1229117831,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\"> \n \n \n

      \n
      \n\n\n

      \n
      \n\n\n

      \n\n\n\n \n \n \n \n \n \n
      \n
      \n \n \n \n \n \n
      ^International(Stock Watch,Asset_StockData);\n
      \n ^International(Last Update,Asset_StockData);: EDT
      \n \n
      \n
      \n
      \n \n \n \n \n \n \n \n \n \n \n qmmt_cycleqmmt_main\'> \n \n \n \n \n \n \n \n
      Name SymbolLastTickChg
      \n \')\">\n \n /\" alt=\"\" /> \n _up_down\" style=\"text-align: right;whitespace:nowrap;\">
      \n
      ','StockData',1,1,'StockDataTMPL000000001',1229453697,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n WebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\n \n \n \n\n\n

      \n \n
      \n\n','style',1,0,'PBtmpl0000000000000137',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n
      \r\n
      ^International(hide new content list,Asset_Dashboard);
      \r\n
      \r\n
      \r\n\r\n\r\n\">\r\n
      _div\" class=\"dragable\">\r\n
      _div\">
      \r\n
      \r\n
      \r\n\r\n
      Add New Content
      \r\n\r\n

      \r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n\r\n

      \r\n
      \r\n\r\n\r\n\r\n\r\n

      \r\n\r\n

      \r\n
      \r\n
      ^L(\"17\",\"\",\"PBtmpl0000000000000092\"); ^AdminToggle(Modify the Default User\'s Perspective,Leave Default User Perspective (Admin Mode));
      \r\n
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
      \r\n\r\n\r\n \">\r\n\r\n
      _div\" class=\"dragable\">\r\n
      _div\">
      \r\n
      \r\n\r\n\r\n\r\n\">\r\n\r\n
      _div\" class=\"dragable\">\r\n
      _div\">
      \r\n
      \r\n\r\n\r\n\">\r\n\r\n
      _div\" class=\"dragable\">\r\n
      _div\">
      \r\n
      \r\n
      \r\n
       
      \r\n\r\n
      ','Dashboard',1,1,'DashboardViewTmpl00001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\n\n

      \n

      \n\n\n

      \n • \">\n \n • \" onclick=\"\">\n \n \n • \">\n • \">\n \n
      \n
      \n\n\n\n\n\n \n \n \n\n\n\n\n\n \n \n \n \n \n \n \n\n\n
      ^International(Entry ID,Asset_DataForm);^International(Submission Date,Asset_DataForm);
      \">
      ','DataForm/List',1,1,'PBtmpl0000000000000021',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n<tmpl_var title>\n\n\n/taskEdit.css\" />\n\n\n
      \">\n\" />\n\n\" />\n\" />\n
      \n
      \" size=\"20\" class=\"inputBox\" />\n\n
      \n\n

      \n

      \n','ProjectManager_resourcePopup',1,1,'ProjectManagerTMPL0005',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n
      \n\n\n

      \n
      \n\n\n
      \n \n
      \n
      \n\n\n\n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \n \"> \n
      \">
      \n \">\n \n
      \n
      %;\">
      \n
      %
      \n
      \n
      \n \n \">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n \'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
      ','ProjectManager_dashboard',1,1,'ProjectManagerTMPL0001',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n

      \r\n\r\n
      \r\n
        \r\n
      • \r\n
      • \r\n
      \r\n
      \r\n
      \r\n
      \r\n

      ^International(keywords,Asset);: \">

      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n\r\n
      \"> | \"> | \"> | \">
      ','WikiPage',1,1,'WikiPageTmpl0000000001',1229706257,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n \n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n
       
      ^International(has posted to one of your subscriptions,Asset_Collaboration);
      \">
        
      \n

      \">

      ','Collaboration/Notification',1,1,'PBtmpl0000000000000027',1230159257,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n

      \n\n\n\n \n \n \n \n \n ^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n\n\n\n\n\n \n \n \n \n \n ^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n','HttpProxy',1,1,'PBtmpl0000000000000033',1230159454,'WebGUI::Asset::Template::HTMLTemplate',1),('

      ^International(post received,Asset_Post);

      \">^International(493,WebGUI);

      ','Collaboration/PostReceived',1,1,'default_post_received1',1230356300,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n \n

      \n\n\n\n \">^International(Download this data,Asset_SQLReport);\n\n\n\n

        \n \n
      • \n
        \n
      \n
      \n\n\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
      \">\n \n \n \n \n \n
       \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \">\n \n \n \n \n \n
       \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \">\n \n \n \n \n \n
       \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \">\n \n \n \n \n \n
       \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n\n\n
      \n \n
      \n
      ','SQLReport',1,1,'PBtmpl0000000000000059',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

      \n
      \n\n\n

      \n
      \n\n\n\n
      \n\n

      \n\n

      \n
      ','Navigation',1,1,'PBtmpl0000000000000117',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

      \r\n
      \r\n\r\n

      \r\n\r\n\r\n
      \r\n :     [ \"> \"> ]
      \r\n
      \r\n
      \r\n\r\n\r\n ^International(job description,Asset_Collaboration);
      \r\n

      \r\n
      \r\n\r\n\r\n ^International(job requirements,Asset_Collaboration);
      \r\n

      \r\n
      \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
      ^International(date posted,Asset_Collaboration); 
      ^International(location,Asset_Collaboration); 
      ^International(compensation,Asset_Collaboration); 
      ^International(views,Asset_Collaboration); 
      \r\n\r\n\r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
      \r\n
      \r\n\r\n\r\n\r\n
      \r\n

      \r\n
      \r\n
      \r\n \r\n \">\r\n \r\n \">\r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      Current\">\r\n \">\r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n :
      \r\n
      \r\n
      \r\n :
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n \r\n :
      \r\n
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      px;\">\r\n
      Current\">\r\n \">\r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n :
      \r\n
      \r\n
      \r\n :
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n \r\n :
      \r\n
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n \r\n \r\n
      \r\n [ | | ]\r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n \r\n \"> \r\n •\r\n \r\n \"> \r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \"> \r\n \r\n \">\r\n \r\n \r\n
      ','Collaboration/Thread',1,1,'PBtmpl0000000000000098',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

      \r\n
      \r\n\r\n

      \r\n\r\n\r\n
      \r\n :     [ \"> \"> ]
      \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n ^International(Link Description,Asset_Collaboration);

      \r\n
      \r\n \r\n ^International(Link URL,Asset_Collaboration);

      \r\n \">

      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n\r\n\r\n
      \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
      \r\n
      \r\n\r\n\r\n\r\n
      \r\n

      \r\n
      \r\n
      \r\n \r\n \">\r\n \r\n \">\r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      Current\">\r\n \" id=\"id\">\r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n :
      \r\n
      \r\n
      \r\n :
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n \r\n :
      \r\n
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \"> • \r\n \r\n \r\n \"> •\r\n \">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      px;\">\r\n
      Current\">\r\n \" id=\"id\">\r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
      \r\n :
      \r\n
      \r\n
      \r\n :
      \r\n : \r\n \r\n     [
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      |
      \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
      ]\r\n
      \r\n
      \r\n \r\n :
      \r\n
      \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \">\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n \r\n \r\n
      \r\n [ | | ]\r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n \r\n \"> \r\n •\r\n \r\n \">^International(List All Links,Asset_Collaboration);\r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n \r\n \r\n •\r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
      ','Collaboration/Thread',1,1,'PBtmpl0000000000000113',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('\"> \n \n \n

      \n
      \n\n\n

      \n
      \n\n\n

      \n\n\n

      \n
      \n\n\n \n \n\n\n \n \n\n
      ^International(364,WebGUI);:\n \n
      ^International(For,WebGUI);: 
      \n
      \n
      ','MultiSearch',1,1,'MultiSearchTmpl0000001',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
      \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n\r\n \r\n
      \r\n \r\n
      \r\n
      \r\n , , \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n
      :00
      \r\n
      \r\n
        \r\n
      • \r\n \">\r\n
      • \r\n
      \r\n
      \r\n
      ','Calendar/Day',1,1,'CalendarDay00000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
      \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n \r\n
      \r\n \r\n \r\n
      \r\n ^International(event details,Asset_Event);\r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
      \r\n
      ^International(event title,Asset_Event);
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      ^International(location,Asset_Event);
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      ^International(description,Asset_Event);
      \r\n
      \r\n
      \r\n
      \r\n
      ^International(scheduled,Asset_Event);
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      ^International(related material,Asset_Event);
      \r\n
      \r\n \r\n
      \r\n
      ^International(attachments,Asset_Event);
      \r\n
      \r\n \"> \" />
      \r\n
      \r\n
      \r\n
      ','Calendar/Event',1,1,'CalendarEvent000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n
      \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
      \r\n \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      active current\">\r\n \r\n \">\r\n \r\n \r\n \r\n \" class=\"moreButton\" onmouseover=\"return showEvents(\'overlay\');\">\r\n /wobject/Calendar/images/more.gif\" />\r\n \r\n \r\n \r\n \r\n
      \r\n
      \r\n\r\n
      \" class=\"moreDisplay\">\r\n
      \r\n
        \r\n \r\n
      • \">
      • \r\n
        \r\n
      \r\n
      \r\n
      \r\n
      ','Calendar/Month',1,1,'CalendarMonth000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
      \r\n ?type=day\">^International(label day,Asset_Calendar);\r\n ?type=week\">^International(label week,Asset_Calendar);\r\n ?type=month\">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n
      \r\n  \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
      \r\n
      ^International(keyword,Asset_Calendar);
      \r\n
      \r\n
      \r\n
      ^International(start date,Asset_Calendar);
      \r\n
      \r\n
      \r\n
      ^International(end date,Asset_Calendar);
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
      \r\n
      \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
      \r\n
      \r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      \r\n \" style=\"padding-left:10px\">\r\n
      \r\n
      \r\n
      \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      ','Calendar/Search',1,1,'CalendarSearch00000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
      \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
      \r\n \r\n
      \r\n
      \r\n , to , \r\n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n
      \r\n
      curDay\"> \r\n \r\n \r\n
      \r\n
      \r\n
      ','Calendar/Week',1,1,'CalendarWeek0000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n

      ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

      \r\n\r\n

      ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

      \r\n\r\n \r\n

      \r\n
      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(\'template upload type\',\'Asset_GalleryAlbum\');\r\n \" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\r\n ^International(\'template upload archive\',\'Asset_GalleryAlbum\');\r\n
      ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\r\n \r\n
      ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\r\n \r\n
      ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
      \r\n \r\n
      \r\n \r\n
      \r\n \r\n \r\n\r\n
      ','GalleryAlbum/AddArchive',1,1,'0X4Q3tBWUb_thsVbsYz9xQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','GalleryAlbum/ViewRss',1,1,'mM3bjP_iG9sv5nQb4S17tQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListAlbumsRss',1,1,'ilu5BrM-VGaOsec9Lm7M6Q',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListFilesForUserRss',1,1,'-ANLpoTEP-n4POAdRxCzRw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
      \r\n \r\n \r\n
      \r\n
      \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
      \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
      \r\n
      \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
      \r\n\r\n \r\n\r\n
      \r\n
      \r\n \"Previous\r\n \r\n \"Next\r\n
      \r\n
      \r\n \r\n
      \r\n \r\n
      \r\n \">\" style=\"border: none\" /> \r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      ','GalleryAlbum/ViewSlideshow',1,1,'KAMdiUdJykjN02CPHpyZOw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \n
        \n
      • \n
      \n
      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \n \r\n \r\n \r\n \r\n \n \r\n \r\n \r\n \r\n
      \r\n \r\n\r\n
      \n','Shop/Credentials',1,1,'itransact_credentials1',1228953856,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n \n \n \n \n \n \n
      \n
      \n \n \n \n \n \n
      ()\n \n
      1:23 PM EDT
      \n \n
      \n
      \n
      \n
      \n \n \n \n \n \n \n
      \n &t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n \n \n \n \n \n \n \n \n \n \n
      Today5d1m3m1y5y20y
      \n
      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      ^International(stocks.last,Asset_StockData);
      ^International(Market Cap,Asset_StockData);
      ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n /\' alt=\"\" /> \n
      ^International(Open,Asset_StockData);
      ^International(Day High,Asset_StockData);
      ^International(stocks.bid,Asset_StockData);
      ^International(52 Wk High,Asset_StockData);
      ^International(EPS,Asset_StockData);
      ^International(stocks.ex_div,Asset_StockData);
      ^International(Yield,Asset_StockData);
      \n
      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      ^International(Last Trade,Asset_StockData);
      ^International(Volume,Asset_StockData); m
      ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
      ^International(Prev Close,Asset_StockData);
      ^International(Day Low,Asset_StockData);
      ^International(stocks.ask,Asset_StockData);
      ^International(52 Wk Low,Asset_StockData);
      ^International(stocks.pe,Asset_StockData);
      ^International(Dividend,Asset_StockData);
      ^International(Exchange,Asset_StockData);
      \n
      \n
      \n\n\n\n','StockData/Display',1,1,'StockDataTMPL000000002',1229494994,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

      \n
      \n\n\n

      \n
      \n\n\n

      \n\n\n

      \n\n \">\n\n \n\n

      \n\n\n

      \n\n\n\n \n \n
      \n \n
      \n \n
      \n \" style=\"font-size: 9px;\">^International(read more,WebGUI);...\n
      \n
      \n
      \n
      ','SyndicatedContent',1,1,'GNvjCFQWjY2AF2uf0aCM8Q',1230356300,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n
      ^International(\'please enter section information\',\'Asset_Survey\');
      \r\n
      \r\n
      \r\n\r\n
      \r\n

      ^International(\'section number\',\'Asset_Survey\');
      ^International(\'section number description\',\'Asset_Survey\');

      \r\n \'>\r\n \r\n \r\n

      ^International(\'section name\',\'Asset_Survey\');
      ^International(\'section name description\',\'Asset_Survey\');
      \' type=text>

      \r\n
      \r\n

      ^International(\'randomize questions\',\'Asset_Survey\');
      ^International(\'randomize questions description\',\'Asset_Survey\');

      \r\n\r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');\r\n\r\n

      ^International(\'section custom variable name\',\'Asset_Survey\');
      ^International(\'section custom variable name description\',\'Asset_Survey\');
      \' name=variable size=2>

      \r\n

      ^International(\'section branch goto variable name\',\'Asset_Survey\');
      ^International(\'section branch goto variable name description\',\'Asset_Survey\');
      \' name=goto size=2>

      \r\n

      ^International(\'questions per page\',\'Asset_Survey\');
      ^International(\'questions per page description\',\'Asset_Survey\');
      \r\n

      \r\n
      \r\n

      ^International(\'questions on section page\',\'Asset_Survey\');
      ^International(\'questions on section page description\',\'Asset_Survey\');
      \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

      \r\n


      \r\n\r\n

      ^International(\'title on every page\',\'Asset_Survey\');
      ^International(\'title on every page description\',\'Asset_Survey\');
      \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

      \r\n

      ^International(\'text on every page\',\'Asset_Survey\');
      ^International(\'text on every page description\',\'Asset_Survey\');
      \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

      \r\n

      ^International(\'terminal section\',\'Asset_Survey\');
      ^International(\'terminal section description\',\'Asset_Survey\');
      \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

      \r\n

      ^International(\'terminal section url\',\'Asset_Survey\');
      ^International(\'terminal section url description\',\'Asset_Survey\');
      \'>\r\n
      \r\n

      ^International(\'section text\',\'Asset_Survey\');
      ^International(\'section text description\',\'Asset_Survey\');

      \r\n
      \r\n
      \r\n\r\n','Survey/Edit',1,1,'1oBRscNIcFOI-pETrCOspA',1232648656,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n\r\n\r\n\r\n\r\n

      \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
      ^International(\'user label\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
      /%
      \r\n\r\n\r\n\r\n
      \r\n · · \r\n
      \r\n
      \r\n','Survey/Gradebook',1,1,'PBtmpl0000000000000062',1232981641,'WebGUI::Asset::Template::HTMLTemplate',1),('

      \r\n\r\n\r\n\r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \" style=\"display:none;\">\r\n \r\n \r\n \r\n \r\n
      ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
      \');\">^International(\'show comments label\',\'Asset_Survey\');
      \r\n \r\n

      \r\n
      \r\n
      \r\n \r\n
      \r\n \');\">^International(\'show responses label\',\'Asset_Survey\');\r\n
      \r\n
      \" style=\"display:none;\">\r\n \r\n

      \r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n


      \r\n
      \r\n\r\n\r\n
      \r\n · · \r\n
      \r\n
      \r\n','Survey/Overview',1,1,'PBtmpl0000000000000063',1233156264,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
      \r\n \r\n \r\n
      \r\n\r\n
      \r\n\" class=\"WGprofile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\r\n
      WGsubContentWGprofile_displaySubContent\">\r\n
      \r\n
      \r\n
      \r\n \r\n \" class=\"WGview\">^International(profile as others label,Account_Profile);\r\n \r\n \r\n
      \r\n
      \r\n \r\n
      * -  ^International(\'required field\',Account_Profile);
      † - ^International(\'set by admin\',Account_Profile);
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n','Account/Layout',1,1,'FJbUTvZ2nUTn65LpW6gjsA',1232735095,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
      \">\r\n
      \r\n\r\n
      \r\n
      \r\n
      \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
      \r\n\r\n \r\n

      \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      *
      \r\n \r\n \r\n
      \r\n\r\n
      \r\n
      \r\n
      ','Account/Profile/Edit',1,1,'75CmQgpcCSkdsL-oawdn3Q',1232561177,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n\r\n\r\n
      \r\n );\'\"/>\r\n  \r\n );\'\"/>\r\n
      \r\n\r\n \r\n
      \r\n ^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\r\n
      \r\n\r\n
      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      colspan=2 class=\"bar\">\r\n
      \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      32\" class=\"bar\">
      greenredblue;\">
      \r\n
      \r\n );\" class=\"WGphotostyle\"/>
      \r\n
      \r\n \r\n
      \r\n );\'\"/>\r\n  \r\n );\'\"/>\r\n
      \r\n\r\n
      \r\n','Account/Profile/View',1,1,'2CS-BErrjMmESOtGT90qOg',1232955105,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n

      ^International(error label,Account_Inbox);

      \r\n

      \r\n

      \">^International(back label,Account_Profile);

      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      ','Account/Profile/Error',1,1,'MBmWlA_YEA2I6D29OMGtRg',1228753307,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n
      \r\n','Account/Layout',1,1,'gfZOwaTWYjbSoVaQtHBBEw',1232735116,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n\r\n
      \r\n\r\n

      \r\n
      \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

      \r\n

      \r\n disabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\r\n \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\r\n

      \r\n
      \r\n

      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(subject label,Account_Inbox);:
      ^International(from label,Account_Inbox);:
      ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
      ^International(status label,Account_Inbox);:
      \r\n
      \r\n
      \r\n \r\n\r\n
      \r\n\r\n
      \r\n','Account/Inbox/ViewMessage',1,1,'0n4HtbXaWa_XJHkFjetnLQ',1233168324,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
      \r\n
      \r\n\r\n

      \r\n
      \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

      \r\n\r\n

      \r\n \r\n \r\n\r\n \r\n \r\n \" class=\"prevNext\">\"Previous\" \r\n \"> \r\n  \" class=\"prevNext\">\"Next\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n

      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WGoddThreadWGevenThread\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \">^International(from label,Account_Inbox);\">^International(invitation label,Account_Inbox);\">^International(date label,Account_Inbox);
      \" class=\"WGinbox_from\">\">^International(invitation message,Account_Inbox,);
      ^International(no invitations,Account_Inbox);
      \r\n \r\n

      \r\n \r\n \r\n\r\n \r\n \r\n \" class=\"prevNext\">\"Previous\" \r\n \"> \r\n  \" class=\"prevNext\">\"Next\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n

      \r\n\r\n

      \r\n ^International(invitation count,\'Account_Inbox\');\r\n

      \r\n\r\n
      \r\n
      \r\n','Account/Inbox/ManageInvitations',1,1,'1Q4Je3hKCJzeo0ZBB5YB8g',1232753312,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
      \r\n \r\n
      \r\n\r\n

      \r\n
      \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

      \r\n
      \r\n \'\" /> \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\r\n
      \r\n \r\n

      \r\n

      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(from label,Account_Inbox);:
      ^International(received label,Account_Inbox);:
      ^D(\"%z %Z\",);
      \r\n
      \r\n\r\n
      \r\n\r\n
      \r\n','Account/Inbox/ViewInvitation',1,1,'VBkY05f-E3WJS50WpdKd1Q',1233168685,'WebGUI::Asset::Template::HTMLTemplate',1),(' \r\n
      \r\n \r\n
      \r\n\r\n

      \r\n
      \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

      \r\n\r\n

      \r\n ^International(invite a friend,Account_Inbox);\r\n

      \r\n \r\n\r\n

      \r\n\r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(to label,Account_Inbox);:
      ^International(subject label,Account_Inbox);:
      \r\n   \r\n \'\" />\r\n
      \r\n\r\n
      \r\n
      \r\n','Account/Inbox/InviteUser',1,1,'cR0UFm7I1qUI2Wbpj--08Q',1232464762,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n
      \r\n\" class=\"WGprofile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'back label\',\'Account_Friends\');\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      ','Account/Layout',1,1,'zrNpGbT3odfIkg6nFSUy8Q',1232735138,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
      \r\n\r\n\r\n

      \r\n
      \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n

      \r\n\r\n \r\n\r\n
      \r\n\r\n
      \r\n\r\n

      \r\n \r\n \r\n \r\n

      \r\n \r\n \r\n \r\n

      \r\n\r\n \r\n
      class=\"bordered\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \">\"\"^Extras(account/images/no_photo.gif);\"/>\r\n \">
      \r\n \r\n ^International(member since,Account_Friends); ^D(%z,);
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n

      \r\n \r\n \r\n \r\n

      \r\n \r\n \r\n \r\n

      \r\n\r\n
      \r\n','Account/Friends/View',1,1,'1Yn_zE_dSiNuaBGNLPbxtw',1232952380,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n\r\n
      \r\n\r\n
      \r\n
      \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
      \r\n\r\n \r\n\r\n
      \r\n\r\n
      \r\n\r\n

      \r\n \r\n \r\n \r\n

      \r\n \r\n \r\n \r\n

      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
      class=\"WGbordered\" >\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \">\"Friend^Extras(account/images/no_photo.gif);\"/>
      ^International(online,Friends);^International(offline,Friends);
      \r\n \">
      \r\n \r\n ^International(member since,Account_Friends); ^D(%z,);
      \r\n ^User(homeCountry,);\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n

      \r\n \r\n \r\n \r\n

      \r\n \r\n \r\n \r\n

      \r\n\r\n
      \r\n\r\n
      \r\n','Account/Friends/Edit',1,1,'AZFU33p0jpPJ-E6qLSWZng',1232951869,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n
      \r\n \r\n

      \r\n
      \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n

      \r\n \r\n

      ^International(add to network label,Account_Friends);

      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(adding user message,Account_Friends,);
      ^International(sending to message,Account_Friends);
      \r\n\r\n
      \r\n\r\n','Account/Friends/SendRequest',1,1,'AGJBGviWGAwjnwziiPjvDg',1232569232,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      ','Account/Layout',1,1,'9ThW278DWLV0-Svf68ljFQ',1232735163,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      ','Account/Layout',1,1,'aUDsJ-vB9RgP-AYvPOy8FQ',1232735191,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n
      ','Account/Layout',1,1,'b4n3VyUIsAHyIvT-W-jziA',1232735307,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n \r\n
      \r\n\r\n
      \r\n','Account/Layout',1,1,'N716tpSna0iIQTKxS4gTWA',1232734726,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n\n \n \n \n \n \n
      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      \n
      \n ^International(member since,Account_Inbox); ^D(%z,);\n
      ^International(reply message label,Account_Inbox);^International(compose message label,Account_Inbox);
      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
      class=\"inbox_messageTo\"> [];
      ^International(subject label,Account_Inbox);:
      32\" class=\"send\">\n   \n \'\" />\n
      \n
      \n
      \n\n
      \n \n \n \n \n \n \n \n \n \n \n \n \n
      \n \n \n
      \n
      \n \n \n \n \n \n \n \n \n \n
      _name\"> []
      \n
      \n
      \n \n \n
      \n
      \n
      \n','Account/Inbox/SendMessage',1,1,'6uQEULvXFgCYlRWnYzZsuA',1233874321,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n

      ^International(errors,Asset_Event);

      \r\n
        \r\n\r\n
      • \r\n
        \r\n
      \r\n
      \r\n\r\n\r\n\r\n \r\n\r\n
      \r\n ^International(tab event,Asset_Event);\r\n ^International(recurrence,Asset_Event);\r\n \r\n \r\n
      \r\n\r\n\r\n\r\n\r\n \r\n\r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      ^International(event title,Asset_Event);
      ^International(short title,Asset_Event);
      ^International(location,Asset_Event);
      ^International(description,Asset_Event);
      ^International(start date,Asset_Event);
      ^International(end date,Asset_Event);
      ^International(time,Asset_Event);
       
      ^International(related material,Asset_Event);\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \'> \r\n \r\n \r\n \r\n \r\n \r\n\r\n
      \r\n\r\n
      \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\r\n \' value=\'\'>\r\n \' value=\"\">\r\n
      \'>\r\n\' name=\'\' value=\'\'>\r\n\' name=\'rel_delconfirm_\' value=\'0\'>\r\n
      \r\n
      \r\n
      ^International(group to view,Asset_Event);
      ^International(attachments for event,Asset_Event);
      \r\n
      \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
      ^International(recurrence pattern,Asset_Event);
      ^International(recurrence range,Asset_Event);\r\n

      ^International(start,Asset_Event);:

      \r\n

      \r\n

      ^International(end,Asset_Event);:

      \r\n
      \r\n
      \r\n\r\n\r\n\r\n\r\n','Calendar/EventEdit',1,1,'CalendarEventEdit00001',1233698348,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \" class=\"dataTable\">\r\n\r\n\r\n \r\n\r\n\r\n\r\n

      \r\n
      \r\n\r\n
      \r\n \r\n
      \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n
      ','DataTable',1,1,'TuYPpHx7TUyk08639Pc8Bg',1233861621,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \" class=\"dataTable\">\r\n\r\n\r\n

      \r\n
      \r\n\r\n\r\n

      \r\n
      \r\n\r\n
      \r\n\r\n
      \r\n\r\n
      \r\n\r\n
      \r\n
      ','DataTable',1,1,'3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \n \n\n
      \n
      \n \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n \n
      \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
      \n\n

      \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n
      ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
      ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
      ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
      \n
      \n
      \n\n ^International(\'editForm assetIdThumbnail label\',\'Asset_GalleryAlbum\');

      \n \n
      \n
      \n \n\n
      \n

      \n
      \n\n
      \n \n
      \n
       
      \n
      \n
      \n
      \n\n\n
      \n \n
      \n \n
      ','GalleryAlbum/Edit',1,1,'6X-7Twabn5KKO_AbgK3PEw',1233872216,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \n \n\n
      \n
      \n
      \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
      \n
      \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
      \n\n

      \n\n

      \n\n \n

      ^International(\'template error happened\',\'Asset_Photo\');

      \n
        \n \n
      • \n
        \n
      \n
      \n\n \n\n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n ^International(\'template upload single\',\'Asset_GalleryAlbum\');\n \" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
      ^International(\'editForm title label\',\'Asset_Photo\');\n \n
      ^International(\'editForm synopsis label\',\'Asset_Photo\');\n \n
      ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n \n
      ^International(\'editForm keywords\',\'Asset_Photo\');\n \n
      ^International(\'editForm location\',\'Asset_Photo\');\n \n
      ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n \n
      \n\n \n\n \n\n
      ','GalleryFile/Edit',1,1,'7JCTAiu1U_bT9ldr655Blw',1233872075,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \n \n\n
      \n
      \n
      \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
      \n
      \n ^International(template makeShortcut title,Asset_Photo);\n
      \n\n

      \n\n
      \n\n \n \n \n \n \n \n \n \n \n \n
      ^International(template makeShortcut file,Asset_Photo);
      ^International(template makeShortcut album,Asset_Photo);
      \n\n
      \n \n
      \n\n \n
      \n
      ','GalleryFile/MakeShortcut',1,1,'m3IbBavqzuKDd2PGGhKPlA',1233871747,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \n
      ^International(\'please enter answer information\',\'Asset_Survey\');
      \n
      \n\n
      \n\n \n
      \n

      ^International(\'answer number\',\'Asset_Survey\');
      ^International(\'answer number description\',\'Asset_Survey\');
      \n \'>\n

      \n

      ^International(\'verbatim label\',\'Asset_Survey\');
      ^International(\'verbatim description\',\'Asset_Survey\');
      \n ^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\n ^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');

      \n

      ^International(\'min\',\'Asset_Survey\');
      ^International(\'min description\',\'Asset_Survey\');
      \' name=min size=2>

      \n

      ^International(\'max label\',\'Asset_Survey\');
      ^International(\'max description\',\'Asset_Survey\');
      \' name=max size=2>

      \n

      ^International(\'step label\',\'Asset_Survey\');
      ^International(\'step description\',\'Asset_Survey\');
      \' name=step size=2>

      \n\n
      \n\n

      ^International(\'recorded answer\',\'Asset_Survey\');
      ^International(\'recorded answer description\',\'Asset_Survey\');

      \n

      ^International(\'jump to\',\'Asset_Survey\');
      ^International(\'jump to description\',\'Asset_Survey\');
      \' name=goto size=4>\n

      ^International(\'text answer\',\'Asset_Survey\');

      ^International(\'cols\',\'Asset_Survey\');
      ^International(\'cols description\',\'Asset_Survey\');
      \' name=textCols>\n
      ^International(\'rows\',\'Asset_Survey\');
      ^International(\'rows description\',\'Asset_Survey\');
      \n \' name=textRows>

      \n

      ^International(\'is this the correct answer\',\'Asset_Survey\');
      ^International(\'is this the correct answer description\',\'Asset_Survey\');
      \n checked>^International(\'yes\',\'Asset_Survey\');\n checked>^International(\'no\',\'Asset_Survey\');

      \n\n

      ^International(\'answer value\',\'Asset_Survey\');
      ^International(\'answer value description\',\'Asset_Survey\');
      \' name=value>

      \n
      \n

      ^International(\'answer text\',\'Asset_Survey\');
      ^International(\'answer text description\',\'Asset_Survey\');

      \n
      \n
      \n
      ','Survey/Edit',1,1,'AjhlNO3wZvN5k4i4qioWcg',1233874172,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n
      ^International(\'please enter question information\',\'Asset_Survey\');
      \r\n
      \r\n
      \r\n\r\n\r\n\r\n
      \r\n

      ^International(\'question number\',\'Asset_Survey\');
      ^International(\'question number description\',\'Asset_Survey\');

      \r\n \'>\r\n \r\n \r\n

      ^International(\'question text\',\'Asset_Survey\');
      ^International(\'question text description\',\'Asset_Survey\');
      \r\n

      \r\n

      ^International(\'question variable name\',\'Asset_Survey\');
      ^International(\'question variable name description\',\'Asset_Survey\');
      \' name=variable size=2>

      \r\n

      ^International(\'randomize answers\',\'Asset_Survey\');
      ^International(\'randomize answers description\',\'Asset_Survey\');
      \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

      \r\n

      ^International(\'question type\',\'Asset_Survey\');
      ^International(\'question type description\',\'Asset_Survey\');
      \r\n

      \r\n\r\n
      \r\n\r\n

      ^International(\'vertical display\',\'Asset_Survey\');
      ^International(\'vertical display description\',\'Asset_Survey\');
      \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

      \r\n

      ^International(\'show text in button\',\'Asset_Survey\');
      ^International(\'show text in button description\',\'Asset_Survey\');
      \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

      \r\n\r\n

      ^International(\'allow comment\',\'Asset_Survey\');
      ^International(\'allow comment description\',\'Asset_Survey\');
      \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');\r\n   
      ^International(\'cols\',\'Asset_Survey\');
      ^International(\'cols description\',\'Asset_Survey\');
      \' name=commentCols> \r\n
      ^International(\'rows\',\'Asset_Survey\');
      ^International(\'rows description\',\'Asset_Survey\');
      \r\n \' name=commentRows>
      \r\n

      \r\n

      ^International(\'maximum number of answers\',\'Asset_Survey\');
      ^International(\'maximum number of answers description\',\'Asset_Survey\');
      \' name=maxAnswers size=2>

      \r\n

      ^International(\'required label\',\'Asset_Survey\');
      ^International(\'required description\',\'Asset_Survey\');
      \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

      \r\n

      ^International(\'question value\',\'Asset_Survey\');
      ^International(\'question value description\',\'Asset_Survey\');
      \' name=value>

      \r\n
      \r\n
      \r\n
      \r\n
      ','Survey/Edit',1,1,'wAc4azJViVTpo-2NYOXWvg',1233872588,'WebGUI::Asset::Template::HTMLTemplate',1),('
      \r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n out of \r\n
      \r\n
      \r\n\r\n
      \r\n minutes left\r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n\r\n\r\n
      \r\n

      required\'>

      \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \' id=\'\' size=\'50\' />\r\n \r\n \r\n verbatim\' >\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \' value=\'\'>\r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n
      \r\n
      \r\n \r\n verbatim\'>\r\n \r\n \r\n
      \r\n
      \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      \r\n \r\n button\" value=\"\">\r\n \r\n button\">\r\n \r\n \" id=\"\" value=\"\">\r\n \r\n \r\n \r\n verbatim\' name=\'verbatim\'>\r\n
      \r\n \r\n
      \r\n \r\n button\" value=\"\">\r\n \r\n button\">\r\n \r\n \" id=\"\" value=\"\">\r\n \r\n verbatim\' name=\'verbatim\'>\r\n \r\n
      \r\n
      \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
      container\'>
      \r\n \' id=\'\' type=text>\r\n button\'>\r\n \r\n verbatim\'>\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n \' name=\'\' value=0>\r\n \r\n \r\n \' name=\'\' value=\"\">\r\n \r\n\r\n \r\n

      \r\n
      \r\n \r\n show\'>0\r\n \r\n \r\n \r\n show\'>\r\n \r\n
      0  \r\n
      slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\r\n \r\n
      slider-min-thumb\' class=slider-min-thumb>\r\n \r\n
      \r\n \r\n
      slider-max-thumb\' class=slider-max-thumb>\r\n \r\n
      \r\n
      \r\n \r\n \r\n
      \r\n \r\n
      \r\n\r\n
      \r\n\r\n \r\n \r\n \r\n\r\n \r\n

      \r\n
      \r\n | \' name=\'\'> | \r\n \r\n
      0  \r\n
      slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\r\n
      slider-thumb\' class=slider-thumb>\r\n \r\n
      \r\n
      \r\n
      \r\n
      \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n

      Comment:

      \r\n
      \r\n\r\n\r\n
      \r\n
      \r\n
      \r\n\r\n
      \r\n\r\n
      \r\n\r\n\r\n\r\n\r\n\r\n\r\n','Survey/Take',1,1,'CxMpE_UPauZA3p8jdrOABw',1233698297,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\nWebGUI ^International(assetName,Asset_Survey);\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n\r\n
      \r\n\r\n
      \r\n\r\n
        \r\n\r\n
        \r\n
        \r\n\r\n\r\n\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n','Survey/Edit',1,1,'GRUNFctldUgop-qRLuo_DA',1233698093,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n

        \r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n >\r\n\r\n
        ','Survey/Take',1,1,'d8jMMMRddSQ7twP4l1ZSIw',1234040817,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n

        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n

        \n \n
        \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000029',1234392043,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

        \n

        \n

        \n\n\n

        \n\n

        \n
        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n
        \n

        \n \n
        \n
        \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000068',1234393332,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

        \n

        \n\n\n

        \n\n

        \n
        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n
        \n

        \n \n
        \n
        \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000099',1234393376,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n
        \n

        \n

        \n

        \n

        \n

        \n
        \n\n\n

        \n\n

        \n
        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n
        \n

        \n \n

        \n

        \n

        \n
        \n
        \n

        \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000122',1234393411,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

        \n\n\n

        \n\n

        \n
        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000114',1234393441,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n

        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n
        \n\n\n\n

        \n \n
        \n','Collaboration/PostForm',1,1,'PBtmpl0000000000000210',1234393614,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n
        \n\n

        \n
        \n ^International(member since,Account_Inbox); ^D(%z,);\n

        \n \n

        \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

        \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n
        \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
        \">^D(,);
        ^International(no contributions,Account_Contributions);
        \n \n

        \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

        \n \n \n

        ^International(contribution count,\'Account_Contributions\');

        \n
        \n
        ','Account/Contrib/View',1,1,'1IzRpX0tgW7iuCfaU2Kk0A',1234924646,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n \n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
        \n
        \n^International(template url_delete,Asset_Photo);\n
        \n\n

        \n\n \n\n
        ','GalleryAlbum/Delete',1,1,'UTNFeV7B_aSCRmmaFCq4Vw',1234568788,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n \n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
        \n
        \n^International(template url_delete,Asset_Photo);\n
        \n\n

        \n\n \n
        ','GalleryFile/Delete',1,1,'zcX-wIUct0S_np14xxOA-A',1234568742,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n\n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \"\"\n \n \"\"\n \"\"\n \n \"\"\n
        \n
        \n
        \n\n

        \n\n
        \n ^International(\"template comment add title\",\"Asset_Photo\");\n ^International(\"template comment edit title\",\"Asset_Photo\");\n \n \n
        \n
        \n \n
        \n \n
        \n
        \n \n
        \n
        ','GalleryFile/EditComment',1,1,'OxJWQgnGsgyGohP2L3zJPQ',1234564647,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
        \r\n \r\n \r\n
        \r\n
        \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n
        \r\n \r\n
        \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n \r\n
        ','Gallery/ListAlbums',1,1,'azCqD0IjdQSlM3ar29k5Sg',1234561066,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n \n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
        \n
        \n \n
        \n\n \n\n

        ^International(template listFilesForUser albums title,Asset_Gallery);

        \n \n \n \n \n \n
        \n \n

        ^International(template listFilesForUser pictures title,Asset_Gallery);

        \n \n \n
        \n \" class=\"title\">\n \n \n \n \n
        \n
        \n \n
        \n
        \n
        \n
        \n \n
        ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
        \n
        \n
        \n
        \n
        \n
        \n \n
        \n \n \n
        ','Gallery/ListFilesForUser',1,1,'OkphOEdaSGTXnFGhK4GT5A',1234560760,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n \n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
        \n
        \n ^International(\'template search title\',\'Asset_Gallery\');\n
        \n\n \n\n \n
        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        ^International(\'template search field title\',\'Asset_Gallery\');
        ^International(\'template search field description\',\'Asset_Gallery\');
        ^International(\'template search field keywords\',\'Asset_Gallery\');
        ^International(\'template search field className\',\'Asset_Gallery\');\n \n
        ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
         \n \n
        \n
        \n \n\n

        \n\n \n
        \n \n
        \n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\n
        \n\n

        Albums

        \n \n \n \n \n \n \n
        \n \n

        Pictures

        \n \n \n
        \n \" class=\"title\">\n \n \n \n \n
        \n
        \n \n
        \n
        \n
        \n
        \n \n
        ^International(\"template file creationDate\",\"Asset_GalleryAlbum\"); ^D(\"%M/%d/%Y\",);
        \n
        \n
        \n
        \n
        \n
        \n
        \n\n
        \n \n \n
        \n\n
        \n
        ','Gallery/Search',1,1,'jME5BEDYVDlBZ8jIQA9-jQ',1234565056,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n\n\n','GalleryAlbum/ViewThumbnails',1,1,'q5O62aH4pjUXsrQR3Pq4lw',1234568087,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n\n\n','GalleryAlbum/View',1,1,'05FpjceLYhq4csF1Kww1KQ',1234568028,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n\n\n
        \n \n\n
        \n
        \n \">^International(\'template url_album\',\'Asset_Photo\');    \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
        \n
        \n ·\n ^International(\'template by\',\'Asset_Gallery\');: \">\n
        \n\n \n
        \n
        \n ^International(template view details,Asset_Photo);\n
        \n
        \n ^International(\'template creationDate\',\'Asset_Photo\');:\n
        \n
        \n ^D(\"%z %Z\", );\n
        \n
        \n
        \n
        \n ^International(\'template views\',\'Asset_Photo\');:\n
        \n
        \n \n
        \n
        \n
        \n
        \n ^International(\'template by\',\'Asset_Gallery\');:\n
        \n
        \n \">\n
        \n
        \n
        \n
        \n ^International(\'template friendsOnly label\',\'Asset_Photo\');:\n
        \n
        \n ^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\n
        \n
        \n
        \n
        \n ^International(\'template location\',\'Asset_Photo\');:\n
        \n
        \n \n
        \n
        \n
        \n
        \n ^International(template view available resolutions,Asset_Photo);\n
        \n
        \n \n \">\n \n
        \n
        \n
        \n \n
        \n ^International(\'template keywords\',\'Asset_Photo\');\n \n \">, \n \n
        \n
        \n
        \n ^International(more details,Asset_Photo);\n
        \n \n
        rowOnerowTwo\">\n
        \n :\n
        \n
        \n \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n ^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\n
        \n \n
        \n \n
        \n \n
        \n
        \n \n
        \n
        \n \n \n \n
        \n
        ','GalleryFile/View',1,1,'TEId5V-jEvUULsZA0wuRuA',1234568469,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
        \n\n
        \n

        \n
        \n ^International(member since,Account_Inbox); ^D(%z,);\n

        \n \n

        \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

        \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n
         \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
        old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
        \n \n

        \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

        \n\n

        \n ^International(message count,\'Account_Inbox\');\n

        \n \n
        \n\n
        \n','Account/Inbox/View',1,1,'c8xrwVuu5QE0XtF9DiVzLw',1235331153,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n
        ^International(\'comparison label\',\'Asset_Matrix\');
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n\r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n','Matrix/Compare',1,1,'matrixtmpl000000000002',1235704003,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n \r\n

        \r\n
        \r\n \r\n

        \r\n \r\n \r\n [\r\n ^AssetProxy(new-matrix/matrix-nav);\r\n blockblockblock\">\r\n \r\n • \">Edit\r\n \r\n \r\n \r\n • \">Approve\r\n \r\n • \">Delete\r\n \r\n \r\n ]\r\n \r\n

        \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n ^International(\'description label\',\'Asset_MatrixListing\');\r\n \r\n \r\n \r\n Add a Description\r\n \r\n No Description\r\n \r\n \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
          \r\n
        • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\">
        • \r\n
        • ^International(\'version label\',\'Asset_MatrixListing\');
        • \r\n
        • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\">
        • \r\n
        • ^International(\'last updated label\',\'Asset_MatrixListing\');
        • \r\n
        • ^International(\'clicks label\',\'Asset_Matrix\');
        • \r\n
        • ^International(\'views label\',\'Asset_Matrix\');
        • \r\n
        • ^International(\'compares label\',\'Asset_Matrix\');
        • \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n Comments\r\n \r\n Send Creator a Message\r\n
        \r\n \r\n
        ^International(\'message sent message\',\'Asset_MatrixListing\');
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        ','Matrix/Detail',1,1,'matrixtmpl000000000003',1235987792,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n

        \r\n\r\n\r\n
        \r\n \r\n
        \r\n
        \r\n\r\n
        \r\n
        \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n ^International(\'add new listing text\',\'Asset_Matrix\');\r\n \r\n ^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\r\n \r\n
        \r\n \r\n \r\n
        \r\n \r\n
        \r\n
        ^International(\'listing statistics label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
        ^International(\'most views label\',\'Asset_Matrix\');\"> ()
        ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
        \r\n \r\n
        ^International(\'most recently updated label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \">
        \r\n \r\n
        ^International(\'best rated label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \"> (/10)
        \r\n \r\n
        ^International(\'worst rated label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \"> (/10)
        \r\n \r\n
        ^International(\'site statistics label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(\'listing count label\',\'Asset_Matrix\');
        \r\n
        \r\n \r\n \r\n \r\n\r\n \r\n \r\n
        ^International(\'pending listings label\',\'Asset_Matrix\');:
        \r\n
        \r\n
          \r\n \r\n
        • \">
        • \r\n
          \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n','Matrix',1,1,'matrixtmpl000000000001',1235706149,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n
        ^International(\'search label\',\'Asset_Matrix\');
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n\r\n\r\n','Matrix/Search',1,1,'matrixtmpl000000000005',1235704755,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n \">Return to Matrix\r\n\r\n\r\n','Navigation',1,1,'alraubvBu-YJJ614jAHD5w',1235706026,'WebGUI::Asset::Template::HTMLTemplate',1); INSERT INTO `userProfileCategory` VALUES ('1','WebGUI::International::get(449,\"WebGUI\");','WebGUI::International::get(\"misc info short\",\"WebGUI\");',6,1,1,1),('2','WebGUI::International::get(440,\"WebGUI\");','WebGUI::International::get(\"contact info short\",\"WebGUI\");',2,1,1,1),('3','WebGUI::International::get(439,\"WebGUI\");','WebGUI::International::get(\"personal info short\",\"WebGUI\");',1,1,1,1),('4','WebGUI::International::get(445,\"WebGUI\");','WebGUI::International::get(\"preferences short\",\"WebGUI\");',7,0,1,1),('5','WebGUI::International::get(443,\"WebGUI\");','WebGUI::International::get(\"home info short\",\"WebGUI\");',3,1,1,1),('6','WebGUI::International::get(442,\"WebGUI\");','WebGUI::International::get(\"work info short\",\"WebGUI\");',4,1,1,1),('7','WebGUI::International::get(444,\"WebGUI\");','WebGUI::International::get(\"demographic info short\",\"WebGUI\");',5,1,1,1); INSERT INTO `userProfileData` VALUES ('1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'English',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/Chicago',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL,NULL,NULL,'none',0,NULL,NULL,NULL,'{\"workCity\":\"all\",\"department\":\"all\",\"uiLevel\":\"none\",\"homeCountry\":\"all\",\"homeZip\":\"all\",\"firstDayOfWeek\":\"none\",\"photo\":\"all\",\"email\":\"all\",\"homeAddress\":\"all\",\"allowPrivateMessages\":\"none\",\"timeZone\":\"none\",\"firstName\":\"all\",\"birthdate\":\"all\",\"toolbar\":\"none\",\"yahooIM\":\"all\",\"workPhone\":\"all\",\"showMessageOnLoginSeen\":\"none\",\"middleName\":\"all\",\"workURL\":\"all\",\"signature\":\"all\",\"homeURL\":\"all\",\"homeState\":\"all\",\"alias\":\"all\",\"discussionLayout\":\"none\",\"workAddress\":\"all\",\"workCountry\":\"all\",\"avatar\":\"all\",\"publicProfile\":\"none\",\"dateFormat\":\"none\",\"ableToBeFriend\":\"none\",\"workName\":\"all\",\"icq\":\"all\",\"workZip\":\"all\",\"timeFormat\":\"none\",\"cellPhone\":\"all\",\"lastName\":\"all\",\"homePhone\":\"all\",\"versionTagMode\":\"none\",\"gender\":\"all\",\"showOnline\":\"none\",\"language\":\"none\",\"homeCity\":\"all\",\"aim\":\"all\",\"workState\":\"all\",\"emailToPager\":\"all\",\"msnIM\":\"all\",\"pager\":\"all\",\"publicEmail\":\"none\"}'),('3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'English',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/Chicago',NULL,NULL,NULL,'0','9',NULL,NULL,'none',NULL,NULL,NULL,NULL,'all',NULL,NULL,NULL,NULL,'{\"workCity\":\"all\",\"department\":\"all\",\"uiLevel\":\"none\",\"homeCountry\":\"all\",\"homeZip\":\"all\",\"firstDayOfWeek\":\"none\",\"photo\":\"all\",\"email\":\"all\",\"homeAddress\":\"all\",\"allowPrivateMessages\":\"none\",\"timeZone\":\"none\",\"firstName\":\"all\",\"birthdate\":\"all\",\"toolbar\":\"none\",\"yahooIM\":\"all\",\"workPhone\":\"all\",\"showMessageOnLoginSeen\":\"none\",\"middleName\":\"all\",\"workURL\":\"all\",\"signature\":\"all\",\"homeURL\":\"all\",\"homeState\":\"all\",\"alias\":\"all\",\"discussionLayout\":\"none\",\"workAddress\":\"all\",\"workCountry\":\"all\",\"avatar\":\"all\",\"publicProfile\":\"none\",\"dateFormat\":\"none\",\"ableToBeFriend\":\"none\",\"workName\":\"all\",\"icq\":\"all\",\"workZip\":\"all\",\"timeFormat\":\"none\",\"cellPhone\":\"all\",\"lastName\":\"all\",\"homePhone\":\"all\",\"versionTagMode\":\"none\",\"gender\":\"all\",\"showOnline\":\"none\",\"language\":\"none\",\"homeCity\":\"all\",\"aim\":\"all\",\"workState\":\"all\",\"emailToPager\":\"all\",\"msnIM\":\"all\",\"pager\":\"all\",\"publicEmail\":\"all\"}'); INSERT INTO `userProfileField` VALUES ('email','WebGUI::International::get(56,\"WebGUI\");',1,1,'email',NULL,NULL,1,'2',1,1,1,1,0,NULL),('firstName','WebGUI::International::get(314,\"WebGUI\");',1,0,'text',NULL,NULL,1,'3',1,1,1,0,0,NULL),('middleName','WebGUI::International::get(315,\"WebGUI\");',1,0,'text',NULL,NULL,2,'3',1,1,1,0,0,NULL),('lastName','WebGUI::International::get(316,\"WebGUI\");',1,0,'text',NULL,NULL,3,'3',1,1,1,0,0,NULL),('icq','WebGUI::International::get(317,\"WebGUI\");',1,0,'text',NULL,NULL,2,'2',1,1,1,0,0,NULL),('aim','WebGUI::International::get(318,\"WebGUI\");',1,0,'text',NULL,NULL,3,'2',1,1,1,0,0,NULL),('msnIM','WebGUI::International::get(319,\"WebGUI\");',1,0,'text',NULL,NULL,4,'2',1,1,1,0,0,NULL),('yahooIM','WebGUI::International::get(320,\"WebGUI\");',1,0,'text',NULL,NULL,5,'2',1,1,1,0,0,NULL),('cellPhone','WebGUI::International::get(321,\"WebGUI\");',1,0,'phone',NULL,NULL,6,'2',1,1,1,0,0,NULL),('pager','WebGUI::International::get(322,\"WebGUI\");',1,0,'phone',NULL,NULL,7,'2',1,1,1,0,0,NULL),('emailToPager','WebGUI::International::get(441,\"WebGUI\");',1,0,'email',NULL,NULL,8,'2',1,1,1,0,0,NULL),('language','WebGUI::International::get(304,\"WebGUI\");',1,0,'selectBox','WebGUI::International::getLanguages()','\'English\'',1,'4',1,1,1,0,0,NULL),('homeAddress','WebGUI::International::get(323,\"WebGUI\");',1,0,'text',NULL,NULL,1,'5',1,1,1,0,0,NULL),('homeCity','WebGUI::International::get(324,\"WebGUI\");',1,0,'text',NULL,NULL,2,'5',1,1,1,0,0,NULL),('homeState','WebGUI::International::get(325,\"WebGUI\");',1,0,'text',NULL,NULL,3,'5',1,1,1,0,0,NULL),('homeZip','WebGUI::International::get(326,\"WebGUI\");',1,0,'zipcode',NULL,NULL,4,'5',1,1,1,0,0,NULL),('homeCountry','WebGUI::International::get(327,\"WebGUI\");',1,0,'text',NULL,NULL,5,'5',1,1,1,0,0,NULL),('homePhone','WebGUI::International::get(328,\"WebGUI\");',1,0,'phone',NULL,NULL,6,'5',1,1,1,0,0,NULL),('workAddress','WebGUI::International::get(329,\"WebGUI\");',1,0,'text',NULL,NULL,2,'6',1,1,1,0,0,NULL),('workCity','WebGUI::International::get(330,\"WebGUI\");',1,0,'text',NULL,NULL,3,'6',1,1,1,0,0,NULL),('workState','WebGUI::International::get(331,\"WebGUI\");',1,0,'text',NULL,NULL,4,'6',1,1,1,0,0,NULL),('workZip','WebGUI::International::get(332,\"WebGUI\");',1,0,'zipcode',NULL,NULL,5,'6',1,1,1,0,0,NULL),('workCountry','WebGUI::International::get(333,\"WebGUI\");',1,0,'text',NULL,NULL,6,'6',1,1,1,0,0,NULL),('workPhone','WebGUI::International::get(334,\"WebGUI\");',1,0,'phone',NULL,NULL,7,'6',1,1,1,0,0,NULL),('gender','WebGUI::International::get(335,\"WebGUI\");',1,0,'selectBox','{\r\n \'neuter\'=>WebGUI::International::get(403),\r\n \'male\'=>WebGUI::International::get(339),\r\n \'female\'=>WebGUI::International::get(340)\r\n}','\'neuter\'',1,'7',1,1,1,0,0,NULL),('birthdate','WebGUI::International::get(336,\"WebGUI\");',1,0,'date',NULL,NULL,2,'7',1,1,1,0,0,NULL),('homeURL','WebGUI::International::get(337,\"WebGUI\");',1,0,'url',NULL,NULL,7,'5',1,1,1,0,0,NULL),('workURL','WebGUI::International::get(446,\"WebGUI\");',1,0,'url',NULL,NULL,8,'6',1,1,1,0,0,NULL),('workName','WebGUI::International::get(450,\"WebGUI\");',1,0,'text',NULL,NULL,1,'6',1,1,1,0,0,NULL),('timeZone','WebGUI::International::get(\"timezone\",\"DateTime\");',1,0,'timeZone','','\'America/Chicago\'',3,'4',1,1,1,0,0,NULL),('dateFormat','WebGUI::International::get(461,\"WebGUI\");',1,0,'selectBox','{\n\'%d-%m-%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%d-%m-%y\"),\n\'%d.%m.%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%d.%m.%y\"),\r\n \'%M/%D/%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%M/%D/%y\"),\r\n \'%y-%m-%d\'=>WebGUI::DateTime::epochToHuman(\"\",\"%y-%m-%d\"),\r\n \'%D-%c-%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%D-%c-%y\"),\r\n \'%c %D, %y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%c %D, %y\")\r\n}\r\n','\'%M/%D/%y\'',4,'4',1,1,1,0,0,NULL),('timeFormat','WebGUI::International::get(462,\"WebGUI\");',1,0,'selectBox','{\r\n \'%H:%n %p\'=>WebGUI::DateTime::epochToHuman(\"\",\"%H:%n %p\"),\r\n \'%H:%n:%s %p\'=>WebGUI::DateTime::epochToHuman(\"\",\"%H:%n:%s %p\"),\r\n \'%j:%n\'=>WebGUI::DateTime::epochToHuman(\"\",\"%j:%n\"),\r\n \'%j:%n:%s\'=>WebGUI::DateTime::epochToHuman(\"\",\"%j:%n:%s\")\r\n}\r\n','\'%H:%n %p\'',5,'4',1,1,1,0,0,NULL),('discussionLayout','WebGUI::International::get(509)',1,0,'selectBox','{\n flat=>WebGUI::International::get(510),\n nested=>WebGUI::International::get(1045)\n}','\'nested\'',6,'4',1,1,1,0,0,NULL),('firstDayOfWeek','WebGUI::International::get(699,\"WebGUI\");',1,0,'selectBox','{0=>WebGUI::International::get(\"sunday\",\"DateTime\"),1=>WebGUI::International::get(\"monday\",\"DateTime\")}','\'0\'',2,'4',1,1,1,0,0,NULL),('uiLevel','WebGUI::International::get(739,\"WebGUI\");',0,0,'selectBox','{\r\n0=>WebGUI::International::get(729,\"WebGUI\"),\r\n1=>WebGUI::International::get(730,\"WebGUI\"),\r\n2=>WebGUI::International::get(731,\"WebGUI\"),\r\n3=>WebGUI::International::get(732,\"WebGUI\"),\r\n4=>WebGUI::International::get(733,\"WebGUI\"),\r\n5=>WebGUI::International::get(734,\"WebGUI\"),\r\n6=>WebGUI::International::get(735,\"WebGUI\"),\r\n7=>WebGUI::International::get(736,\"WebGUI\"),\r\n8=>WebGUI::International::get(737,\"WebGUI\"),\r\n9=>WebGUI::International::get(738,\"WebGUI\")\r\n}','\'5\'',7,'4',1,0,1,0,0,NULL),('alias','WebGUI::International::get(858)',1,0,'text','','',4,'3',1,1,1,0,0,NULL),('signature','WebGUI::International::get(859)',1,0,'HTMLArea','','',5,'3',1,1,1,0,0,NULL),('publicProfile','WebGUI::International::get(861)',1,0,'RadioList','{ all=>WebGUI::International::get(\'public label\',\'Account_Profile\'), friends=>WebGUI::International::get(\'friends only label\',\'Account_Profile\'), none=>WebGUI::International::get(\'private label\',\'Account_Profile\')}','[\"none\"]',8,'4',1,1,0,0,0,''),('toolbar','WebGUI::International::get(746)',0,0,'selectBox','WebGUI::Icon::getToolbarOptions()','\'useLanguageDefault\'',10,'4',1,0,1,0,0,NULL),('photo','WebGUI::International::get(\"photo\",\"WebGUI\");',1,0,'Image','','',6,'3',1,1,1,0,0,NULL),('avatar','WebGUI::International::get(\"avatar\",\"WebGUI\");',1,0,'Image','','',1,'1',1,1,1,0,0,NULL),('department','WebGUI::International::get(\'Department\',\'Asset_InOutBoard\')',1,0,'selectBox','{\'IT\'=>WebGUI::International::get(\'IT\',\'Asset_InOutBoard\'),\'HR\'=>WebGUI::International::get(\'HR\',\'Asset_InOutBoard\'),\'Regular Staff\'=>WebGUI::International::get(\'Regular Staff\',\'Asset_InOutBoard\')}\n','\'Regular Staff\'',8,'6',0,1,1,0,0,NULL),('allowPrivateMessages','WebGUI::International::get(\"allow private messages label\",\"WebGUI\")',1,0,'RadioList','{ all=>WebGUI::International::get(\"user profile field private message allow label\",\"WebGUI\"), friends=>WebGUI::International::get(\"user profile field private message friends only label\",\"WebGUI\"), none=>WebGUI::International::get(\"user profile field private message allow none label\",\"WebGUI\"),}','[\"all\"]',11,'4',1,1,1,0,0,NULL),('ableToBeFriend','Are you available to be added as a Friend?',0,0,'yesNo',NULL,'1',2,'1',1,1,1,0,0,NULL),('showMessageOnLoginSeen','WebGUI::International::get(\"showMessageOnLoginSeen\",\"Auth\");',0,0,'integer',NULL,'0',3,'1',1,0,1,0,0,NULL),('showOnline','WebGUI::International::get(\'Show when online?\',\'WebGUI\')',1,0,'YesNo',NULL,'0',12,'4',1,1,1,0,0,''),('versionTagMode','WebGUI::International::get(\"version tag mode\",\"WebGUI\");',1,0,'selectBox','\n{\n inherited => WebGUI::International::get(\"versionTagMode inherited\"),\n multiPerUser => WebGUI::International::get(\"versionTagMode multiPerUser\"),\n singlePerUser => WebGUI::International::get(\"versionTagMode singlePerUser\"),\n siteWide => WebGUI::International::get(\"versionTagMode siteWide\"),\n autoCommit => WebGUI::International::get(\"versionTagMode autoCommit\"),\n}\n','inherited',13,'4',1,1,0,0,0,''); INSERT INTO `users` VALUES ('1','Visitor','WebGUI',1019867418,1222804519,0,'Active','0',''),('3','Admin','WebGUI',1019867418,1222804519,0,'Active','1',''); INSERT INTO `vendor` VALUES ('defaultvendor000000000','2008-06-12 19:43:10','Default Vendor','3',NULL,NULL,NULL,NULL); -INSERT INTO `wobject` VALUES (1,'

        Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with hosting, online support is included!

        ','iCYOjohB9SKvAPr6bXElKA','stevestyle000000000003','stevestyle000000000003',1147642516),(1,'

        What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to custom single sign on systems, to applications that will manage your entire company, our team can do it.

        ','4Yfz9hqBqM8OYMGuQK8oLw','stevestyle000000000003','stevestyle000000000003',1147642516),(0,'\n

        \nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n

        \n

        \nNow that you\'re logged in, we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account. Don\'t worry if you lock yourself out, you can always contact Plain Black® support to get instructions to get back in.\n

        NOTE: If you appear to be get logged out while moving between pages, this is most likely your browser displaying a cached version of the page. Click on your browser\'s refresh button to correct the problem.

        \n

        \nNo doubt after you enabled admin mode you saw a menu along the left side of the screen, that\'s called the Admin Bar. Use that to add content and access administrative functions. You\'re now ready to begin exploring your new WebGUI site.

        \n

        \nFor more information about services related to WebGUI click here.\n

        \n

        \nEnjoy your new WebGUI site!\n

        \n','NK8bqlwVRILJknqeCDPBHg','stevestyle000000000003','stevestyle000000000003',1147642515),(1,'

        Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us today to see how we can help you.

        ','6QuS-0rosuZTdTv11fobig','stevestyle000000000003','stevestyle000000000003',1147642515),(1,'

        Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of support you purchase, you get WebGUI Documentation included in your purchase.

        ','ix1p0AbwKAz8QWB-T-HHfg','stevestyle000000000003','stevestyle000000000003',1147642516),(1,'\n

        \nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n

        \n

        \nWorkflow & Versioning - Never again worry about content getting put on your site that you don\'t want there. Never again lose your old content after making an edit. And never again push out new changes until you\'re absolutely ready to release them. WebGUI\'s workflow and versioning system is fast, flexible, powerful, and easy to use.\n

        \n

        \nEverything\'s a Template - Worry nevermore about your CMS forcing you into a mould that doesn\'t suit you. With WebGUI everything a site visitor can see is a customizable template, so you can make it look exactly how you want. Moreover if you\'re the type that strives for excellence rest in the knowledge that all the templates that come with WebGUI are XHTML 1.0 strict compliant.\n

        \n

        \nLocalization - WebGUI\'s entire user interface is set up to be internationalized. Visit one of the WebGUI Worldwide member sites to get translations for your language. Stay there to get support and services in your native language. Feel confident in the knowledge that WebGUI will work with your native characters because it\'s UTF-8 compliant. On top of that WebGUI allows you to customize dates, currency, and weights to match your locale. \n

        \n

        \nPluggable By Design - With WebGUI 7 you have many plug-in points to add your own functionality. And best of all, the API is stable and standardized. Write it today and it will still work years from now and survive all upgrades.\n

        \n','IWFxZDyGhQ3-SLZhELa3qw','stevestyle000000000003','stevestyle000000000003',1147642514),(1,'

        The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy enough for the average business user, but powerful enough for any large enterprise.

        \n\n

        There are thousands of small and large businesses, schools, universities, governments, associations, clubs, churches, projects, and communities using WebGUI all over the world today. A brief list of some of them can be found here. Your site should be on that list.

        \n\n

        If you\'re new to WebGUI, click here to learn how to get started. If you\'re getting up to speed, check out some ways you can do more faster. If this is all old hat to you, then check out the latest news. No matter what level you\'re at tell your friends about WebGUI.

        ','OhdaFLE7sXOzo_SIP2ZUgA','stevestyle000000000003','stevestyle000000000003',1147642513),(0,'This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','fK-HMSboA3uu0c1KYkYspA','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'pJd5TLAjfWMVXD6sCRLwUg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'68sKwDgf9cGH58-NZcU4lg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'_iHetEvMQUOoxS-T2CM0sQ','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'8Bb8gu-me2mhL3ljFyiWLg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'2TqQc4OISddWCZmRY1_m8A','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'Swf6L8poXKc7hUaNPkBevw','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'x3OFY6OJh_qsXkZfPwug4A','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(1,NULL,'PBasset000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'7.0-style0000000000026','PBtmpl0000000000000060','',1147642499),(0,NULL,'PBnav00000000000000001','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000014','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000015','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000016','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000017','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000018','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000019','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000020','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000021','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000006','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000007','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000008','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000009','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000010','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000011','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000012','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000013','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(1,'

        Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site.

        ','Wl8WZ43g2rK5AYr9o4zY7w','stevestyle000000000003','stevestyle000000000003',1147642516),(0,NULL,'7.0-style0000000000070','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642510),(1,'

        Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of experience reading, writing, and speaking many languages.

        ','LBuiKzg2mWwmOPS9AgV3bg','stevestyle000000000003','stevestyle000000000003',1147642517),(1,'

        Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate programs to ensure your site gets the traffic it needs.

        ','jTNggl7AoVSUc_ZzrvuCmw','stevestyle000000000003','stevestyle000000000003',1147642517),(1,NULL,'7.0-style0000000000001','PBtmpl0000000000000060','',1147642492),(1,'\n

        \nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n

        \n

        NOTE: Click on the green start icon on the video to begin your tutorial.

        ','bX5rYxb6tZ9docY6sUhBlw','stevestyle000000000003','stevestyle000000000003',1147642514),(1,NULL,'7.0-style0000000000031','PBtmpl0000000000000060','',1147642500),(0,NULL,'7.0-style0000000000025','PBtmpl0000000000000060','',1147642498),(1,NULL,'PBasset000000000000003','PBtmpl0000000000000060','PBtmpl0000000000000111',1147642437),(1,NULL,'nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000060','',1147642465),(1,NULL,'TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000060','',1147642465),(1,NULL,'GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642466),(1,NULL,'S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000060','',1147642468),(1,NULL,'tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000060','',1147642469),(1,NULL,'GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000060','',1147642470),(1,NULL,'N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000060','',1147642470),(1,NULL,'tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000060','',1147642470),(1,NULL,'VXSsbsfcfht1904EWkb1sw','PBtmpl0000000000000060','',1147642470),(1,NULL,'-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803056),(1,NULL,'3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000060','',1147642470),(1,NULL,'cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000060','',1147642475),(1,NULL,'bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000060','',1147642475),(1,NULL,'BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000060','',1147642475),(1,NULL,'jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000060','',1147642477),(1,NULL,'VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000060','',1147642477),(1,NULL,'f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000060','',1147642479),(1,NULL,'Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000060','',1147642479),(0,'Tell a friend about WebGUI.','Szs5eev3OMssmnsyLRZmWA','stevestyle000000000003','PBtmpl0000000000000111',1213317790),(1,NULL,'bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000060','',1147642480),(1,NULL,'Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000060','',1147642480),(1,NULL,'RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000060','',1147642480),(1,NULL,'oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000060','',1147642482),(1,NULL,'9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000060','',1147642483),(1,NULL,'CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000060','',1147642484),(1,NULL,'TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000060','',1147642484),(1,NULL,'pbproto000000000000002','PBtmpl0000000000000060','',1163019036),(1,NULL,'tempspace0000000000000','PBtmpl0000000000000060','PBtmpl0000000000000060',1185754574),(1,NULL,'kaPRSaf8UKiskiGEgJgLAw','2p9ygcqH_Z11qOUvQ1uBvw','PBtmpl0000000000000111',1197330678),(1,'

        WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization.

        ','FOvmwGC0GtZo5VTxJIL3OA','stevestyle000000000003','stevestyle000000000003',1207068851),(1,NULL,'Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000060','PBtmpl0000000000000111',1213244777),(1,'

         

        ','-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1209325764),(1,'

         

        ','4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000060','PBtmpl0000000000000111',1208725439),(1,NULL,'aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000060','PBtmpl0000000000000060',1213283425),(1,NULL,'TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1211664878),(1,NULL,'6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1210777115),(1,NULL,'gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1212086102),(1,NULL,'6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000060','PBtmpl0000000000000111',1209509389),(1,NULL,'C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1212160830),(1,NULL,'aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000060','PBtmpl0000000000000060',1213122695),(1,'

         

        ','gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000060','PBtmpl0000000000000111',1213734379),(1,'

        There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction.

        \n

        \n

        \n
          \n
        • Primer - A downloadable PDF that shows you the basics of publishing content in WebGUI.
        • \n
        • Wiki - Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials.
        • \n
        • Worldwide - A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI.
        • \n
        • API Docs - The documentation of all of the WebGUI source code.
        • \n
        • Template Help - The documentation of all of WebGUI\'s template variables.
        • \n
        \n

         

        ','j_1qEqM6iLfQLiR6VKy0aA','stevestyle000000000003','PBtmpl0000000000000111',1215718151),(1,'

        Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of the latest WebGUI features. Visit the book store today to stock your WebGUI library. Other than hands on training, there is no better way to hone your WebGUI skills. No matter what your need, Plain Black has created a book that\'s right for you and is creating new books each year.

        ','diZvW4bSgZWwyyGP3qXi1g','stevestyle000000000003','PBtmpl0000000000000111',1215717972),(1,NULL,'jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000060','PBtmpl0000000000000111',1216250666),(1,'

        With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation.

        ','mTOiwwk3q4k9g5-XykXhPA','stevestyle000000000003','PBtmpl0000000000000111',1218149728),(1,NULL,'2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803070),(1,NULL,'1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803099),(1,NULL,'zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803114),(1,NULL,'tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803200),(1,NULL,'GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803205),(1,NULL,'tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803213),(1,NULL,'vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803217),(1,NULL,'hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803234),(1,NULL,'eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803238),(1,NULL,'5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803244),(1,NULL,'rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803249),(1,NULL,'V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803253),(1,NULL,'nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803258),(1,NULL,'y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803264),(1,NULL,'vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803302),(1,NULL,'lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803309),(1,NULL,'huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803313),(1,NULL,'9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803338),(1,NULL,'yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803342),(1,NULL,'pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803347),(1,NULL,'71e17KeduiXgODLMlUxiow','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803352),(1,NULL,'xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803378),(1,NULL,'0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803383),(1,NULL,'taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803387),(1,NULL,'K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803391),(1,NULL,'fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803395),(1,NULL,'oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803399),(1,NULL,'9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803405),(1,NULL,'_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803409),(1,NULL,'Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803478),(1,NULL,'NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803638),(1,NULL,'AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803665),(1,NULL,'F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803673),(1,NULL,'Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803760),(1,NULL,'BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803871),(1,NULL,'X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804045),(1,NULL,'iLzlwGmwrvzlGHXKzaDyjA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804090),(1,NULL,'UL-ItI4L1Z6-WSuhuXVvsQ','stevestyle000000000003','PBtmpl0000000000000111',1225139673),(1,NULL,'7.0-style0000000000049','PBtmpl0000000000000060','PBtmpl0000000000000060',1224117144),(0,NULL,'jVKLVakT_iA2010_oEuAwg','PBtmpl0000000000000060','PBtmpl0000000000000060',1224116526),(1,'

         

        ','QpmlAiYZz6VsKBM-_0wXaw','stevestyle000000000003','PBtmpl0000000000000111',1224616691),(1,NULL,'QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227080251),(1,NULL,'HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000060','PBtmpl0000000000000111',1225404573),(1,NULL,'IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1226011853),(1,NULL,'K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074310),(1,NULL,'_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000060','PBtmpl0000000000000111',1226643205),(1,NULL,'AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000060','PBtmpl0000000000000111',1226659753),(1,NULL,'qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074362),(1,NULL,'5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000060','PBtmpl0000000000000060',1227540002),(1,NULL,'LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000060','PBtmpl0000000000000060',1232673968),(1,NULL,'Vch1Ww7G_JpBhOhXX07RDg','PBtmpl0000000000000060','PBtmpl0000000000000111',1232664082); -INSERT INTO webguiVersion (webguiVersion,versionType,dateApplied) VALUES ('7.6.10','Initial Install',UNIX_TIMESTAMP()); +INSERT INTO `wobject` VALUES (1,'

        Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with hosting, online support is included!

        ','iCYOjohB9SKvAPr6bXElKA','stevestyle000000000003','stevestyle000000000003',1147642516),(1,'

        What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to custom single sign on systems, to applications that will manage your entire company, our team can do it.

        ','4Yfz9hqBqM8OYMGuQK8oLw','stevestyle000000000003','stevestyle000000000003',1147642516),(0,'\n

        \nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n

        \n

        \nNow that you\'re logged in, we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account. Don\'t worry if you lock yourself out, you can always contact Plain Black® support to get instructions to get back in.\n

        NOTE: If you appear to be get logged out while moving between pages, this is most likely your browser displaying a cached version of the page. Click on your browser\'s refresh button to correct the problem.

        \n

        \nNo doubt after you enabled admin mode you saw a menu along the left side of the screen, that\'s called the Admin Bar. Use that to add content and access administrative functions. You\'re now ready to begin exploring your new WebGUI site.

        \n

        \nFor more information about services related to WebGUI click here.\n

        \n

        \nEnjoy your new WebGUI site!\n

        \n','NK8bqlwVRILJknqeCDPBHg','stevestyle000000000003','stevestyle000000000003',1147642515),(1,'

        Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us today to see how we can help you.

        ','6QuS-0rosuZTdTv11fobig','stevestyle000000000003','stevestyle000000000003',1147642515),(1,'

        Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of support you purchase, you get WebGUI Documentation included in your purchase.

        ','ix1p0AbwKAz8QWB-T-HHfg','stevestyle000000000003','stevestyle000000000003',1147642516),(1,'\n

        \nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n

        \n

        \nWorkflow & Versioning - Never again worry about content getting put on your site that you don\'t want there. Never again lose your old content after making an edit. And never again push out new changes until you\'re absolutely ready to release them. WebGUI\'s workflow and versioning system is fast, flexible, powerful, and easy to use.\n

        \n

        \nEverything\'s a Template - Worry nevermore about your CMS forcing you into a mould that doesn\'t suit you. With WebGUI everything a site visitor can see is a customizable template, so you can make it look exactly how you want. Moreover if you\'re the type that strives for excellence rest in the knowledge that all the templates that come with WebGUI are XHTML 1.0 strict compliant.\n

        \n

        \nLocalization - WebGUI\'s entire user interface is set up to be internationalized. Visit one of the WebGUI Worldwide member sites to get translations for your language. Stay there to get support and services in your native language. Feel confident in the knowledge that WebGUI will work with your native characters because it\'s UTF-8 compliant. On top of that WebGUI allows you to customize dates, currency, and weights to match your locale. \n

        \n

        \nPluggable By Design - With WebGUI 7 you have many plug-in points to add your own functionality. And best of all, the API is stable and standardized. Write it today and it will still work years from now and survive all upgrades.\n

        \n','IWFxZDyGhQ3-SLZhELa3qw','stevestyle000000000003','stevestyle000000000003',1147642514),(1,'

        The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy enough for the average business user, but powerful enough for any large enterprise.

        \n\n

        There are thousands of small and large businesses, schools, universities, governments, associations, clubs, churches, projects, and communities using WebGUI all over the world today. A brief list of some of them can be found here. Your site should be on that list.

        \n\n

        If you\'re new to WebGUI, click here to learn how to get started. If you\'re getting up to speed, check out some ways you can do more faster. If this is all old hat to you, then check out the latest news. No matter what level you\'re at tell your friends about WebGUI.

        ','OhdaFLE7sXOzo_SIP2ZUgA','stevestyle000000000003','stevestyle000000000003',1147642513),(0,'This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','fK-HMSboA3uu0c1KYkYspA','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'pJd5TLAjfWMVXD6sCRLwUg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'68sKwDgf9cGH58-NZcU4lg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'_iHetEvMQUOoxS-T2CM0sQ','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'8Bb8gu-me2mhL3ljFyiWLg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'2TqQc4OISddWCZmRY1_m8A','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'Swf6L8poXKc7hUaNPkBevw','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'x3OFY6OJh_qsXkZfPwug4A','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(1,NULL,'PBasset000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'7-0-style0000000000026','PBtmpl0000000000000060','',1147642499),(0,NULL,'PBnav00000000000000001','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000014','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000015','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000016','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000017','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000018','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000019','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000020','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000021','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000006','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000007','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000008','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000009','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000010','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000011','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000012','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000013','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(1,'

        Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site.

        ','Wl8WZ43g2rK5AYr9o4zY7w','stevestyle000000000003','stevestyle000000000003',1147642516),(0,NULL,'7-0-style0000000000070','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642510),(1,'

        Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of experience reading, writing, and speaking many languages.

        ','LBuiKzg2mWwmOPS9AgV3bg','stevestyle000000000003','stevestyle000000000003',1147642517),(1,'

        Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate programs to ensure your site gets the traffic it needs.

        ','jTNggl7AoVSUc_ZzrvuCmw','stevestyle000000000003','stevestyle000000000003',1147642517),(1,NULL,'7-0-style0000000000001','PBtmpl0000000000000060','',1147642492),(1,'\n

        \nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n

        \n

        NOTE: Click on the green start icon on the video to begin your tutorial.

        ','bX5rYxb6tZ9docY6sUhBlw','stevestyle000000000003','stevestyle000000000003',1147642514),(1,NULL,'7-0-style0000000000031','PBtmpl0000000000000060','',1147642500),(0,NULL,'7-0-style0000000000025','PBtmpl0000000000000060','',1147642498),(1,NULL,'PBasset000000000000003','PBtmpl0000000000000060','PBtmpl0000000000000111',1147642437),(1,NULL,'nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000060','',1147642465),(1,NULL,'TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000060','',1147642465),(1,NULL,'GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642466),(1,NULL,'S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000060','',1147642468),(1,NULL,'tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000060','',1147642469),(1,NULL,'GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000060','',1147642470),(1,NULL,'N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000060','',1147642470),(1,NULL,'tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000060','',1147642470),(1,NULL,'-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803056),(1,NULL,'3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000060','',1147642470),(1,NULL,'cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000060','',1147642475),(1,NULL,'bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000060','',1147642475),(1,NULL,'BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000060','',1147642475),(1,NULL,'jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000060','',1147642477),(1,NULL,'VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000060','',1147642477),(1,NULL,'f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000060','',1147642479),(1,NULL,'Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000060','',1147642479),(0,'Tell a friend about WebGUI.','Szs5eev3OMssmnsyLRZmWA','stevestyle000000000003','PBtmpl0000000000000111',1213317790),(1,NULL,'bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000060','',1147642480),(1,NULL,'Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000060','',1147642480),(1,NULL,'RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000060','',1147642480),(1,NULL,'oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000060','',1147642482),(1,NULL,'9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000060','',1147642483),(1,NULL,'CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000060','',1147642484),(1,NULL,'TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000060','',1147642484),(1,NULL,'pbproto000000000000002','PBtmpl0000000000000060','',1163019036),(1,NULL,'tempspace0000000000000','PBtmpl0000000000000060','PBtmpl0000000000000060',1185754574),(1,NULL,'kaPRSaf8UKiskiGEgJgLAw','2p9ygcqH_Z11qOUvQ1uBvw','PBtmpl0000000000000111',1197330678),(1,'

        WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization.

        ','FOvmwGC0GtZo5VTxJIL3OA','stevestyle000000000003','stevestyle000000000003',1207068851),(1,NULL,'Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000060','PBtmpl0000000000000111',1213244777),(1,'

         

        ','-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1209325764),(1,'

         

        ','4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000060','PBtmpl0000000000000111',1208725439),(1,NULL,'aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000060','PBtmpl0000000000000060',1213283425),(1,NULL,'TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1211664878),(1,NULL,'6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1210777115),(1,NULL,'gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1212086102),(1,NULL,'6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000060','PBtmpl0000000000000111',1209509389),(1,NULL,'C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1212160830),(1,NULL,'aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000060','PBtmpl0000000000000060',1213122695),(1,'

         

        ','gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000060','PBtmpl0000000000000111',1213734379),(1,'

        There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction.

        \n

        \n

        \n
          \n
        • Primer - A downloadable PDF that shows you the basics of publishing content in WebGUI.
        • \n
        • Wiki - Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials.
        • \n
        • Worldwide - A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI.
        • \n
        • API Docs - The documentation of all of the WebGUI source code.
        • \n
        • Template Help - The documentation of all of WebGUI\'s template variables.
        • \n
        \n

         

        ','j_1qEqM6iLfQLiR6VKy0aA','stevestyle000000000003','PBtmpl0000000000000111',1215718151),(1,'

        Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of the latest WebGUI features. Visit the book store today to stock your WebGUI library. Other than hands on training, there is no better way to hone your WebGUI skills. No matter what your need, Plain Black has created a book that\'s right for you and is creating new books each year.

        ','diZvW4bSgZWwyyGP3qXi1g','stevestyle000000000003','PBtmpl0000000000000111',1215717972),(1,NULL,'jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000060','PBtmpl0000000000000111',1216250666),(1,'

        With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation.

        ','mTOiwwk3q4k9g5-XykXhPA','stevestyle000000000003','PBtmpl0000000000000111',1218149728),(1,NULL,'2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803070),(1,NULL,'1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803099),(1,NULL,'zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803114),(1,NULL,'tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803200),(1,NULL,'GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803205),(1,NULL,'tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803213),(1,NULL,'vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803217),(1,NULL,'hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803234),(1,NULL,'eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803238),(1,NULL,'5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803244),(1,NULL,'rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803249),(1,NULL,'V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803253),(1,NULL,'nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803258),(1,NULL,'y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803264),(1,NULL,'vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803302),(1,NULL,'lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803309),(1,NULL,'huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803313),(1,NULL,'9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803338),(1,NULL,'yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803342),(1,NULL,'pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803347),(1,NULL,'71e17KeduiXgODLMlUxiow','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803352),(1,NULL,'xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803378),(1,NULL,'0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803383),(1,NULL,'taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803387),(1,NULL,'K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803391),(1,NULL,'fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803395),(1,NULL,'oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803399),(1,NULL,'9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803405),(1,NULL,'_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803409),(1,NULL,'Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803478),(1,NULL,'NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803638),(1,NULL,'AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803665),(1,NULL,'F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803673),(1,NULL,'Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803760),(1,NULL,'BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803871),(1,NULL,'X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804045),(1,NULL,'UL-ItI4L1Z6-WSuhuXVvsQ','stevestyle000000000003','PBtmpl0000000000000111',1225139673),(1,NULL,'7-0-style0000000000049','PBtmpl0000000000000060','PBtmpl0000000000000060',1224117144),(0,NULL,'jVKLVakT_iA2010_oEuAwg','PBtmpl0000000000000060','PBtmpl0000000000000060',1224116526),(1,'

         

        ','QpmlAiYZz6VsKBM-_0wXaw','stevestyle000000000003','PBtmpl0000000000000111',1224616691),(1,NULL,'HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000060','PBtmpl0000000000000111',1225404573),(1,NULL,'IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1226011853),(1,NULL,'K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074310),(1,NULL,'_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000060','PBtmpl0000000000000111',1226643205),(1,NULL,'AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000060','PBtmpl0000000000000111',1226659753),(1,NULL,'qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074362),(1,NULL,'5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000060','PBtmpl0000000000000060',1227540002),(1,NULL,'LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000060','PBtmpl0000000000000060',1232673968),(1,NULL,'QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000060','PBtmpl0000000000000111',1233173545),(1,NULL,'HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227634350),(1,NULL,'Vch1Ww7G_JpBhOhXX07RDg','PBtmpl0000000000000060','PBtmpl0000000000000111',1235705952); +INSERT INTO webguiVersion (webguiVersion,versionType,dateApplied) VALUES ('7.6.14','Initial Install',UNIX_TIMESTAMP()); diff --git a/docs/gotcha.txt b/docs/gotcha.txt index dc1d19291..387085911 100644 --- a/docs/gotcha.txt +++ b/docs/gotcha.txt @@ -9,7 +9,8 @@ save you many hours of grief. 7.6.11 -------------------------------------------------------------------- - * WebGUI now requires Params::Validate version 0.81 or greater. + * If upgrading from WebGUI 7.5, you should upgrade to 7.5.40 first, + then you can upgrade to WebGUI 7.6.11 and beyond. 7.6.10 -------------------------------------------------------------------- @@ -74,12 +75,10 @@ save you many hours of grief. * WebGUI now requires XML::FeedPP version 0.36 or greater. * The Syndicated Content asset has been heavily modified. Your templates - and settings should automatically migrate, but in less than 1% of cases - there will be problems that the migration cannot handle. Check your - Syndicated Content assets after upgrade to ensure they are still - working as expected. - - * You must upgrade to 7.6.2 before you can upgrade to 7.6.3. + and settings should automatically migrate, but in less than 1% of cases + there will be problems that the migration cannot handle. Check your + Syndicated Content assets after upgrade to ensure they are still + working as expected. 7.6.1 -------------------------------------------------------------------- diff --git a/docs/legal.txt b/docs/legal.txt index c79894e8b..edcb7d2ec 100644 --- a/docs/legal.txt +++ b/docs/legal.txt @@ -2,7 +2,7 @@ # WebGUI Legal Information # #################################################################### -WebGUI is Copyright 2001-2008 Plain Black Corporation. All rights +WebGUI is Copyright 2001-2009 Plain Black Corporation. All rights reserved. WebGUI Content Engine, WebGUI Runtime Environment, and Plain Black @@ -27,7 +27,7 @@ each file, or this file, or the license file. The notice at the top of each file looks like the following: #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/previousVersion.sql b/docs/previousVersion.sql index 712d29381..5f8a683cc 100644 --- a/docs/previousVersion.sql +++ b/docs/previousVersion.sql @@ -1,106 +1,106 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Article` ( - `linkTitle` varchar(255) default NULL, + `linkTitle` char(255) default NULL, `linkURL` text, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '3600', - `storageId` varchar(22) character set utf8 collate utf8_bin default NULL, + `storageId` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Calendar` ( - `assetId` varchar(22) NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) unsigned NOT NULL default '0', `defaultDate` enum('current','first','last') default 'current', `defaultView` enum('month','week','day','list') default 'month', `visitorCacheTimeout` int(11) unsigned default NULL, - `templateIdMonth` varchar(22) default 'CalendarMonth000000001', - `templateIdWeek` varchar(22) default 'CalendarWeek0000000001', - `templateIdDay` varchar(22) default 'CalendarDay00000000001', - `templateIdEvent` varchar(22) default 'CalendarEvent000000001', - `templateIdEventEdit` varchar(22) default 'CalendarEventEdit00001', - `templateIdSearch` varchar(22) default 'CalendarSearch00000001', - `templateIdPrintMonth` varchar(22) default 'CalendarPrintMonth0001', - `templateIdPrintWeek` varchar(22) default 'CalendarPrintWeek00001', - `templateIdPrintDay` varchar(22) default 'CalendarPrintDay000001', - `templateIdPrintEvent` varchar(22) default 'CalendarPrintEvent0001', - `groupIdEventEdit` varchar(22) default '3', - `groupIdSubscribed` varchar(22) default NULL, + `templateIdMonth` char(22) default 'CalendarMonth000000001', + `templateIdWeek` char(22) default 'CalendarWeek0000000001', + `templateIdDay` char(22) default 'CalendarDay00000000001', + `templateIdEvent` char(22) default 'CalendarEvent000000001', + `templateIdEventEdit` char(22) default 'CalendarEventEdit00001', + `templateIdSearch` char(22) default 'CalendarSearch00000001', + `templateIdPrintMonth` char(22) default 'CalendarPrintMonth0001', + `templateIdPrintWeek` char(22) default 'CalendarPrintWeek00001', + `templateIdPrintDay` char(22) default 'CalendarPrintDay000001', + `templateIdPrintEvent` char(22) default 'CalendarPrintEvent0001', + `groupIdEventEdit` char(22) default '3', + `groupIdSubscribed` char(22) default NULL, `subscriberNotifyOffset` int(11) default NULL, `sortEventsBy` enum('time','sequencenumber') default 'time', `listViewPageInterval` bigint(20) default NULL, - `templateIdList` varchar(22) default NULL, - `templateIdPrintList` varchar(22) default NULL, + `templateIdList` char(22) default NULL, + `templateIdPrintList` char(22) default NULL, `icalInterval` bigint(20) default NULL, - `workflowIdCommit` varchar(22) character set utf8 collate utf8_bin default NULL, + `workflowIdCommit` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Calendar_feeds` ( - `feedId` varchar(22) NOT NULL, - `assetId` varchar(22) NOT NULL, - `url` varchar(255) NOT NULL, + `feedId` char(22) NOT NULL, + `assetId` char(22) NOT NULL, + `url` char(255) NOT NULL, `lastUpdated` datetime default NULL, - `lastResult` varchar(255) default NULL, - `feedType` varchar(30) NOT NULL, + `lastResult` char(255) default NULL, + `feedType` char(30) NOT NULL, PRIMARY KEY (`feedId`,`assetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Collaboration` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `postGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `canStartThreadGroupId` varchar(22) NOT NULL default '2', + `assetId` char(22) NOT NULL default '', + `postGroupId` char(22) NOT NULL default '2', + `canStartThreadGroupId` char(22) NOT NULL default '2', `karmaPerPost` int(11) NOT NULL default '0', - `collaborationTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `threadTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `postFormTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `searchTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `notificationTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `sortBy` varchar(35) NOT NULL default 'assetData.revisionDate', - `sortOrder` varchar(4) NOT NULL default 'desc', + `collaborationTemplateId` char(22) NOT NULL default '', + `threadTemplateId` char(22) NOT NULL default '', + `postFormTemplateId` char(22) NOT NULL default '', + `searchTemplateId` char(22) NOT NULL default '', + `notificationTemplateId` char(22) NOT NULL default '', + `sortBy` char(35) NOT NULL default 'assetData.revisionDate', + `sortOrder` char(4) NOT NULL default 'desc', `usePreview` int(11) NOT NULL default '1', `addEditStampToPosts` int(11) NOT NULL default '0', `editTimeout` int(11) NOT NULL default '3600', `attachmentsPerPost` int(11) NOT NULL default '0', - `filterCode` varchar(30) NOT NULL default 'javascript', + `filterCode` char(30) NOT NULL default 'javascript', `useContentFilter` int(11) NOT NULL default '1', `threads` int(11) NOT NULL default '0', `views` int(11) NOT NULL default '0', `replies` int(11) NOT NULL default '0', `rating` int(11) NOT NULL default '0', - `lastPostId` varchar(22) character set utf8 collate utf8_bin default NULL, + `lastPostId` char(22) default NULL, `lastPostDate` bigint(20) default NULL, `archiveAfter` int(11) NOT NULL default '31536000', `postsPerPage` int(11) NOT NULL default '10', `threadsPerPage` int(11) NOT NULL default '30', - `subscriptionGroupId` varchar(22) character set utf8 collate utf8_bin default NULL, + `subscriptionGroupId` char(22) default NULL, `allowReplies` int(11) NOT NULL default '0', `displayLastReply` int(11) NOT NULL default '0', - `richEditor` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBrichedit000000000002', + `richEditor` char(22) NOT NULL default 'PBrichedit000000000002', `karmaRatingMultiplier` int(11) NOT NULL default '0', `karmaSpentToRate` int(11) NOT NULL default '0', `revisionDate` bigint(20) NOT NULL default '0', `avatarsEnabled` int(11) NOT NULL default '0', - `approvalWorkflow` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'pbworkflow000000000003', - `threadApprovalWorkflow` varchar(22) NOT NULL default 'pbworkflow000000000003', + `approvalWorkflow` char(22) NOT NULL default 'pbworkflow000000000003', + `threadApprovalWorkflow` char(22) NOT NULL default 'pbworkflow000000000003', `defaultKarmaScale` int(11) NOT NULL default '1', - `mailServer` varchar(255) default NULL, - `mailAccount` varchar(255) default NULL, - `mailPassword` varchar(255) default NULL, - `mailAddress` varchar(255) default NULL, - `mailPrefix` varchar(255) default NULL, + `mailServer` char(255) default NULL, + `mailAccount` char(255) default NULL, + `mailPassword` char(255) default NULL, + `mailAddress` char(255) default NULL, + `mailPrefix` char(255) default NULL, `getMail` int(11) NOT NULL default '0', `getMailInterval` int(11) NOT NULL default '300', - `getMailCronId` varchar(22) character set utf8 collate utf8_bin default NULL, + `getMailCronId` char(22) default NULL, `visitorCacheTimeout` int(11) NOT NULL default '3600', `autoSubscribeToThread` int(11) NOT NULL default '1', `requireSubscriptionForEmailPosting` int(11) NOT NULL default '1', @@ -108,20 +108,20 @@ CREATE TABLE `Collaboration` ( `maxImageSize` int(11) NOT NULL default '0', `enablePostMetaData` int(11) NOT NULL default '0', `useCaptcha` int(11) NOT NULL default '0', - `groupToEditPost` varchar(22) NOT NULL, + `groupToEditPost` char(22) NOT NULL, `archiveEnabled` int(1) default '1', - `postReceivedTemplateId` varchar(22) default 'default-post-received', + `postReceivedTemplateId` char(22) default 'default-post-received', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Dashboard` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `revisionDate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `adminsGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '4', - `usersGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'DashboardViewTmpl00001', + `assetId` char(22) NOT NULL default '', + `revisionDate` char(22) NOT NULL default '', + `adminsGroupId` char(22) NOT NULL default '4', + `usersGroupId` char(22) NOT NULL default '2', + `templateId` char(22) NOT NULL default 'DashboardViewTmpl00001', `isInitialized` tinyint(3) unsigned NOT NULL default '0', `assetsToHide` text, PRIMARY KEY (`assetId`,`revisionDate`) @@ -132,14 +132,14 @@ SET character_set_client = utf8; CREATE TABLE `DataForm` ( `acknowledgement` text, `mailData` int(11) NOT NULL default '1', - `emailTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `acknowlegementTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `listTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `emailTemplateId` char(22) NOT NULL default '', + `acknowlegementTemplateId` char(22) NOT NULL default '', + `listTemplateId` char(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `defaultView` int(11) NOT NULL default '0', `revisionDate` bigint(20) NOT NULL default '0', - `groupToViewEntries` varchar(22) NOT NULL default '7', + `groupToViewEntries` char(22) NOT NULL default '7', `mailAttachments` int(11) default '0', `useCaptcha` int(1) default '0', `storeData` int(1) default '1', @@ -152,11 +152,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `DataForm_entry` ( - `DataForm_entryId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `username` varchar(255) default NULL, - `ipAddress` varchar(255) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `DataForm_entryId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `username` char(255) default NULL, + `ipAddress` char(255) default NULL, + `assetId` char(22) NOT NULL default '', `entryData` mediumtext, `submissionDate` datetime default NULL, PRIMARY KEY (`DataForm_entryId`), @@ -167,22 +167,22 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `DataTable` ( - `assetId` varchar(22) character set latin1 collate latin1_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `data` longtext, - `templateId` varchar(22) character set latin1 collate latin1_bin default NULL, + `templateId` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSBadge` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `price` float NOT NULL default '0', `seatsAvailable` int(11) NOT NULL default '100', `relatedBadgeGroups` mediumtext, - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `templateId` char(22) NOT NULL, `earlyBirdPrice` float NOT NULL default '0', `earlyBirdPriceEndDate` bigint(20) default NULL, `preRegistrationPrice` float NOT NULL default '0', @@ -193,19 +193,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSBadgeGroup` ( - `badgeGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `emsAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(100) default NULL, + `badgeGroupId` char(22) NOT NULL, + `emsAssetId` char(22) NOT NULL, + `name` char(100) default NULL, PRIMARY KEY (`badgeGroupId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSEventMetaField` ( - `fieldId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin default NULL, - `label` varchar(100) default NULL, - `dataType` varchar(20) default NULL, + `fieldId` char(22) NOT NULL, + `assetId` char(22) default NULL, + `label` char(100) default NULL, + `dataType` char(20) default NULL, `visible` tinyint(4) default '0', `required` tinyint(4) default '0', `possibleValues` text, @@ -217,26 +217,26 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRegistrant` ( - `badgeId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, + `badgeId` char(22) NOT NULL, + `userId` char(22) default NULL, `badgeNumber` int(11) NOT NULL auto_increment, - `badgeAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `emsAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(35) character set utf8 collate utf8_bin NOT NULL, - `address1` varchar(35) default NULL, - `address2` varchar(35) default NULL, - `address3` varchar(35) default NULL, - `city` varchar(35) default NULL, - `state` varchar(35) default NULL, - `zipcode` varchar(35) default NULL, - `country` varchar(35) default NULL, - `phoneNumber` varchar(35) default NULL, - `organization` varchar(35) default NULL, - `email` varchar(255) default NULL, + `badgeAssetId` char(22) NOT NULL, + `emsAssetId` char(22) NOT NULL, + `name` char(35) NOT NULL, + `address1` char(35) default NULL, + `address2` char(35) default NULL, + `address3` char(35) default NULL, + `city` char(35) default NULL, + `state` char(35) default NULL, + `zipcode` char(35) default NULL, + `country` char(35) default NULL, + `phoneNumber` char(35) default NULL, + `organization` char(35) default NULL, + `email` char(255) default NULL, `notes` mediumtext, `purchaseComplete` tinyint(1) default NULL, `hasCheckedIn` tinyint(1) default NULL, - `transactionItemId` varchar(22) character set utf8 collate utf8_bin default NULL, + `transactionItemId` char(22) default NULL, PRIMARY KEY (`badgeId`), UNIQUE KEY `badgeNumber` (`badgeNumber`), KEY `badgeAssetId_purchaseComplete` (`badgeAssetId`,`purchaseComplete`) @@ -245,19 +245,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRegistrantRibbon` ( - `badgeId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `ribbonAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `transactionItemId` varchar(22) character set utf8 collate utf8_bin default NULL, + `badgeId` char(22) NOT NULL, + `ribbonAssetId` char(22) NOT NULL, + `transactionItemId` char(22) default NULL, PRIMARY KEY (`badgeId`,`ribbonAssetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRegistrantTicket` ( - `badgeId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `ticketAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `badgeId` char(22) NOT NULL, + `ticketAssetId` char(22) NOT NULL, `purchaseComplete` tinyint(1) default NULL, - `transactionItemId` varchar(22) character set utf8 collate utf8_bin default NULL, + `transactionItemId` char(22) default NULL, PRIMARY KEY (`badgeId`,`ticketAssetId`), KEY `ticketAssetId_purchaseComplete` (`ticketAssetId`,`purchaseComplete`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -265,8 +265,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRegistrantToken` ( - `badgeId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `tokenAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `badgeId` char(22) NOT NULL, + `tokenAssetId` char(22) NOT NULL, `quantity` int(11) default NULL, `transactionItemIds` text character set utf8 collate utf8_bin, PRIMARY KEY (`badgeId`,`tokenAssetId`) @@ -275,7 +275,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSRibbon` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `percentageDiscount` float NOT NULL default '10', `price` float NOT NULL default '0', @@ -285,14 +285,14 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSTicket` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `price` float NOT NULL default '0', `seatsAvailable` int(11) NOT NULL default '100', `startDate` datetime default NULL, `duration` float NOT NULL default '1', `eventNumber` int(11) default NULL, - `location` varchar(100) default NULL, + `location` char(100) default NULL, `relatedBadgeGroups` mediumtext, `relatedRibbons` mediumtext, `eventMetaData` mediumtext, @@ -302,7 +302,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EMSToken` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `price` float NOT NULL default '0', PRIMARY KEY (`assetId`,`revisionDate`) @@ -311,10 +311,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Event` ( - `assetId` varchar(22) NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) unsigned NOT NULL, - `feedId` varchar(22) default NULL, - `feedUid` varchar(255) default NULL, + `feedId` char(22) default NULL, + `feedUid` char(255) default NULL, `startDate` date default NULL, `endDate` date default NULL, `userDefined1` text, @@ -322,14 +322,14 @@ CREATE TABLE `Event` ( `userDefined3` text, `userDefined4` text, `userDefined5` text, - `recurId` varchar(22) default NULL, + `recurId` char(22) default NULL, `description` longtext, `startTime` time default NULL, `endTime` time default NULL, `relatedLinks` longtext, - `location` varchar(255) default NULL, - `storageId` varchar(22) NOT NULL, - `timeZone` varchar(255) character set utf8 collate utf8_bin default 'America/Chicago', + `location` char(255) default NULL, + `storageId` char(22) NOT NULL, + `timeZone` char(255) default 'America/Chicago', `sequenceNumber` bigint(20) default NULL, `iCalSequenceNumber` int(11) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) @@ -338,52 +338,52 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `EventManagementSystem` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `groupToApproveEvents` varchar(22) character set utf8 collate utf8_bin default NULL, - `timezone` varchar(30) NOT NULL default 'America/Chicago', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2rC4ErZ3c77OJzJm7O5s3w', - `badgeBuilderTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'BMybD3cEnmXVk2wQ_qEsRQ', - `lookupRegistrantTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'OOyMH33plAy6oCj_QWrxtg', - `printBadgeTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PsFn7dJt4wMwBa8hiE3hOA', - `printTicketTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'yBwydfooiLvhEFawJb0VTQ', + `groupToApproveEvents` char(22) default NULL, + `timezone` char(30) NOT NULL default 'America/Chicago', + `templateId` char(22) NOT NULL default '2rC4ErZ3c77OJzJm7O5s3w', + `badgeBuilderTemplateId` char(22) NOT NULL default 'BMybD3cEnmXVk2wQ_qEsRQ', + `lookupRegistrantTemplateId` char(22) NOT NULL default 'OOyMH33plAy6oCj_QWrxtg', + `printBadgeTemplateId` char(22) NOT NULL default 'PsFn7dJt4wMwBa8hiE3hOA', + `printTicketTemplateId` char(22) NOT NULL default 'yBwydfooiLvhEFawJb0VTQ', `badgeInstructions` mediumtext, `ribbonInstructions` mediumtext, `ticketInstructions` mediumtext, `tokenInstructions` mediumtext, - `registrationStaffGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `registrationStaffGroupId` char(22) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Event_recur` ( - `recurId` varchar(22) NOT NULL, - `recurType` varchar(16) default NULL, - `pattern` varchar(255) default NULL, + `recurId` char(22) NOT NULL, + `recurType` char(16) default NULL, + `pattern` char(255) default NULL, `startDate` date default NULL, - `endDate` varchar(10) default NULL, + `endDate` char(10) default NULL, PRIMARY KEY (`recurId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Event_relatedlink` ( - `eventlinkId` varchar(22) NOT NULL, - `assetId` varchar(22) NOT NULL, + `eventlinkId` char(22) NOT NULL, + `assetId` char(22) NOT NULL, `linkURL` tinytext, - `linktext` varchar(80) default NULL, - `groupIdView` varchar(22) NOT NULL, + `linktext` char(80) default NULL, + `groupIdView` char(22) NOT NULL, `sequenceNumber` bigint(20) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `FileAsset` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `storageId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `filename` varchar(255) NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `storageId` char(22) NOT NULL default '', + `filename` char(255) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '3600', PRIMARY KEY (`assetId`,`revisionDate`) @@ -392,9 +392,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `FlatDiscount` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '63ix2-hU0FchXGIWkG3tow', + `templateId` char(22) NOT NULL default '63ix2-hU0FchXGIWkG3tow', `mustSpend` float NOT NULL default '0', `percentageDiscount` int(3) NOT NULL default '0', `priceDiscount` float NOT NULL default '0', @@ -405,8 +405,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Folder` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `visitorCacheTimeout` int(11) NOT NULL default '3600', `sortAlphabetically` int(11) NOT NULL default '0', @@ -417,39 +417,39 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Gallery` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `groupIdAddComment` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupIdAddFile` varchar(22) character set utf8 collate utf8_bin default NULL, + `groupIdAddComment` char(22) default NULL, + `groupIdAddFile` char(22) default NULL, `imageResolutions` text, `imageViewSize` int(11) default NULL, `imageThumbnailSize` int(11) default NULL, - `maxSpacePerUser` varchar(20) default NULL, - `richEditIdComment` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdAddArchive` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdDeleteAlbum` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdDeleteFile` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdEditAlbum` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdEditFile` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdListAlbums` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdListAlbumsRss` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdListFilesForUser` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdListFilesForUserRss` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdMakeShortcut` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdSearch` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewSlideshow` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewThumbnails` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewAlbum` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewAlbumRss` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdViewFile` varchar(22) character set utf8 collate utf8_bin default NULL, - `viewAlbumAssetId` varchar(22) default NULL, + `maxSpacePerUser` char(20) default NULL, + `richEditIdComment` char(22) default NULL, + `templateIdAddArchive` char(22) default NULL, + `templateIdDeleteAlbum` char(22) default NULL, + `templateIdDeleteFile` char(22) default NULL, + `templateIdEditAlbum` char(22) default NULL, + `templateIdEditFile` char(22) default NULL, + `templateIdListAlbums` char(22) default NULL, + `templateIdListAlbumsRss` char(22) default NULL, + `templateIdListFilesForUser` char(22) default NULL, + `templateIdListFilesForUserRss` char(22) default NULL, + `templateIdMakeShortcut` char(22) default NULL, + `templateIdSearch` char(22) default NULL, + `templateIdViewSlideshow` char(22) default NULL, + `templateIdViewThumbnails` char(22) default NULL, + `templateIdViewAlbum` char(22) default NULL, + `templateIdViewAlbumRss` char(22) default NULL, + `templateIdViewFile` char(22) default NULL, + `viewAlbumAssetId` char(22) default NULL, `viewDefault` enum('album','list') default NULL, - `viewListOrderBy` varchar(40) default NULL, + `viewListOrderBy` char(40) default NULL, `viewListOrderDirection` enum('ASC','DESC') default NULL, - `workflowIdCommit` varchar(22) character set utf8 collate utf8_bin default NULL, - `templateIdEditComment` varchar(22) character set utf8 collate utf8_bin default NULL, - `richEditIdAlbum` varchar(22) character set utf8 collate utf8_bin default NULL, - `richEditIdFile` varchar(22) character set utf8 collate utf8_bin default NULL, + `workflowIdCommit` char(22) default NULL, + `templateIdEditComment` char(22) default NULL, + `richEditIdAlbum` char(22) default NULL, + `richEditIdFile` char(22) default NULL, `defaultFilesPerPage` int(11) default NULL, `imageDensity` int(11) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) @@ -458,10 +458,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `GalleryAlbum` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `allowComments` int(11) default NULL, - `assetIdThumbnail` varchar(22) character set utf8 collate utf8_bin default NULL, + `assetIdThumbnail` char(22) default NULL, `userDefined1` text, `userDefined2` text, `userDefined3` text, @@ -474,7 +474,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `GalleryFile` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `userDefined1` longtext, `userDefined2` longtext, @@ -490,10 +490,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `GalleryFile_comment` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `commentId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, - `visitorIp` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `commentId` char(22) NOT NULL, + `userId` char(22) default NULL, + `visitorIp` char(255) default NULL, `creationDate` datetime default NULL, `bodyText` longtext, PRIMARY KEY (`assetId`,`commentId`), @@ -506,18 +506,18 @@ CREATE TABLE `HttpProxy` ( `proxiedUrl` text, `timeout` int(11) default NULL, `removeStyle` int(11) default NULL, - `filterHtml` varchar(30) default NULL, + `filterHtml` char(30) default NULL, `followExternal` int(11) default NULL, `followRedirect` int(11) default NULL, `cacheHttp` int(11) default '0', `useCache` int(11) default '0', `debug` int(11) default '0', `rewriteUrls` int(11) default NULL, - `searchFor` varchar(255) default NULL, - `stopAt` varchar(255) default NULL, - `cookieJarStorageId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `searchFor` char(255) default NULL, + `stopAt` char(255) default NULL, + `cookieJarStorageId` char(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '0', `useAmpersand` int(11) NOT NULL default '0', @@ -528,19 +528,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ITransact_recurringStatus` ( - `gatewayId` varchar(128) NOT NULL default '', + `gatewayId` char(128) NOT NULL default '', `initDate` bigint(20) NOT NULL default '0', `lastTransaction` bigint(20) NOT NULL default '0', - `status` varchar(10) NOT NULL default '', - `errorMessage` varchar(128) default NULL, - `recipe` varchar(15) NOT NULL default '', + `status` char(10) NOT NULL default '', + `errorMessage` char(128) default NULL, + `recipe` char(15) NOT NULL default '', PRIMARY KEY (`gatewayId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ImageAsset` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `thumbnailSize` int(11) NOT NULL default '50', `parameters` text, `revisionDate` bigint(20) NOT NULL default '0', @@ -550,13 +550,13 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `InOutBoard` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', `statusList` text, - `reportViewerGroup` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `inOutGroup` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `inOutTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'IOB0000000000000000001', - `reportTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'IOB0000000000000000002', + `reportViewerGroup` char(22) NOT NULL default '3', + `inOutGroup` char(22) NOT NULL default '2', + `inOutTemplateId` char(22) NOT NULL default 'IOB0000000000000000001', + `reportTemplateId` char(22) NOT NULL default 'IOB0000000000000000002', `paginateAfter` int(11) NOT NULL default '50', `reportPaginateAfter` int(11) NOT NULL default '50', PRIMARY KEY (`assetId`,`revisionDate`) @@ -565,17 +565,17 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `InOutBoard_delegates` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `delegateUserId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL + `userId` char(22) NOT NULL, + `delegateUserId` char(22) NOT NULL, + `assetId` char(22) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `InOutBoard_status` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `status` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `userId` char(22) NOT NULL, + `status` char(255) default NULL, `dateStamp` int(11) NOT NULL, `message` text ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -583,35 +583,35 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `InOutBoard_statusLog` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `status` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `userId` char(22) NOT NULL, + `status` char(255) default NULL, `dateStamp` int(11) NOT NULL, `message` text, - `createdBy` varchar(22) character set utf8 collate utf8_bin default NULL + `createdBy` char(22) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Layout` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `contentPositions` text, `assetsToHide` text, `revisionDate` bigint(20) NOT NULL default '0', - `assetOrder` varchar(20) default 'asc', + `assetOrder` char(20) default 'asc', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Matrix` ( - `detailTemplateId` varchar(22) character set utf8 collate utf8_bin default NULL, - `compareTemplateId` varchar(22) character set utf8 collate utf8_bin default NULL, - `searchTemplateId` varchar(22) character set utf8 collate utf8_bin default NULL, + `detailTemplateId` char(22) default NULL, + `compareTemplateId` char(22) default NULL, + `searchTemplateId` char(22) default NULL, `categories` text, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `maxComparisons` int(11) NOT NULL default '10', `maxComparisonsPrivileged` int(11) NOT NULL default '10', @@ -657,30 +657,30 @@ CREATE TABLE `MatrixListing_attribute` ( `matrixListingId` char(22) NOT NULL, `attributeId` char(22) NOT NULL, `value` char(255) default NULL, - PRIMARY KEY (`matrixId`,`matrixListingId`,`attributeId`) + PRIMARY KEY (`attributeId`,`matrixListingId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `MatrixListing_rating` ( `timeStamp` int(11) NOT NULL default '0', - `category` varchar(255) default NULL, + `category` char(255) default NULL, `rating` int(11) NOT NULL default '1', - `listingId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ipAddress` varchar(15) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin default NULL + `listingId` char(22) NOT NULL default '', + `ipAddress` char(15) default NULL, + `assetId` char(22) NOT NULL default '', + `userId` char(22) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `MatrixListing_ratingSummary` ( - `listingId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `category` varchar(255) NOT NULL default '', + `listingId` char(22) NOT NULL default '', + `category` char(255) NOT NULL default '', `meanValue` decimal(3,2) default NULL, `medianValue` int(11) default NULL, `countValue` int(11) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', PRIMARY KEY (`listingId`,`category`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -688,12 +688,12 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Matrix_attribute` ( `attributeId` char(22) NOT NULL, - `category` varchar(255) NOT NULL default '', - `name` varchar(255) default NULL, + `category` char(255) NOT NULL default '', + `name` char(255) default NULL, `description` text, `fieldType` char(255) NOT NULL default 'MatrixCompare', - `defaultValue` varchar(255) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `defaultValue` char(255) default NULL, + `assetId` char(22) NOT NULL default '', `options` text, PRIMARY KEY (`attributeId`), KEY `categoryIndex` (`category`) @@ -702,8 +702,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `MessageBoard` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `visitorCacheTimeout` int(11) NOT NULL default '3600', PRIMARY KEY (`assetId`,`revisionDate`) @@ -712,9 +712,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `MultiSearch` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `revisionDate` bigint(20) unsigned NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'MultiSearchTmpl0000001', + `templateId` char(22) NOT NULL default 'MultiSearchTmpl0000001', `predefinedSearches` text, `cacheTimeout` int(11) NOT NULL default '3600', PRIMARY KEY (`assetId`,`revisionDate`) @@ -723,18 +723,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Navigation` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `assetsToInclude` text, - `startType` varchar(35) default NULL, - `startPoint` varchar(255) default NULL, + `startType` char(35) default NULL, + `startPoint` char(255) default NULL, `descendantEndPoint` int(11) NOT NULL default '55', `showSystemPages` int(11) NOT NULL default '0', `showHiddenPages` int(11) NOT NULL default '0', `showUnprivilegedPages` int(11) NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `templateId` char(22) NOT NULL default '', `ancestorEndPoint` int(11) NOT NULL default '55', `revisionDate` bigint(20) NOT NULL default '0', - `mimeType` varchar(50) default 'text/html', + `mimeType` char(50) default 'text/html', `reversePageLoop` tinyint(1) default '0', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -742,10 +742,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Newsletter` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `newsletterTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'newsletter000000000001', - `mySubscriptionsTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'newslettersubscrip0001', + `newsletterTemplateId` char(22) NOT NULL default 'newsletter000000000001', + `mySubscriptionsTemplateId` char(22) NOT NULL default 'newslettersubscrip0001', `newsletterHeader` mediumtext, `newsletterFooter` mediumtext, `newsletterCategories` text, @@ -755,8 +755,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Newsletter_subscriptions` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, + `userId` char(22) NOT NULL, `subscriptions` text, `lastTimeSent` bigint(20) NOT NULL default '0', PRIMARY KEY (`assetId`,`userId`), @@ -766,42 +766,42 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `PM_project` ( - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin default NULL, - `name` varchar(255) NOT NULL, + `projectId` char(22) NOT NULL, + `assetId` char(22) default NULL, + `name` char(255) NOT NULL, `description` text, `startDate` bigint(20) default NULL, `endDate` bigint(20) default NULL, - `projectManager` varchar(22) character set utf8 collate utf8_bin default NULL, + `projectManager` char(22) default NULL, `durationUnits` enum('hours','days') default 'hours', `hoursPerDay` float default NULL, `targetBudget` float(15,2) default '0.00', `percentComplete` float NOT NULL default '0', - `parentId` varchar(22) character set utf8 collate utf8_bin default NULL, + `parentId` char(22) default NULL, `creationDate` bigint(20) NOT NULL, - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `lastUpdatedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `createdBy` char(22) NOT NULL, + `lastUpdatedBy` char(22) NOT NULL, `lastUpdateDate` bigint(20) NOT NULL, - `projectObserver` varchar(22) character set utf8 collate utf8_bin default '7', + `projectObserver` char(22) default '7', PRIMARY KEY (`projectId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `PM_task` ( - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskName` varchar(255) NOT NULL, + `taskId` char(22) NOT NULL, + `projectId` char(22) NOT NULL, + `taskName` char(255) NOT NULL, `duration` float default NULL, `startDate` bigint(20) default NULL, `endDate` bigint(20) default NULL, - `dependants` varchar(50) default NULL, - `parentId` varchar(22) character set utf8 collate utf8_bin default NULL, + `dependants` char(50) default NULL, + `parentId` char(22) default NULL, `percentComplete` float default NULL, `sequenceNumber` int(11) NOT NULL default '1', `creationDate` bigint(20) NOT NULL, - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `lastUpdatedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `createdBy` char(22) NOT NULL, + `lastUpdatedBy` char(22) NOT NULL, `lastUpdateDate` bigint(20) NOT NULL, `lagTime` bigint(20) default '0', `taskType` enum('timed','progressive','milestone') NOT NULL default 'timed', @@ -811,11 +811,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `PM_taskResource` ( - `taskResourceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `taskResourceId` char(22) NOT NULL, + `taskId` char(22) NOT NULL, `sequenceNumber` int(11) NOT NULL, `resourceKind` enum('user','group') NOT NULL, - `resourceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `resourceId` char(22) NOT NULL, PRIMARY KEY (`taskResourceId`), UNIQUE KEY `taskId` (`taskId`,`resourceKind`,`resourceId`), UNIQUE KEY `taskId_2` (`taskId`,`sequenceNumber`) @@ -824,34 +824,34 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `PM_wobject` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `projectDashboardTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0001', - `projectDisplayTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0002', - `ganttChartTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0003', - `editTaskTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0004', - `groupToAdd` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', + `assetId` char(22) NOT NULL, + `projectDashboardTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0001', + `projectDisplayTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0002', + `ganttChartTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0003', + `editTaskTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0004', + `groupToAdd` char(22) NOT NULL default '3', `revisionDate` bigint(20) NOT NULL, - `resourcePopupTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0005', - `resourceListTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'ProjectManagerTMPL0006', + `resourcePopupTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0005', + `resourceListTemplateId` char(22) NOT NULL default 'ProjectManagerTMPL0006', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Photo` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `exifData` longtext, - `location` varchar(255) default NULL, + `location` char(255) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Photo_rating` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, - `visitorIp` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `userId` char(22) default NULL, + `visitorIp` char(255) default NULL, `rating` int(11) default NULL, KEY `assetId` (`assetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -861,32 +861,32 @@ SET character_set_client = utf8; CREATE TABLE `Poll` ( `active` int(11) NOT NULL default '1', `graphWidth` int(11) NOT NULL default '150', - `voteGroup` varchar(22) default NULL, - `question` varchar(255) default NULL, - `a1` varchar(255) default NULL, - `a2` varchar(255) default NULL, - `a3` varchar(255) default NULL, - `a4` varchar(255) default NULL, - `a5` varchar(255) default NULL, - `a6` varchar(255) default NULL, - `a7` varchar(255) default NULL, - `a8` varchar(255) default NULL, - `a9` varchar(255) default NULL, - `a10` varchar(255) default NULL, - `a11` varchar(255) default NULL, - `a12` varchar(255) default NULL, - `a13` varchar(255) default NULL, - `a14` varchar(255) default NULL, - `a15` varchar(255) default NULL, - `a16` varchar(255) default NULL, - `a17` varchar(255) default NULL, - `a18` varchar(255) default NULL, - `a19` varchar(255) default NULL, - `a20` varchar(255) default NULL, + `voteGroup` char(22) default NULL, + `question` char(255) default NULL, + `a1` char(255) default NULL, + `a2` char(255) default NULL, + `a3` char(255) default NULL, + `a4` char(255) default NULL, + `a5` char(255) default NULL, + `a6` char(255) default NULL, + `a7` char(255) default NULL, + `a8` char(255) default NULL, + `a9` char(255) default NULL, + `a10` char(255) default NULL, + `a11` char(255) default NULL, + `a12` char(255) default NULL, + `a13` char(255) default NULL, + `a14` char(255) default NULL, + `a15` char(255) default NULL, + `a16` char(255) default NULL, + `a17` char(255) default NULL, + `a18` char(255) default NULL, + `a19` char(255) default NULL, + `a20` char(255) default NULL, `karmaPerVote` int(11) NOT NULL default '0', `randomizeAnswers` int(11) NOT NULL default '0', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `graphConfiguration` blob, `generateGraph` tinyint(1) default NULL, @@ -897,26 +897,26 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Poll_answer` ( `answer` char(3) default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ipAddress` varchar(50) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '' + `userId` char(22) NOT NULL default '', + `ipAddress` char(50) default NULL, + `assetId` char(22) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Post` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `threadId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `username` varchar(30) default NULL, + `assetId` char(22) NOT NULL default '', + `threadId` char(22) NOT NULL default '', + `username` char(30) default NULL, `content` mediumtext, `views` int(11) NOT NULL default '0', - `contentType` varchar(35) NOT NULL default 'mixed', + `contentType` char(35) NOT NULL default 'mixed', `userDefined1` text, `userDefined2` text, `userDefined3` text, `userDefined4` text, `userDefined5` text, - `storageId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `storageId` char(22) NOT NULL default '', `rating` int(11) NOT NULL default '0', `revisionDate` bigint(20) NOT NULL default '0', `originalEmail` mediumtext, @@ -927,9 +927,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Post_rating` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ipAddress` varchar(15) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `ipAddress` char(15) NOT NULL default '', `dateOfRating` bigint(20) default NULL, `rating` int(11) NOT NULL default '0', KEY `assetId_userId` (`assetId`,`userId`), @@ -939,14 +939,14 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Product` ( - `image1` varchar(255) default NULL, - `image2` varchar(255) default NULL, - `image3` varchar(255) default NULL, - `brochure` varchar(255) default NULL, - `manual` varchar(255) default NULL, - `warranty` varchar(255) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `image1` char(255) default NULL, + `image2` char(255) default NULL, + `image3` char(255) default NULL, + `brochure` char(255) default NULL, + `manual` char(255) default NULL, + `warranty` char(255) default NULL, + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '3600', `thankYouMessage` mediumtext, @@ -963,18 +963,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `RSSCapable` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `rssCapableRssEnabled` int(11) NOT NULL default '1', - `rssCapableRssTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBtmpl0000000000000142', - `rssCapableRssFromParentId` varchar(22) character set utf8 collate utf8_bin default NULL, + `rssCapableRssTemplateId` char(22) NOT NULL default 'PBtmpl0000000000000142', + `rssCapableRssFromParentId` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `RSSFromParent` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -982,7 +982,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `RichEdit` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `askAboutRichEdit` int(11) NOT NULL default '0', `preformatted` int(11) NOT NULL default '0', `editorWidth` int(11) NOT NULL default '0', @@ -994,8 +994,8 @@ CREATE TABLE `RichEdit` ( `removeLineBreaks` int(11) NOT NULL default '0', `npwrap` int(11) NOT NULL default '0', `directionality` char(3) NOT NULL default 'ltr', - `toolbarLocation` varchar(6) NOT NULL default 'bottom', - `cssFile` varchar(255) default NULL, + `toolbarLocation` char(6) NOT NULL default 'bottom', + `cssFile` char(255) default NULL, `validElements` mediumtext, `toolbarRow1` text, `toolbarRow2` text, @@ -1011,8 +1011,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `SQLForm_fieldOrder` ( - `assetId` varchar(22) NOT NULL default '', - `fieldId` varchar(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `fieldId` char(22) NOT NULL default '', `rank` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -1023,26 +1023,26 @@ CREATE TABLE `SQLReport` ( `paginateAfter` int(11) NOT NULL default '50', `preprocessMacros1` int(11) default '0', `debugMode` int(11) NOT NULL default '0', - `databaseLinkId1` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId1` char(22) NOT NULL default '', `placeholderParams1` text, `preprocessMacros2` int(11) default '0', `dbQuery2` text, `placeholderParams2` text, - `databaseLinkId2` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId2` char(22) NOT NULL default '', `preprocessMacros3` int(11) default '0', `dbQuery3` text, `placeholderParams3` text, - `databaseLinkId3` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId3` char(22) NOT NULL default '', `preprocessMacros4` int(11) default '0', `dbQuery4` text, `placeholderParams4` text, - `databaseLinkId4` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId4` char(22) NOT NULL default '', `preprocessMacros5` int(11) default '0', `dbQuery5` text, `placeholderParams5` text, - `databaseLinkId5` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId5` char(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '0', `prequeryStatements1` text, @@ -1050,20 +1050,20 @@ CREATE TABLE `SQLReport` ( `prequeryStatements3` text, `prequeryStatements4` text, `prequeryStatements5` text, - `downloadType` varchar(255) default NULL, - `downloadFilename` varchar(255) default NULL, - `downloadTemplateId` varchar(22) default NULL, - `downloadMimeType` varchar(255) default NULL, - `downloadUserGroup` varchar(22) default NULL, + `downloadType` char(255) default NULL, + `downloadFilename` char(255) default NULL, + `downloadTemplateId` char(22) default NULL, + `downloadMimeType` char(255) default NULL, + `downloadUserGroup` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Shelf` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'nFen0xjkZn8WkpM93C9ceQ', + `templateId` char(22) NOT NULL default 'nFen0xjkZn8WkpM93C9ceQ', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -1074,13 +1074,13 @@ CREATE TABLE `Shortcut` ( `overrideDescription` int(11) NOT NULL default '0', `overrideTemplate` int(11) NOT NULL default '0', `overrideDisplayTitle` int(11) NOT NULL default '0', - `overrideTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `overrideTemplateId` char(22) NOT NULL default '', `shortcutByCriteria` int(11) NOT NULL default '0', - `resolveMultiples` varchar(30) default 'mostRecent', + `resolveMultiples` char(30) default 'mostRecent', `shortcutCriteria` text NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `shortcutToAssetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', + `shortcutToAssetId` char(22) NOT NULL default '', `disableContentLock` int(11) NOT NULL default '0', `revisionDate` bigint(20) NOT NULL default '0', `prefFieldsToShow` text, @@ -1092,8 +1092,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Shortcut_overrides` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `fieldName` varchar(255) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `fieldName` char(255) NOT NULL default '', `newValue` text, PRIMARY KEY (`assetId`,`fieldName`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1101,11 +1101,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `StockData` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'StockListTMPL000000001', - `displayTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'StockListTMPL000000002', + `assetId` char(22) NOT NULL, + `templateId` char(22) NOT NULL default 'StockListTMPL000000001', + `displayTemplateId` char(22) NOT NULL default 'StockListTMPL000000002', `defaultStocks` text, - `source` varchar(50) default 'usa', + `source` char(50) default 'usa', `failover` int(11) default '1', `revisionDate` int(11) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) @@ -1114,14 +1114,14 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Subscription` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `templateId` varchar(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `thankYouMessage` mediumtext, `price` float NOT NULL default '0', - `subscriptionGroup` varchar(22) NOT NULL default '2', - `duration` varchar(12) NOT NULL default 'Monthly', - `executeOnSubscription` varchar(255) default NULL, + `subscriptionGroup` char(22) NOT NULL default '2', + `duration` char(12) NOT NULL default 'Monthly', + `executeOnSubscription` char(255) default NULL, `karma` int(6) default '0', `recurringSubscription` tinyint(1) NOT NULL default '1', `redeemSubscriptionCodeTemplateId` char(22) NOT NULL default '', @@ -1131,21 +1131,21 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Subscription_code` ( - `code` varchar(64) NOT NULL, - `batchId` varchar(22) NOT NULL, - `status` varchar(10) NOT NULL default 'Unused', + `code` char(64) NOT NULL, + `batchId` char(22) NOT NULL, + `status` char(10) NOT NULL default 'Unused', `dateUsed` bigint(20) default NULL, - `usedBy` varchar(22) default NULL, + `usedBy` char(22) default NULL, PRIMARY KEY (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Subscription_codeBatch` ( - `batchId` varchar(22) NOT NULL, - `name` varchar(255) default NULL, + `batchId` char(22) NOT NULL, + `name` char(255) default NULL, `description` mediumtext, - `subscriptionId` varchar(22) NOT NULL, + `subscriptionId` char(22) NOT NULL, `expirationDate` bigint(20) NOT NULL, `dateCreated` bigint(20) NOT NULL, PRIMARY KEY (`batchId`) @@ -1170,7 +1170,7 @@ CREATE TABLE `Survey` ( `sectionEditTemplateId` char(22) default NULL, `surveyTakeTemplateId` char(22) default NULL, `surveyQuestionsId` char(22) default NULL, - `exitURL` varchar(512) default NULL, + `exitURL` text, `surveyJSON` longtext, `timeLimit` mediumint(8) unsigned NOT NULL, `showProgress` tinyint(3) unsigned NOT NULL default '0', @@ -1180,69 +1180,6 @@ CREATE TABLE `Survey` ( SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; -CREATE TABLE `Survey_answer_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_questionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_answerId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `sequenceNumber` int(11) NOT NULL default '1', - `gotoQuestion` varchar(22) character set utf8 collate utf8_bin default NULL, - `answer` varchar(255) default NULL, - `isCorrect` int(11) NOT NULL default '0', - PRIMARY KEY (`Survey_answerId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; -CREATE TABLE `Survey_old` ( - `questionOrder` varchar(30) default NULL, - `groupToTakeSurvey` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `groupToViewReports` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `mode` varchar(30) default NULL, - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `anonymous` char(1) NOT NULL default '0', - `questionsPerPage` int(11) NOT NULL default '1', - `responseTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `overviewTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `maxResponsesPerUser` int(11) NOT NULL default '1', - `questionsPerResponse` int(11) NOT NULL default '9999999', - `gradebookTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `revisionDate` bigint(20) NOT NULL default '0', - `defaultSectionId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; -CREATE TABLE `Survey_questionResponse_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_questionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_answerId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_responseId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `response` text, - `comment` text, - `dateOfResponse` bigint(20) NOT NULL default '0', - PRIMARY KEY (`Survey_questionId`,`Survey_answerId`,`Survey_responseId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; -CREATE TABLE `Survey_question_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_questionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `question` text, - `sequenceNumber` int(11) NOT NULL default '1', - `allowComment` int(11) NOT NULL default '0', - `randomizeAnswers` int(11) NOT NULL default '0', - `answerFieldType` varchar(35) default NULL, - `gotoQuestion` varchar(22) default NULL, - `Survey_sectionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - PRIMARY KEY (`Survey_questionId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; CREATE TABLE `Survey_response` ( `assetId` char(22) character set utf8 collate utf8_bin NOT NULL, `Survey_responseId` char(22) character set utf8 collate utf8_bin NOT NULL, @@ -1252,45 +1189,21 @@ CREATE TABLE `Survey_response` ( `startDate` bigint(20) NOT NULL default '0', `endDate` bigint(20) NOT NULL default '0', `isComplete` int(11) NOT NULL default '0', - `anonId` varchar(255) default NULL, + `anonId` char(255) default NULL, `responseJSON` longtext, PRIMARY KEY (`Survey_responseId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; -CREATE TABLE `Survey_response_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_responseId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) default NULL, - `username` varchar(255) default NULL, - `ipAddress` varchar(15) default NULL, - `startDate` bigint(20) NOT NULL default '0', - `endDate` bigint(20) NOT NULL default '0', - `isComplete` int(11) NOT NULL default '0', - PRIMARY KEY (`Survey_responseId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; -CREATE TABLE `Survey_section_old` ( - `Survey_id` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `Survey_sectionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `sectionName` text, - `sequenceNumber` int(11) NOT NULL default '1', - PRIMARY KEY (`Survey_sectionId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -SET character_set_client = @saved_cs_client; -SET @saved_cs_client = @@character_set_client; -SET character_set_client = utf8; CREATE TABLE `Survey_tempReport` ( `assetId` char(22) NOT NULL, `Survey_responseId` char(22) NOT NULL, `order` smallint(5) unsigned NOT NULL, `sectionNumber` smallint(5) unsigned NOT NULL, - `sectionName` varchar(512) default NULL, + `sectionName` text, `questionNumber` smallint(5) unsigned NOT NULL, - `questionName` varchar(512) default NULL, + `questionName` text, `questionComment` mediumtext, `answerNumber` smallint(5) unsigned default NULL, `answerValue` mediumtext, @@ -1308,10 +1221,10 @@ SET character_set_client = utf8; CREATE TABLE `SyndicatedContent` ( `rssUrl` text, `maxHeadlines` int(11) NOT NULL default '0', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `templateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', - `hasTerms` varchar(255) NOT NULL default '', + `hasTerms` char(255) NOT NULL default '', `cacheTimeout` int(11) NOT NULL default '3600', `processMacroInRssUrl` int(11) default '0', PRIMARY KEY (`assetId`,`revisionDate`) @@ -1320,12 +1233,12 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_projectList` ( - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin default NULL, - `projectName` varchar(255) NOT NULL, + `projectId` char(22) NOT NULL, + `assetId` char(22) default NULL, + `projectName` char(255) NOT NULL, `creationDate` bigint(20) NOT NULL, - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `lastUpdatedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `createdBy` char(22) NOT NULL, + `lastUpdatedBy` char(22) NOT NULL, `lastUpdateDate` bigint(20) NOT NULL, PRIMARY KEY (`projectId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1333,57 +1246,57 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_projectResourceList` ( - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `resourceId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `projectId` char(22) NOT NULL, + `resourceId` char(22) NOT NULL default '', PRIMARY KEY (`projectId`,`resourceId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_projectTasks` ( - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskName` varchar(255) NOT NULL, + `taskId` char(22) NOT NULL, + `projectId` char(22) NOT NULL, + `taskName` char(255) NOT NULL, PRIMARY KEY (`taskId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_report` ( - `reportId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) NOT NULL, - `startDate` varchar(10) NOT NULL, - `endDate` varchar(10) NOT NULL, + `reportId` char(22) NOT NULL, + `assetId` char(22) NOT NULL, + `startDate` char(10) NOT NULL, + `endDate` char(10) NOT NULL, `reportComplete` int(11) NOT NULL default '0', - `resourceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `resourceId` char(22) NOT NULL, `creationDate` bigint(20) NOT NULL, - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `lastUpdatedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `createdBy` char(22) NOT NULL, + `lastUpdatedBy` char(22) NOT NULL, `lastUpdateDate` bigint(20) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_timeEntry` ( - `entryId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `projectId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `taskDate` varchar(10) NOT NULL, + `entryId` char(22) NOT NULL, + `projectId` char(22) NOT NULL, + `taskId` char(22) NOT NULL, + `taskDate` char(10) NOT NULL, `hours` float default '0', `comments` text, - `reportId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `reportId` char(22) NOT NULL, PRIMARY KEY (`entryId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `TT_wobject` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userViewTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'TimeTrackingTMPL000001', - `managerViewTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'TimeTrackingTMPL000002', - `timeRowTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'TimeTrackingTMPL000003', - `pmAssetId` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupToManage` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', + `assetId` char(22) NOT NULL, + `userViewTemplateId` char(22) NOT NULL default 'TimeTrackingTMPL000001', + `managerViewTemplateId` char(22) NOT NULL default 'TimeTrackingTMPL000002', + `timeRowTemplateId` char(22) NOT NULL default 'TimeTrackingTMPL000003', + `pmAssetId` char(22) default NULL, + `groupToManage` char(22) NOT NULL default '3', `revisionDate` bigint(20) NOT NULL, `pmIntegration` int(11) NOT NULL default '0', PRIMARY KEY (`assetId`,`revisionDate`) @@ -1392,71 +1305,71 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thingy` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `templateId` varchar(22) NOT NULL, - `defaultThingId` varchar(22) default NULL, + `templateId` char(22) NOT NULL, + `defaultThingId` char(22) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thingy_fields` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `thingId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `fieldId` varchar(22) NOT NULL, + `assetId` char(22) NOT NULL, + `thingId` char(22) NOT NULL, + `fieldId` char(22) NOT NULL, `sequenceNumber` int(11) NOT NULL, `dateCreated` bigint(20) NOT NULL, - `createdBy` varchar(22) NOT NULL, + `createdBy` char(22) NOT NULL, `dateUpdated` bigint(20) NOT NULL, - `updatedBy` varchar(22) NOT NULL, - `label` varchar(255) NOT NULL, - `fieldType` varchar(255) NOT NULL, + `updatedBy` char(22) NOT NULL, + `label` char(255) NOT NULL, + `fieldType` char(255) NOT NULL, `defaultValue` longtext, `possibleValues` text, - `subtext` varchar(255) default NULL, - `status` varchar(255) NOT NULL, + `subtext` char(255) default NULL, + `status` char(255) NOT NULL, `width` int(11) default NULL, `height` int(11) default NULL, `vertical` smallint(1) default NULL, - `extras` varchar(255) default NULL, + `extras` char(255) default NULL, `display` int(11) default NULL, `viewScreenTitle` int(11) default NULL, `displayInSearch` int(11) default NULL, `searchIn` int(11) default NULL, - `fieldInOtherThingId` varchar(22) default NULL, + `fieldInOtherThingId` char(22) default NULL, `size` int(11) default NULL, - `pretext` varchar(255) default NULL, + `pretext` char(255) default NULL, PRIMARY KEY (`fieldId`,`thingId`,`assetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thingy_things` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `thingId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `label` varchar(255) NOT NULL, - `editScreenTitle` varchar(255) NOT NULL, + `assetId` char(22) NOT NULL, + `thingId` char(22) NOT NULL, + `label` char(255) NOT NULL, + `editScreenTitle` char(255) NOT NULL, `editInstructions` text, - `groupIdAdd` varchar(22) NOT NULL, - `groupIdEdit` varchar(22) NOT NULL, - `saveButtonLabel` varchar(255) NOT NULL, - `afterSave` varchar(255) NOT NULL, - `editTemplateId` varchar(22) NOT NULL, - `onAddWorkflowId` varchar(22) default NULL, - `onEditWorkflowId` varchar(22) default NULL, - `onDeleteWorkflowId` varchar(22) default NULL, - `groupIdView` varchar(22) NOT NULL, - `viewTemplateId` varchar(22) NOT NULL, - `defaultView` varchar(255) NOT NULL, - `searchScreenTitle` varchar(255) NOT NULL, + `groupIdAdd` char(22) NOT NULL, + `groupIdEdit` char(22) NOT NULL, + `saveButtonLabel` char(255) NOT NULL, + `afterSave` char(255) NOT NULL, + `editTemplateId` char(22) NOT NULL, + `onAddWorkflowId` char(22) default NULL, + `onEditWorkflowId` char(22) default NULL, + `onDeleteWorkflowId` char(22) default NULL, + `groupIdView` char(22) NOT NULL, + `viewTemplateId` char(22) NOT NULL, + `defaultView` char(255) NOT NULL, + `searchScreenTitle` char(255) NOT NULL, `searchDescription` text, - `groupIdSearch` varchar(22) NOT NULL, - `groupIdImport` varchar(22) NOT NULL, - `groupIdExport` varchar(22) NOT NULL, - `searchTemplateId` varchar(22) NOT NULL, + `groupIdSearch` char(22) NOT NULL, + `groupIdImport` char(22) NOT NULL, + `groupIdExport` char(22) NOT NULL, + `searchTemplateId` char(22) NOT NULL, `thingsPerPage` int(11) NOT NULL default '25', - `sortBy` varchar(22) default NULL, + `sortBy` char(22) default NULL, `display` int(11) default NULL, `exportMetaData` int(11) default NULL, `maxEntriesPerUser` int(11) default NULL, @@ -1466,13 +1379,13 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thread` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `replies` int(11) NOT NULL default '0', - `lastPostId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `lastPostId` char(22) NOT NULL default '', `lastPostDate` bigint(20) default NULL, `isLocked` int(11) NOT NULL default '0', `isSticky` int(11) NOT NULL default '0', - `subscriptionGroupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `subscriptionGroupId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', `karma` int(11) NOT NULL default '0', `karmaScale` int(11) NOT NULL default '1', @@ -1484,25 +1397,25 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Thread_read` ( - `threadId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `threadId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', KEY `threadId_userId` (`threadId`,`userId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `UserList` ( - `assetId` varchar(22) NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', - `templateId` varchar(22) default NULL, - `showGroupId` varchar(22) default NULL, - `hideGroupId` varchar(22) default NULL, + `templateId` char(22) default NULL, + `showGroupId` char(22) default NULL, + `hideGroupId` char(22) default NULL, `usersPerPage` int(11) default NULL, `alphabet` text, - `alphabetSearchField` varchar(128) default NULL, + `alphabetSearchField` char(128) default NULL, `showOnlyVisibleAsNamed` int(11) default NULL, - `sortBy` varchar(128) default NULL, - `sortOrder` varchar(4) default NULL, + `sortBy` char(128) default NULL, + `sortOrder` char(4) default NULL, `overridePublicEmail` int(11) default NULL, `overridePublicProfile` int(11) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) @@ -1511,40 +1424,40 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WeatherData` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `revisionDate` bigint(20) unsigned NOT NULL default '0', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WeatherDataTmpl0000001', + `templateId` char(22) NOT NULL default 'WeatherDataTmpl0000001', `locations` text, - `partnerId` varchar(100) default NULL, - `licenseKey` varchar(100) default NULL, + `partnerId` char(100) default NULL, + `licenseKey` char(100) default NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WikiMaster` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, - `groupToEditPages` varchar(22) character set utf8 collate utf8_bin NOT NULL default '2', - `groupToAdminister` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `richEditor` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBrichedit000000000002', - `frontPageTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiFrontTmpl000000001', - `pageTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiPageTmpl0000000001', - `pageEditTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiPageEditTmpl000001', - `recentChangesTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiRCTmpl000000000001', - `mostPopularTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiMPTmpl000000000001', - `pageHistoryTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiPHTmpl000000000001', - `searchTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiSearchTmpl00000001', + `groupToEditPages` char(22) NOT NULL default '2', + `groupToAdminister` char(22) NOT NULL default '3', + `richEditor` char(22) NOT NULL default 'PBrichedit000000000002', + `frontPageTemplateId` char(22) NOT NULL default 'WikiFrontTmpl000000001', + `pageTemplateId` char(22) NOT NULL default 'WikiPageTmpl0000000001', + `pageEditTemplateId` char(22) NOT NULL default 'WikiPageEditTmpl000001', + `recentChangesTemplateId` char(22) NOT NULL default 'WikiRCTmpl000000000001', + `mostPopularTemplateId` char(22) NOT NULL default 'WikiMPTmpl000000000001', + `pageHistoryTemplateId` char(22) NOT NULL default 'WikiPHTmpl000000000001', + `searchTemplateId` char(22) NOT NULL default 'WikiSearchTmpl00000001', `recentChangesCount` int(11) NOT NULL default '50', `recentChangesCountFront` int(11) NOT NULL default '10', `mostPopularCount` int(11) NOT NULL default '50', `mostPopularCountFront` int(11) NOT NULL default '10', `thumbnailSize` int(11) NOT NULL default '0', `maxImageSize` int(11) NOT NULL default '0', - `approvalWorkflow` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'pbworkflow000000000003', + `approvalWorkflow` char(22) NOT NULL default 'pbworkflow000000000003', `useContentFilter` int(11) default '0', - `filterCode` varchar(30) default 'javascript', - `byKeywordTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'WikiKeyword00000000001', + `filterCode` char(30) default 'javascript', + `byKeywordTemplateId` char(22) NOT NULL default 'WikiKeyword00000000001', `allowAttachments` int(11) NOT NULL default '0', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1552,45 +1465,45 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WikiPage` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `content` mediumtext, `views` bigint(20) NOT NULL default '0', `isProtected` int(11) NOT NULL default '0', - `actionTaken` varchar(35) NOT NULL, - `actionTakenBy` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `actionTaken` char(35) NOT NULL, + `actionTakenBy` char(22) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Workflow` ( - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `title` varchar(255) NOT NULL default 'Untitled', + `workflowId` char(22) NOT NULL, + `title` char(255) NOT NULL default 'Untitled', `description` text, `enabled` int(11) NOT NULL default '0', - `type` varchar(255) NOT NULL default 'None', - `mode` varchar(20) NOT NULL default 'parallel', + `type` char(255) NOT NULL default 'None', + `mode` char(20) NOT NULL default 'parallel', PRIMARY KEY (`workflowId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowActivity` ( - `activityId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `title` varchar(255) NOT NULL default 'Untitled', + `activityId` char(22) NOT NULL, + `workflowId` char(22) NOT NULL, + `title` char(255) NOT NULL default 'Untitled', `description` text, `sequenceNumber` int(11) NOT NULL default '1', - `className` varchar(255) default NULL, + `className` char(255) default NULL, PRIMARY KEY (`activityId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowActivityData` ( - `activityId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) NOT NULL, + `activityId` char(22) NOT NULL, + `name` char(255) NOT NULL, `value` text, PRIMARY KEY (`activityId`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1598,24 +1511,25 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowInstance` ( - `instanceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `currentActivityId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `instanceId` char(22) NOT NULL, + `workflowId` char(22) NOT NULL, + `currentActivityId` char(22) NOT NULL, `priority` int(11) NOT NULL default '2', - `className` varchar(255) default NULL, - `methodName` varchar(255) default NULL, + `className` char(255) default NULL, + `methodName` char(255) default NULL, `parameters` text, `runningSince` bigint(20) default NULL, `lastUpdate` bigint(20) default NULL, - `lastStatus` varchar(15) default NULL, + `lastStatus` char(15) default NULL, + `noSession` tinyint(1) NOT NULL default '0', PRIMARY KEY (`instanceId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowInstanceScratch` ( - `instanceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) NOT NULL, + `instanceId` char(22) NOT NULL, + `name` char(255) NOT NULL, `value` text, PRIMARY KEY (`instanceId`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1623,18 +1537,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `WorkflowSchedule` ( - `taskId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `title` varchar(255) NOT NULL default 'Untitled', + `taskId` char(22) NOT NULL, + `title` char(255) NOT NULL default 'Untitled', `enabled` int(11) NOT NULL default '0', `runOnce` int(11) NOT NULL default '0', - `minuteOfHour` varchar(25) NOT NULL default '0', - `hourOfDay` varchar(25) NOT NULL default '*', - `dayOfMonth` varchar(25) NOT NULL default '*', - `monthOfYear` varchar(25) NOT NULL default '*', - `dayOfWeek` varchar(25) NOT NULL default '*', - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `className` varchar(255) default NULL, - `methodName` varchar(255) default NULL, + `minuteOfHour` char(25) NOT NULL default '0', + `hourOfDay` char(25) NOT NULL default '*', + `dayOfMonth` char(25) NOT NULL default '*', + `monthOfYear` char(25) NOT NULL default '*', + `dayOfWeek` char(25) NOT NULL default '*', + `workflowId` char(22) NOT NULL, + `className` char(255) default NULL, + `methodName` char(255) default NULL, `priority` int(11) NOT NULL default '2', `parameters` text, PRIMARY KEY (`taskId`) @@ -1643,9 +1557,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ZipArchiveAsset` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `showPage` varchar(255) NOT NULL default 'index.html', + `assetId` char(22) NOT NULL, + `templateId` char(22) NOT NULL default '', + `showPage` char(255) NOT NULL default 'index.html', `revisionDate` bigint(20) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1653,9 +1567,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `adSpace` ( - `adSpaceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(35) NOT NULL, - `title` varchar(255) NOT NULL, + `adSpaceId` char(22) NOT NULL, + `name` char(35) NOT NULL, + `title` char(255) NOT NULL, `description` text, `costPerImpression` decimal(11,2) NOT NULL default '0.00', `minimumImpressions` int(11) NOT NULL default '1000', @@ -1663,7 +1577,7 @@ CREATE TABLE `adSpace` ( `minimumClicks` int(11) NOT NULL default '1000', `width` int(11) NOT NULL default '468', `height` int(11) NOT NULL default '60', - `groupToPurchase` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', + `groupToPurchase` char(22) NOT NULL default '3', PRIMARY KEY (`adSpaceId`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1671,19 +1585,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `address` ( - `addressId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `addressBookId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `label` varchar(35) default NULL, - `firstName` varchar(35) default NULL, - `lastName` varchar(35) default NULL, - `address1` varchar(35) default NULL, - `address2` varchar(35) default NULL, - `address3` varchar(35) default NULL, - `city` varchar(35) default NULL, - `state` varchar(35) default NULL, - `country` varchar(35) default NULL, - `code` varchar(35) default NULL, - `phoneNumber` varchar(35) default NULL, + `addressId` char(22) NOT NULL, + `addressBookId` char(22) NOT NULL, + `label` char(35) default NULL, + `firstName` char(35) default NULL, + `lastName` char(35) default NULL, + `address1` char(35) default NULL, + `address2` char(35) default NULL, + `address3` char(35) default NULL, + `city` char(35) default NULL, + `state` char(35) default NULL, + `country` char(35) default NULL, + `code` char(35) default NULL, + `phoneNumber` char(35) default NULL, `organization` char(255) default NULL, `email` char(255) default NULL, PRIMARY KEY (`addressId`), @@ -1693,9 +1607,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `addressBook` ( - `addressBookId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `sessionId` varchar(22) character set utf8 collate utf8_bin default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, + `addressBookId` char(22) NOT NULL, + `sessionId` char(22) default NULL, + `userId` char(22) default NULL, `defaultAddressId` char(22) character set utf8 collate utf8_bin default NULL, PRIMARY KEY (`addressBookId`), KEY `userId` (`sessionId`), @@ -1705,19 +1619,19 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `advertisement` ( - `adId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `adSpaceId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `ownerUserId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `adId` char(22) NOT NULL, + `adSpaceId` char(22) NOT NULL, + `ownerUserId` char(22) NOT NULL, `isActive` int(11) NOT NULL default '0', - `title` varchar(255) NOT NULL, - `type` varchar(15) NOT NULL default 'text', - `storageId` varchar(22) character set utf8 collate utf8_bin default NULL, - `adText` varchar(255) default NULL, + `title` char(255) NOT NULL, + `type` char(15) NOT NULL default 'text', + `storageId` char(22) default NULL, + `adText` char(255) default NULL, `url` text, `richMedia` text, - `borderColor` varchar(7) NOT NULL default '#000000', - `textColor` varchar(7) NOT NULL default '#000000', - `backgroundColor` varchar(7) NOT NULL default '#ffffff', + `borderColor` char(7) NOT NULL default '#000000', + `textColor` char(7) NOT NULL default '#000000', + `backgroundColor` char(7) NOT NULL default '#ffffff', `clicks` int(11) NOT NULL default '0', `clicksBought` int(11) NOT NULL default '0', `impressions` int(11) NOT NULL default '0', @@ -1732,18 +1646,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `asset` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `parentId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `lineage` varchar(255) NOT NULL default '', - `state` varchar(35) NOT NULL default '', - `className` varchar(255) NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `parentId` char(22) NOT NULL default '', + `lineage` char(255) NOT NULL default '', + `state` char(35) NOT NULL default '', + `className` char(255) NOT NULL default '', `creationDate` bigint(20) NOT NULL default '997995720', - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `stateChanged` varchar(22) NOT NULL default '997995720', - `stateChangedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `isLockedBy` varchar(22) character set utf8 collate utf8_bin default NULL, + `createdBy` char(22) NOT NULL default '3', + `stateChanged` char(22) NOT NULL default '997995720', + `stateChangedBy` char(22) NOT NULL default '3', + `isLockedBy` char(22) default NULL, `isSystem` int(11) NOT NULL default '0', - `lastExportedAs` varchar(255) default NULL, + `lastExportedAs` char(255) default NULL, PRIMARY KEY (`assetId`), UNIQUE KEY `lineage` (`lineage`), KEY `parentId` (`parentId`), @@ -1766,17 +1680,17 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetData` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', - `revisedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `tagId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `status` varchar(35) NOT NULL default 'pending', - `title` varchar(255) NOT NULL default 'untitled', - `menuTitle` varchar(255) NOT NULL default 'untitled', - `url` varchar(255) NOT NULL default '', - `ownerUserId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `groupIdView` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `groupIdEdit` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `revisedBy` char(22) NOT NULL default '', + `tagId` char(22) NOT NULL default '', + `status` char(35) NOT NULL default 'pending', + `title` char(255) NOT NULL default 'untitled', + `menuTitle` char(255) NOT NULL default 'untitled', + `url` char(255) NOT NULL default '', + `ownerUserId` char(22) NOT NULL default '', + `groupIdView` char(22) NOT NULL default '', + `groupIdEdit` char(22) NOT NULL default '', `synopsis` text, `newWindow` int(11) NOT NULL default '0', `isHidden` int(11) NOT NULL default '0', @@ -1800,29 +1714,29 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetHistory` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', `dateStamp` bigint(20) NOT NULL default '0', - `actionTaken` varchar(255) NOT NULL default '', - `url` varchar(255) default NULL + `actionTaken` char(255) NOT NULL default '', + `url` char(255) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetIndex` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `title` varchar(255) default NULL, + `assetId` char(22) NOT NULL, + `title` char(255) default NULL, `synopsis` text, - `url` varchar(255) default NULL, + `url` char(255) default NULL, `creationDate` bigint(20) default NULL, `revisionDate` bigint(20) default NULL, - `ownerUserId` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupIdView` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupIdEdit` varchar(22) character set utf8 collate utf8_bin default NULL, - `className` varchar(255) default NULL, + `ownerUserId` char(22) default NULL, + `groupIdView` char(22) default NULL, + `groupIdEdit` char(22) default NULL, + `className` char(255) default NULL, `isPublic` int(11) NOT NULL default '1', `keywords` mediumtext, - `lineage` varchar(255) default NULL, + `lineage` char(255) default NULL, PRIMARY KEY (`assetId`), FULLTEXT KEY `keywords` (`keywords`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1830,8 +1744,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetKeyword` ( - `keyword` varchar(64) NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `keyword` char(64) NOT NULL, + `assetId` char(22) NOT NULL, PRIMARY KEY (`keyword`,`assetId`), KEY `keyword` (`keyword`), KEY `assetId` (`assetId`) @@ -1840,18 +1754,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `assetVersionTag` ( - `tagId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `name` varchar(255) NOT NULL default '', + `tagId` char(22) NOT NULL default '', + `name` char(255) NOT NULL default '', `isCommitted` int(11) NOT NULL default '0', `creationDate` bigint(20) NOT NULL default '0', - `createdBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `createdBy` char(22) NOT NULL default '', `commitDate` bigint(20) NOT NULL default '0', - `committedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `committedBy` char(22) NOT NULL default '', `isLocked` int(11) NOT NULL default '0', - `lockedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `groupToUse` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `workflowId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `workflowInstanceId` varchar(22) character set utf8 collate utf8_bin default NULL, + `lockedBy` char(22) NOT NULL default '', + `groupToUse` char(22) NOT NULL default '', + `workflowId` char(22) NOT NULL default '', + `workflowInstanceId` char(22) default NULL, `comments` text, `startTime` datetime default NULL, `endTime` datetime default NULL, @@ -1862,9 +1776,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `authentication` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `authMethod` varchar(30) NOT NULL default '', - `fieldName` varchar(128) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `authMethod` char(30) NOT NULL default '', + `fieldName` char(128) NOT NULL default '', `fieldData` text, PRIMARY KEY (`userId`,`authMethod`,`fieldName`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -1872,8 +1786,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cache` ( - `namespace` varchar(128) NOT NULL, - `cachekey` varchar(128) NOT NULL, + `namespace` char(128) NOT NULL, + `cachekey` char(128) NOT NULL, `expires` bigint(20) NOT NULL, `size` int(11) NOT NULL, `content` mediumblob, @@ -1884,10 +1798,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cart` ( - `cartId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `sessionId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `shippingAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, - `shipperId` varchar(22) character set utf8 collate utf8_bin default NULL, + `cartId` char(22) NOT NULL, + `sessionId` char(22) NOT NULL, + `shippingAddressId` char(22) default NULL, + `shipperId` char(22) default NULL, `posUserId` char(22) character set utf8 collate utf8_bin default NULL, PRIMARY KEY (`cartId`), KEY `sessionId` (`sessionId`) @@ -1896,13 +1810,13 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cartItem` ( - `itemId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `cartId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `itemId` char(22) NOT NULL, + `cartId` char(22) NOT NULL, + `assetId` char(22) NOT NULL, `dateAdded` datetime NOT NULL, `options` mediumtext, - `configuredTitle` varchar(255) default NULL, - `shippingAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, + `configuredTitle` char(255) default NULL, + `shippingAddressId` char(22) default NULL, `quantity` int(11) NOT NULL default '1', PRIMARY KEY (`itemId`), KEY `cartId_assetId_dateAdded` (`cartId`,`assetId`,`dateAdded`) @@ -1911,52 +1825,52 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `databaseLink` ( - `databaseLinkId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `title` varchar(255) default NULL, - `DSN` varchar(255) default NULL, - `username` varchar(255) default NULL, - `identifier` varchar(255) default NULL, + `databaseLinkId` char(22) NOT NULL default '', + `title` char(255) default NULL, + `DSN` char(255) default NULL, + `username` char(255) default NULL, + `identifier` char(255) default NULL, `allowedKeywords` text, `allowMacroAccess` int(11) NOT NULL default '0', - `additionalParameters` varchar(255) NOT NULL default '', + `additionalParameters` char(255) NOT NULL default '', PRIMARY KEY (`databaseLinkId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `donation` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `defaultPrice` float NOT NULL default '100', `thankYouMessage` mediumtext, - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `templateId` char(22) NOT NULL, PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `friendInvitations` ( - `inviteId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `inviterId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `friendId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `inviteId` char(22) NOT NULL, + `inviterId` char(22) NOT NULL, + `friendId` char(22) NOT NULL, `dateSent` datetime NOT NULL, - `comments` varchar(255) NOT NULL, - `messageId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `comments` char(255) NOT NULL, + `messageId` char(22) NOT NULL, PRIMARY KEY (`inviteId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `groupGroupings` ( - `groupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `inGroup` varchar(22) character set utf8 collate utf8_bin NOT NULL default '' + `groupId` char(22) NOT NULL default '', + `inGroup` char(22) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `groupings` ( - `groupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `groupId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', `expireDate` bigint(20) NOT NULL default '2114402400', `groupAdmin` int(11) NOT NULL default '0', PRIMARY KEY (`groupId`,`userId`), @@ -1966,9 +1880,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `groups` ( - `groupId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `groupName` varchar(100) default NULL, - `description` varchar(255) default NULL, + `groupId` char(22) NOT NULL default '', + `groupName` char(100) default NULL, + `description` char(255) default NULL, `expireOffset` int(11) NOT NULL default '314496000', `karmaThreshold` int(11) NOT NULL default '1000000000', `ipFilter` text, @@ -1981,15 +1895,15 @@ CREATE TABLE `groups` ( `scratchFilter` text, `autoAdd` int(11) NOT NULL default '0', `autoDelete` int(11) NOT NULL default '0', - `databaseLinkId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `databaseLinkId` char(22) NOT NULL default '', `groupCacheTimeout` int(11) NOT NULL default '3600', `dbQuery` text, `isEditable` int(11) NOT NULL default '1', `showInForms` int(11) NOT NULL default '1', - `ldapGroup` varchar(255) default NULL, - `ldapGroupProperty` varchar(255) default NULL, - `ldapRecursiveProperty` varchar(255) default NULL, - `ldapLinkId` varchar(22) character set utf8 collate utf8_bin default NULL, + `ldapGroup` char(255) default NULL, + `ldapGroupProperty` char(255) default NULL, + `ldapRecursiveProperty` char(255) default NULL, + `ldapLinkId` char(22) default NULL, `ldapRecursiveFilter` mediumtext, `isAdHocMailGroup` tinyint(4) NOT NULL default '0', PRIMARY KEY (`groupId`), @@ -1999,8 +1913,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imageColor` ( - `colorId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) NOT NULL default 'untitled', + `colorId` char(22) NOT NULL, + `name` char(255) NOT NULL default 'untitled', `fillTriplet` char(7) NOT NULL default '#000000', `fillAlpha` char(2) NOT NULL default '00', `strokeTriplet` char(7) NOT NULL default '#000000', @@ -2011,26 +1925,26 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imageFont` ( - `fontId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) default NULL, - `storageId` varchar(22) default NULL, - `filename` varchar(255) default NULL, + `fontId` char(22) NOT NULL, + `name` char(255) default NULL, + `storageId` char(22) default NULL, + `filename` char(255) default NULL, PRIMARY KEY (`fontId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imagePalette` ( - `paletteId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `name` varchar(255) NOT NULL default 'untitled', + `paletteId` char(22) NOT NULL, + `name` char(255) NOT NULL default 'untitled', PRIMARY KEY (`paletteId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imagePaletteColors` ( - `paletteId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `colorId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `paletteId` char(22) NOT NULL, + `colorId` char(22) NOT NULL, `paletteOrder` int(11) NOT NULL, PRIMARY KEY (`paletteId`,`paletteOrder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2038,16 +1952,16 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `inbox` ( - `messageId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `status` varchar(15) NOT NULL default 'pending', + `messageId` char(22) NOT NULL, + `status` char(15) NOT NULL default 'pending', `dateStamp` bigint(20) NOT NULL, `completedOn` bigint(20) default NULL, - `completedBy` varchar(22) character set utf8 collate utf8_bin default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin default NULL, - `groupId` varchar(22) character set utf8 collate utf8_bin default NULL, - `subject` varchar(255) NOT NULL default 'No Subject', + `completedBy` char(22) default NULL, + `userId` char(22) default NULL, + `groupId` char(22) default NULL, + `subject` char(255) NOT NULL default 'No Subject', `message` mediumtext, - `sentBy` varchar(22) NOT NULL default '3', + `sentBy` char(22) NOT NULL default '3', PRIMARY KEY (`messageId`), KEY `completedOn_dateStamp` (`completedOn`,`dateStamp`), KEY `pb_userId` (`userId`), @@ -2068,7 +1982,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `incrementer` ( - `incrementerId` varchar(50) NOT NULL default '', + `incrementerId` char(50) NOT NULL default '', `nextValue` int(11) NOT NULL default '1', PRIMARY KEY (`incrementerId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2076,9 +1990,9 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `karmaLog` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `userId` char(22) NOT NULL default '', `amount` int(11) NOT NULL default '1', - `source` varchar(255) default NULL, + `source` char(255) default NULL, `description` text, `dateModified` bigint(20) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2086,20 +2000,20 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ldapLink` ( - `ldapLinkId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ldapLinkName` varchar(255) NOT NULL default '', - `ldapUrl` varchar(255) NOT NULL default '', - `connectDn` varchar(255) NOT NULL default '', - `identifier` varchar(255) NOT NULL default '', - `ldapUserRDN` varchar(255) default NULL, - `ldapIdentity` varchar(255) default NULL, - `ldapIdentityName` varchar(255) default NULL, - `ldapPasswordName` varchar(255) default NULL, + `ldapLinkId` char(22) NOT NULL default '', + `ldapLinkName` char(255) NOT NULL default '', + `ldapUrl` char(255) NOT NULL default '', + `connectDn` char(255) NOT NULL default '', + `identifier` char(255) NOT NULL default '', + `ldapUserRDN` char(255) default NULL, + `ldapIdentity` char(255) default NULL, + `ldapIdentityName` char(255) default NULL, + `ldapPasswordName` char(255) default NULL, `ldapSendWelcomeMessage` char(2) default NULL, `ldapWelcomeMessage` text, - `ldapAccountTemplate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ldapCreateAccountTemplate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `ldapLoginTemplate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `ldapAccountTemplate` char(22) NOT NULL default '', + `ldapCreateAccountTemplate` char(22) NOT NULL default '', + `ldapLoginTemplate` char(22) NOT NULL default '', `ldapGlobalRecursiveFilter` mediumtext, PRIMARY KEY (`ldapLinkId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2107,21 +2021,21 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `mailQueue` ( - `messageId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `messageId` char(22) NOT NULL, `message` mediumtext, - `toGroup` varchar(22) character set utf8 collate utf8_bin default NULL, + `toGroup` char(22) default NULL, PRIMARY KEY (`messageId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `metaData_properties` ( - `fieldId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `fieldName` varchar(100) NOT NULL default '', + `fieldId` char(22) NOT NULL default '', + `fieldName` char(100) NOT NULL default '', `description` mediumtext NOT NULL, - `fieldType` varchar(30) default NULL, + `fieldType` char(30) default NULL, `possibleValues` text, - `defaultValue` varchar(255) default NULL, + `defaultValue` char(255) default NULL, PRIMARY KEY (`fieldId`), UNIQUE KEY `field_unique` (`fieldName`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2129,18 +2043,18 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `metaData_values` ( - `fieldId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `value` varchar(255) default NULL, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `fieldId` char(22) NOT NULL default '', + `value` char(255) default NULL, + `assetId` char(22) NOT NULL default '', PRIMARY KEY (`fieldId`,`assetId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `passiveProfileAOI` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `fieldId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `value` varchar(100) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `fieldId` char(22) NOT NULL default '', + `value` char(100) NOT NULL default '', `count` int(11) default NULL, PRIMARY KEY (`userId`,`fieldId`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2148,10 +2062,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `passiveProfileLog` ( - `passiveProfileLogId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `sessionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `passiveProfileLogId` char(22) NOT NULL default '', + `userId` char(22) NOT NULL default '', + `sessionId` char(22) NOT NULL default '', + `assetId` char(22) NOT NULL default '', `dateOfEntry` bigint(20) NOT NULL default '0', PRIMARY KEY (`passiveProfileLogId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2159,8 +2073,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `paymentGateway` ( - `paymentGatewayId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `className` varchar(255) default NULL, + `paymentGatewayId` char(22) NOT NULL, + `className` char(255) default NULL, `options` mediumtext, PRIMARY KEY (`paymentGatewayId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2168,7 +2082,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `redirect` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `redirectUrl` text, `revisionDate` bigint(20) NOT NULL default '0', `redirectType` int(11) NOT NULL default '302', @@ -2178,8 +2092,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `replacements` ( - `replacementId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `searchFor` varchar(255) default NULL, + `replacementId` char(22) NOT NULL default '', + `searchFor` char(255) default NULL, `replaceWith` text, PRIMARY KEY (`replacementId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2187,11 +2101,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `search` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL default '0', `classLimiter` text, - `searchRoot` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBasset000000000000001', - `templateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'PBtmpl0000000000000200', + `searchRoot` char(22) NOT NULL default 'PBasset000000000000001', + `templateId` char(22) NOT NULL default 'PBtmpl0000000000000200', `useContainers` int(11) NOT NULL default '0', `paginateAfter` int(11) NOT NULL default '25', PRIMARY KEY (`assetId`,`revisionDate`) @@ -2200,7 +2114,7 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `settings` ( - `name` varchar(255) NOT NULL default '', + `name` char(255) NOT NULL default '', `value` text, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2208,8 +2122,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `shipper` ( - `shipperId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `className` varchar(255) default NULL, + `shipperId` char(22) NOT NULL, + `className` char(255) default NULL, `options` mediumtext, PRIMARY KEY (`shipperId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2217,8 +2131,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `shopCredit` ( - `creditId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `creditId` char(22) NOT NULL, + `userId` char(22) NOT NULL, `amount` float NOT NULL default '0', `comment` text, `dateOfAdjustment` datetime default NULL, @@ -2229,11 +2143,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sku` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `assetId` char(22) NOT NULL, `revisionDate` bigint(20) NOT NULL, `description` mediumtext, - `sku` varchar(35) character set utf8 collate utf8_bin NOT NULL, - `vendorId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'defaultvendor000000000', + `sku` char(35) NOT NULL, + `vendorId` char(22) NOT NULL default 'defaultvendor000000000', `displayTitle` tinyint(1) NOT NULL default '1', `overrideTaxRate` tinyint(1) NOT NULL default '0', `taxRateOverride` float NOT NULL default '0', @@ -2245,10 +2159,10 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `snippet` ( - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `snippet` mediumtext, `processAsTemplate` int(11) NOT NULL default '0', - `mimeType` varchar(50) NOT NULL default 'text/html', + `mimeType` char(50) NOT NULL default 'text/html', `revisionDate` bigint(20) NOT NULL default '0', `cacheTimeout` int(11) NOT NULL default '3600', PRIMARY KEY (`assetId`,`revisionDate`) @@ -2257,42 +2171,42 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `subscriptionCode` ( - `batchId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `code` varchar(64) character set utf8 collate utf8_bin NOT NULL default '', - `status` varchar(10) NOT NULL default 'Unused', + `batchId` char(22) NOT NULL default '', + `code` char(64) NOT NULL default '', + `status` char(10) NOT NULL default 'Unused', `dateCreated` int(11) NOT NULL default '0', `dateUsed` int(11) NOT NULL default '0', `expires` int(11) NOT NULL default '0', - `usedBy` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `usedBy` char(22) NOT NULL default '', PRIMARY KEY (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `subscriptionCodeBatch` ( - `batchId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `name` varchar(128) default NULL, + `batchId` char(22) NOT NULL default '', + `name` char(128) default NULL, `description` mediumtext NOT NULL, - `subscriptionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `subscriptionId` char(22) NOT NULL default '', PRIMARY KEY (`batchId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `subscriptionCodeSubscriptions` ( - `code` varchar(64) character set utf8 collate utf8_bin NOT NULL default '', - `subscriptionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `code` char(64) NOT NULL default '', + `subscriptionId` char(22) NOT NULL default '', UNIQUE KEY `code` (`code`,`subscriptionId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax` ( - `taxId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `country` varchar(100) NOT NULL, - `state` varchar(100) default NULL, - `city` varchar(100) default NULL, - `code` varchar(100) default NULL, + `taxId` char(22) NOT NULL, + `country` char(100) NOT NULL, + `state` char(100) default NULL, + `city` char(100) default NULL, + `code` char(100) default NULL, `taxRate` float NOT NULL default '0', PRIMARY KEY (`taxId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2301,12 +2215,12 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `template` ( `template` mediumtext, - `namespace` varchar(35) NOT NULL default 'Page', + `namespace` char(35) NOT NULL default 'Page', `isEditable` int(11) NOT NULL default '1', `showInForms` int(11) NOT NULL default '1', - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', - `parser` varchar(255) NOT NULL default 'WebGUI::Asset::Template::HTMLTemplate', + `parser` char(255) NOT NULL default 'WebGUI::Asset::Template::HTMLTemplate', `isDefault` int(1) default '0', PRIMARY KEY (`assetId`,`revisionDate`), KEY `namespace_showInForms` (`namespace`,`showInForms`) @@ -2315,42 +2229,42 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `transaction` ( - `transactionId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `originatingTransactionId` varchar(22) character set utf8 collate utf8_bin default NULL, + `transactionId` char(22) NOT NULL, + `originatingTransactionId` char(22) default NULL, `isSuccessful` tinyint(1) NOT NULL default '0', `orderNumber` int(11) NOT NULL auto_increment, - `transactionCode` varchar(100) default NULL, - `statusCode` varchar(35) default NULL, - `statusMessage` varchar(255) default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `username` varchar(35) NOT NULL, + `transactionCode` char(100) default NULL, + `statusCode` char(35) default NULL, + `statusMessage` char(255) default NULL, + `userId` char(22) NOT NULL, + `username` char(35) NOT NULL, `amount` float default NULL, `shopCreditDeduction` float default NULL, - `shippingAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, - `shippingAddressName` varchar(35) default NULL, - `shippingAddress1` varchar(35) default NULL, - `shippingAddress2` varchar(35) default NULL, - `shippingAddress3` varchar(35) default NULL, - `shippingCity` varchar(35) default NULL, - `shippingState` varchar(35) default NULL, - `shippingCountry` varchar(35) default NULL, - `shippingCode` varchar(35) default NULL, - `shippingPhoneNumber` varchar(35) default NULL, - `shippingDriverId` varchar(22) character set utf8 collate utf8_bin default NULL, - `shippingDriverLabel` varchar(35) default NULL, + `shippingAddressId` char(22) default NULL, + `shippingAddressName` char(35) default NULL, + `shippingAddress1` char(35) default NULL, + `shippingAddress2` char(35) default NULL, + `shippingAddress3` char(35) default NULL, + `shippingCity` char(35) default NULL, + `shippingState` char(35) default NULL, + `shippingCountry` char(35) default NULL, + `shippingCode` char(35) default NULL, + `shippingPhoneNumber` char(35) default NULL, + `shippingDriverId` char(22) default NULL, + `shippingDriverLabel` char(35) default NULL, `shippingPrice` float default NULL, - `paymentAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, - `paymentAddressName` varchar(35) default NULL, - `paymentAddress1` varchar(35) default NULL, - `paymentAddress2` varchar(35) default NULL, - `paymentAddress3` varchar(35) default NULL, - `paymentCity` varchar(35) default NULL, - `paymentState` varchar(35) default NULL, - `paymentCountry` varchar(35) default NULL, - `paymentCode` varchar(35) default NULL, - `paymentPhoneNumber` varchar(35) default NULL, - `paymentDriverId` varchar(22) character set utf8 collate utf8_bin default NULL, - `paymentDriverLabel` varchar(35) default NULL, + `paymentAddressId` char(22) default NULL, + `paymentAddressName` char(35) default NULL, + `paymentAddress1` char(35) default NULL, + `paymentAddress2` char(35) default NULL, + `paymentAddress3` char(35) default NULL, + `paymentCity` char(35) default NULL, + `paymentState` char(35) default NULL, + `paymentCountry` char(35) default NULL, + `paymentCode` char(35) default NULL, + `paymentPhoneNumber` char(35) default NULL, + `paymentDriverId` char(22) default NULL, + `paymentDriverLabel` char(35) default NULL, `taxes` float default NULL, `dateOfPurchase` datetime default NULL, `isRecurring` tinyint(1) default NULL, @@ -2363,27 +2277,27 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `transactionItem` ( - `itemId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `transactionId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `assetId` varchar(22) default NULL, - `configuredTitle` varchar(255) default NULL, + `itemId` char(22) NOT NULL, + `transactionId` char(22) NOT NULL, + `assetId` char(22) default NULL, + `configuredTitle` char(255) default NULL, `options` mediumtext, - `shippingAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, - `shippingName` varchar(35) default NULL, - `shippingAddress1` varchar(35) default NULL, - `shippingAddress2` varchar(35) default NULL, - `shippingAddress3` varchar(35) default NULL, - `shippingCity` varchar(35) default NULL, - `shippingState` varchar(35) default NULL, - `shippingCountry` varchar(35) default NULL, - `shippingCode` varchar(35) default NULL, - `shippingPhoneNumber` varchar(35) default NULL, - `shippingTrackingNumber` varchar(255) default NULL, - `orderStatus` varchar(35) NOT NULL default 'NotShipped', + `shippingAddressId` char(22) default NULL, + `shippingName` char(35) default NULL, + `shippingAddress1` char(35) default NULL, + `shippingAddress2` char(35) default NULL, + `shippingAddress3` char(35) default NULL, + `shippingCity` char(35) default NULL, + `shippingState` char(35) default NULL, + `shippingCountry` char(35) default NULL, + `shippingCode` char(35) default NULL, + `shippingPhoneNumber` char(35) default NULL, + `shippingTrackingNumber` char(255) default NULL, + `orderStatus` char(35) NOT NULL default 'NotShipped', `lastUpdated` datetime default NULL, `quantity` int(11) NOT NULL default '1', `price` float default NULL, - `vendorId` varchar(22) character set utf8 collate utf8_bin NOT NULL default 'defaultvendor000000000', + `vendorId` char(22) NOT NULL default 'defaultvendor000000000', PRIMARY KEY (`itemId`), KEY `transactionId` (`transactionId`), KEY `vendorId` (`vendorId`) @@ -2392,11 +2306,11 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userInvitations` ( - `inviteId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `inviteId` char(22) NOT NULL, + `userId` char(22) NOT NULL, `dateSent` date default NULL, - `email` varchar(255) NOT NULL, - `newUserId` varchar(22) character set utf8 collate utf8_bin default NULL, + `email` char(255) NOT NULL, + `newUserId` char(22) default NULL, `dateCreated` date default NULL, PRIMARY KEY (`inviteId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2404,20 +2318,20 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userLoginLog` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `status` varchar(30) default NULL, + `userId` char(22) NOT NULL default '', + `status` char(30) default NULL, `timeStamp` int(11) default NULL, - `ipAddress` varchar(128) default NULL, + `ipAddress` char(128) default NULL, `userAgent` text, - `sessionId` varchar(22) default NULL, + `sessionId` char(22) default NULL, `lastPageViewed` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userProfileCategory` ( - `profileCategoryId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `label` varchar(255) NOT NULL default 'Undefined', + `profileCategoryId` char(22) NOT NULL default '', + `label` char(255) NOT NULL default 'Undefined', `shortLabel` char(255) default NULL, `sequenceNumber` int(11) NOT NULL default '1', `visible` int(11) NOT NULL default '1', @@ -2429,54 +2343,54 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userProfileData` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL, - `email` varchar(255) default NULL, - `firstName` varchar(255) default NULL, - `middleName` varchar(255) default NULL, - `lastName` varchar(255) default NULL, - `icq` varchar(255) default NULL, - `aim` varchar(255) default NULL, - `msnIM` varchar(255) default NULL, - `yahooIM` varchar(255) default NULL, - `cellPhone` varchar(255) default NULL, - `pager` varchar(255) default NULL, - `emailToPager` varchar(255) default NULL, - `language` varchar(255) default NULL, - `homeAddress` varchar(255) default NULL, - `homeCity` varchar(255) default NULL, - `homeState` varchar(255) default NULL, - `homeZip` varchar(255) default NULL, - `homeCountry` varchar(255) default NULL, - `homePhone` varchar(255) default NULL, - `workAddress` varchar(255) default NULL, - `workCity` varchar(255) default NULL, - `workState` varchar(255) default NULL, - `workZip` varchar(255) default NULL, - `workCountry` varchar(255) default NULL, - `workPhone` varchar(255) default NULL, - `gender` varchar(255) default NULL, + `userId` char(22) NOT NULL, + `email` char(255) default NULL, + `firstName` char(255) default NULL, + `middleName` char(255) default NULL, + `lastName` char(255) default NULL, + `icq` char(255) default NULL, + `aim` char(255) default NULL, + `msnIM` char(255) default NULL, + `yahooIM` char(255) default NULL, + `cellPhone` char(255) default NULL, + `pager` char(255) default NULL, + `emailToPager` char(255) default NULL, + `language` char(255) default NULL, + `homeAddress` char(255) default NULL, + `homeCity` char(255) default NULL, + `homeState` char(255) default NULL, + `homeZip` char(255) default NULL, + `homeCountry` char(255) default NULL, + `homePhone` char(255) default NULL, + `workAddress` char(255) default NULL, + `workCity` char(255) default NULL, + `workState` char(255) default NULL, + `workZip` char(255) default NULL, + `workCountry` char(255) default NULL, + `workPhone` char(255) default NULL, + `gender` char(255) default NULL, `birthdate` bigint(20) default NULL, - `homeURL` varchar(255) default NULL, - `workURL` varchar(255) default NULL, - `workName` varchar(255) default NULL, - `timeZone` varchar(255) default NULL, - `dateFormat` varchar(255) default NULL, - `timeFormat` varchar(255) default NULL, - `discussionLayout` varchar(255) default NULL, - `firstDayOfWeek` varchar(255) default NULL, - `uiLevel` varchar(255) default NULL, - `alias` varchar(255) default NULL, + `homeURL` char(255) default NULL, + `workURL` char(255) default NULL, + `workName` char(255) default NULL, + `timeZone` char(255) default NULL, + `dateFormat` char(255) default NULL, + `timeFormat` char(255) default NULL, + `discussionLayout` char(255) default NULL, + `firstDayOfWeek` char(255) default NULL, + `uiLevel` char(255) default NULL, + `alias` char(255) default NULL, `signature` longtext, `publicProfile` char(10) default 'none', - `toolbar` varchar(255) default NULL, - `photo` varchar(22) character set utf8 collate utf8_bin default NULL, - `avatar` varchar(22) character set utf8 collate utf8_bin default NULL, - `department` varchar(255) default NULL, + `toolbar` char(255) default NULL, + `photo` char(22) default NULL, + `avatar` char(22) default NULL, + `department` char(255) default NULL, `allowPrivateMessages` text, `ableToBeFriend` int(1) default NULL, `showMessageOnLoginSeen` bigint(20) default NULL, `showOnline` tinyint(1) default NULL, - `versionTagMode` varchar(255) default NULL, + `versionTagMode` char(255) default NULL, `wg_privacySettings` longtext, PRIMARY KEY (`userId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2484,15 +2398,15 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userProfileField` ( - `fieldName` varchar(128) NOT NULL default '', - `label` varchar(255) NOT NULL default 'Undefined', + `fieldName` char(128) NOT NULL default '', + `label` char(255) NOT NULL default 'Undefined', `visible` int(11) NOT NULL default '0', `required` int(11) NOT NULL default '0', - `fieldType` varchar(128) NOT NULL default 'text', + `fieldType` char(128) NOT NULL default 'text', `possibleValues` text, `dataDefault` text, `sequenceNumber` int(11) NOT NULL default '1', - `profileCategoryId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `profileCategoryId` char(22) NOT NULL default '', `protected` int(11) NOT NULL default '0', `editable` int(11) NOT NULL default '1', `forceImageOnly` int(11) default '1', @@ -2505,12 +2419,12 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userSession` ( - `sessionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `sessionId` char(22) NOT NULL default '', `expires` int(11) default NULL, `lastPageView` int(11) default NULL, `adminOn` int(11) NOT NULL default '0', - `lastIP` varchar(50) default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `lastIP` char(50) default NULL, + `userId` char(22) NOT NULL default '', PRIMARY KEY (`sessionId`), KEY `expires` (`expires`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2518,8 +2432,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `userSessionScratch` ( - `sessionId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `name` varchar(255) NOT NULL default '', + `sessionId` char(22) NOT NULL default '', + `name` char(255) NOT NULL default '', `value` text, PRIMARY KEY (`sessionId`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2527,15 +2441,15 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users` ( - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `username` varchar(100) default NULL, - `authMethod` varchar(30) NOT NULL default 'WebGUI', + `userId` char(22) NOT NULL default '', + `username` char(100) default NULL, + `authMethod` char(30) NOT NULL default 'WebGUI', `dateCreated` int(11) NOT NULL default '1019867418', `lastUpdated` int(11) NOT NULL default '1019867418', `karma` int(11) NOT NULL default '0', - `status` varchar(35) NOT NULL default 'Active', - `referringAffiliate` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `friendsGroup` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `status` char(35) NOT NULL default 'Active', + `referringAffiliate` char(22) NOT NULL default '', + `friendsGroup` char(22) NOT NULL default '', PRIMARY KEY (`userId`), UNIQUE KEY `username_unique` (`username`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2543,13 +2457,13 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `vendor` ( - `vendorId` varchar(22) character set utf8 collate utf8_bin NOT NULL, + `vendorId` char(22) NOT NULL, `dateCreated` datetime default NULL, - `name` varchar(255) default NULL, - `userId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '3', - `preferredPaymentType` varchar(255) default NULL, + `name` char(255) default NULL, + `userId` char(22) NOT NULL default '3', + `preferredPaymentType` char(255) default NULL, `paymentInformation` text, - `paymentAddressId` varchar(22) character set utf8 collate utf8_bin default NULL, + `paymentAddressId` char(22) default NULL, `url` text, PRIMARY KEY (`vendorId`), KEY `userId` (`userId`) @@ -2558,8 +2472,8 @@ SET character_set_client = @saved_cs_client; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `webguiVersion` ( - `webguiVersion` varchar(10) default NULL, - `versionType` varchar(30) default NULL, + `webguiVersion` char(10) default NULL, + `versionType` char(30) default NULL, `dateApplied` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -2568,21 +2482,21 @@ SET character_set_client = utf8; CREATE TABLE `wobject` ( `displayTitle` int(11) NOT NULL default '1', `description` mediumtext, - `assetId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `styleTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', - `printableStyleTemplateId` varchar(22) character set utf8 collate utf8_bin NOT NULL default '', + `assetId` char(22) NOT NULL default '', + `styleTemplateId` char(22) NOT NULL default '', + `printableStyleTemplateId` char(22) NOT NULL default '', `revisionDate` bigint(20) NOT NULL default '0', PRIMARY KEY (`assetId`,`revisionDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; INSERT INTO `Article` VALUES (NULL,NULL,'NK8bqlwVRILJknqeCDPBHg','PBtmpl0000000000000002',1147642515,3600,'0jTuDoyTcQK6ju8cs8a4ew'),(NULL,NULL,'bX5rYxb6tZ9docY6sUhBlw','PBtmpl0000000000000002',1147642514,3600,'r3QdZwvuVK9o9kLb7mpHGQ'),(NULL,NULL,'OhdaFLE7sXOzo_SIP2ZUgA','PBtmpl0000000000000002',1147642513,3600,'GY5wyiuNmZZyLdgFt3zluQ'),(NULL,NULL,'IWFxZDyGhQ3-SLZhELa3qw','PBtmpl0000000000000002',1147642514,3600,'BS9OtDY_8oUnmzStD-wPmg'),(NULL,NULL,'6QuS-0rosuZTdTv11fobig','PBtmpl0000000000000002',1147642515,3600,'qDIYM6Jcmkk_LmWZIqqJ7w'),(NULL,NULL,'ix1p0AbwKAz8QWB-T-HHfg','PBtmpl0000000000000002',1147642516,3600,'gU8kZk0nV6SqcwKqSiojQQ'),(NULL,NULL,'iCYOjohB9SKvAPr6bXElKA','PBtmpl0000000000000002',1147642516,3600,'eTxnooflqjFWIwkyfE0nPQ'),(NULL,NULL,'4Yfz9hqBqM8OYMGuQK8oLw','PBtmpl0000000000000002',1147642516,3600,'x4_4U_yb-MAGELG0jxAqpQ'),(NULL,NULL,'Wl8WZ43g2rK5AYr9o4zY7w','PBtmpl0000000000000002',1147642516,3600,'QlXRvOaqkv9X2kY-eAQXKA'),(NULL,NULL,'LBuiKzg2mWwmOPS9AgV3bg','PBtmpl0000000000000002',1147642517,3600,'UYaT3bhIk9HXmX1io5MdlQ'),(NULL,NULL,'jTNggl7AoVSUc_ZzrvuCmw','PBtmpl0000000000000002',1147642517,3600,'NWhmkoojuu9dA4_zv3a4pg'),(NULL,'http://','FOvmwGC0GtZo5VTxJIL3OA','PBtmpl0000000000000002',1207068851,3600,'WOkKCSUedPrlPkYwsTgEEA'),(NULL,'http://','j_1qEqM6iLfQLiR6VKy0aA','PBtmpl0000000000000002',1215718151,3600,'2k_h890E0bVoT1Jq6s-Edg'),(NULL,'http://','diZvW4bSgZWwyyGP3qXi1g','PBtmpl0000000000000002',1215717972,3600,'kjLi5s-xRSCL63HfE8ArtA'); -INSERT INTO `Collaboration` VALUES ('pbproto000000000000002','2','2',0,'PBtmpl0000000000000208','PBtmpl0000000000000209','PBtmpl0000000000000210','','','assetData.revisionDate','desc',0,0,3600,10,'javascript',1,0,0,0,0,NULL,NULL,2592000,10,30,NULL,1,0,'PBrichedit000000000002',0,0,1163019036,0,'pbworkflow000000000003','pbworkflow000000000003',100,NULL,NULL,NULL,NULL,NULL,0,300,'NpRVTSR-NX2sD52LUc520A',3600,1,1,0,0,0,0,'',1,'default-post-received'); +INSERT INTO `Collaboration` VALUES ('pbproto000000000000002','2','2',0,'PBtmpl0000000000000208','PBtmpl0000000000000209','PBtmpl0000000000000210','','','assetData.revisionDate','desc',0,0,3600,10,'javascript',1,0,0,0,0,NULL,NULL,2592000,10,30,NULL,1,0,'PBrichedit000000000002',0,0,1163019036,0,'pbworkflow000000000003','pbworkflow000000000003',100,NULL,NULL,NULL,NULL,NULL,0,300,'NpRVTSR-NX2sD52LUc520A',3600,1,1,0,0,0,0,'12',1,'default-post-received'); INSERT INTO `DataForm` VALUES ('Thank you for telling your friends about WebGUI!',1,'PBtmpl0000000000000085','PBtmpl0000000000000104','PBtmpl0000000000000021','Szs5eev3OMssmnsyLRZmWA','PBtmpl0000000000000020',0,1213317790,'7',0,0,1,'[{\"width\":\"0\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"from\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Your Email Address\",\"type\":\"Email\",\"defaultValue\":\"\"},{\"width\":\"0\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"to\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Your Friends Email Address\",\"type\":\"Email\",\"defaultValue\":\"\"},{\"width\":\"0\",\"options\":null,\"status\":\"hidden\",\"tabId\":null,\"name\":\"cc\",\"rows\":null,\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":null,\"label\":\"Cc\",\"type\":\"Email\",\"defaultValue\":null},{\"width\":\"0\",\"options\":null,\"status\":\"hidden\",\"tabId\":null,\"name\":\"bcc\",\"rows\":null,\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":null,\"label\":\"Bcc\",\"type\":\"Email\",\"defaultValue\":null},{\"width\":\"0\",\"options\":\"\",\"status\":\"hidden\",\"tabId\":null,\"name\":\"subject\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Subject\",\"type\":\"Text\",\"defaultValue\":\"Cool CMS\"},{\"width\":\"0\",\"options\":\"\",\"status\":\"visible\",\"tabId\":null,\"name\":\"url\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"URL\",\"type\":\"Url\",\"defaultValue\":\"http://www.webgui.org\"},{\"width\":\"300\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"message\",\"rows\":\"100\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"0\",\"subtext\":\"\",\"label\":\"Message\",\"type\":\"Textarea\",\"defaultValue\":\"Hey I just wanted to tell you about this great program called WebGUI that I found: http://www.webgui.org\\r\\n\\r\\nYou should really check it out.\"}]','[]',NULL); -INSERT INTO `FileAsset` VALUES ('7.0-style0000000000002','_Vo1Pvl3sPPANyxz-IcCtA','body_bg.jpg','PBtmpl0000000000000088',1147642492,3600),('7.0-style0000000000004','Gemp7cEVjh2_M2IicUYs-g','gui_bottom.jpg','PBtmpl0000000000000088',1147642493,3600),('7.0-style0000000000005','ry-yzLVH-vxn71H9byjGXA','header.jpg','PBtmpl0000000000000088',1147642493,3600),('7.0-style0000000000006','VEPa65fhY3dok6vj-beFCA','main_bg.gif','PBtmpl0000000000000088',1147642493,3600),('7.0-style0000000000007','Cfay1MNkC-73WKJ7fX_pVw','main_bg.jpg','PBtmpl0000000000000088',1147642493,3600),('7.0-style0000000000008','iEBE--vQb_lxuZd5AP8tuw','nav1_center_on.jpg','PBtmpl0000000000000088',1147642494,3600),('7.0-style0000000000009','XR1Yjf3MkYA53TJlcpRBsw','nav1_off.jpg','PBtmpl0000000000000088',1147642494,3600),('7.0-style0000000000010','sxvAS8na-QAdY_eycd2gKw','nav1_off_center.jpg','PBtmpl0000000000000088',1147642494,3600),('7.0-style0000000000011','2lhmrXW46ZMLvpbaaX2g7Q','nav1_off_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7.0-style0000000000012','sEoRwhmonl877RBgx2nE1w','nav1_off_right.jpg','PBtmpl0000000000000088',1147642495,3600),('7.0-style0000000000013','AoSfRkPI3fl7vAooT4Fj_A','nav1_on.jpg','PBtmpl0000000000000088',1147642495,3600),('7.0-style0000000000014','MgNDJRsghd_zQZ292hqVMQ','nav1_on_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7.0-style0000000000015','aUG1FZaIqHaQHlieZ4_Mkg','nav1_on_right.jpg','PBtmpl0000000000000088',1147642496,3600),('7.0-style0000000000016','HyhLnkaJMfr8eJsLIX8XeA','nav2_center_on.jpg','PBtmpl0000000000000088',1147642496,3600),('7.0-style0000000000017','aledEnWoD-JVNURWSklfdg','nav2_off_center.jpg','PBtmpl0000000000000088',1147642496,3600),('7.0-style0000000000018','Ffd33PToWon9X7mcKZqUAQ','nav2_off_left.jpg','PBtmpl0000000000000088',1147642496,3600),('7.0-style0000000000019','B3TTkcOlr-VzcxRwQXZmyg','nav2_off_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7.0-style0000000000020','RxGSyn-8W4p64SQ-NYzNOg','nav2_on_left.jpg','PBtmpl0000000000000088',1147642497,3600),('7.0-style0000000000021','NciEByP8ssN6qDYyKcoGWw','nav2_on_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7.0-style0000000000022','9OVg_Nxo0gha5pWZsS_dmw','nav_bg.jpg','PBtmpl0000000000000088',1147642497,3600),('7.0-style0000000000023','VKtJGCmBtsMj8ZeAJ6ePNw','nav_on.jpg','PBtmpl0000000000000088',1147642498,3600),('7.0-style0000000000024','ryQb0A4YeEwYZo9hdgrCcw','orange_left01.jpg','PBtmpl0000000000000088',1147642498,3600),('7.0-style0000000000030','coew3C1i9AORof9ezjWLDg','webgui_btn.jpg','PBtmpl0000000000000088',1147642499,3600),('7.0-style0000000000032','HEySmh0CRxpkI-tjzgkDDw','context_bg.jpg','PBtmpl0000000000000088',1147642500,3600),('7.0-style0000000000034','HPn3mVDaMkn8Iu0GAq7cAw','leftCol_header.jpg','PBtmpl0000000000000088',1147642500,3600),('7.0-style0000000000035','IqaSdxJqqN_8C-7OWeyE2g','leftCol_header02.jpg','PBtmpl0000000000000088',1147642501,3600),('7.0-style0000000000036','M0cIcS1GDFIV8lwAw3U2hA','main_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7.0-style0000000000037','77rakTqCXGBihEOXoh4ZXQ','nav_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7.0-style0000000000038','5najYvfJiZBBaiCVxaNkcQ','navbar_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7.0-style0000000000039','27XAOBKNfJ2euexImD73Aw','navbar_left.jpg','PBtmpl0000000000000088',1147642502,3600),('7.0-style0000000000040','sgd1YdmVKj-n6IyIWJicXg','navbar_right.jpg','PBtmpl0000000000000088',1147642502,3600),('7.0-style0000000000041','i1oJph6lb3hxEsTNu_3Y7g','page_title.jpg','PBtmpl0000000000000088',1147642502,3600),('7.0-style0000000000042','qMwO_tp9KOya_N-kyIHDJQ','page_title_bg.jpg','PBtmpl0000000000000088',1147642502,3600),('7.0-style0000000000043','l5hF84u5R9MoqMvS9gpp6g','pb.jpg','PBtmpl0000000000000088',1147642503,3600),('7.0-style0000000000044','Eh4IRmClOEzDAU1IVn5vHQ','pb_wg.jpg','PBtmpl0000000000000088',1147642503,3600),('7.0-style0000000000045','e8yirsGt9FZEgzfeHLgRiw','pb_wg_bg.jpg','PBtmpl0000000000000088',1147642503,3600),('7.0-style0000000000046','hDmN6gu1w_jtrcxgTRN5OQ','rightCol_bg.jpg','PBtmpl0000000000000088',1147642504,3600),('7.0-style0000000000048','_QhSdbnBeA1zio6iAuGIag','wg.jpg','PBtmpl0000000000000088',1147642504,3600),('7.0-style0000000000052','VRqMCZ_-GgaJiDeOrnwlQg','footer_bg.jpg','PBtmpl0000000000000088',1147642505,3600),('7.0-style0000000000053','baxoDEB4C8eLjZbnENMs9w','footer_right.jpg','PBtmpl0000000000000088',1147642505,3600),('7.0-style0000000000054','FlivcrAW0pKW4q_2fvlVpw','header_bg.jpg','PBtmpl0000000000000088',1147642506,3600),('7.0-style0000000000055','5hgdAMRWeSmHDrRFM_qbBw','header_left.jpg','PBtmpl0000000000000088',1147642506,3600),('7.0-style0000000000056','lV6l3Sctxx8J1JmYlXwSDA','header_right.jpg','PBtmpl0000000000000088',1147642506,3600),('7.0-style0000000000057','FKGH2yiNQoC2E_FqbMYebw','main_bg.jpg','PBtmpl0000000000000088',1147642507,3600),('7.0-style0000000000058','UGtgwjDaqCtCPnEkuLPtIw','main_bottom.jpg','PBtmpl0000000000000088',1147642507,3600),('7.0-style0000000000060','XsuCCMz5vyyfC8Xr89pb1Q','main_top_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7.0-style0000000000061','is_6p2ROuy6AhCR1eJ8SdQ','nav_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7.0-style0000000000062','3rpFbJWSV14AWeDZqqPSSw','nav_bg1.jpg','PBtmpl0000000000000088',1147642508,3600),('7.0-style0000000000063','NcTFm_t9rn63ejwtBQnDQw','nav_bg1_on.jpg','PBtmpl0000000000000088',1147642508,3600),('7.0-style0000000000064','XLKBWi6Asbz5CtZdnwzZmg','nav_bg2.jpg','PBtmpl0000000000000088',1147642509,3600),('7.0-style0000000000065','02cdKPH5-SyFEb_Zo_WL8A','nav_bg2_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7.0-style0000000000066','0QQpTB8bi6JZvFrW74SOWg','nav_bg_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7.0-style0000000000067','DdhQHfqGq-yC1ukTdlqoEg','pb.jpg','PBtmpl0000000000000088',1147642509,3600),('7.0-style0000000000068','Y4AWquISZVLcwVQLzd_u7w','spacer.gif','PBtmpl0000000000000088',1147642510,3600),('7.0-style0000000000071','mJOrQFemh2R3xn2HYviQlQ','wg.jpg','PBtmpl0000000000000088',1147642511,3600),('m4YJFaqzultnB_sj1Uq0aw','JX9y6tHiSaAv3-Jq6QXHGw','advert01.swf','pbtmpl0000000000000220',1147642514,3600),('Vzv1pWpg_w6R_o-b0rM2qQ','PMKX5QYkNFvrCD15QVo8Tg','Tutorial.swf','pbtmpl0000000000000221',1147642515,3600),('bANo8aiAPA7aY_oQZKxIWw','l0vJttSGYiITS96pOJIh2Q','rss.gif','PBtmpl0000000000000088',1197330678,0),('fdd8tGExyVwHyrB8RBbKXg','H8qvtaTvDkNHOm-h0yfpAg','next.gif','PBtmpl0000000000000088',1197330839,0),('BpisgHl4ZDcSECJp6oib1w','B3fjChKsXh4QFgvs1Gf4BQ','play.gif','PBtmpl0000000000000088',1197330840,0),('zshreRgPAXtnF0DtVbQ1Yg','tYxidtXD9bXmPkEZsinI-A','previous.gif','PBtmpl0000000000000088',1197330840,0),('2ci_v2d4x4uvyjTRlC49OA','QBcmUnAdUKoMQoP9OxDdqA','moveDown.gif','PBtmpl0000000000000088',1209499188,0),('O-EsSzKgAk1KolFT-x_KsA','g8rvEQyyvxfs0sNklPNzsQ','moveUp.gif','PBtmpl0000000000000088',1209499188,0),('POVcY79vIqAHR8OfGt36aw','NGu3NiVKD4TV1Sw4N5YmIg','pagination_button.jpg','PBtmpl0000000000000088',1209499189,0),('hIB-z34r8Xl-vYVYCkKr-w','i1uZztdNddqvW9Tt_JOBzw','bar-btn-r.jpg','PBtmpl0000000000000088',1209499189,0),('-mPUoFlYcjqjPUPRLAlxNQ','X7PA2VUynp_X5b1mHRqvnA','search-field-r.jpg','PBtmpl0000000000000088',1209499189,0),('MDpUOR-N8KMyt1J7Hh_h4w','ed1kbQ8Aed2Uh09gIo5HTQ','bar-btn.jpg','PBtmpl0000000000000088',1209499189,0),('YfXKByTwDZVituMc4h13Dg','SMhIjHLxVLJSjOsSvbLcMA','pagination_bg.jpg','PBtmpl0000000000000088',1209499189,0),('esko_HSU0Gh-uJZ1h3xRmQ','av317NZvdb5ATKy1BctVyg','search-field-l.jpg','PBtmpl0000000000000088',1209499189,0),('oSqpGswzpBG_ErdfYwIO8A','gyukfQn4q_CoHrieNClI3A','top_bg.jpg','PBtmpl0000000000000088',1209499189,0),('MXJklShZvLLB_DSnZQmXrQ','fEBf-KYzxE-cPJYrKkpyHg','title_bg.jpg','PBtmpl0000000000000088',1209499189,0),('BthxD5oJ0idmsyI3ioA2FA','ZzZWC22vEsrgqSbNABaiSw','bar-btn-l.jpg','PBtmpl0000000000000088',1209499189,0),('aZ-1HYQamkRHYXvzAra8WQ','--qeq91xu4bPCfTNHQTN6g','search-field.jpg','PBtmpl0000000000000088',1209499189,0),('eRkb94OYcS5AdcrrerOP5Q','VTYx-kkmpTSFtdKzX9FRcw','rss.gif','PBtmpl0000000000000088',1209499189,0),('TbnkjAJQEASORXIpYqDkcA','rysPVifAyGtsgqtkgS6RTw','blank-image.jpg','PBtmpl0000000000000088',1209499189,0),('er-3faBjY-hhlDcc5aKqdQ','AGRuD_tUqpjUhixhisn8rA','top_bg.jpg','PBtmpl0000000000000088',1209499189,0),('8bFsu2FJUqHRUiHcozcVFw','KQJheWAz7PTd1Gl194tzcg','sub-btn-l.jpg','PBtmpl0000000000000088',1209499189,0),('34Aayx5eA320D8VfhdfDBw','qx70ceBPO3mE5H_ZqhHa3A','sub-btn-r.jpg','PBtmpl0000000000000088',1209499189,0),('TlhKOVmWblZOsAdqmhEpeg','q9zSV7MQt6cwmXLWqoRCHQ','sub-btn.jpg','PBtmpl0000000000000088',1209499189,0),('Nx0ypjO3cN6QdZUBUEE0lA','UX3aGyzXzStKrn0BME9eSQ','pic-title-bg.jpg','PBtmpl0000000000000088',1209499189,0),('CmFZLN7iPS7XXvUEsxKPKA','3rRxsOMTV6hkG8TCywAxQg','row-2.jpg','PBtmpl0000000000000088',1209499190,0),('v_XBgwwZqgW1D5s4y05qfg','SHaZ0680E30gPydYkaxPPQ','addtl-info.gif','PBtmpl0000000000000088',1209499190,0),('4TdAkKoQbSCvI7QWcW889A','JsG1nDZj8IB7zdaEpqxljQ','row-1.jpg','PBtmpl0000000000000088',1209499190,0),('SAgK6eDPCG1cgkJ59WapHQ','blLNHs44P_vzBevRm3EKVg','prev-btn.gif','PBtmpl0000000000000088',1209499190,0),('XJYLuvGy9ubF7JNKyINtpA','7Fb1GdqH0E_1Or-ltSpW5Q','play-btn.gif','PBtmpl0000000000000088',1209499190,0),('RWj7hyv2SpZuXxwj1Wocug','WPuDj1dkyhluxUfsNHnPhg','next-btn.gif','PBtmpl0000000000000088',1209499190,0),('aq8QElnlm3YufAoxRz9Pcg','sDgpNdN1VdgPUQS6h57gVw','data-bg.jpg','PBtmpl0000000000000088',1209499190,0),('_bZJ9LA_KNekZiFPaP2SeQ','RwcPC6VO-WH3HPaMNxQdxQ','shelf-titles.jpg','PBtmpl0000000000000088',1210777868,0),('hQ7z33_jOYkQ8WNX5xy9Sw','HCc0_yDJrhZIoKV__wiUDw','style-button.gif','PBtmpl0000000000000088',1209509455,0),('vWW_DcHiYSrKZOkkIfEfcQ','t_FrH8_ktSJtHQGQLDeudA','row-2.jpg','PBtmpl0000000000000088',1209509433,0),('_bPYzRA87NTAUIKlfrJMHg','EgZoQgSAhCrNP3sXjRDPkw','row-1.jpg','PBtmpl0000000000000088',1209509433,0),('nJjZHRwdDs5MAZYsAyioHw','edb4FERsJ0pU0mmnfsiCig','title-bg.jpg','PBtmpl0000000000000088',1209509433,0),('8hxfkrJPeFVRWF5piCNJ1A','hRM4w6S2cqFdDRPcUP6FIg','field-bg.jpg','PBtmpl0000000000000088',1209509433,0),('Osx7WN52iIKHZFT4vqUBHQ','Wa42mXdBWCT9B9kgqzh9CQ','search-btn.gif','PBtmpl0000000000000088',1209509433,0),('oWff8fGzRdHPyq5VNREe9Q','j-AYUZHpCRd0yYH2Youp4A','top-bg.jpg','PBtmpl0000000000000088',1209509433,0),('uqbkvb1b9443VvfkyRz95w','JXBzB0XDxTHC_KRk0jROGQ','save-button.gif','PBtmpl0000000000000088',1209509433,0),('8YiMkcz32xalkAn3WBLpag','3lttrXIB4qCFnsKxFTJoKw','go-btn.gif','PBtmpl0000000000000088',1210181860,0),('2q5fxatSFLgIhXaUX-oSvg','j5rX358i5J9yPV4DoEHwxg','bottom-left.jpg','PBtmpl0000000000000088',1204149033,0),('_d5WTkKjnwct-_Dk7gZHvQ','tpvHAIwy2uRbYM8spLAfVA','bottom-right.jpg','PBtmpl0000000000000088',1204149033,0),('Iz2mUR3jCPKyemwAea4b2g','7wvz-X76oSFQc4y88amMIA','input_bg.jpg','PBtmpl0000000000000088',1204149033,0),('JU9bjsLRoWj7GVHs__prig','hT-SRTK5QszwKt9YV7bSDg','top-left.jpg','PBtmpl0000000000000088',1204149033,0),('noOlnjQGexHg8c4bGVUo9g','itESNdKblVlX-kLwnt3qVw','top-right.jpg','PBtmpl0000000000000088',1204149033,0),('7.0-style0000000000059','QOhEl8bdecbSrml06V84iw','main_top.jpg','PBtmpl0000000000000088',1213386091,0),('o_pq_e4vRyhMOKFzs61eag','zTRhj1ZmjPc6b4ytLNIdLg','book-covers.jpg','PBtmpl0000000000000088',1215714957,0); -INSERT INTO `Folder` VALUES ('PBasset000000000000002','PBtmpl0000000000000078',1124395696,3600,0,'ASC'),('7.0-style0000000000001','PBtmpl0000000000000078',1147642492,3600,0,'ASC'),('7.0-style0000000000031','PBtmpl0000000000000078',1147642500,3600,0,'ASC'),('PBasset000000000000003','PBtmpl0000000000000078',1147642437,3600,0,'ASC'),('nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000078',1147642466,3600,0,'ASC'),('S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000078',1147642468,3600,0,'ASC'),('tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000078',1147642469,3600,0,'ASC'),('GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('VXSsbsfcfht1904EWkb1sw','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000078',1222803056,3600,0,'ASC'),('3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000078',1222803070,3600,0,'ASC'),('cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000078',1147642477,3600,0,'ASC'),('VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000078',1147642477,3600,0,'ASC'),('f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000078',1147642482,3600,0,'ASC'),('9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000078',1147642483,3600,0,'ASC'),('CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('tempspace0000000000000','PBtmpl0000000000000078',1185754574,3600,0,'ASC'),('kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000078',1197330678,3600,0,'ASC'),('Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000078',1213244777,3600,0,'ASC'),('-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000078',1209325764,3600,0,'ASC'),('4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000078',1208725439,3600,0,'ASC'),('aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000078',1213283425,3600,0,'ASC'),('TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000078',1211664878,3600,0,'ASC'),('6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000078',1210777115,3600,0,'ASC'),('gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000078',1212086102,3600,0,'ASC'),('6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000078',1209509389,3600,0,'ASC'),('C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000078',1212160830,3600,0,'ASC'),('aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000078',1213122695,3600,0,'ASC'),('gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000078',1213734379,3600,0,'ASC'),('jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000078',1216250666,3600,0,'ASC'),('1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000078',1222803099,3600,0,'ASC'),('zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000078',1222803114,3600,0,'ASC'),('tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000078',1222803200,3600,0,'ASC'),('GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000078',1222803205,3600,0,'ASC'),('tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000078',1222803213,3600,0,'ASC'),('vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000078',1222803217,3600,0,'ASC'),('hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000078',1222803234,3600,0,'ASC'),('eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000078',1222803238,3600,0,'ASC'),('5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000078',1222803244,3600,0,'ASC'),('rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000078',1222803249,3600,0,'ASC'),('V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000078',1222803253,3600,0,'ASC'),('nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000078',1222803258,3600,0,'ASC'),('y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000078',1222803264,3600,0,'ASC'),('vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000078',1222803302,3600,0,'ASC'),('lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000078',1222803309,3600,0,'ASC'),('huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000078',1222803313,3600,0,'ASC'),('9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000078',1222803338,3600,0,'ASC'),('yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000078',1222803342,3600,0,'ASC'),('pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000078',1222803347,3600,0,'ASC'),('71e17KeduiXgODLMlUxiow','PBtmpl0000000000000078',1222803352,3600,0,'ASC'),('xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000078',1222803378,3600,0,'ASC'),('0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000078',1222803383,3600,0,'ASC'),('taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000078',1222803387,3600,0,'ASC'),('K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000078',1222803391,3600,0,'ASC'),('fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000078',1222803395,3600,0,'ASC'),('oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000078',1222803399,3600,0,'ASC'),('9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000078',1222803405,3600,0,'ASC'),('_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000078',1222803409,3600,0,'ASC'),('Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000078',1222803478,3600,0,'ASC'),('NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000078',1222803638,3600,0,'ASC'),('AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000078',1222803665,3600,0,'ASC'),('F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000078',1222803673,3600,0,'ASC'),('Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000078',1222803760,3600,0,'ASC'),('BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000078',1222803871,3600,0,'ASC'),('X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000078',1222804045,3600,0,'ASC'),('iLzlwGmwrvzlGHXKzaDyjA','PBtmpl0000000000000078',1222804090,3600,0,'ASC'),('UL-ItI4L1Z6-WSuhuXVvsQ','PBtmpl0000000000000078',1225139673,3600,0,'ASC'),('7.0-style0000000000049','PBtmpl0000000000000078',1224117144,3600,0,'ASC'),('QpmlAiYZz6VsKBM-_0wXaw','PBtmpl0000000000000078',1224616691,3600,0,'ASC'),('QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000078',1227080251,3600,0,'ASC'),('HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000078',1225404573,3600,0,'ASC'),('IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000078',1226011853,3600,0,'ASC'),('K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000078',1227074310,3600,0,'ASC'),('_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000078',1226643205,3600,0,'ASC'),('AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000078',1226659753,3600,0,'ASC'),('qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000078',1227074362,3600,0,'ASC'),('5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000078',1227540002,3600,0,'ASC'),('LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000078',1232673968,3600,0,'ASC'); -INSERT INTO `ImageAsset` VALUES ('7.0-style0000000000002',50,NULL,1147642492),('7.0-style0000000000004',50,NULL,1147642493),('7.0-style0000000000005',50,NULL,1147642493),('7.0-style0000000000006',50,NULL,1147642493),('7.0-style0000000000007',50,NULL,1147642493),('7.0-style0000000000008',50,NULL,1147642494),('7.0-style0000000000009',50,NULL,1147642494),('7.0-style0000000000010',50,NULL,1147642494),('7.0-style0000000000011',50,NULL,1147642495),('7.0-style0000000000012',50,NULL,1147642495),('7.0-style0000000000013',50,NULL,1147642495),('7.0-style0000000000014',50,NULL,1147642495),('7.0-style0000000000015',50,NULL,1147642496),('7.0-style0000000000016',50,NULL,1147642496),('7.0-style0000000000017',50,NULL,1147642496),('7.0-style0000000000018',50,NULL,1147642496),('7.0-style0000000000019',50,NULL,1147642497),('7.0-style0000000000020',50,NULL,1147642497),('7.0-style0000000000021',50,NULL,1147642497),('7.0-style0000000000022',50,NULL,1147642497),('7.0-style0000000000023',50,NULL,1147642498),('7.0-style0000000000024',50,NULL,1147642498),('7.0-style0000000000030',50,NULL,1147642499),('7.0-style0000000000032',50,NULL,1147642500),('7.0-style0000000000034',50,NULL,1147642500),('7.0-style0000000000035',50,NULL,1147642501),('7.0-style0000000000036',50,NULL,1147642501),('7.0-style0000000000037',50,NULL,1147642501),('7.0-style0000000000038',50,NULL,1147642501),('7.0-style0000000000039',50,NULL,1147642502),('7.0-style0000000000040',50,NULL,1147642502),('7.0-style0000000000041',50,NULL,1147642502),('7.0-style0000000000042',50,NULL,1147642502),('7.0-style0000000000043',50,NULL,1147642503),('7.0-style0000000000044',50,NULL,1147642503),('7.0-style0000000000045',50,NULL,1147642503),('7.0-style0000000000046',50,NULL,1147642504),('7.0-style0000000000048',50,NULL,1147642504),('7.0-style0000000000052',50,'style=\"border-style:none;\"',1147642505),('7.0-style0000000000053',50,'style=\"border-style:none;\"',1147642505),('7.0-style0000000000054',50,'style=\"border-style:none;\"',1147642506),('7.0-style0000000000055',50,'style=\"border-style:none;\"',1147642506),('7.0-style0000000000056',50,'style=\"border-style:none;\"',1147642506),('7.0-style0000000000057',50,'style=\"border-style:none;\"',1147642507),('7.0-style0000000000058',50,'style=\"border-style:none;\"',1147642507),('7.0-style0000000000060',50,'style=\"border-style:none;\"',1147642508),('7.0-style0000000000061',50,'style=\"border-style:none;\"',1147642508),('7.0-style0000000000062',50,'style=\"border-style:none;\"',1147642508),('7.0-style0000000000063',50,'style=\"border-style:none;\"',1147642508),('7.0-style0000000000064',50,'style=\"border-style:none;\"',1147642509),('7.0-style0000000000065',50,'style=\"border-style:none;\"',1147642509),('7.0-style0000000000066',50,'style=\"border-style:none;\"',1147642509),('7.0-style0000000000067',50,'style=\"border-style:none;\"',1147642509),('7.0-style0000000000068',50,'style=\"border-style:none;\"',1147642510),('7.0-style0000000000071',50,'style=\"border-style:none;\"',1147642511),('bANo8aiAPA7aY_oQZKxIWw',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1197330678),('fdd8tGExyVwHyrB8RBbKXg',50,'style=\"border-style:none;\" alt=\"next.gif\"',1197330839),('BpisgHl4ZDcSECJp6oib1w',50,'style=\"border-style:none;\" alt=\"play.gif\"',1197330840),('zshreRgPAXtnF0DtVbQ1Yg',50,'style=\"border-style:none;\" alt=\"previous.gif\"',1197330840),('2ci_v2d4x4uvyjTRlC49OA',50,'style=\"border-style:none;\" alt=\"moveDown.gif\"',1209499188),('O-EsSzKgAk1KolFT-x_KsA',50,'style=\"border-style:none;\" alt=\"moveUp.gif\"',1209499188),('POVcY79vIqAHR8OfGt36aw',50,'style=\"border-style:none;\" alt=\"pagination_button.jpg\"',1209499189),('hIB-z34r8Xl-vYVYCkKr-w',50,'style=\"border-style:none;\" alt=\"bar-btn-r.jpg\"',1209499189),('-mPUoFlYcjqjPUPRLAlxNQ',50,'style=\"border-style:none;\" alt=\"search-field-r.jpg\"',1209499189),('MDpUOR-N8KMyt1J7Hh_h4w',50,'style=\"border-style:none;\" alt=\"bar-btn.jpg\"',1209499189),('YfXKByTwDZVituMc4h13Dg',50,'style=\"border-style:none;\" alt=\"pagination_bg.jpg\"',1209499189),('esko_HSU0Gh-uJZ1h3xRmQ',50,'style=\"border-style:none;\" alt=\"search-field-l.jpg\"',1209499189),('oSqpGswzpBG_ErdfYwIO8A',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1209499189),('MXJklShZvLLB_DSnZQmXrQ',50,'style=\"border-style:none;\" alt=\"title_bg.jpg\"',1209499189),('BthxD5oJ0idmsyI3ioA2FA',50,'style=\"border-style:none;\" alt=\"bar-btn-l.jpg\"',1209499189),('aZ-1HYQamkRHYXvzAra8WQ',50,'style=\"border-style:none;\" alt=\"search-field.jpg\"',1209499189),('eRkb94OYcS5AdcrrerOP5Q',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1209499189),('TbnkjAJQEASORXIpYqDkcA',50,'style=\"border-style:none;\" alt=\"blank-image.jpg\"',1209499189),('er-3faBjY-hhlDcc5aKqdQ',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1209499189),('8bFsu2FJUqHRUiHcozcVFw',50,'style=\"border-style:none;\" alt=\"sub-btn-l.jpg\"',1209499189),('34Aayx5eA320D8VfhdfDBw',50,'style=\"border-style:none;\" alt=\"sub-btn-r.jpg\"',1209499189),('TlhKOVmWblZOsAdqmhEpeg',50,'style=\"border-style:none;\" alt=\"sub-btn.jpg\"',1209499189),('Nx0ypjO3cN6QdZUBUEE0lA',50,'style=\"border-style:none;\" alt=\"pic-title-bg.jpg\"',1209499189),('CmFZLN7iPS7XXvUEsxKPKA',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209499190),('v_XBgwwZqgW1D5s4y05qfg',50,'style=\"border-style:none;\" alt=\"addtl-info.gif\"',1209499190),('4TdAkKoQbSCvI7QWcW889A',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209499190),('SAgK6eDPCG1cgkJ59WapHQ',50,'style=\"border-style:none;\" alt=\"prev-btn.gif\"',1209499190),('XJYLuvGy9ubF7JNKyINtpA',50,'style=\"border-style:none;\" alt=\"play-btn.gif\"',1209499190),('RWj7hyv2SpZuXxwj1Wocug',50,'style=\"border-style:none;\" alt=\"next-btn.gif\"',1209499190),('aq8QElnlm3YufAoxRz9Pcg',50,'style=\"border-style:none;\" alt=\"data-bg.jpg\"',1209499190),('_bZJ9LA_KNekZiFPaP2SeQ',50,'style=\"border-style:none;\" alt=\"shelf-titles.jpg\"',1210777868),('hQ7z33_jOYkQ8WNX5xy9Sw',50,'style=\"border-style:none;\" alt=\"style-button.gif\"',1209509455),('vWW_DcHiYSrKZOkkIfEfcQ',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209509433),('_bPYzRA87NTAUIKlfrJMHg',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209509433),('nJjZHRwdDs5MAZYsAyioHw',50,'style=\"border-style:none;\" alt=\"title-bg.jpg\"',1209509433),('8hxfkrJPeFVRWF5piCNJ1A',50,'style=\"border-style:none;\" alt=\"field-bg.jpg\"',1209509433),('Osx7WN52iIKHZFT4vqUBHQ',50,'style=\"border-style:none;\" alt=\"search-btn.gif\"',1209509433),('oWff8fGzRdHPyq5VNREe9Q',50,'style=\"border-style:none;\" alt=\"top-bg.jpg\"',1209509433),('uqbkvb1b9443VvfkyRz95w',50,'style=\"border-style:none;\" alt=\"save-button.gif\"',1209509433),('8YiMkcz32xalkAn3WBLpag',50,'style=\"border-style:none;\" alt=\"go-btn.gif\"',1210181860),('2q5fxatSFLgIhXaUX-oSvg',50,'style=\"border-style:none;\" alt=\"bottom-left.jpg\"',1204149033),('_d5WTkKjnwct-_Dk7gZHvQ',50,'style=\"border-style:none;\" alt=\"bottom-right.jpg\"',1204149033),('Iz2mUR3jCPKyemwAea4b2g',50,'style=\"border-style:none;\" alt=\"input_bg.jpg\"',1204149033),('JU9bjsLRoWj7GVHs__prig',50,'style=\"border-style:none;\" alt=\"top-left.jpg\"',1204149033),('noOlnjQGexHg8c4bGVUo9g',50,'style=\"border-style:none;\" alt=\"top-right.jpg\"',1204149033),('7.0-style0000000000059',50,'alt=\"main_top.jpg\"',1213386091),('o_pq_e4vRyhMOKFzs61eag',50,'style=\"border-style:none;\" alt=\"book-covers.jpg\"',1215714957); +INSERT INTO `FileAsset` VALUES ('7-0-style0000000000002','_Vo1Pvl3sPPANyxz-IcCtA','body_bg.jpg','PBtmpl0000000000000088',1147642492,3600),('7-0-style0000000000004','Gemp7cEVjh2_M2IicUYs-g','gui_bottom.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000005','ry-yzLVH-vxn71H9byjGXA','header.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000006','VEPa65fhY3dok6vj-beFCA','main_bg.gif','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000007','Cfay1MNkC-73WKJ7fX_pVw','main_bg.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000008','iEBE--vQb_lxuZd5AP8tuw','nav1_center_on.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000009','XR1Yjf3MkYA53TJlcpRBsw','nav1_off.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000010','sxvAS8na-QAdY_eycd2gKw','nav1_off_center.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000011','2lhmrXW46ZMLvpbaaX2g7Q','nav1_off_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000012','sEoRwhmonl877RBgx2nE1w','nav1_off_right.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000013','AoSfRkPI3fl7vAooT4Fj_A','nav1_on.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000014','MgNDJRsghd_zQZ292hqVMQ','nav1_on_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000015','aUG1FZaIqHaQHlieZ4_Mkg','nav1_on_right.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000016','HyhLnkaJMfr8eJsLIX8XeA','nav2_center_on.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000017','aledEnWoD-JVNURWSklfdg','nav2_off_center.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000018','Ffd33PToWon9X7mcKZqUAQ','nav2_off_left.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000019','B3TTkcOlr-VzcxRwQXZmyg','nav2_off_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000020','RxGSyn-8W4p64SQ-NYzNOg','nav2_on_left.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000021','NciEByP8ssN6qDYyKcoGWw','nav2_on_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000022','9OVg_Nxo0gha5pWZsS_dmw','nav_bg.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000023','VKtJGCmBtsMj8ZeAJ6ePNw','nav_on.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000024','ryQb0A4YeEwYZo9hdgrCcw','orange_left01.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000030','coew3C1i9AORof9ezjWLDg','webgui_btn.jpg','PBtmpl0000000000000088',1147642499,3600),('7-0-style0000000000032','HEySmh0CRxpkI-tjzgkDDw','context_bg.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000034','HPn3mVDaMkn8Iu0GAq7cAw','leftCol_header.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000035','IqaSdxJqqN_8C-7OWeyE2g','leftCol_header02.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000036','M0cIcS1GDFIV8lwAw3U2hA','main_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000037','77rakTqCXGBihEOXoh4ZXQ','nav_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000038','5najYvfJiZBBaiCVxaNkcQ','navbar_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000039','27XAOBKNfJ2euexImD73Aw','navbar_left.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000040','sgd1YdmVKj-n6IyIWJicXg','navbar_right.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000041','i1oJph6lb3hxEsTNu_3Y7g','page_title.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000042','qMwO_tp9KOya_N-kyIHDJQ','page_title_bg.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000043','l5hF84u5R9MoqMvS9gpp6g','pb.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000044','Eh4IRmClOEzDAU1IVn5vHQ','pb_wg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000045','e8yirsGt9FZEgzfeHLgRiw','pb_wg_bg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000046','hDmN6gu1w_jtrcxgTRN5OQ','rightCol_bg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000048','_QhSdbnBeA1zio6iAuGIag','wg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000052','VRqMCZ_-GgaJiDeOrnwlQg','footer_bg.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000053','baxoDEB4C8eLjZbnENMs9w','footer_right.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000054','FlivcrAW0pKW4q_2fvlVpw','header_bg.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000055','5hgdAMRWeSmHDrRFM_qbBw','header_left.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000056','lV6l3Sctxx8J1JmYlXwSDA','header_right.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000057','FKGH2yiNQoC2E_FqbMYebw','main_bg.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000058','UGtgwjDaqCtCPnEkuLPtIw','main_bottom.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000060','XsuCCMz5vyyfC8Xr89pb1Q','main_top_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000061','is_6p2ROuy6AhCR1eJ8SdQ','nav_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000062','3rpFbJWSV14AWeDZqqPSSw','nav_bg1.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000063','NcTFm_t9rn63ejwtBQnDQw','nav_bg1_on.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000064','XLKBWi6Asbz5CtZdnwzZmg','nav_bg2.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000065','02cdKPH5-SyFEb_Zo_WL8A','nav_bg2_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000066','0QQpTB8bi6JZvFrW74SOWg','nav_bg_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000067','DdhQHfqGq-yC1ukTdlqoEg','pb.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000068','Y4AWquISZVLcwVQLzd_u7w','spacer.gif','PBtmpl0000000000000088',1147642510,3600),('7-0-style0000000000071','mJOrQFemh2R3xn2HYviQlQ','wg.jpg','PBtmpl0000000000000088',1147642511,3600),('m4YJFaqzultnB_sj1Uq0aw','JX9y6tHiSaAv3-Jq6QXHGw','advert01.swf','pbtmpl0000000000000220',1147642514,3600),('Vzv1pWpg_w6R_o-b0rM2qQ','PMKX5QYkNFvrCD15QVo8Tg','Tutorial.swf','pbtmpl0000000000000221',1147642515,3600),('bANo8aiAPA7aY_oQZKxIWw','l0vJttSGYiITS96pOJIh2Q','rss.gif','PBtmpl0000000000000088',1197330678,0),('fdd8tGExyVwHyrB8RBbKXg','H8qvtaTvDkNHOm-h0yfpAg','next.gif','PBtmpl0000000000000088',1197330839,0),('BpisgHl4ZDcSECJp6oib1w','B3fjChKsXh4QFgvs1Gf4BQ','play.gif','PBtmpl0000000000000088',1197330840,0),('zshreRgPAXtnF0DtVbQ1Yg','tYxidtXD9bXmPkEZsinI-A','previous.gif','PBtmpl0000000000000088',1197330840,0),('2ci_v2d4x4uvyjTRlC49OA','QBcmUnAdUKoMQoP9OxDdqA','moveDown.gif','PBtmpl0000000000000088',1209499188,0),('O-EsSzKgAk1KolFT-x_KsA','g8rvEQyyvxfs0sNklPNzsQ','moveUp.gif','PBtmpl0000000000000088',1209499188,0),('POVcY79vIqAHR8OfGt36aw','NGu3NiVKD4TV1Sw4N5YmIg','pagination_button.jpg','PBtmpl0000000000000088',1209499189,0),('hIB-z34r8Xl-vYVYCkKr-w','i1uZztdNddqvW9Tt_JOBzw','bar-btn-r.jpg','PBtmpl0000000000000088',1209499189,0),('-mPUoFlYcjqjPUPRLAlxNQ','X7PA2VUynp_X5b1mHRqvnA','search-field-r.jpg','PBtmpl0000000000000088',1209499189,0),('MDpUOR-N8KMyt1J7Hh_h4w','ed1kbQ8Aed2Uh09gIo5HTQ','bar-btn.jpg','PBtmpl0000000000000088',1209499189,0),('YfXKByTwDZVituMc4h13Dg','SMhIjHLxVLJSjOsSvbLcMA','pagination_bg.jpg','PBtmpl0000000000000088',1209499189,0),('esko_HSU0Gh-uJZ1h3xRmQ','av317NZvdb5ATKy1BctVyg','search-field-l.jpg','PBtmpl0000000000000088',1209499189,0),('oSqpGswzpBG_ErdfYwIO8A','gyukfQn4q_CoHrieNClI3A','top_bg.jpg','PBtmpl0000000000000088',1209499189,0),('MXJklShZvLLB_DSnZQmXrQ','fEBf-KYzxE-cPJYrKkpyHg','title_bg.jpg','PBtmpl0000000000000088',1209499189,0),('BthxD5oJ0idmsyI3ioA2FA','ZzZWC22vEsrgqSbNABaiSw','bar-btn-l.jpg','PBtmpl0000000000000088',1209499189,0),('aZ-1HYQamkRHYXvzAra8WQ','--qeq91xu4bPCfTNHQTN6g','search-field.jpg','PBtmpl0000000000000088',1209499189,0),('eRkb94OYcS5AdcrrerOP5Q','VTYx-kkmpTSFtdKzX9FRcw','rss.gif','PBtmpl0000000000000088',1209499189,0),('TbnkjAJQEASORXIpYqDkcA','rysPVifAyGtsgqtkgS6RTw','blank-image.jpg','PBtmpl0000000000000088',1209499189,0),('er-3faBjY-hhlDcc5aKqdQ','AGRuD_tUqpjUhixhisn8rA','top_bg.jpg','PBtmpl0000000000000088',1209499189,0),('8bFsu2FJUqHRUiHcozcVFw','KQJheWAz7PTd1Gl194tzcg','sub-btn-l.jpg','PBtmpl0000000000000088',1209499189,0),('34Aayx5eA320D8VfhdfDBw','qx70ceBPO3mE5H_ZqhHa3A','sub-btn-r.jpg','PBtmpl0000000000000088',1209499189,0),('TlhKOVmWblZOsAdqmhEpeg','q9zSV7MQt6cwmXLWqoRCHQ','sub-btn.jpg','PBtmpl0000000000000088',1209499189,0),('Nx0ypjO3cN6QdZUBUEE0lA','UX3aGyzXzStKrn0BME9eSQ','pic-title-bg.jpg','PBtmpl0000000000000088',1209499189,0),('CmFZLN7iPS7XXvUEsxKPKA','3rRxsOMTV6hkG8TCywAxQg','row-2.jpg','PBtmpl0000000000000088',1209499190,0),('v_XBgwwZqgW1D5s4y05qfg','SHaZ0680E30gPydYkaxPPQ','addtl-info.gif','PBtmpl0000000000000088',1209499190,0),('4TdAkKoQbSCvI7QWcW889A','JsG1nDZj8IB7zdaEpqxljQ','row-1.jpg','PBtmpl0000000000000088',1209499190,0),('SAgK6eDPCG1cgkJ59WapHQ','blLNHs44P_vzBevRm3EKVg','prev-btn.gif','PBtmpl0000000000000088',1209499190,0),('XJYLuvGy9ubF7JNKyINtpA','7Fb1GdqH0E_1Or-ltSpW5Q','play-btn.gif','PBtmpl0000000000000088',1209499190,0),('RWj7hyv2SpZuXxwj1Wocug','WPuDj1dkyhluxUfsNHnPhg','next-btn.gif','PBtmpl0000000000000088',1209499190,0),('aq8QElnlm3YufAoxRz9Pcg','sDgpNdN1VdgPUQS6h57gVw','data-bg.jpg','PBtmpl0000000000000088',1209499190,0),('_bZJ9LA_KNekZiFPaP2SeQ','RwcPC6VO-WH3HPaMNxQdxQ','shelf-titles.jpg','PBtmpl0000000000000088',1210777868,0),('hQ7z33_jOYkQ8WNX5xy9Sw','HCc0_yDJrhZIoKV__wiUDw','style-button.gif','PBtmpl0000000000000088',1209509455,0),('vWW_DcHiYSrKZOkkIfEfcQ','t_FrH8_ktSJtHQGQLDeudA','row-2.jpg','PBtmpl0000000000000088',1209509433,0),('_bPYzRA87NTAUIKlfrJMHg','EgZoQgSAhCrNP3sXjRDPkw','row-1.jpg','PBtmpl0000000000000088',1209509433,0),('nJjZHRwdDs5MAZYsAyioHw','edb4FERsJ0pU0mmnfsiCig','title-bg.jpg','PBtmpl0000000000000088',1209509433,0),('8hxfkrJPeFVRWF5piCNJ1A','hRM4w6S2cqFdDRPcUP6FIg','field-bg.jpg','PBtmpl0000000000000088',1209509433,0),('Osx7WN52iIKHZFT4vqUBHQ','Wa42mXdBWCT9B9kgqzh9CQ','search-btn.gif','PBtmpl0000000000000088',1209509433,0),('oWff8fGzRdHPyq5VNREe9Q','j-AYUZHpCRd0yYH2Youp4A','top-bg.jpg','PBtmpl0000000000000088',1209509433,0),('uqbkvb1b9443VvfkyRz95w','JXBzB0XDxTHC_KRk0jROGQ','save-button.gif','PBtmpl0000000000000088',1209509433,0),('8YiMkcz32xalkAn3WBLpag','3lttrXIB4qCFnsKxFTJoKw','go-btn.gif','PBtmpl0000000000000088',1210181860,0),('2q5fxatSFLgIhXaUX-oSvg','j5rX358i5J9yPV4DoEHwxg','bottom-left.jpg','PBtmpl0000000000000088',1204149033,0),('_d5WTkKjnwct-_Dk7gZHvQ','tpvHAIwy2uRbYM8spLAfVA','bottom-right.jpg','PBtmpl0000000000000088',1204149033,0),('Iz2mUR3jCPKyemwAea4b2g','7wvz-X76oSFQc4y88amMIA','input_bg.jpg','PBtmpl0000000000000088',1204149033,0),('JU9bjsLRoWj7GVHs__prig','hT-SRTK5QszwKt9YV7bSDg','top-left.jpg','PBtmpl0000000000000088',1204149033,0),('noOlnjQGexHg8c4bGVUo9g','itESNdKblVlX-kLwnt3qVw','top-right.jpg','PBtmpl0000000000000088',1204149033,0),('7-0-style0000000000059','QOhEl8bdecbSrml06V84iw','main_top.jpg','PBtmpl0000000000000088',1213386091,0),('o_pq_e4vRyhMOKFzs61eag','zTRhj1ZmjPc6b4ytLNIdLg','book-covers.jpg','PBtmpl0000000000000088',1215714957,0),('hBpisL-_URyZnh9clR5ohA','IYUoN4EWQWHZHQj-f5ex0g','no_photo.gif','PBtmpl0000000000000088',1227634417,0),('FOBV6KkifreXa4GmEAUU4A','69Zh__B-EI01IWjf9KBDrw','no_photo_sm.gif','PBtmpl0000000000000088',1227634447,0); +INSERT INTO `Folder` VALUES ('PBasset000000000000002','PBtmpl0000000000000078',1124395696,3600,0,'ASC'),('7-0-style0000000000001','PBtmpl0000000000000078',1147642492,3600,0,'ASC'),('7-0-style0000000000031','PBtmpl0000000000000078',1147642500,3600,0,'ASC'),('PBasset000000000000003','PBtmpl0000000000000078',1147642437,3600,0,'ASC'),('nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000078',1147642466,3600,0,'ASC'),('S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000078',1147642468,3600,0,'ASC'),('tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000078',1147642469,3600,0,'ASC'),('GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000078',1222803056,3600,0,'ASC'),('3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000078',1222803070,3600,0,'ASC'),('cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000078',1147642477,3600,0,'ASC'),('VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000078',1147642477,3600,0,'ASC'),('f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000078',1147642482,3600,0,'ASC'),('9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000078',1147642483,3600,0,'ASC'),('CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('tempspace0000000000000','PBtmpl0000000000000078',1185754574,3600,0,'ASC'),('kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000078',1197330678,3600,0,'ASC'),('Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000078',1213244777,3600,0,'ASC'),('-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000078',1209325764,3600,0,'ASC'),('4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000078',1208725439,3600,0,'ASC'),('aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000078',1213283425,3600,0,'ASC'),('TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000078',1211664878,3600,0,'ASC'),('6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000078',1210777115,3600,0,'ASC'),('gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000078',1212086102,3600,0,'ASC'),('6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000078',1209509389,3600,0,'ASC'),('C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000078',1212160830,3600,0,'ASC'),('aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000078',1213122695,3600,0,'ASC'),('gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000078',1213734379,3600,0,'ASC'),('jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000078',1216250666,3600,0,'ASC'),('1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000078',1222803099,3600,0,'ASC'),('zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000078',1222803114,3600,0,'ASC'),('tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000078',1222803200,3600,0,'ASC'),('GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000078',1222803205,3600,0,'ASC'),('tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000078',1222803213,3600,0,'ASC'),('vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000078',1222803217,3600,0,'ASC'),('hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000078',1222803234,3600,0,'ASC'),('eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000078',1222803238,3600,0,'ASC'),('5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000078',1222803244,3600,0,'ASC'),('rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000078',1222803249,3600,0,'ASC'),('V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000078',1222803253,3600,0,'ASC'),('nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000078',1222803258,3600,0,'ASC'),('y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000078',1222803264,3600,0,'ASC'),('vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000078',1222803302,3600,0,'ASC'),('lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000078',1222803309,3600,0,'ASC'),('huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000078',1222803313,3600,0,'ASC'),('9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000078',1222803338,3600,0,'ASC'),('yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000078',1222803342,3600,0,'ASC'),('pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000078',1222803347,3600,0,'ASC'),('71e17KeduiXgODLMlUxiow','PBtmpl0000000000000078',1222803352,3600,0,'ASC'),('xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000078',1222803378,3600,0,'ASC'),('0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000078',1222803383,3600,0,'ASC'),('taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000078',1222803387,3600,0,'ASC'),('K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000078',1222803391,3600,0,'ASC'),('fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000078',1222803395,3600,0,'ASC'),('oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000078',1222803399,3600,0,'ASC'),('9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000078',1222803405,3600,0,'ASC'),('_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000078',1222803409,3600,0,'ASC'),('Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000078',1222803478,3600,0,'ASC'),('NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000078',1222803638,3600,0,'ASC'),('AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000078',1222803665,3600,0,'ASC'),('F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000078',1222803673,3600,0,'ASC'),('Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000078',1222803760,3600,0,'ASC'),('BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000078',1222803871,3600,0,'ASC'),('X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000078',1222804045,3600,0,'ASC'),('UL-ItI4L1Z6-WSuhuXVvsQ','PBtmpl0000000000000078',1225139673,3600,0,'ASC'),('7-0-style0000000000049','PBtmpl0000000000000078',1224117144,3600,0,'ASC'),('QpmlAiYZz6VsKBM-_0wXaw','PBtmpl0000000000000078',1224616691,3600,0,'ASC'),('HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000078',1225404573,3600,0,'ASC'),('IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000078',1226011853,3600,0,'ASC'),('K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000078',1227074310,3600,0,'ASC'),('_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000078',1226643205,3600,0,'ASC'),('AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000078',1226659753,3600,0,'ASC'),('qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000078',1227074362,3600,0,'ASC'),('5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000078',1227540002,3600,0,'ASC'),('LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000078',1232673968,3600,0,'ASC'),('QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000078',1233173545,3600,0,'ASC'),('HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000078',1227634350,3600,0,'ASC'); +INSERT INTO `ImageAsset` VALUES ('7-0-style0000000000002',50,NULL,1147642492),('7-0-style0000000000004',50,NULL,1147642493),('7-0-style0000000000005',50,NULL,1147642493),('7-0-style0000000000006',50,NULL,1147642493),('7-0-style0000000000007',50,NULL,1147642493),('7-0-style0000000000008',50,NULL,1147642494),('7-0-style0000000000009',50,NULL,1147642494),('7-0-style0000000000010',50,NULL,1147642494),('7-0-style0000000000011',50,NULL,1147642495),('7-0-style0000000000012',50,NULL,1147642495),('7-0-style0000000000013',50,NULL,1147642495),('7-0-style0000000000014',50,NULL,1147642495),('7-0-style0000000000015',50,NULL,1147642496),('7-0-style0000000000016',50,NULL,1147642496),('7-0-style0000000000017',50,NULL,1147642496),('7-0-style0000000000018',50,NULL,1147642496),('7-0-style0000000000019',50,NULL,1147642497),('7-0-style0000000000020',50,NULL,1147642497),('7-0-style0000000000021',50,NULL,1147642497),('7-0-style0000000000022',50,NULL,1147642497),('7-0-style0000000000023',50,NULL,1147642498),('7-0-style0000000000024',50,NULL,1147642498),('7-0-style0000000000030',50,NULL,1147642499),('7-0-style0000000000032',50,NULL,1147642500),('7-0-style0000000000034',50,NULL,1147642500),('7-0-style0000000000035',50,NULL,1147642501),('7-0-style0000000000036',50,NULL,1147642501),('7-0-style0000000000037',50,NULL,1147642501),('7-0-style0000000000038',50,NULL,1147642501),('7-0-style0000000000039',50,NULL,1147642502),('7-0-style0000000000040',50,NULL,1147642502),('7-0-style0000000000041',50,NULL,1147642502),('7-0-style0000000000042',50,NULL,1147642502),('7-0-style0000000000043',50,NULL,1147642503),('7-0-style0000000000044',50,NULL,1147642503),('7-0-style0000000000045',50,NULL,1147642503),('7-0-style0000000000046',50,NULL,1147642504),('7-0-style0000000000048',50,NULL,1147642504),('7-0-style0000000000052',50,'style=\"border-style:none;\"',1147642505),('7-0-style0000000000053',50,'style=\"border-style:none;\"',1147642505),('7-0-style0000000000054',50,'style=\"border-style:none;\"',1147642506),('7-0-style0000000000055',50,'style=\"border-style:none;\"',1147642506),('7-0-style0000000000056',50,'style=\"border-style:none;\"',1147642506),('7-0-style0000000000057',50,'style=\"border-style:none;\"',1147642507),('7-0-style0000000000058',50,'style=\"border-style:none;\"',1147642507),('7-0-style0000000000060',50,'style=\"border-style:none;\"',1147642508),('7-0-style0000000000061',50,'style=\"border-style:none;\"',1147642508),('7-0-style0000000000062',50,'style=\"border-style:none;\"',1147642508),('7-0-style0000000000063',50,'style=\"border-style:none;\"',1147642508),('7-0-style0000000000064',50,'style=\"border-style:none;\"',1147642509),('7-0-style0000000000065',50,'style=\"border-style:none;\"',1147642509),('7-0-style0000000000066',50,'style=\"border-style:none;\"',1147642509),('7-0-style0000000000067',50,'style=\"border-style:none;\"',1147642509),('7-0-style0000000000068',50,'style=\"border-style:none;\"',1147642510),('7-0-style0000000000071',50,'style=\"border-style:none;\"',1147642511),('bANo8aiAPA7aY_oQZKxIWw',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1197330678),('fdd8tGExyVwHyrB8RBbKXg',50,'style=\"border-style:none;\" alt=\"next.gif\"',1197330839),('BpisgHl4ZDcSECJp6oib1w',50,'style=\"border-style:none;\" alt=\"play.gif\"',1197330840),('zshreRgPAXtnF0DtVbQ1Yg',50,'style=\"border-style:none;\" alt=\"previous.gif\"',1197330840),('2ci_v2d4x4uvyjTRlC49OA',50,'style=\"border-style:none;\" alt=\"moveDown.gif\"',1209499188),('O-EsSzKgAk1KolFT-x_KsA',50,'style=\"border-style:none;\" alt=\"moveUp.gif\"',1209499188),('POVcY79vIqAHR8OfGt36aw',50,'style=\"border-style:none;\" alt=\"pagination_button.jpg\"',1209499189),('hIB-z34r8Xl-vYVYCkKr-w',50,'style=\"border-style:none;\" alt=\"bar-btn-r.jpg\"',1209499189),('-mPUoFlYcjqjPUPRLAlxNQ',50,'style=\"border-style:none;\" alt=\"search-field-r.jpg\"',1209499189),('MDpUOR-N8KMyt1J7Hh_h4w',50,'style=\"border-style:none;\" alt=\"bar-btn.jpg\"',1209499189),('YfXKByTwDZVituMc4h13Dg',50,'style=\"border-style:none;\" alt=\"pagination_bg.jpg\"',1209499189),('esko_HSU0Gh-uJZ1h3xRmQ',50,'style=\"border-style:none;\" alt=\"search-field-l.jpg\"',1209499189),('oSqpGswzpBG_ErdfYwIO8A',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1209499189),('MXJklShZvLLB_DSnZQmXrQ',50,'style=\"border-style:none;\" alt=\"title_bg.jpg\"',1209499189),('BthxD5oJ0idmsyI3ioA2FA',50,'style=\"border-style:none;\" alt=\"bar-btn-l.jpg\"',1209499189),('aZ-1HYQamkRHYXvzAra8WQ',50,'style=\"border-style:none;\" alt=\"search-field.jpg\"',1209499189),('eRkb94OYcS5AdcrrerOP5Q',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1209499189),('TbnkjAJQEASORXIpYqDkcA',50,'style=\"border-style:none;\" alt=\"blank-image.jpg\"',1209499189),('er-3faBjY-hhlDcc5aKqdQ',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1209499189),('8bFsu2FJUqHRUiHcozcVFw',50,'style=\"border-style:none;\" alt=\"sub-btn-l.jpg\"',1209499189),('34Aayx5eA320D8VfhdfDBw',50,'style=\"border-style:none;\" alt=\"sub-btn-r.jpg\"',1209499189),('TlhKOVmWblZOsAdqmhEpeg',50,'style=\"border-style:none;\" alt=\"sub-btn.jpg\"',1209499189),('Nx0ypjO3cN6QdZUBUEE0lA',50,'style=\"border-style:none;\" alt=\"pic-title-bg.jpg\"',1209499189),('CmFZLN7iPS7XXvUEsxKPKA',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209499190),('v_XBgwwZqgW1D5s4y05qfg',50,'style=\"border-style:none;\" alt=\"addtl-info.gif\"',1209499190),('4TdAkKoQbSCvI7QWcW889A',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209499190),('SAgK6eDPCG1cgkJ59WapHQ',50,'style=\"border-style:none;\" alt=\"prev-btn.gif\"',1209499190),('XJYLuvGy9ubF7JNKyINtpA',50,'style=\"border-style:none;\" alt=\"play-btn.gif\"',1209499190),('RWj7hyv2SpZuXxwj1Wocug',50,'style=\"border-style:none;\" alt=\"next-btn.gif\"',1209499190),('aq8QElnlm3YufAoxRz9Pcg',50,'style=\"border-style:none;\" alt=\"data-bg.jpg\"',1209499190),('_bZJ9LA_KNekZiFPaP2SeQ',50,'style=\"border-style:none;\" alt=\"shelf-titles.jpg\"',1210777868),('hQ7z33_jOYkQ8WNX5xy9Sw',50,'style=\"border-style:none;\" alt=\"style-button.gif\"',1209509455),('vWW_DcHiYSrKZOkkIfEfcQ',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209509433),('_bPYzRA87NTAUIKlfrJMHg',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209509433),('nJjZHRwdDs5MAZYsAyioHw',50,'style=\"border-style:none;\" alt=\"title-bg.jpg\"',1209509433),('8hxfkrJPeFVRWF5piCNJ1A',50,'style=\"border-style:none;\" alt=\"field-bg.jpg\"',1209509433),('Osx7WN52iIKHZFT4vqUBHQ',50,'style=\"border-style:none;\" alt=\"search-btn.gif\"',1209509433),('oWff8fGzRdHPyq5VNREe9Q',50,'style=\"border-style:none;\" alt=\"top-bg.jpg\"',1209509433),('uqbkvb1b9443VvfkyRz95w',50,'style=\"border-style:none;\" alt=\"save-button.gif\"',1209509433),('8YiMkcz32xalkAn3WBLpag',50,'style=\"border-style:none;\" alt=\"go-btn.gif\"',1210181860),('2q5fxatSFLgIhXaUX-oSvg',50,'style=\"border-style:none;\" alt=\"bottom-left.jpg\"',1204149033),('_d5WTkKjnwct-_Dk7gZHvQ',50,'style=\"border-style:none;\" alt=\"bottom-right.jpg\"',1204149033),('Iz2mUR3jCPKyemwAea4b2g',50,'style=\"border-style:none;\" alt=\"input_bg.jpg\"',1204149033),('JU9bjsLRoWj7GVHs__prig',50,'style=\"border-style:none;\" alt=\"top-left.jpg\"',1204149033),('noOlnjQGexHg8c4bGVUo9g',50,'style=\"border-style:none;\" alt=\"top-right.jpg\"',1204149033),('7-0-style0000000000059',50,'alt=\"main_top.jpg\"',1213386091),('o_pq_e4vRyhMOKFzs61eag',50,'style=\"border-style:none;\" alt=\"book-covers.jpg\"',1215714957),('hBpisL-_URyZnh9clR5ohA',50,'style=\"border-style:none;\" alt=\"no_photo.gif\"',1227634417),('FOBV6KkifreXa4GmEAUU4A',50,'style=\"border-style:none;\" alt=\"no_photo_sm.gif\"',1227634447); INSERT INTO `Layout` VALUES ('68sKwDgf9cGH58-NZcU4lg','PBtmpl0000000000000054','TKzUMeIxRLrZ3NAEez6CXQ,sWVXMZGibxHe2Ekj1DCldA',NULL,1124395696,'asc'),('_iHetEvMQUOoxS-T2CM0sQ','PBtmpl0000000000000054','x_WjMvFmilhX-jvZuIpinw',NULL,1124395696,'asc'),('8Bb8gu-me2mhL3ljFyiWLg','PBtmpl0000000000000094','6QuS-0rosuZTdTv11fobig.FOvmwGC0GtZo5VTxJIL3OA,ix1p0AbwKAz8QWB-T-HHfg,iCYOjohB9SKvAPr6bXElKA.4Yfz9hqBqM8OYMGuQK8oLw,Wl8WZ43g2rK5AYr9o4zY7w,LBuiKzg2mWwmOPS9AgV3bg,jTNggl7AoVSUc_ZzrvuCmw.',NULL,1124395696,'asc'),('2TqQc4OISddWCZmRY1_m8A','PBtmpl0000000000000054','fK-HMSboA3uu0c1KYkYspA',NULL,1124395696,'asc'),('Swf6L8poXKc7hUaNPkBevw','PBtmpl0000000000000054','Szs5eev3OMssmnsyLRZmWA',NULL,1124395696,'asc'),('x3OFY6OJh_qsXkZfPwug4A','PBtmpl0000000000000054','pJd5TLAjfWMVXD6sCRLwUg',NULL,1124395696,'asc'),('mTOiwwk3q4k9g5-XykXhPA','PBtmpl0000000000000054','diZvW4bSgZWwyyGP3qXi1g,o_pq_e4vRyhMOKFzs61eag,j_1qEqM6iLfQLiR6VKy0aA',NULL,1218149728,'asc'); -INSERT INTO `Navigation` VALUES ('pJd5TLAjfWMVXD6sCRLwUg','descendants','specificUrl','root',55,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000001','self\nancestors','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000093',55,1124395696,'text/html',0),('PBnav00000000000000014','pedigree','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000015','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000016','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000017','self\nsiblings','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000018','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000019','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000020','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000021','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000002','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000006','descendants','specificUrl','home',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000007','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000008','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000009','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000124',55,1124395696,'text/html',0),('PBnav00000000000000010',NULL,'relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000011','self\ndescendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000130',55,1124395696,'text/html',0),('PBnav00000000000000012','descendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000134',55,1124395696,'text/html',0),('PBnav00000000000000013','self\ndescendants','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000136',55,1124395696,'text/html',0),('7.0-style0000000000025','descendants','relativeToRoot','1',1,0,0,0,'stevenav00000000000001',55,1147642498,'text/html',0),('7.0-style0000000000026','descendants','relativeToRoot','2',1,0,0,0,'PBnav000000style01lvl2',55,1147642499,'text/html',0),('7.0-style0000000000070','descendants','relativeToRoot','1',55,0,0,0,'stevecoolmenu000000001',55,1147642510,'text/html',0),('jVKLVakT_iA2010_oEuAwg','self\ndescendants','specificUrl','department',1,0,0,0,'stevecoolmenu000000001',55,1224116526,'text/html',0),('Vch1Ww7G_JpBhOhXX07RDg','ancestors','relativeToCurrentUrl','0',55,0,0,0,'alraubvBu-YJJ614jAHD5w',1,1232664082,'text/html',0); +INSERT INTO `Navigation` VALUES ('pJd5TLAjfWMVXD6sCRLwUg','descendants','specificUrl','root',55,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000001','self\nancestors','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000093',55,1124395696,'text/html',0),('PBnav00000000000000014','pedigree','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000015','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000016','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000017','self\nsiblings','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000018','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000019','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000020','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000021','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000002','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000006','descendants','specificUrl','home',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000007','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000048',55,1124395696,'text/html',0),('PBnav00000000000000008','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000009','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000124',55,1124395696,'text/html',0),('PBnav00000000000000010',NULL,'relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000011','self\ndescendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000130',55,1124395696,'text/html',0),('PBnav00000000000000012','descendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000134',55,1124395696,'text/html',0),('PBnav00000000000000013','self\ndescendants','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000136',55,1124395696,'text/html',0),('7-0-style0000000000025','descendants','relativeToRoot','1',1,0,0,0,'stevenav00000000000001',55,1147642498,'text/html',0),('7-0-style0000000000026','descendants','relativeToRoot','2',1,0,0,0,'PBnav000000style01lvl2',55,1147642499,'text/html',0),('7-0-style0000000000070','descendants','relativeToRoot','1',55,0,0,0,'stevecoolmenu000000001',55,1147642510,'text/html',0),('jVKLVakT_iA2010_oEuAwg','self\ndescendants','specificUrl','department',1,0,0,0,'stevecoolmenu000000001',55,1224116526,'text/html',0),('Vch1Ww7G_JpBhOhXX07RDg','ancestors','relativeToCurrentUrl','0',55,0,1,0,'alraubvBu-YJJ614jAHD5w',1,1235705952,'text/html',0); INSERT INTO `RSSCapable` VALUES ('pbproto000000000000002',1163019036,0,'PBtmpl0000000000000142',NULL); INSERT INTO `RichEdit` VALUES ('PBrichedit000000000002',0,0,0,0,0,0,0,0,0,0,'ltr','bottom',NULL,'a[name|href|target|title],strong/b[class],em/i[class],strike[class],u[class],p[dir|class|align],ol,ul,li,br,img[class|src|border=0|alt|title|hspace|vspace|width|height|align],sub,sup,blockquote[dir|style],table[border=0|cellspacing|cellpadding|width|height|class|align],tr[class|rowspan|width|height|align|valign],td[dir|class|colspan|rowspan|width|height|align|valign],div[dir|class|align],span[class|align],pre[class|align],address[class|align],h1[dir|class|align],h2[dir|class|align],h3[dir|class|align],h4[dir|class|align],h5[dir|class|align],h6[dir|class|align],hr','bold\nitalic\nbullist\nnumlist\nlink\nunlink\nemotions',NULL,NULL,0,1124395696,0,0,NULL),('PBrichedit000000000001',0,0,0,0,600,500,0,0,0,0,'ltr','bottom',NULL,'*[*]','bold\nitalic\njustifyleft\njustifyright\njustifycenter\njustifyfull\nindent\noutdent\nsub\nsup\nformatselect\nremoveformat','bullist\nnumlist\nlink\nwgpagetree\nanchor\nunlink\nadvhr\nimage\nwginsertimage\ncharmap\nwgmacro','tablecontrols\nvisualaid\npreview\ncode\ncleanup\nreplace',1,1207240829,0,0,NULL); INSERT INTO `SyndicatedContent` VALUES ('http://www.plainblack.com/news/news?func=viewRSS',3,'fK-HMSboA3uu0c1KYkYspA','GNvjCFQWjY2AF2uf0aCM8Q',1124395696,'',3600,0); @@ -2590,10 +2504,10 @@ INSERT INTO `Workflow` VALUES ('pbworkflow000000000001','Daily Maintenance Tasks INSERT INTO `WorkflowActivity` VALUES ('pbwfactivity0000000001','pbworkflow000000000001','Delete temp files older than 24 hours',NULL,1,'WebGUI::Workflow::Activity::CleanTempStorage'),('pbwfactivity0000000002','pbworkflow000000000001','Prune file cache larger than 100MB',NULL,3,'WebGUI::Workflow::Activity::CleanFileCache'),('pbwfactivity0000000022','pbworkflow000000000001','Prune database cache larger than 100MB',NULL,4,'WebGUI::Workflow::Activity::CleanDatabaseCache'),('pbwfactivity0000000005','pbworkflow000000000001','Archive old CS threads',NULL,5,'WebGUI::Workflow::Activity::ArchiveOldThreads'),('vtagactivity0000000002','pbworkflow000000000003','Wait Until','This workflow waits until the value chosen in the \"Wait Until\" field has passed and then continues',1,'WebGUI::Workflow::Activity::WaitUntil'),('pbwfactivity0000000007','pbworkflow000000000001','deal with user groupings that have expired',NULL,6,'WebGUI::Workflow::Activity::ExpireGroupings'),('pbwfactivity0000000011','pbworkflow000000000001','Expire old subscription codes',NULL,7,'WebGUI::Workflow::Activity::ExpireSubscriptionCodes'),('pbwfactivity0000000014','pbworkflow000000000001','Summarize Passive Profiling Data',NULL,8,'WebGUI::Workflow::Activity::SummarizePassiveProfileLog'),('pbwfactivity0000000015','pbworkflow000000000001','Sync User Profiles With LDAP',NULL,9,'WebGUI::Workflow::Activity::SyncProfilesToLdap'),('pbwfactivity0000000003','pbworkflow000000000002','Delete login entries older than 90 days',NULL,1,'WebGUI::Workflow::Activity::CleanLoginHistory'),('pbwfactivity0000000004','pbworkflow000000000002','Move clipboard items older than 30 days to trash',NULL,2,'WebGUI::Workflow::Activity::TrashClipboard'),('pbwfactivity0000000008','pbworkflow000000000002','delete asset revisions older than a year from the database',NULL,3,'WebGUI::Workflow::Activity::PurgeOldAssetRevisions'),('pbwfactivity0000000010','pbworkflow000000000002','delete assets from trash that have been sitting around for 30 days',NULL,4,'WebGUI::Workflow::Activity::PurgeOldTrash'),('pbwfactivity0000000009','pbworkflow000000000004','delete expired sessions',NULL,1,'WebGUI::Workflow::Activity::DeleteExpiredSessions'),('pbwfactivity0000000012','pbworkflow000000000004','Get syndicated content',NULL,2,'WebGUI::Workflow::Activity::GetSyndicatedContent'),('vtagactivity0000000001','pbworkflow000000000005','Wait Until','This workflow waits until the value chosen in the \"Wait Until\" field has passed and then continues',2,'WebGUI::Workflow::Activity::WaitUntil'),('pbwfactivity0000000017','pbworkflow000000000005','Get Approval from Content Managers',NULL,1,'WebGUI::Workflow::Activity::RequestApprovalForVersionTag'),('pbwfactivity0000000019','pbworkflow000000000006','Unlock Version Tag',NULL,1,'WebGUI::Workflow::Activity::UnlockVersionTag'),('pbwfactivity0000000020','pbworkflow000000000006','Notify Committer of Denial',NULL,2,'WebGUI::Workflow::Activity::NotifyAboutVersionTag'),('pbwfactivity0000000021','pbworkflow000000000007','Send Queued Messages',NULL,1,'WebGUI::Workflow::Activity::SendQueuedMailMessages'),('csactivity000000000001','csworkflow000000000001','Get the mail',NULL,1,'WebGUI::Workflow::Activity::GetCsMail'),('Dl_3P-4y1OoOTf3cRwQ7EA','AuthLDAPworkflow000001','Synchronize Profile To LDAP',NULL,1,'WebGUI::Workflow::Activity::SyncProfileToLdap'),('DPWwfa2006103000000002','DPWwf20061030000000002','Delete Exported Files',NULL,1,'WebGUI::Workflow::Activity::DeleteExportedFiles'),('SWHs3shndnc8LuLpmLeeNw','pbworkflow000000000004','Update Calendar Feeds','This activity imports calendar events from calendar feeds',3,'WebGUI::Workflow::Activity::CalendarUpdateFeeds'),('pbwfactivity0000000006','pbworkflow000000000003','Commit Assets',NULL,2,'WebGUI::Workflow::Activity::CommitVersionTag'),('newslettersendactivity','pbworkflow000000000002','Send Newsletters For Newsletter Assets',NULL,5,'WebGUI::Workflow::Activity::SendNewsletters'),('unansweredfriends_____','pbworkflow000000000001','Deny Friend Requests Older Than A Month',NULL,10,'WebGUI::Workflow::Activity::DenyUnansweredFriends'),('pbwfactivity0000000016','pbworkflow000000000005','Commit Assets',NULL,3,'WebGUI::Workflow::Activity::CommitVersionTag'),('pbwfactivity0000000018','pbworkflow000000000005','Notify Committer of Approval',NULL,4,'WebGUI::Workflow::Activity::NotifyAboutVersionTag'); INSERT INTO `WorkflowActivityData` VALUES ('pbwfactivity0000000001','storageTimeout','86400'),('pbwfactivity0000000002','sizeLimit','1000000000'),('pbwfactivity0000000022','sizeLimit','1000000000'),('vtagactivity0000000002','type','startTime'),('pbwfactivity0000000003','ageToDelete','7776000'),('pbwfactivity0000000004','trashAfter','2592000'),('pbwfactivity0000000008','purgeAfter','31536000'),('pbwfactivity0000000010','purgeAfter','2592000'),('vtagactivity0000000001','type','startTime'),('pbwfactivity0000000017','message','A new version tag awaits your approval.'),('pbwfactivity0000000017','doOnDeny','pbworkflow000000000006'),('pbwfactivity0000000017','groupToApprove','4'),('pbwfactivity0000000020','message','Your version tag was denied. Please take corrective actions and recommit your changes.'),('pbwfactivity0000000020','who','committer'),('unansweredfriends_____','timeout','2592000'),('pbwfactivity0000000006','trashAfter','2592000'),('pbwfactivity0000000018','who','committer'),('pbwfactivity0000000018','message','Your version tag was approved.'); INSERT INTO `WorkflowSchedule` VALUES ('pbcron0000000000000001','Daily Maintenance',1,0,'30','23','*','*','*','pbworkflow000000000001',NULL,NULL,3,NULL),('pbcron0000000000000002','Weekly Maintenance',1,0,'30','1','*','*','0','pbworkflow000000000002',NULL,NULL,3,NULL),('pbcron0000000000000003','Hourly Maintenance',1,0,'15','*','*','*','*','pbworkflow000000000004',NULL,NULL,3,NULL),('pbcron0000000000000004','Send Queued Email Messages Every 5 Minutes',1,0,'*/5','*','*','*','*','pbworkflow000000000007',NULL,NULL,3,NULL),('NpRVTSR-NX2sD52LUc520A','Request Tracker Mail',0,0,'*/5','*','*','*','*','csworkflow000000000001','WebGUI::Asset::Wobject::Collaboration','new',2,'{\n \"parameters\" : \"pbproto000000000000002\"\n}'); -INSERT INTO `asset` VALUES ('PBasset000000000000001','infinity','000001','published','WebGUI::Asset',1124395696,'3','997995720','3',NULL,1,NULL),('PBasset000000000000002','PBasset000000000000001','000001000001','published','WebGUI::Asset::Wobject::Folder',1124395696,'3','997995720','3',NULL,1,NULL),('68sKwDgf9cGH58-NZcU4lg','PBasset000000000000001','000001000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('iCYOjohB9SKvAPr6bXElKA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000004','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('ix1p0AbwKAz8QWB-T-HHfg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000003','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('_iHetEvMQUOoxS-T2CM0sQ','68sKwDgf9cGH58-NZcU4lg','000001000002000001','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('FOvmwGC0GtZo5VTxJIL3OA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000002','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('8Bb8gu-me2mhL3ljFyiWLg','68sKwDgf9cGH58-NZcU4lg','000001000002000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('m4YJFaqzultnB_sj1Uq0aw','68sKwDgf9cGH58-NZcU4lg','000001000002000008','published','WebGUI::Asset::File',1147642514,'3','997995720','3',NULL,0,NULL),('IWFxZDyGhQ3-SLZhELa3qw','68sKwDgf9cGH58-NZcU4lg','000001000002000009','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('bX5rYxb6tZ9docY6sUhBlw','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000001','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('Vzv1pWpg_w6R_o-b0rM2qQ','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000002','published','WebGUI::Asset::File',1147642515,'3','997995720','3',NULL,0,NULL),('NK8bqlwVRILJknqeCDPBHg','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000003','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('6QuS-0rosuZTdTv11fobig','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000001','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('2TqQc4OISddWCZmRY1_m8A','68sKwDgf9cGH58-NZcU4lg','000001000002000003','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('fK-HMSboA3uu0c1KYkYspA','2TqQc4OISddWCZmRY1_m8A','000001000002000003000001','published','WebGUI::Asset::Wobject::SyndicatedContent',1124395696,'3','997995720','3',NULL,0,NULL),('Swf6L8poXKc7hUaNPkBevw','68sKwDgf9cGH58-NZcU4lg','000001000002000004','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('Szs5eev3OMssmnsyLRZmWA','Swf6L8poXKc7hUaNPkBevw','000001000002000004000001','published','WebGUI::Asset::Wobject::DataForm',1124395696,'3','997995720','3',NULL,0,NULL),('x3OFY6OJh_qsXkZfPwug4A','68sKwDgf9cGH58-NZcU4lg','000001000002000006','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('pJd5TLAjfWMVXD6sCRLwUg','x3OFY6OJh_qsXkZfPwug4A','000001000002000006000001','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000003','7.0-style0000000000001','000001000001000045000002','published','WebGUI::Asset::Snippet',1147642492,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000001','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000009','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000014','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000010','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000015','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000011','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000016','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000012','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000017','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000013','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000018','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000014','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000019','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000015','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000020','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000016','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000021','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000017','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000002','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000018','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000006','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000019','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000007','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000020','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000008','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000021','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000009','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000022','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000010','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000023','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000011','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000024','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000012','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000025','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000013','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000026','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('Wl8WZ43g2rK5AYr9o4zY7w','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000006','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('4Yfz9hqBqM8OYMGuQK8oLw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000005','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000005','7.0-style0000000000001','000001000001000045000004','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000006','7.0-style0000000000001','000001000001000045000005','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000103','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000084','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000002','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000115','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000066','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000080','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000097','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000112','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000121','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000067','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000026','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000128','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000079','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000009','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000083','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000010','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000082','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000011','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000056','TYo2Bwl7aafzTtdHlS-arQ','000001000001000025000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000135','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000131','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000054','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000024','tXwf1zaOXTvsqPn6yu-GSw','000001000001000009000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000088','tPagC0AQErZXjLFZQ6OI1g','000001000001000013000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000078','GYaFxnMu9UsEG8oanwB6TA','000001000001000010000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000125','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000118','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000109','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000094','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000133','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000012','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000065','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000055','VZK3CRgiMb8r4dBjUmCTgQ','000001000001000024000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000020','-K8Hj45mbelljN9-0CXZxg','000001000001000007000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000085','-K8Hj45mbelljN9-0CXZxg','000001000001000007000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000104','-K8Hj45mbelljN9-0CXZxg','000001000001000007000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000021','-K8Hj45mbelljN9-0CXZxg','000001000001000007000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000033','N13SD1Fpqk00UgBt1Z8ivQ','000001000001000012000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000047','cj2y4papTVGZRFdwTI-_fw','000001000001000019000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000029','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000013','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000032','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000014','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000027','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000015','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000031','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000016','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('jTNggl7AoVSUc_ZzrvuCmw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000008','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('LBuiKzg2mWwmOPS9AgV3bg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000007','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('GNvjCFQWjY2AF2uf0aCM8Q','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000068','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000017','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000099','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000018','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000114','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000019','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000092','V3l5S5TtI7wMm1WpIMhvOA','000001000001000017000009000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000044','V3l5S5TtI7wMm1WpIMhvOA','000001000001000017000009000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000059','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000036000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('IZkrow_zwvbf4FCH-taVTQ','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000002','published','WebGUI::Asset::Wobject::Folder',1226011853,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000207','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000007','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('QHn6T9rU7KsnS3Y70KCNTg','PBasset000000000000002','000001000001000053','published','WebGUI::Asset::Wobject::Folder',1227080251,'3','997995720','3',NULL,0,NULL),('HPDOcsj4gBme8D4svHodBw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000001','published','WebGUI::Asset::Wobject::Folder',1225404573,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000002','TCtybxdqmdwdvRn555zpCQ','000001000001000030000002','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000063','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000062','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000061','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000064','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000116','-K8Hj45mbelljN9-0CXZxg','000001000001000007000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000007','7.0-style0000000000001','000001000001000045000006','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000093','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000048','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000108','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000117','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000124','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000130','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000134','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000077','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000020','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000098','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000021','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000122','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000022','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000136','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000013','9M-lrlPQWeeNWfvnDnK_Xg','000001000001000003000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000010','K0q_N885Httqev1VCqUWxg','000001000001000003000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000011','fq1ZkYhH24R5tb96kuT10Q','000001000001000003000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000014','_gBYAdTcbkiyamnqi2Xskg','000001000001000003000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000012','oHk7fAFhEEkB7dHzi0QOQA','000001000001000003000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000006','taX2UYkFF21ALpFZY2rhMw','000001000001000003000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000004','xSmREZO3GNzK3M5PaueOOQ','000001000001000003000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000005','0bx-xoL8TSXXubFuqKAoVQ','000001000001000003000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000057','Ik9HHky10DIyFTKehUD1dw','000001000001000028000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000060','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('pbrobot000000000000001','PBasset000000000000002','000001000001000031','published','WebGUI::Asset::Snippet',1147642511,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000111','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000137','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000132','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000123','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000129','TvOZs8U1kRXLtwtmyW75pg','000001000001000002000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000081','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000023','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000101','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000024','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000065','7.0-style0000000000049','000001000001000047000016','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('OhdaFLE7sXOzo_SIP2ZUgA','68sKwDgf9cGH58-NZcU4lg','000001000002000007','published','WebGUI::Asset::Wobject::Article',1147642513,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000113','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000025','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000037','GdkQpvjRtJqtzOUbwIIQRA','000001000001000017000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000038','tnc5iYyynX2hfdEs9D3P8w','000001000001000017000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000036','tBL7BWiQRZFed2Y-Zjo9tQ','000001000001000017000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000039','vgXdBcFTqU7h4wBG1ewdBw','000001000001000017000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000091','vgXdBcFTqU7h4wBG1ewdBw','000001000001000017000004000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000107','vgXdBcFTqU7h4wBG1ewdBw','000001000001000017000004000003','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000040','hcFlqnXlsmC1ujN6Id0F0A','000001000001000017000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000041','eRJR52fvlaxfetv3DQkQYw','000001000001000017000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000042','5HIDHq5lAWHV5gpYGS0zLg','000001000001000017000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000045','y8XkRdxIperLKkJ3bL5sSQ','000001000001000017000011000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000043','rYEFwXXo0tkGhQTcbDibvg','000001000001000017000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('7.0-style0000000000064','7.0-style0000000000049','000001000001000047000015','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000001','TCtybxdqmdwdvRn555zpCQ','000001000001000030000001','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000053','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000017','published','WebGUI::Asset::Template',1124395696,'3','1222802960','3',NULL,0,NULL),('PBtmpl0000000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000001000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000140','Da6KWn805L4B5e4HFgQRQA','000001000001000035000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000141','-K8Hj45mbelljN9-0CXZxg','000001000001000007000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000066','7.0-style0000000000049','000001000001000047000017','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000062','7.0-style0000000000049','000001000001000047000013','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000060','7.0-style0000000000049','000001000001000047000011','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000061','7.0-style0000000000049','000001000001000047000012','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000057','7.0-style0000000000049','000001000001000047000008','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000058','7.0-style0000000000049','000001000001000047000009','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000059','7.0-style0000000000049','000001000001000047000010','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000056','7.0-style0000000000049','000001000001000047000007','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000052','7.0-style0000000000049','000001000001000047000003','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000053','7.0-style0000000000049','000001000001000047000004','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000054','7.0-style0000000000049','000001000001000047000005','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000055','7.0-style0000000000049','000001000001000047000006','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('stevecoolmenu000000001','7.0-style0000000000049','000001000001000047000001','published','WebGUI::Asset::Template',1147642505,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000051','7.0-style0000000000049','000001000001000047000002','published','WebGUI::Asset::Snippet',1147642505,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000049','PBasset000000000000002','000001000001000047','published','WebGUI::Asset::Wobject::Folder',1147642504,'3','997995720','3',NULL,0,NULL),('stevestyle000000000002','7.0-style0000000000031','000001000001000046000016','published','WebGUI::Asset::Template',1147642504,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000048','7.0-style0000000000031','000001000001000046000017','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000046','7.0-style0000000000031','000001000001000046000015','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000044','7.0-style0000000000031','000001000001000046000013','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000045','7.0-style0000000000031','000001000001000046000014','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000043','7.0-style0000000000031','000001000001000046000012','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000041','7.0-style0000000000031','000001000001000046000010','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000042','7.0-style0000000000031','000001000001000046000011','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000038','7.0-style0000000000031','000001000001000046000007','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000039','7.0-style0000000000031','000001000001000046000008','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000040','7.0-style0000000000031','000001000001000046000009','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000036','7.0-style0000000000031','000001000001000046000005','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000037','7.0-style0000000000031','000001000001000046000006','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000034','7.0-style0000000000031','000001000001000046000003','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000035','7.0-style0000000000031','000001000001000046000004','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000032','7.0-style0000000000031','000001000001000046000001','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000033','7.0-style0000000000031','000001000001000046000002','published','WebGUI::Asset::Snippet',1147642500,'3','997995720','3',NULL,0,NULL),('PBnav000000style01lvl2','7.0-style0000000000001','000001000001000045000028','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000030','7.0-style0000000000001','000001000001000045000029','published','WebGUI::Asset::File::Image',1147642499,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000031','PBasset000000000000002','000001000001000046','published','WebGUI::Asset::Wobject::Folder',1147642500,'3','997995720','3',NULL,0,NULL),('stevenav00000000000001','7.0-style0000000000001','000001000001000045000027','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000025','7.0-style0000000000001','000001000001000045000024','published','WebGUI::Asset::Wobject::Navigation',1147642498,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000026','7.0-style0000000000001','000001000001000045000025','published','WebGUI::Asset::Wobject::Navigation',1147642499,'3','997995720','3',NULL,0,NULL),('stevestyle000000000001','7.0-style0000000000001','000001000001000045000026','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000023','7.0-style0000000000001','000001000001000045000022','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000024','7.0-style0000000000001','000001000001000045000023','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000022','7.0-style0000000000001','000001000001000045000021','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000021','7.0-style0000000000001','000001000001000045000020','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000018','7.0-style0000000000001','000001000001000045000017','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000019','7.0-style0000000000001','000001000001000045000018','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000020','7.0-style0000000000001','000001000001000045000019','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000017','7.0-style0000000000001','000001000001000045000016','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000016','7.0-style0000000000001','000001000001000045000015','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000015','7.0-style0000000000001','000001000001000045000014','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000014','7.0-style0000000000001','000001000001000045000013','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000012','7.0-style0000000000001','000001000001000045000011','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000013','7.0-style0000000000001','000001000001000045000012','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000010','7.0-style0000000000001','000001000001000045000009','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000011','7.0-style0000000000001','000001000001000045000010','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000009','7.0-style0000000000001','000001000001000045000008','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000008','7.0-style0000000000001','000001000001000045000007','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000067','7.0-style0000000000049','000001000001000047000018','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBtmplHelp000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000001000002','published','WebGUI::Asset::Template',1124395706,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000001','PBasset000000000000002','000001000001000045','published','WebGUI::Asset::Wobject::Folder',1147642492,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000001','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000004','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000002','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000005','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000003','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000006','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000004','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000007','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('DPUROtmpl0000000000001','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000003','trash','WebGUI::Asset::Template',1124395707,'3','1226457084','3',NULL,0,NULL),('7.0-style0000000000063','7.0-style0000000000049','000001000001000047000014','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000142','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000026','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('stevestyle000000000003','7.0-style0000000000049','000001000001000047000020','published','WebGUI::Asset::Template',1147642510,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000002','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000001','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000001','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000002','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000003','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000003','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000004','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000004','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000005','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000004','7.0-style0000000000001','000001000001000045000003','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000002','3uuBf8cYuj1sew2OJXl9tg','000001000001000015000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000001','3uuBf8cYuj1sew2OJXl9tg','000001000001000015000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('PBtmplBlankStyle000001','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('DashboardViewTmpl00001','S1A9iAwKcQQ6P20uTqw-Ew','000001000001000006000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('WeatherDataTmpl0000001','9wKWdum0_8z-OhhquWLtSQ','000001000001000044000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000002','Efe2W0UgrSRDltNJ87jlfg','000001000001000037000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000001','Efe2W0UgrSRDltNJ87jlfg','000001000001000037000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('MultiSearchTmpl0000001','bBzO4CWjqU_ile3gf5Iypw','000001000001000021000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000068','7.0-style0000000000049','000001000001000047000019','published','WebGUI::Asset::File::Image',1147642510,'3','997995720','3',NULL,0,NULL),('ZipArchiveTMPL00000001','CSN-ZON7Uwv8kxf3F1fh5Q','000001000001000049000001','published','WebGUI::Asset::Template',1133743240,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000002','7.0-style0000000000001','000001000001000045000001','published','WebGUI::Asset::File::Image',1147642492,'3','997995720','3',NULL,0,NULL),('WVtmpl0000000000000001','nqNbSUAhk9Vd1zda2SCz9A','000001000001000017000010000001','published','WebGUI::Asset::Template',1133743240,'3','1222803175','3',NULL,0,NULL),('2CS-BErrjMmESOtGT90qOg','HPDOcsj4gBme8D4svHodBw','000001000001000053000001000003','published','WebGUI::Asset::Template',1227070888,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000208','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000027','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000209','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000028','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000210','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000029','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('ProjectManagerTMPL0004','yD1SMHelczihzjEmx6eXBA','000001000001000027000002000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0003','pV7GnZdpjR3XpZaSINIoeg','000001000001000027000003000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0002','71e17KeduiXgODLMlUxiow','000001000001000027000004000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0001','9A-mg2gwWmaYi9o_1C7ArQ','000001000001000027000001000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('TimeTrackingTMPL000002','vTymIDYL2YqEh6PV50F7ew','000001000001000042000001000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000003','lo1ac3BsoJx3ijGQ3gR-bQ','000001000001000042000002000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000001','huASapWvFDzqwOSbcN-JFQ','000001000001000042000003000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('PBtmpl0000000000000200','f_tn9FfoSfKWX43F83v_3w','000001000001000032000001','published','WebGUI::Asset::Template',1147642427,'3','997995720','3',NULL,0,NULL),('PBasset000000000000003','PBasset000000000000001','000001000003','published','WebGUI::Asset::Wobject::Folder',1147642437,'3','997995720','3',NULL,1,NULL),('pbproto000000000000002','PBasset000000000000002','000001000001000029','published','WebGUI::Asset::Wobject::Collaboration',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000220','tXwf1zaOXTvsqPn6yu-GSw','000001000001000009000002','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000221','tXwf1zaOXTvsqPn6yu-GSw','000001000001000009000003','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('nbSrhXZQuxIjhWFaFPSuVA','PBasset000000000000002','000001000001000001','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('TvOZs8U1kRXLtwtmyW75pg','PBasset000000000000002','000001000001000002','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('xSmREZO3GNzK3M5PaueOOQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000001','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('0bx-xoL8TSXXubFuqKAoVQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000002','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('taX2UYkFF21ALpFZY2rhMw','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000003','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('K0q_N885Httqev1VCqUWxg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000004','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('fq1ZkYhH24R5tb96kuT10Q','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000005','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('oHk7fAFhEEkB7dHzi0QOQA','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000006','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('9M-lrlPQWeeNWfvnDnK_Xg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000007','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('_gBYAdTcbkiyamnqi2Xskg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000003000008','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('GNOAsX98vCsl0JRwfwL-gg','PBasset000000000000002','000001000001000005','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','997995720','3',NULL,0,NULL),('S1A9iAwKcQQ6P20uTqw-Ew','PBasset000000000000002','000001000001000006','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('-K8Hj45mbelljN9-0CXZxg','PBasset000000000000002','000001000001000007','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('tXwf1zaOXTvsqPn6yu-GSw','PBasset000000000000002','000001000001000009','published','WebGUI::Asset::Wobject::Folder',1147642469,'3','997995720','3',NULL,0,NULL),('GYaFxnMu9UsEG8oanwB6TA','PBasset000000000000002','000001000001000010','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('N13SD1Fpqk00UgBt1Z8ivQ','PBasset000000000000002','000001000001000012','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('tPagC0AQErZXjLFZQ6OI1g','PBasset000000000000002','000001000001000013','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('VXSsbsfcfht1904EWkb1sw','PBasset000000000000002','000001000001000014','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('default_post_received1','GNOAsX98vCsl0JRwfwL-gg','000001000001000005000030','published','WebGUI::Asset::Template',1222708029,'3','1222803001','3',NULL,0,NULL),('3uuBf8cYuj1sew2OJXl9tg','PBasset000000000000002','000001000001000015','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('aNNC62qLAS6TB-0_MCYjsw','PBasset000000000000002','000001000001000016','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','997995720','3',NULL,0,NULL),('tBL7BWiQRZFed2Y-Zjo9tQ','zyWi26q9na-iiZqL4yedog','000001000001000017000001','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('GdkQpvjRtJqtzOUbwIIQRA','zyWi26q9na-iiZqL4yedog','000001000001000017000002','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('tnc5iYyynX2hfdEs9D3P8w','zyWi26q9na-iiZqL4yedog','000001000001000017000003','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('vgXdBcFTqU7h4wBG1ewdBw','zyWi26q9na-iiZqL4yedog','000001000001000017000004','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('hcFlqnXlsmC1ujN6Id0F0A','zyWi26q9na-iiZqL4yedog','000001000001000017000005','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('eRJR52fvlaxfetv3DQkQYw','zyWi26q9na-iiZqL4yedog','000001000001000017000006','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('5HIDHq5lAWHV5gpYGS0zLg','zyWi26q9na-iiZqL4yedog','000001000001000017000007','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('rYEFwXXo0tkGhQTcbDibvg','zyWi26q9na-iiZqL4yedog','000001000001000017000008','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('V3l5S5TtI7wMm1WpIMhvOA','zyWi26q9na-iiZqL4yedog','000001000001000017000009','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('nqNbSUAhk9Vd1zda2SCz9A','zyWi26q9na-iiZqL4yedog','000001000001000017000010','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('y8XkRdxIperLKkJ3bL5sSQ','zyWi26q9na-iiZqL4yedog','000001000001000017000011','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('LdiozcIUciWuvt3Z-na5Ww','PBasset000000000000002','000001000001000018','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','997995720','3',NULL,0,NULL),('cj2y4papTVGZRFdwTI-_fw','PBasset000000000000002','000001000001000019','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('bBzO4CWjqU_ile3gf5Iypw','PBasset000000000000002','000001000001000021','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('BFfNj5wA9bDw8H3cnr8pTw','PBasset000000000000002','000001000001000022','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('AgyFhx3eXlfZXNp2MkrsiQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000026000001','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803652','3',NULL,0,NULL),('F7MAQ-cpuvQ1KuC7J4P5zQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000026000002','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803653','3',NULL,0,NULL),('jEz8iTGNWEt2I05IhVV19Q','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000016','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222802937','3',NULL,0,NULL),('VZK3CRgiMb8r4dBjUmCTgQ','PBasset000000000000002','000001000001000024','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','997995720','3',NULL,0,NULL),('TYo2Bwl7aafzTtdHlS-arQ','PBasset000000000000002','000001000001000025','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','997995720','3',NULL,0,NULL),('9A-mg2gwWmaYi9o_1C7ArQ','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000001','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('yD1SMHelczihzjEmx6eXBA','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000002','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('pV7GnZdpjR3XpZaSINIoeg','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000003','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('71e17KeduiXgODLMlUxiow','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000004','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','1222803147','3',NULL,0,NULL),('Ik9HHky10DIyFTKehUD1dw','PBasset000000000000002','000001000001000028','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('f_tn9FfoSfKWX43F83v_3w','PBasset000000000000002','000001000001000032','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('Da6KWn805L4B5e4HFgQRQA','PBasset000000000000002','000001000001000035','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('bbiA9Zq5Gy2oCFBlILO3QA','PBasset000000000000002','000001000001000036','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('Efe2W0UgrSRDltNJ87jlfg','PBasset000000000000002','000001000001000037','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('RrV4aAPnn4dM0ZcU3OXnlw','PBasset000000000000002','000001000001000038','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('5bnNzteN7w3NnK9mF4XiCg','PBasset000000000000002','000001000001000039','published','WebGUI::Asset::Wobject::Folder',1147642481,'3','997995720','3',NULL,0,NULL),('oGfxez5sksyB_PcaAsEm_Q','PBasset000000000000002','000001000001000040','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','997995720','3',NULL,0,NULL),('vTymIDYL2YqEh6PV50F7ew','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000001','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('lo1ac3BsoJx3ijGQ3gR-bQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000002','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('huASapWvFDzqwOSbcN-JFQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000003','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','1222803153','3',NULL,0,NULL),('9wKWdum0_8z-OhhquWLtSQ','PBasset000000000000002','000001000001000044','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','997995720','3',NULL,0,NULL),('CSN-ZON7Uwv8kxf3F1fh5Q','PBasset000000000000002','000001000001000049','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('TCtybxdqmdwdvRn555zpCQ','PBasset000000000000002','000001000001000030','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000070','7.0-style0000000000049','000001000001000047000021','published','WebGUI::Asset::Wobject::Navigation',1147642510,'3','997995720','3',NULL,0,NULL),('7.0-style0000000000071','7.0-style0000000000049','000001000001000047000022','published','WebGUI::Asset::File::Image',1147642511,'3','997995720','3',NULL,0,NULL),('PBnav00000000000bullet','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000027','published','WebGUI::Asset::Template',1148579524,'3','1222803972','3',NULL,0,NULL),('PBnav00000000indentnav','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000028','published','WebGUI::Asset::Template',1148579525,'3','1222803972','3',NULL,0,NULL),('PBtmpl00000000table125','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000008','published','WebGUI::Asset::Template',1148579525,'3','1222803981','3',NULL,0,NULL),('PBtmpl00000000table094','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000009','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table131','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000010','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table135','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000011','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table118','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000012','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl000000000table54','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000013','published','WebGUI::Asset::Template',1154535074,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table109','aNNC62qLAS6TB-0_MCYjsw','000001000001000016000014','published','WebGUI::Asset::Template',1154535074,'3','1222803982','3',NULL,0,NULL),('BmLaN4rmAANkCglXUViEbg','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000005','published','WebGUI::Asset::Wobject::Folder',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0006','BmLaN4rmAANkCglXUViEbg','000001000001000027000005000001','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0005','BmLaN4rmAANkCglXUViEbg','000001000001000027000005000002','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('Q4uX_C557arTp6D_jwB1jQ','PBasset000000000000002','000001000001000048','published','WebGUI::Asset::Wobject::Folder',1165460175,'3','997995720','3',NULL,0,NULL),('WikiRCTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000001','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiFrontTmpl000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000002','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiSearchTmpl00000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000003','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPHTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000004','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageTmpl0000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000005','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageEditTmpl000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000006','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiMPTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000007','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('SQLReportDownload00001','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000036000002','published','WebGUI::Asset::Template',1171466654,'3','1222803962','3',NULL,0,NULL),('X7DrzUcj8pOKFa_6k9D5iw','PBasset000000000000002','000001000001000023','published','WebGUI::Asset::Wobject::Folder',1185754569,'3','997995720','3',NULL,0,NULL),('newsletter000000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000001','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettercs0000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000002','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettersubscrip0001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000003','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('MBmWlA_YEA2I6D29OMGtRg','HPDOcsj4gBme8D4svHodBw','000001000001000053000001000004','published','WebGUI::Asset::Template',1226542675,'3','997995720','3',NULL,0,NULL),('FJbUTvZ2nUTn65LpW6gjsA','HPDOcsj4gBme8D4svHodBw','000001000001000053000001000001','published','WebGUI::Asset::Template',1227070381,'3','997995720','3',NULL,0,NULL),('WikiKeyword00000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000008','published','WebGUI::Asset::Template',1185754571,'3','1222803956','3',NULL,0,NULL),('tempspace0000000000000','PBasset000000000000001','000001000004','published','WebGUI::Asset::Wobject::Folder',1185754574,'3','997995720','3',NULL,1,NULL),('iLzlwGmwrvzlGHXKzaDyjA','PBasset000000000000002','000001000001000020','published','WebGUI::Asset::Wobject::Folder',1199479244,'3','997995720','3',NULL,0,NULL),('75CmQgpcCSkdsL-oawdn3Q','HPDOcsj4gBme8D4svHodBw','000001000001000053000001000002','published','WebGUI::Asset::Template',1227052575,'3','997995720','3',NULL,0,NULL),('gI_TxK-5S4DNuv42wpImmw','PBasset000000000000002','000001000001000011','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('jME5BEDYVDlBZ8jIQA9-jQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000001','published','WebGUI::Asset::Template',1197927169,'3','997995720','3',NULL,0,NULL),('azCqD0IjdQSlM3ar29k5Sg','gI_TxK-5S4DNuv42wpImmw','000001000001000011000002','published','WebGUI::Asset::Template',1197881748,'3','997995720','3',NULL,0,NULL),('05FpjceLYhq4csF1Kww1KQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000003','published','WebGUI::Asset::Template',1197879361,'3','997995720','3',NULL,0,NULL),('q5O62aH4pjUXsrQR3Pq4lw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000004','published','WebGUI::Asset::Template',1197825772,'3','997995720','3',NULL,0,NULL),('KAMdiUdJykjN02CPHpyZOw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000005','published','WebGUI::Asset::Template',1197825787,'3','997995720','3',NULL,0,NULL),('OkphOEdaSGTXnFGhK4GT5A','gI_TxK-5S4DNuv42wpImmw','000001000001000011000006','published','WebGUI::Asset::Template',1197825794,'3','997995720','3',NULL,0,NULL),('TEId5V-jEvUULsZA0wuRuA','gI_TxK-5S4DNuv42wpImmw','000001000001000011000007','published','WebGUI::Asset::Template',1197989443,'3','997995720','3',NULL,0,NULL),('6X-7Twabn5KKO_AbgK3PEw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000008','published','WebGUI::Asset::Template',1197987780,'3','997995720','3',NULL,0,NULL),('7JCTAiu1U_bT9ldr655Blw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000009','published','WebGUI::Asset::Template',1197825824,'3','997995720','3',NULL,0,NULL),('0X4Q3tBWUb_thsVbsYz9xQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000010','published','WebGUI::Asset::Template',1197987372,'3','997995720','3',NULL,0,NULL),('m3IbBavqzuKDd2PGGhKPlA','gI_TxK-5S4DNuv42wpImmw','000001000001000011000011','published','WebGUI::Asset::Template',1197825845,'3','997995720','3',NULL,0,NULL),('UTNFeV7B_aSCRmmaFCq4Vw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000012','published','WebGUI::Asset::Template',1197825856,'3','997995720','3',NULL,0,NULL),('zcX-wIUct0S_np14xxOA-A','gI_TxK-5S4DNuv42wpImmw','000001000001000011000013','published','WebGUI::Asset::Template',1197825866,'3','997995720','3',NULL,0,NULL),('MBZK_LPVzqhb4TV4mMRTJg','gI_TxK-5S4DNuv42wpImmw','000001000001000011000014','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_hELmIJfgbAyXFNqPyApxQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000015','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_9_eiaPgxzF_x_upt6-PNQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000016','published','WebGUI::Asset::Snippet',1197988920,'3','997995720','3',NULL,0,NULL),('kaPRSaf8UKiskiGEgJgLAw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000017','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('bANo8aiAPA7aY_oQZKxIWw','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000001','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('2ci_v2d4x4uvyjTRlC49OA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000002','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('O-EsSzKgAk1KolFT-x_KsA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000003','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('fdd8tGExyVwHyrB8RBbKXg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000004','published','WebGUI::Asset::File::Image',1197330839,'3','997995720','3',NULL,0,NULL),('BpisgHl4ZDcSECJp6oib1w','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000005','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('zshreRgPAXtnF0DtVbQ1Yg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000006','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('mM3bjP_iG9sv5nQb4S17tQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000018','published','WebGUI::Asset::Template',1197879662,'3','997995720','3',NULL,0,NULL),('ilu5BrM-VGaOsec9Lm7M6Q','gI_TxK-5S4DNuv42wpImmw','000001000001000011000019','published','WebGUI::Asset::Template',1197878780,'3','997995720','3',NULL,0,NULL),('-ANLpoTEP-n4POAdRxCzRw','gI_TxK-5S4DNuv42wpImmw','000001000001000011000020','published','WebGUI::Asset::Template',1197880641,'3','997995720','3',NULL,0,NULL),('OxJWQgnGsgyGohP2L3zJPQ','gI_TxK-5S4DNuv42wpImmw','000001000001000011000021','published','WebGUI::Asset::Template',1204663962,'3','997995720','3',NULL,0,NULL),('Tsg7xmPYv782j6IVz7yHFg','PBasset000000000000002','000001000001000004','published','WebGUI::Asset::Wobject::Folder',1204890713,'3','997995720','3',NULL,0,NULL),('kj3b-X3i6zRKnhLb4ZiCLw','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000001','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('uRL9qtk7Rb0YRJ41LmHOJw','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000002','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarWeek0000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000003','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarDay00000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000004','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEvent000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000005','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEventEdit00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000006','published','WebGUI::Asset::Template',1205160982,'3','997995720','3',NULL,0,NULL),('CalendarMonth000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000007','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarSearch00000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000008','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarPrintEvent0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000009','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintMonth0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000010','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintWeek00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000011','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintDay000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000004000012','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('jnYdqDkUR8x7Pv2eGR1qTA','PBasset000000000000002','000001000001000041','published','WebGUI::Asset::Wobject::Folder',1205431513,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000001','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000001','published','WebGUI::Asset::Template',1205003608,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000002','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000002','published','WebGUI::Asset::Template',1205003676,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000003','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000003','published','WebGUI::Asset::Template',1205003711,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000004','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000004','published','WebGUI::Asset::Template',1205158717,'3','997995720','3',NULL,0,NULL),('7fE8md51vTCcuJFOvxNaGA','gI_TxK-5S4DNuv42wpImmw','000001000001000011000022','published','WebGUI::Asset::Snippet',1205443600,'3','997995720','3',NULL,0,NULL),('1oGhfj00KkCzP1ez01AfKA','gI_TxK-5S4DNuv42wpImmw','000001000001000011000023','published','WebGUI::Asset::Snippet',1205635970,'3','997995720','3',NULL,0,NULL),('3qiVYhNTXMVC5hfsumVHgg','gI_TxK-5S4DNuv42wpImmw','000001000001000011000024','published','WebGUI::Asset::Snippet',1206743306,'3','997995720','3',NULL,0,NULL),('vrKXEtluIhbmAS9xmPukDA','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000010','published','WebGUI::Asset::Template',1212092352,'3','1222802925','3',NULL,0,NULL),('4qh0kIsFUdd4Ox-Iu1JZgg','PBasset000000000000002','000001000001000008','published','WebGUI::Asset::Wobject::Folder',1208725439,'3','997995720','3',NULL,0,NULL),('BMybD3cEnmXVk2wQ_qEsRQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000001','published','WebGUI::Asset::Template',1208530113,'3','997995720','3',NULL,0,NULL),('OOyMH33plAy6oCj_QWrxtg','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000002','published','WebGUI::Asset::Template',1207951375,'3','997995720','3',NULL,0,NULL),('2rC4ErZ3c77OJzJm7O5s3w','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000003','published','WebGUI::Asset::Template',1208721232,'3','997995720','3',NULL,0,NULL),('PsFn7dJt4wMwBa8hiE3hOA','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000004','published','WebGUI::Asset::Template',1208558071,'3','997995720','3',NULL,0,NULL),('yBwydfooiLvhEFawJb0VTQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000005','published','WebGUI::Asset::Template',1208629936,'3','997995720','3',NULL,0,NULL),('63ix2-hU0FchXGIWkG3tow','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000011','published','WebGUI::Asset::Template',1209588387,'3','1222802925','3',NULL,0,NULL),('POVcY79vIqAHR8OfGt36aw','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000007','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('hIB-z34r8Xl-vYVYCkKr-w','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000008','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('-mPUoFlYcjqjPUPRLAlxNQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000009','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MDpUOR-N8KMyt1J7Hh_h4w','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000010','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('YfXKByTwDZVituMc4h13Dg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000011','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('esko_HSU0Gh-uJZ1h3xRmQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000012','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('oSqpGswzpBG_ErdfYwIO8A','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000013','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MXJklShZvLLB_DSnZQmXrQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000014','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('BthxD5oJ0idmsyI3ioA2FA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000015','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('aZ-1HYQamkRHYXvzAra8WQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000016','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('eRkb94OYcS5AdcrrerOP5Q','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000017','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TbnkjAJQEASORXIpYqDkcA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000018','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('er-3faBjY-hhlDcc5aKqdQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000019','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('8bFsu2FJUqHRUiHcozcVFw','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000020','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('34Aayx5eA320D8VfhdfDBw','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000021','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TlhKOVmWblZOsAdqmhEpeg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000022','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('Nx0ypjO3cN6QdZUBUEE0lA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000023','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('CmFZLN7iPS7XXvUEsxKPKA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000024','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('v_XBgwwZqgW1D5s4y05qfg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000025','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('4TdAkKoQbSCvI7QWcW889A','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000026','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('SAgK6eDPCG1cgkJ59WapHQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000027','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('XJYLuvGy9ubF7JNKyINtpA','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000028','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('RWj7hyv2SpZuXxwj1Wocug','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000029','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('aq8QElnlm3YufAoxRz9Pcg','kaPRSaf8UKiskiGEgJgLAw','000001000001000011000017000030','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('gbnRhcWNk1iQe32LFEB5eQ','PBasset000000000000002','000001000001000033','published','WebGUI::Asset::Wobject::Folder',1210779723,'3','997995720','3',NULL,0,NULL),('6tK47xsaIH-ELw0IBo0uRQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000001','published','WebGUI::Asset::Wobject::Folder',1210777115,'3','997995720','3',NULL,0,NULL),('_bZJ9LA_KNekZiFPaP2SeQ','6tK47xsaIH-ELw0IBo0uRQ','000001000001000033000001000001','published','WebGUI::Asset::File::Image',1210777868,'3','997995720','3',NULL,0,NULL),('nFen0xjkZn8WkpM93C9ceQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000002','published','WebGUI::Asset::Template',1210779326,'3','997995720','3',NULL,0,NULL),('1XOJDcg_ITRYwVM-QnIcPw','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000003','published','WebGUI::Asset::Snippet',1210779441,'3','997995720','3',NULL,0,NULL),('4e-_rNs6mSWedZhQ_V5kJA','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000004','published','WebGUI::Asset::Snippet',1210779672,'3','997995720','3',NULL,0,NULL),('eqb9sWjFEVq0yHunGV8IGw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000012','published','WebGUI::Asset::Template',1213182595,'3','1222802925','3',NULL,0,NULL),('6D4Z-oruXPS6OlH_Kx8pBg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000005','published','WebGUI::Asset::Wobject::Folder',1209509389,'3','997995720','3',NULL,0,NULL),('hQ7z33_jOYkQ8WNX5xy9Sw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000001','published','WebGUI::Asset::File::Image',1209509455,'3','997995720','3',NULL,0,NULL),('vWW_DcHiYSrKZOkkIfEfcQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000002','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('_bPYzRA87NTAUIKlfrJMHg','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000003','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('nJjZHRwdDs5MAZYsAyioHw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000004','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8hxfkrJPeFVRWF5piCNJ1A','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000005','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('Osx7WN52iIKHZFT4vqUBHQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000006','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('oWff8fGzRdHPyq5VNREe9Q','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000007','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('uqbkvb1b9443VvfkyRz95w','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000008','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8YiMkcz32xalkAn3WBLpag','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000009','published','WebGUI::Asset::File::Image',1210181860,'3','997995720','3',NULL,0,NULL),('3n3H85BsdeRQ0I08WmvlOg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000006','published','WebGUI::Asset::Snippet',1212091492,'3','997995720','3',NULL,0,NULL),('5m5I7__l40C4hhv4ydqAHQ','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000007','published','WebGUI::Asset::Snippet',1210181698,'3','997995720','3',NULL,0,NULL),('C5fPz-Wg85vkYRvCdl-Xqw','PBasset000000000000002','000001000001000043','published','WebGUI::Asset::Wobject::Folder',1212160830,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000001','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000001','published','WebGUI::Asset::Template',1212159641,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000002','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000002','published','WebGUI::Asset::Template',1212000800,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000003','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000003','published','WebGUI::Asset::Template',1212001437,'3','997995720','3',NULL,0,NULL),('usuxw9V3jN4d4pujRiEYxg','7.0-style0000000000049','000001000001000047000023','published','WebGUI::Asset::Snippet',1209494150,'3','997995720','3',NULL,0,NULL),('aNmgn0cd6tldmC1FpW4KbA','PBasset000000000000002','000001000001000034','published','WebGUI::Asset::Wobject::Folder',1213122695,'3','997995720','3',NULL,0,NULL),('2q5fxatSFLgIhXaUX-oSvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000001','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('_d5WTkKjnwct-_Dk7gZHvQ','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000002','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('Iz2mUR3jCPKyemwAea4b2g','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000003','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('JU9bjsLRoWj7GVHs__prig','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000004','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('noOlnjQGexHg8c4bGVUo9g','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000005','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('aIpCmr9Hi__vgdZnDTz1jw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000006','published','WebGUI::Asset::Template',1209921197,'3','997995720','3',NULL,0,NULL),('XNd7a_g_cTvJVYrVHcx2Mw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000007','published','WebGUI::Asset::Template',1212099009,'3','997995720','3',NULL,0,NULL),('2gtFt7c0qAFNU3BG_uvNvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000008','published','WebGUI::Asset::Template',1211824430,'3','997995720','3',NULL,0,NULL),('bPz1yk6Y9uwMDMBcmMsSCg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000009','published','WebGUI::Asset::Template',1211829604,'3','997995720','3',NULL,0,NULL),('3womoo7Teyy2YKFa25-MZg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000013','published','WebGUI::Asset::Template',1212098997,'3','1222802925','3',NULL,0,NULL),('EBlxJpZQ9o-8VBOaGQbChA','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000014','published','WebGUI::Asset::Template',1212093746,'3','1222802925','3',NULL,0,NULL),('g8W53Pd71uHB9pxaXhWf_A','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000015','published','WebGUI::Asset::Template',1213184121,'3','1222802925','3',NULL,0,NULL),('mTOiwwk3q4k9g5-XykXhPA','68sKwDgf9cGH58-NZcU4lg','000001000002000005','published','WebGUI::Asset::Wobject::Layout',1215717999,'3','1215733893','3',NULL,0,NULL),('j_1qEqM6iLfQLiR6VKy0aA','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000001','published','WebGUI::Asset::Wobject::Article',1215718151,'3','1215733893','3',NULL,0,NULL),('o_pq_e4vRyhMOKFzs61eag','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000002','published','WebGUI::Asset::File::Image',1215714957,'3','1215733893','3',NULL,0,NULL),('diZvW4bSgZWwyyGP3qXi1g','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000003','published','WebGUI::Asset::Wobject::Article',1215717972,'3','1215733893','3',NULL,0,NULL),('PBEmsBadgeTemplate0000','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000008000006','published','WebGUI::Asset::Template',1221077977,'3','1222802972','3',NULL,0,NULL),('-WM2dt0ZGpDasuL2wWocxg','PBasset000000000000002','000001000001000027','published','WebGUI::Asset::Wobject::Folder',1222803056,'3','997995720','3',NULL,0,NULL),('2OcUWHVsu_L1sDFzIMWYqw','PBasset000000000000002','000001000001000042','published','WebGUI::Asset::Wobject::Folder',1222803070,'3','997995720','3',NULL,0,NULL),('1z9J1O08n_7gVVlBwSRBJQ','PBasset000000000000002','000001000001000003','published','WebGUI::Asset::Wobject::Folder',1222803099,'3','997995720','3',NULL,0,NULL),('zyWi26q9na-iiZqL4yedog','PBasset000000000000002','000001000001000017','published','WebGUI::Asset::Wobject::Folder',1222803114,'3','997995720','3',NULL,0,NULL),('NywJYmGWe1f6EBXJnWg9Xg','PBasset000000000000002','000001000001000026','published','WebGUI::Asset::Wobject::Folder',1222803606,'3','997995720','3',NULL,0,NULL),('UL-ItI4L1Z6-WSuhuXVvsQ','PBasset000000000000002','000001000001000050','published','WebGUI::Asset::Wobject::Folder',1225139673,'3','997995720','3',NULL,0,NULL),('3rjnBVJRO6ZSkxlFkYh_ug','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000050000001','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('TuYPpHx7TUyk08639Pc8Bg','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000050000002','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('THQhn1C-ooj-TLlEP7aIJQ','PBasset000000000000002','000001000001000051','published','WebGUI::Asset::Snippet',1225313951,'3','997995720','3',NULL,0,NULL),('jVKLVakT_iA2010_oEuAwg','7.0-style0000000000049','000001000001000047000024','published','WebGUI::Asset::Wobject::Navigation',1224116526,'3','997995720','3',NULL,0,NULL),('QpmlAiYZz6VsKBM-_0wXaw','PBasset000000000000002','000001000001000052','published','WebGUI::Asset::Wobject::Folder',1224616691,'3','997995720','3',NULL,0,NULL),('h_T2xtOxGRQ9QJOR6ebLpQ','QpmlAiYZz6VsKBM-_0wXaw','000001000001000052000001','published','WebGUI::Asset::Template',1224616545,'3','997995720','3',NULL,0,NULL),('4Ekp0kJoJllRRRo_J1Rj6w','QpmlAiYZz6VsKBM-_0wXaw','000001000001000052000002','published','WebGUI::Asset::Template',1224616672,'3','997995720','3',NULL,0,NULL),('gfZOwaTWYjbSoVaQtHBBEw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000001','published','WebGUI::Asset::Template',1226974679,'3','997995720','3',NULL,0,NULL),('c8xrwVuu5QE0XtF9DiVzLw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000002','published','WebGUI::Asset::Template',1226894351,'3','997995720','3',NULL,0,NULL),('0n4HtbXaWa_XJHkFjetnLQ','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000003','published','WebGUI::Asset::Template',1226894994,'3','997995720','3',NULL,0,NULL),('ErEzulFiEKDkaCDVmxUavw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000004','published','WebGUI::Asset::Template',1226895484,'3','997995720','3',NULL,0,NULL),('6uQEULvXFgCYlRWnYzZsuA','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000005','published','WebGUI::Asset::Template',1226896682,'3','997995720','3',NULL,0,NULL),('DUoxlTBXhVS-Zl3CFDpt9g','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000006','published','WebGUI::Asset::Template',1226896802,'3','997995720','3',NULL,0,NULL),('1Q4Je3hKCJzeo0ZBB5YB8g','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000007','published','WebGUI::Asset::Template',1226898445,'3','997995720','3',NULL,0,NULL),('5A8Hd9zXvByTDy4x-H28qw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000008','published','WebGUI::Asset::Template',1226899462,'3','997995720','3',NULL,0,NULL),('VBkY05f-E3WJS50WpdKd1Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000009','published','WebGUI::Asset::Template',1226899241,'3','997995720','3',NULL,0,NULL),('XgcsoDrbC0duVla7N7JAdw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000010','published','WebGUI::Asset::Template',1226973330,'3','997995720','3',NULL,0,NULL),('cR0UFm7I1qUI2Wbpj--08Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000011','published','WebGUI::Asset::Template',1226964738,'3','997995720','3',NULL,0,NULL),('SVIhz68689hwUGgcDM-gWw','IZkrow_zwvbf4FCH-taVTQ','000001000001000053000002000012','published','WebGUI::Asset::Template',1226973314,'3','997995720','3',NULL,0,NULL),('K0YjxqOqr7RupSo6sIdcAg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000003','published','WebGUI::Asset::Wobject::Folder',1227074310,'3','997995720','3',NULL,0,NULL),('zrNpGbT3odfIkg6nFSUy8Q','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000001','published','WebGUI::Asset::Template',1226994016,'3','997995720','3',NULL,0,NULL),('1Yn_zE_dSiNuaBGNLPbxtw','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000002','published','WebGUI::Asset::Template',1226994422,'3','997995720','3',NULL,0,NULL),('AZFU33p0jpPJ-E6qLSWZng','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000003','published','WebGUI::Asset::Template',1226994865,'3','997995720','3',NULL,0,NULL),('AGJBGviWGAwjnwziiPjvDg','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000004','published','WebGUI::Asset::Template',1226995497,'3','997995720','3',NULL,0,NULL),('7Ijdd8SW32lVgg2H8R-Aqw','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000005','published','WebGUI::Asset::Template',1226995714,'3','997995720','3',NULL,0,NULL),('K8F0j_cq_jgo8dvWY_26Ag','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000006','published','WebGUI::Asset::Template',1226995643,'3','997995720','3',NULL,0,NULL),('G5V6neXIDiFXN05oL-U3AQ','K0YjxqOqr7RupSo6sIdcAg','000001000001000053000003000007','published','WebGUI::Asset::Template',1226995768,'3','997995720','3',NULL,0,NULL),('_ilRXNR3s8F2vGJ_k9ePcg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000004','published','WebGUI::Asset::Wobject::Folder',1226643205,'3','997995720','3',NULL,0,NULL),('9ThW278DWLV0-Svf68ljFQ','_ilRXNR3s8F2vGJ_k9ePcg','000001000001000053000004000001','published','WebGUI::Asset::Template',1226647187,'3','997995720','3',NULL,0,NULL),('AOjPG2NHgfL9Cq6dDJ7mew','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000005','published','WebGUI::Asset::Wobject::Folder',1226659753,'3','997995720','3',NULL,0,NULL),('aUDsJ-vB9RgP-AYvPOy8FQ','AOjPG2NHgfL9Cq6dDJ7mew','000001000001000053000005000001','published','WebGUI::Asset::Template',1226660439,'3','997995720','3',NULL,0,NULL),('qaVcU0FFzzraMX_bzELqzw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000006','published','WebGUI::Asset::Wobject::Folder',1227074362,'3','997995720','3',NULL,0,NULL),('b4n3VyUIsAHyIvT-W-jziA','qaVcU0FFzzraMX_bzELqzw','000001000001000053000006000001','published','WebGUI::Asset::Template',1227074747,'3','997995720','3',NULL,0,NULL),('1IzRpX0tgW7iuCfaU2Kk0A','qaVcU0FFzzraMX_bzELqzw','000001000001000053000006000002','published','WebGUI::Asset::Template',1227079721,'3','997995720','3',NULL,0,NULL),('N716tpSna0iIQTKxS4gTWA','QHn6T9rU7KsnS3Y70KCNTg','000001000001000053000007','published','WebGUI::Asset::Template',1226604666,'3','997995720','3',NULL,0,NULL),('GRUNFctldUgop-qRLuo_DA','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000005','published','WebGUI::Asset::Template',1227254010,'3','997995720','3',NULL,0,NULL),('d8jMMMRddSQ7twP4l1ZSIw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000006','published','WebGUI::Asset::Template',1227248175,'3','997995720','3',NULL,0,NULL),('CxMpE_UPauZA3p8jdrOABw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000007','published','WebGUI::Asset::Template',1227556536,'3','997995720','3',NULL,0,NULL),('1oBRscNIcFOI-pETrCOspA','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000008','published','WebGUI::Asset::Template',1226009642,'3','997995720','3',NULL,0,NULL),('wAc4azJViVTpo-2NYOXWvg','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000009','published','WebGUI::Asset::Template',1226009650,'3','997995720','3',NULL,0,NULL),('AjhlNO3wZvN5k4i4qioWcg','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000010','published','WebGUI::Asset::Template',1226009658,'3','997995720','3',NULL,0,NULL),('itransact_credentials1','PBasset000000000000002','000001000001000054','published','WebGUI::Asset::Template',1228953856,'3','997995720','3',NULL,0,NULL),('hkj6WeChxFyqfP85UlRP8w','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000006','published','WebGUI::Asset::Snippet',1232664229,'3','997995720','3',NULL,0,NULL),('kJf77eCr9GAMiEzWrzsBTA','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000007','published','WebGUI::Asset::Snippet',1229639255,'3','997995720','3',NULL,0,NULL),('4LQT4-bGW4FkiEQLSY5gvQ','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000008','published','WebGUI::Asset::Snippet',1232400287,'3','997995720','3',NULL,0,NULL),('alraubvBu-YJJ614jAHD5w','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000009','published','WebGUI::Asset::Template',1232664015,'3','997995720','3',NULL,0,NULL),('Vch1Ww7G_JpBhOhXX07RDg','LdiozcIUciWuvt3Z-na5Ww','000001000001000018000010','published','WebGUI::Asset::Wobject::Navigation',1232664082,'3','997995720','3',NULL,0,NULL); -INSERT INTO `assetData` VALUES ('PBasset000000000000001',1124395696,'3','pbversion0000000000001','approved','Root','Root','root','3','7','3',NULL,0,1,0,0,0,142,NULL,0,1,0,1124395696),('PBasset000000000000002',1124395696,'3','pbversion0000000000001','approved','Import Node','Import','root/import','3','7','12',NULL,0,1,0,0,0,269,NULL,0,1,0,1124395696),('68sKwDgf9cGH58-NZcU4lg',1124395696,'3','pbversion0000000000001','approved','Home','Home','home','3','7','3',NULL,0,0,0,0,0,299,NULL,0,1,0,1124395696),('_iHetEvMQUOoxS-T2CM0sQ',1124395696,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started','3','7','3',NULL,0,0,0,0,0,315,NULL,0,1,0,1124395696),('8Bb8gu-me2mhL3ljFyiWLg',1124395696,'3','pbversion0000000000001','approved','What should you do next?','Your Next Step','your_next_step','3','7','3',NULL,0,0,0,0,0,484,NULL,0,1,0,1124395696),('Vzv1pWpg_w6R_o-b0rM2qQ',1147642515,'3','pbversion0000000000001','approved','Ad','Ad','home/ad2','3','7','4',NULL,0,1,0,0,0,2155177,NULL,0,1,0,1147642515),('NK8bqlwVRILJknqeCDPBHg',1147642515,'3','pbversion0000000000001','approved','Getting Started (part 2)','Getting Started (part 2)','getting_started/getting-started-part2','3','7','4',NULL,0,1,0,0,0,1660,NULL,0,1,0,1147642515),('6QuS-0rosuZTdTv11fobig',1147642515,'3','pbversion0000000000001','approved','Talk to the Experts','Talk to the Experts','yns/experts','3','7','4',NULL,0,1,0,0,0,670,NULL,0,1,0,1147642515),('ix1p0AbwKAz8QWB-T-HHfg',1147642516,'3','pbversion0000000000001','approved','Get Support','Get Support','yns/support','3','7','4',NULL,0,1,0,0,0,706,NULL,0,1,0,1147642516),('iCYOjohB9SKvAPr6bXElKA',1147642516,'3','pbversion0000000000001','approved','Get Hosting','Get Hosting','yns/hosting','3','7','4',NULL,0,1,0,0,0,662,NULL,0,1,0,1147642516),('4Yfz9hqBqM8OYMGuQK8oLw',1147642516,'3','pbversion0000000000001','approved','Get Features','Get Features','yns/features','3','7','4',NULL,0,1,0,0,0,739,NULL,0,1,0,1147642516),('Wl8WZ43g2rK5AYr9o4zY7w',1147642516,'3','pbversion0000000000001','approved','Get Style','Get Style','yns/style','3','7','4',NULL,0,1,0,0,0,572,NULL,0,1,0,1147642516),('LBuiKzg2mWwmOPS9AgV3bg',1147642517,'3','pbversion0000000000001','approved','Get Translated','Get Translated','yns/translated','3','7','4',NULL,0,1,0,0,0,695,NULL,0,1,0,1147642517),('jTNggl7AoVSUc_ZzrvuCmw',1147642517,'3','pbversion0000000000001','approved','Get Promoted','Get Promoted','yns/promotion','3','7','4',NULL,0,1,0,0,0,688,NULL,0,1,0,1147642517),('2TqQc4OISddWCZmRY1_m8A',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news','3','7','3',NULL,0,0,0,0,0,315,NULL,0,1,0,1124395696),('fK-HMSboA3uu0c1KYkYspA',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news/the_latest_news','3','7','3',NULL,0,1,0,0,0,481,NULL,0,1,0,1124395696),('Swf6L8poXKc7hUaNPkBevw',1124395696,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend','3','7','3',NULL,0,0,0,0,0,309,NULL,0,1,0,1124395696),('x3OFY6OJh_qsXkZfPwug4A',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map','3','7','3',NULL,0,0,0,0,0,294,NULL,0,1,0,1124395696),('pJd5TLAjfWMVXD6sCRLwUg',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map/site_map','3','7','3',NULL,0,1,0,0,0,331,NULL,0,1,0,1124395696),('7.0-style0000000000003',1147642492,'3','pbversion0000000000001','approved','css01.css','css01.css','style1/css01.css','3','7','12',NULL,0,0,0,0,0,4896,NULL,0,1,0,1147642492),('PBnav00000000000000001',1124395696,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail','3','7','12',NULL,0,1,0,0,0,516,NULL,0,1,0,1124395696),('PBnav00000000000000014',1124395696,'3','pbversion0000000000001','approved','FlexMenu','FlexMenu','flexmenu','3','7','12',NULL,0,1,0,0,0,498,NULL,0,1,0,1124395696),('PBnav00000000000000015',1124395696,'3','pbversion0000000000001','approved','currentMenuVertical','currentMenuVertical','currentmenuvertical','3','7','12',NULL,0,1,0,0,0,539,NULL,0,1,0,1124395696),('PBnav00000000000000016',1124395696,'3','pbversion0000000000001','approved','currentMenuHorizontal','currentMenuHorizontal','currentmenuhorizontal','3','7','12',NULL,0,1,0,0,0,545,NULL,0,1,0,1124395696),('PBnav00000000000000017',1124395696,'3','pbversion0000000000001','approved','PreviousDropMenu','PreviousDropMenu','previousdropmenu','3','7','12',NULL,0,1,0,0,0,533,NULL,0,1,0,1124395696),('PBnav00000000000000018',1124395696,'3','pbversion0000000000001','approved','previousMenuVertical','previousMenuVertical','previousmenuvertical','3','7','12',NULL,0,1,0,0,0,543,NULL,0,1,0,1124395696),('PBnav00000000000000019',1124395696,'3','pbversion0000000000001','approved','previousMenuHorizontal','previousMenuHorizontal','previousmenuhorizontal','3','7','12',NULL,0,1,0,0,0,549,NULL,0,1,0,1124395696),('PBnav00000000000000020',1124395696,'3','pbversion0000000000001','approved','rootmenu','rootmenu','rootmenu','3','7','12',NULL,0,1,0,0,0,500,NULL,0,1,0,1124395696),('PBnav00000000000000021',1124395696,'3','pbversion0000000000001','approved','SpecificDropMenu','SpecificDropMenu','specificdropmenu','3','7','12',NULL,0,1,0,0,0,524,NULL,0,1,0,1124395696),('PBnav00000000000000002',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuVertical','SpecificSubMenuVertical','specificsubmenuvertical','3','7','12',NULL,0,1,0,0,0,545,NULL,0,1,0,1124395696),('PBnav00000000000000006',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal','specificsubmenuhorizontal','3','7','12',NULL,0,1,0,0,0,551,NULL,0,1,0,1124395696),('PBnav00000000000000007',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuVertical','TopLevelMenuVertical','toplevelmenuvertical','3','7','12',NULL,0,1,0,0,0,536,NULL,0,1,0,1124395696),('PBnav00000000000000008',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuHorizontal','TopLevelMenuHorizontal','toplevelmenuhorizontal','3','7','12',NULL,0,1,0,0,0,542,NULL,0,1,0,1124395696),('PBnav00000000000000009',1124395696,'3','pbversion0000000000001','approved','RootTab','RootTab','roottab','3','7','12',NULL,0,1,0,0,0,497,NULL,0,1,0,1124395696),('PBnav00000000000000010',1124395696,'3','pbversion0000000000001','approved','TopDropMenu','TopDropMenu','topdropmenu','3','7','12',NULL,0,1,0,0,0,483,NULL,0,1,0,1124395696),('PBnav00000000000000011',1124395696,'3','pbversion0000000000001','approved','dtree','dtree','dtree','3','7','12',NULL,0,1,0,0,0,497,NULL,0,1,0,1124395696),('PBnav00000000000000012',1124395696,'3','pbversion0000000000001','approved','coolmenu','coolmenu','coolmenu','3','7','12',NULL,0,1,0,0,0,501,NULL,0,1,0,1124395696),('PBnav00000000000000013',1124395696,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis','3','7','12',NULL,0,1,0,0,0,512,NULL,0,1,0,1124395696),('7.0-style0000000000006',1147642493,'3','pbversion0000000000001','approved','main_bg.gif','main_bg.gif','style1/main_bg.gif','3','7','12',NULL,0,0,0,0,0,1990,NULL,0,1,0,1147642493),('PBrichedit000000000002',1124395696,'3','pbversion0000000000001','approved','Forum Rich Edit','Forum Rich Edit','forum_rich_edit','3','7','12',NULL,0,0,0,0,0,246,NULL,0,1,0,1124395696),('7.0-style0000000000068',1147642510,'3','pbversion0000000000001','approved','spacer.gif','spacer.gif','style3/spacer.gif','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1147642510),('7.0-style0000000000066',1147642509,'3','pbversion0000000000001','approved','nav_bg_on.jpg','nav_bg_on.jpg','style3/nav_bg_on.jpg','3','7','12',NULL,0,0,0,0,0,647,NULL,0,1,0,1147642509),('7.0-style0000000000067',1147642509,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style3/pb.jpg','3','7','12',NULL,0,0,0,0,0,24970,NULL,0,1,0,1147642509),('7.0-style0000000000062',1147642508,'3','pbversion0000000000001','approved','nav_bg1.jpg','nav_bg1.jpg','style3/nav_bg1.jpg','3','7','12',NULL,0,0,0,0,0,661,NULL,0,1,0,1147642508),('7.0-style0000000000063',1147642508,'3','pbversion0000000000001','approved','nav_bg1_on.jpg','nav_bg1_on.jpg','style3/nav_bg1_on.jpg','3','7','12',NULL,0,0,0,0,0,672,NULL,0,1,0,1147642508),('7.0-style0000000000064',1147642509,'3','pbversion0000000000001','approved','nav_bg2.jpg','nav_bg2.jpg','style3/nav_bg2.jpg','3','7','12',NULL,0,0,0,0,0,664,NULL,0,1,0,1147642509),('7.0-style0000000000065',1147642509,'3','pbversion0000000000001','approved','nav_bg2_on.jpg','nav_bg2_on.jpg','style3/nav_bg2_on.jpg','3','7','12',NULL,0,0,0,0,0,677,NULL,0,1,0,1147642509),('7.0-style0000000000061',1147642508,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style3/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,658,NULL,0,1,0,1147642508),('7.0-style0000000000057',1147642507,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style3/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,628,NULL,0,1,0,1147642507),('7.0-style0000000000058',1147642507,'3','pbversion0000000000001','approved','main_bottom.jpg','main_bottom.jpg','style3/main_bottom.jpg','3','7','12',NULL,0,0,0,0,0,2619,NULL,0,1,0,1147642507),('7.0-style0000000000060',1147642508,'3','pbversion0000000000001','approved','main_top_bg.jpg','main_top_bg.jpg','style3/main_top_bg.jpg','3','7','12',NULL,0,0,0,0,0,676,NULL,0,1,0,1147642508),('7.0-style0000000000054',1147642506,'3','pbversion0000000000001','approved','header_bg.jpg','header_bg.jpg','style3/header_bg.jpg','3','7','12',NULL,0,0,0,0,0,704,NULL,0,1,0,1147642506),('7.0-style0000000000055',1147642506,'3','pbversion0000000000001','approved','header_left.jpg','header_left.jpg','style3/header_left.jpg','3','7','12',NULL,0,0,0,0,0,23972,NULL,0,1,0,1147642506),('7.0-style0000000000056',1147642506,'3','pbversion0000000000001','approved','header_right.jpg','header_right.jpg','style3/header_right.jpg','3','7','12',NULL,0,0,0,0,0,24746,NULL,0,1,0,1147642506),('7.0-style0000000000053',1147642505,'3','pbversion0000000000001','approved','footer_right.jpg','footer_right.jpg','style3/footer_right.jpg','3','7','12',NULL,0,0,0,0,0,2875,NULL,0,1,0,1147642505),('7.0-style0000000000052',1147642505,'3','pbversion0000000000001','approved','footer_bg.jpg','footer_bg.jpg','style3/footer_bg.jpg','3','7','12',NULL,0,0,0,0,0,669,NULL,0,1,0,1147642505),('7.0-style0000000000048',1147642504,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style2/wg.jpg','3','7','12',NULL,0,0,0,0,0,41300,NULL,0,1,0,1147642504),('7.0-style0000000000046',1147642504,'3','pbversion0000000000001','approved','rightCol_bg.jpg','rightCol_bg.jpg','style2/rightcol_bg.jpg','3','7','12',NULL,0,0,0,0,0,1118,NULL,0,1,0,1147642504),('7.0-style0000000000043',1147642503,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style2/pb.jpg','3','7','12',NULL,0,0,0,0,0,45606,NULL,0,1,0,1147642503),('7.0-style0000000000044',1147642503,'3','pbversion0000000000001','approved','pb_wg.jpg','pb_wg.jpg','style2/pb_wg.jpg','3','7','12',NULL,0,0,0,0,0,5140,NULL,0,1,0,1147642503),('7.0-style0000000000040',1147642502,'3','pbversion0000000000001','approved','navbar_right.jpg','navbar_right.jpg','style2/navbar_right.jpg','3','7','12',NULL,0,0,0,0,0,1594,NULL,0,1,0,1147642502),('7.0-style0000000000041',1147642502,'3','pbversion0000000000001','approved','page_title.jpg','page_title.jpg','style2/page_title.jpg','3','7','12',NULL,0,0,0,0,0,49390,NULL,0,1,0,1147642502),('7.0-style0000000000042',1147642502,'3','pbversion0000000000001','approved','page_title_bg.jpg','page_title_bg.jpg','style2/page_title_bg.jpg','3','7','12',NULL,0,0,0,0,0,1110,NULL,0,1,0,1147642502),('7.0-style0000000000038',1147642501,'3','pbversion0000000000001','approved','navbar_bg.jpg','navbar_bg.jpg','style2/navbar_bg.jpg','3','7','12',NULL,0,0,0,0,0,936,NULL,0,1,0,1147642501),('7.0-style0000000000039',1147642502,'3','pbversion0000000000001','approved','navbar_left.jpg','navbar_left.jpg','style2/navbar_left.jpg','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1147642502),('7.0-style0000000000036',1147642501,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style2/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1222,NULL,0,1,0,1147642501),('7.0-style0000000000037',1147642501,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style2/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,902,NULL,0,1,0,1147642501),('7.0-style0000000000033',1147642500,'3','pbversion0000000000001','approved','css02.css','css02.css','style2/css02.css','3','7','12',NULL,0,0,0,0,0,3061,NULL,0,1,0,1147642500),('7.0-style0000000000034',1147642500,'3','pbversion0000000000001','approved','leftCol_header.jpg','leftCol_header.jpg','style2/leftcol_header.jpg','3','7','12',NULL,0,0,0,0,0,21636,NULL,0,1,0,1147642500),('7.0-style0000000000035',1147642501,'3','pbversion0000000000001','approved','leftCol_header02.jpg','leftCol_header02.jpg','style2/leftcol_header02.jpg','3','7','12',NULL,0,0,0,0,0,8868,NULL,0,1,0,1147642501),('7.0-style0000000000030',1147642499,'3','pbversion0000000000001','approved','webgui_btn.jpg','webgui_btn.jpg','style1/webgui_btn.jpg','3','7','12',NULL,0,0,0,0,0,10040,NULL,0,1,0,1147642499),('7.0-style0000000000031',1147642500,'3','pbversion0000000000001','approved','WebGUI 7 Style 2','WebGUI 7 Style 2','root/import/webgui-7-style-2','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1147642500),('7.0-style0000000000032',1147642500,'3','pbversion0000000000001','approved','context_bg.jpg','context_bg.jpg','style2/context_bg.jpg','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1147642500),('PBnav000000style01lvl2',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav lvl2','untitled','style1_nav_lvl2','3','7','12',NULL,0,0,0,0,0,1015,NULL,0,1,0,1228264382),('7.0-style0000000000026',1147642499,'3','pbversion0000000000001','approved','RootTab Level 1','RootTab Level 1','roottab_level1','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1147642499),('stevenav00000000000001',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav','Style 01 Nav','style1_nav','3','7','12',NULL,0,0,0,0,0,994,NULL,0,1,0,1228264382),('7.0-style0000000000025',1147642498,'3','pbversion0000000000001','approved','RootTab Level 0','RootTab Level 0','roottab_level0','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1147642498),('7.0-style0000000000022',1147642497,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style1/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,1914,NULL,0,1,0,1147642497),('7.0-style0000000000023',1147642498,'3','pbversion0000000000001','approved','nav_on.jpg','nav_on.jpg','style1/nav_on.jpg','3','7','12',NULL,0,0,0,0,0,1536,NULL,0,1,0,1147642498),('7.0-style0000000000024',1147642498,'3','pbversion0000000000001','approved','orange_left01.jpg','orange_left01.jpg','style1/orange_left01.jpg','3','7','12',NULL,0,0,0,0,0,5810,NULL,0,1,0,1147642498),('7.0-style0000000000018',1147642496,'3','pbversion0000000000001','approved','nav2_off_left.jpg','nav2_off_left.jpg','style1/nav2_off_left.jpg','3','7','12',NULL,0,0,0,0,0,1174,NULL,0,1,0,1147642496),('7.0-style0000000000019',1147642497,'3','pbversion0000000000001','approved','nav2_off_right.jpg','nav2_off_right.jpg','style1/nav2_off_right.jpg','3','7','12',NULL,0,0,0,0,0,1162,NULL,0,1,0,1147642497),('7.0-style0000000000017',1147642496,'3','pbversion0000000000001','approved','nav2_off_center.jpg','nav2_off_center.jpg','style1/nav2_off_center.jpg','3','7','12',NULL,0,0,0,0,0,1336,NULL,0,1,0,1147642496),('7.0-style0000000000015',1147642496,'3','pbversion0000000000001','approved','nav1_on_right.jpg','nav1_on_right.jpg','style1/nav1_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1936,NULL,0,1,0,1147642496),('7.0-style0000000000014',1147642495,'3','pbversion0000000000001','approved','nav1_on_left.jpg','nav1_on_left.jpg','style1/nav1_on_left.jpg','3','7','12',NULL,0,0,0,0,0,2062,NULL,0,1,0,1147642495),('7.0-style0000000000013',1147642495,'3','pbversion0000000000001','approved','nav1_on.jpg','nav1_on.jpg','style1/nav1_on.jpg','3','7','12',NULL,0,0,0,0,0,4544,NULL,0,1,0,1147642495),('7.0-style0000000000011',1147642495,'3','pbversion0000000000001','approved','nav1_off_left.jpg','nav1_off_left.jpg','style1/nav1_off_left.jpg','3','7','12',NULL,0,0,0,0,0,2128,NULL,0,1,0,1147642495),('7.0-style0000000000012',1147642495,'3','pbversion0000000000001','approved','nav1_off_right.jpg','nav1_off_right.jpg','style1/nav1_off_right.jpg','3','7','12',NULL,0,0,0,0,0,2020,NULL,0,1,0,1147642495),('7.0-style0000000000010',1147642494,'3','pbversion0000000000001','approved','nav1_off_center.jpg','nav1_off_center.jpg','style1/nav1_off_center.jpg','3','7','12',NULL,0,0,0,0,0,2596,NULL,0,1,0,1147642494),('7.0-style0000000000009',1147642494,'3','pbversion0000000000001','approved','nav1_off.jpg','nav1_off.jpg','style1/nav1_off.jpg','3','7','12',NULL,0,0,0,0,0,4870,NULL,0,1,0,1147642494),('7.0-style0000000000007',1147642493,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style1/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1752,NULL,0,1,0,1147642493),('7.0-style0000000000001',1147642492,'3','pbversion0000000000001','approved','WebGUI 7 Style 1','WebGUI 7 Style 1','root/import/webgui-7-style-1','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1147642492),('SynConXSLT000000000001',1124395707,'3','pbversion0000000000001','approved','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT','xslt/rss0.9.xsl','3','7','12',NULL,0,0,0,0,0,2646,NULL,0,1,0,1124395707),('SynConXSLT000000000002',1124395707,'3','pbversion0000000000001','approved','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT','xslt/rss0.91.xsl','3','7','12',NULL,0,0,0,0,0,2485,NULL,0,1,0,1124395707),('SynConXSLT000000000003',1124395707,'3','pbversion0000000000001','approved','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT','xslt/rss1.0.xsl','3','7','12',NULL,0,0,0,0,0,2718,NULL,0,1,0,1124395707),('SynConXSLT000000000004',1124395707,'3','pbversion0000000000001','approved','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT','xslt/rss2.0.xsl','3','7','12',NULL,0,0,0,0,0,2551,NULL,0,1,0,1124395707),('PBtmpl0000000000000036',1129049186,'3','pbversion0000000000001','approved','Default Admin Toggle Macro','Default Admin Toggle Macro','default_admin_toggle_macro','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1228264382),('PBtmpl0000000000000037',1129049186,'3','pbversion0000000000001','approved','Default Account Macro','Default Account Macro','default_account_macro','3','7','12',NULL,0,1,0,0,0,395,NULL,0,1,0,1228264382),('PBtmpl0000000000000038',1129049186,'3','pbversion0000000000001','approved','Default Editable Toggle Macro','Default Editable Toggle Macro','default_editable_toggle_macro','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1228264382),('PBtmpl0000000000000040',1129049186,'3','pbversion0000000000001','approved','Default Group Add Macro','Default Group Add Macro','default_group_add_macro','3','7','12',NULL,0,1,0,0,0,374,NULL,0,1,0,1228264382),('PBtmpl0000000000000041',1129049186,'3','pbversion0000000000001','approved','Default Group Delete Macro','Default Group Delete Macro','default_group_delete_macro','3','7','12',NULL,0,1,0,0,0,386,NULL,0,1,0,1228264382),('PBtmpl0000000000000042',1129049186,'3','pbversion0000000000001','approved','Default Homelink','Default Homelink','default_homelink','3','7','12',NULL,0,1,0,0,0,378,NULL,0,1,0,1228264382),('PBtmpl0000000000000043',1129049186,'3','pbversion0000000000001','approved','Default LoginToggle','Default LoginToggle','default_logintoggle','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1228264382),('PBtmpl0000000000000045',1129049186,'3','pbversion0000000000001','approved','Default Make Printable','Default Make Printable','default_make_printable','3','7','12',NULL,0,1,0,0,0,408,NULL,0,1,0,1228264382),('PBtmpl0000000000000208',1147642410,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template','3','7','12',NULL,0,0,0,0,0,3992,'\n\n\n\n\n',0,1,0,1228264382),('PBtmpl0000000000000091',1129049189,'3','pbversion0000000000001','approved','File no icon','File no icon','file_no_icon','3','7','12',NULL,0,1,0,0,0,335,NULL,0,1,0,1228264382),('PBtmpl0000000000000132',1129049190,'3','pbversion0000000000001','approved','Empty','Empty','empty','3','7','12',NULL,0,1,0,0,0,271,NULL,0,1,0,1228264382),('PBtmpl0000000000000140',1129573244,'3','pbversion0000000000001','approved','Default Shortcut','Default Shortcut','pbtmpl0000000000000140','3','7','12',NULL,0,1,0,0,0,1020,NULL,0,1,0,1228264382),('PBtmplHelp000000000001',1147642410,'3','pbversion0000000000001','approved','Help','Help','help','3','7','12',NULL,0,0,0,0,0,1388,'\n\n',0,1,0,1228264382),('ProjectManagerTMPL0004',1222574693,'3','pbversion0000000000001','approved','Default Project Manager Edit Task','Default Project Manager Edit Task','default-pm-template-edit-task','3','7','12',NULL,0,0,0,0,0,5258,'\r\n',0,1,0,1228264384),('7.0-style0000000000071',1147642511,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style3/wg.jpg','3','7','12',NULL,0,0,0,0,0,27488,NULL,0,1,0,1147642511),('7.0-style0000000000070',1147642510,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','style3_coolmenu','3','7','12',NULL,0,0,0,0,0,344,NULL,0,1,0,1147642510),('7.0-style0000000000004',1147642493,'3','pbversion0000000000001','approved','gui_bottom.jpg','gui_bottom.jpg','style1/gui_bottom.jpg','3','7','12',NULL,0,0,0,0,0,21700,NULL,0,1,0,1147642493),('7.0-style0000000000002',1147642492,'3','pbversion0000000000001','approved','body_bg.jpg','body_bg.jpg','style1/body_bg.jpg','3','7','12',NULL,0,0,0,0,0,890,NULL,0,1,0,1147642492),('PBtmpl0000000000000128',1147642411,'3','pbversion0000000000001','approved','Classifieds','Classifieds','classifieds','3','7','12',NULL,0,1,0,0,0,2007,'\n\n',0,1,0,1228264382),('PBtmpl0000000000000093',1147642412,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail2','3','7','12',NULL,0,1,0,0,0,767,NULL,0,1,0,1228264382),('PBtmpl0000000000000104',1147642412,'3','pbversion0000000000001','approved','Default Acknowledgement','Default Acknowledgement','default_acknowledgement','3','7','12',NULL,0,1,0,0,0,1207,'',0,1,0,1228264382),('PBtmpl0000000000000031',1147642413,'3','pbversion0000000000001','approved','Default Forum Search','Default Forum Search','default_forum_search','3','7','12',NULL,0,1,0,0,0,2682,'',0,1,0,1228264382),('DPUROtmpl0000000000001',1147642413,'3','pbversion0000000000001','approved','Default Grouped Aggregate Feeds','Default Grouped Aggregate Feeds','templates/syndicatedcontent/default_grouped_feeds','3','7','12',NULL,0,1,0,0,0,1479,NULL,0,1,0,1228264382),('PBtmpl0000000000000006',1147642414,'3','pbversion0000000000001','approved','Default LDAP Login Template','Default LDAP Login Template','default_ldap_login_template','3','7','12',NULL,0,1,0,0,0,1180,NULL,0,1,0,1228264382),('PBtmpl0000000000000047',1147642414,'3','pbversion0000000000001','approved','Default Message Board','Default Message Board','default_message_board','3','7','12',NULL,0,1,0,0,0,3535,'',0,1,0,1228264382),('TimeTrackingTMPL000002',1147642417,'3','pbversion0000000000001','approved','Default Time Tracking Manager View','Default Time Tracking Manager View','default-tt-template-manager','3','7','12',NULL,0,0,0,0,0,381,' ',0,1,0,1228264382),('PBtmpl0000000000000066',1147642417,'3','pbversion0000000000001','approved','Default USS','Default USS','default_uss','3','7','12',NULL,0,1,0,0,0,3063,'\n\n\n',0,1,0,1228264382),('PBtmpl0000000000000013',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Login Template','Default WebGUI Login Template','default_webgui_login_template','3','7','12',NULL,0,1,0,0,0,1334,NULL,0,1,0,1228264382),('PBtmpl0000000000000012',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template','default_webgui_password_reset_template','3','7','12',NULL,0,1,0,0,0,1274,NULL,0,1,0,1228264382),('PBtmpl0000000000000057',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt','default_webgui_yes/no_prompt','3','7','12',NULL,0,1,0,0,0,561,NULL,0,1,0,1228264382),('PBtmpl0000000000000060',1147642419,'3','pbversion0000000000001','approved','Fail Safe','Fail Safe','fail_safe','3','7','12',NULL,0,1,0,0,0,1246,NULL,0,1,0,1228264382),('PBtmpl0000000000000024',1147642420,'3','pbversion0000000000001','approved','File','File','file','3','7','12',NULL,0,1,0,0,0,477,NULL,0,1,0,1228264382),('PBtmpl0000000000000078',1147642420,'3','pbversion0000000000001','approved','File Folder','File Folder','file_folder','3','7','12','',0,1,0,0,0,1954,NULL,0,1,0,1228264382),('PBtmpl0000000000000107',1147642420,'3','pbversion0000000000001','approved','File with size','File with size','file_with_size','3','7','12',NULL,0,1,0,0,0,473,NULL,0,1,0,1228264382),('PBtmpl0000000000000108',1147642421,'3','pbversion0000000000001','approved','horizontalMenu','horizontalMenu','horizontalmenu','3','7','12',NULL,0,1,0,0,0,785,NULL,0,1,0,1228264382),('PBtmpl0000000000000088',1147642421,'3','pbversion0000000000001','approved','Image','Image','image','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1228264382),('PBtmpl0000000000000123',1147642421,'3','pbversion0000000000001','approved','Item','Item','item','3','7','12',NULL,0,1,0,0,0,897,NULL,0,1,0,1228264382),('PBtmpl0000000000000129',1147642422,'3','pbversion0000000000001','approved','Item w/pop-up Links','Item w/pop-up Links','item_w/pop-up_links','3','7','12',NULL,0,1,0,0,0,970,NULL,0,1,0,1228264382),('PBtmpl0000000000000077',1147642422,'3','pbversion0000000000001','approved','Job Listing','Job Listing','job_listing','3','7','12',NULL,0,1,0,0,0,2925,'\n\n\n',0,1,0,1228264382),('WVtmpl0000000000000001',1147642426,'3','pbversion0000000000001','approved','Random Thread Macro Default Template','Random Thread Macro Default Template','randomthread-template','3','7','12',NULL,0,0,0,0,0,4783,NULL,0,1,0,1228264382),('PBtmpl0000000000000136',1147642428,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis2','3','7','12',NULL,0,1,0,0,0,852,NULL,0,1,0,1228264382),('PBtmpl0000000000000124',1147642429,'3','pbversion0000000000001','approved','Tabs','Tabs','tabs','3','7','12',NULL,0,1,0,0,0,777,NULL,0,1,0,1228264382),('PBtmpl0000000000000048',1147642431,'3','pbversion0000000000001','approved','verticalMenu','verticalMenu','verticalmenu','3','7','12',NULL,0,1,0,0,0,789,NULL,0,1,0,1228264382),('PBtmplBlankStyle000001',1147642431,'3','pbversion0000000000001','approved','WebGUI 6 Blank Style','WebGUI 6 Blank Style','pbtmplblankstyle000001','3','7','12',NULL,0,1,0,0,0,860,NULL,0,1,0,1228264382),('5A8Hd9zXvByTDy4x-H28qw',1227566395,'3','pbversion0000000000001','approved','Default Invitation Confirmation Template','Default Invitation Confirmation Template','root/import/account/inbox/default-invitation-confirmation-template','3','7','12',NULL,0,1,0,0,0,1000,NULL,0,1,0,1228264387),('7.0-style0000000000005',1147642493,'3','pbversion0000000000001','approved','header.jpg','header.jpg','style1/header.jpg','3','7','12',NULL,0,0,0,0,0,89722,NULL,0,1,0,1147642493),('7.0-style0000000000008',1147642494,'3','pbversion0000000000001','approved','nav1_center_on.jpg','nav1_center_on.jpg','style1/nav1_center_on.jpg','3','7','12',NULL,0,0,0,0,0,2428,NULL,0,1,0,1147642494),('pbrobot000000000000001',1147642511,'3','pbversion0000000000001','approved','robots.txt','robots.txt','robots.txt','3','7','12',NULL,0,0,0,0,0,292,NULL,0,1,0,1147642511),('bX5rYxb6tZ9docY6sUhBlw',1147642514,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started/getting-started','3','7','4',NULL,0,1,0,0,0,646,NULL,0,1,0,1147642514),('IWFxZDyGhQ3-SLZhELa3qw',1147642514,'3','pbversion0000000000001','approved','Key Benefits','Key Benefits','home/key-benefits','3','7','4',NULL,0,1,0,0,0,2019,NULL,0,1,0,1147642514),('m4YJFaqzultnB_sj1Uq0aw',1147642514,'3','pbversion0000000000001','approved','Ad','Ad','home/ad','3','7','4',NULL,0,1,0,0,0,92365,NULL,0,1,0,1147642514),('7.0-style0000000000045',1147642503,'3','pbversion0000000000001','approved','pb_wg_bg.jpg','pb_wg_bg.jpg','style2/pb_wg_bg.jpg','3','7','12',NULL,0,0,0,0,0,43126,NULL,0,1,0,1147642503),('7.0-style0000000000021',1147642497,'3','pbversion0000000000001','approved','nav2_on_right.jpg','nav2_on_right.jpg','style1/nav2_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1110,NULL,0,1,0,1147642497),('7.0-style0000000000020',1147642497,'3','pbversion0000000000001','approved','nav2_on_left.jpg','nav2_on_left.jpg','style1/nav2_on_left.jpg','3','7','12',NULL,0,0,0,0,0,1138,NULL,0,1,0,1147642497),('7.0-style0000000000016',1147642496,'3','pbversion0000000000001','approved','nav2_center_on.jpg','nav2_center_on.jpg','style1/nav2_center_on.jpg','3','7','12',NULL,0,0,0,0,0,1280,NULL,0,1,0,1147642496),('PBasset000000000000003',1147642437,'3','pbversion0000000000001','approved','Media','Media','media','3','7','12',NULL,0,0,0,0,0,258,NULL,0,1,0,1147642437),('OhdaFLE7sXOzo_SIP2ZUgA',1147642513,'3','pbversion0000000000001','approved','Welcome','Welcome','home/welcome','3','7','4',NULL,0,1,0,0,0,1830,NULL,0,1,0,1147642513),('pbtmpl0000000000000221',1147642465,'3','pbversion0000000000001','approved','Flash Tutorial Template','Flash Tutorial Template','flash-tutorial-template','3','7','12',NULL,0,0,0,0,0,975,NULL,0,1,0,1228264382),('nbSrhXZQuxIjhWFaFPSuVA',1147642465,'3','pbversion0000000000001','approved','AdminConsole','AdminConsole','root/import/adminconsole','3','7','12',NULL,0,0,0,0,0,275,NULL,0,1,0,1147642465),('TvOZs8U1kRXLtwtmyW75pg',1147642465,'3','pbversion0000000000001','approved','Article','Article','root/import/article','3','7','12',NULL,0,0,0,0,0,260,NULL,0,1,0,1147642465),('GNOAsX98vCsl0JRwfwL-gg',1147642466,'3','pbversion0000000000001','approved','Collaboration','Collaboration','root/import/collaboration','3','7','12',NULL,0,0,0,0,0,302,NULL,0,1,0,1147642466),('S1A9iAwKcQQ6P20uTqw-Ew',1147642468,'3','pbversion0000000000001','approved','Dashboard','Dashboard','root/import/dashboard','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642468),('71e17KeduiXgODLMlUxiow',1222803352,'3','pbversion0000000000001','approved','project','project','root/import/projectmanager/project','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803352),('tXwf1zaOXTvsqPn6yu-GSw',1147642469,'3','pbversion0000000000001','approved','FileAsset','FileAsset','root/import/fileasset','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642469),('GYaFxnMu9UsEG8oanwB6TA',1147642470,'3','pbversion0000000000001','approved','Folder','Folder','root/import/folder','3','7','12',NULL,0,0,0,0,0,257,NULL,0,1,0,1147642470),('N13SD1Fpqk00UgBt1Z8ivQ',1147642470,'3','pbversion0000000000001','approved','HttpProxy','HttpProxy','root/import/httpproxy','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642470),('tPagC0AQErZXjLFZQ6OI1g',1147642470,'3','pbversion0000000000001','approved','ImageAsset','ImageAsset','root/import/imageasset','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642470),('VXSsbsfcfht1904EWkb1sw',1147642470,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/inbox','3','7','12',NULL,0,0,0,0,0,254,NULL,0,1,0,1147642470),('3uuBf8cYuj1sew2OJXl9tg',1147642470,'3','pbversion0000000000001','approved','InOutBoard','InOutBoard','root/import/inoutboard','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642470),('ProjectManagerTMPL0002',1222574693,'3','pbversion0000000000001','approved','Default Project Display','Default Project Display','default-pm-template-project-display','3','7','12',NULL,0,0,0,0,0,10531,'\r\n\r\n\r\n',0,1,0,1228264384),('cj2y4papTVGZRFdwTI-_fw',1147642475,'3','pbversion0000000000001','approved','MessageBoard','MessageBoard','root/import/messageboard','3','7','12',NULL,0,0,0,0,0,275,NULL,0,1,0,1147642475),('bBzO4CWjqU_ile3gf5Iypw',1147642475,'3','pbversion0000000000001','approved','MultiSearch','MultiSearch','root/import/multisearch','3','7','12',NULL,0,0,0,0,0,272,NULL,0,1,0,1147642475),('BFfNj5wA9bDw8H3cnr8pTw',1147642475,'3','pbversion0000000000001','approved','Navigation','Navigation','root/import/navigation','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642475),('jEz8iTGNWEt2I05IhVV19Q',1147642477,'3','pbversion0000000000001','approved','Operation/RedeemSubscription','Operation/RedeemSubscription','root/import/operation/redeemsubscription','3','7','12',NULL,0,0,0,0,0,323,NULL,0,1,0,1147642477),('VZK3CRgiMb8r4dBjUmCTgQ',1147642477,'3','pbversion0000000000001','approved','Poll','Poll','root/import/poll','3','7','12',NULL,0,0,0,0,0,251,NULL,0,1,0,1147642477),('f_tn9FfoSfKWX43F83v_3w',1147642479,'3','pbversion0000000000001','approved','Search','Search','root/import/search','3','7','12',NULL,0,0,0,0,0,257,NULL,0,1,0,1147642479),('Da6KWn805L4B5e4HFgQRQA',1147642479,'3','pbversion0000000000001','approved','Shortcut','Shortcut','root/import/shortcut','3','7','12',NULL,0,0,0,0,0,263,NULL,0,1,0,1147642479),('bbiA9Zq5Gy2oCFBlILO3QA',1147642480,'3','pbversion0000000000001','approved','SQLReport','SQLReport','root/import/sqlreport','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642480),('Efe2W0UgrSRDltNJ87jlfg',1147642480,'3','pbversion0000000000001','approved','StockData','StockData','root/import/stockdata','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642480),('RrV4aAPnn4dM0ZcU3OXnlw',1147642480,'3','pbversion0000000000001','approved','style','style','root/import/style','3','7','12',NULL,0,0,0,0,0,254,NULL,0,1,0,1147642480),('oGfxez5sksyB_PcaAsEm_Q',1147642482,'3','pbversion0000000000001','approved','SyndicatedContent','SyndicatedContent','root/import/syndicatedcontent','3','7','12',NULL,0,0,0,0,0,290,NULL,0,1,0,1147642482),('9wKWdum0_8z-OhhquWLtSQ',1147642483,'3','pbversion0000000000001','approved','WeatherData','WeatherData','root/import/weatherdata','3','7','12',NULL,0,0,0,0,0,272,NULL,0,1,0,1147642483),('ErEzulFiEKDkaCDVmxUavw',1227566394,'3','pbversion0000000000001','approved','Default Inbox Error Template','Default Inbox Error Template','root/import/account/inbox/default-inbox-error-template','3','7','12',NULL,0,1,0,0,0,550,NULL,0,1,0,1228264387),('CSN-ZON7Uwv8kxf3F1fh5Q',1147642484,'3','pbversion0000000000001','approved','ZipArchiveAsset','ZipArchiveAsset','root/import/ziparchiveasset','3','7','12',NULL,0,0,0,0,0,284,NULL,0,1,0,1147642484),('TCtybxdqmdwdvRn555zpCQ',1147642484,'3','pbversion0000000000001','approved','RichEdit','RichEdit','root/import/richedit','3','7','12',NULL,0,0,0,0,0,263,NULL,0,1,0,1147642484),('PBtmpl0000000000000044',1148579524,'3','pbversion0000000000001','approved','Default Login Box','Default Login Box','default_login_box','3','7','12',NULL,0,1,0,0,0,1157,NULL,0,1,0,1228264382),('PBtmpl0000000000000092',1148579524,'3','pbversion0000000000001','approved','Horizontal Login Box','Horizontal Login Box','horizontal_login_box','3','7','12',NULL,0,1,0,0,0,1243,NULL,0,1,0,1228264382),('PBnav00000000000bullet',1148579524,'3','pbversion0000000000001','approved','Bulleted List','Bulleted List','bulleted_list','3','7','12',NULL,0,0,0,0,0,1488,'\n\n',0,1,0,1228264382),('pbtmpl0000000000000220',1148579525,'3','pbversion0000000000001','approved','Flash Template','Flash Template','flash-template','3','7','12',NULL,0,0,0,0,0,596,NULL,0,1,0,1228264382),('PBtmpl0000000000000133',1149286278,'3','pbversion0000000000001','approved','Guest Book','Guest Book','guest_book','3','7','12',NULL,0,1,0,0,0,1599,NULL,0,1,0,1228264382),('PBtmpl0000000000000083',1149286278,'3','pbversion0000000000001','approved','Link List','Link List','link_list','3','7','12',NULL,0,1,0,0,0,2046,NULL,0,1,0,1228264383),('PBtmpl0000000000000101',1149286278,'3','pbversion0000000000001','approved','Ordered List','Ordered List','ordered_list','3','7','12',NULL,0,1,0,0,0,2094,NULL,0,1,0,1228264383),('PBtmpl0000000000000121',1149286279,'3','pbversion0000000000001','approved','Photo Gallery','Photo Gallery','photo_gallery','3','7','12',NULL,0,1,0,0,0,2029,'\n\n',0,1,0,1228264383),('PBtmpl0000000000000081',1149286279,'3','pbversion0000000000001','approved','Q and A','Q and A','q_and_a','3','7','12',NULL,0,1,0,0,0,2952,'\n',0,1,0,1228264383),('PBtmpl0000000000000079',1149286279,'3','pbversion0000000000001','approved','Topics','Topics','topics','3','7','12',NULL,0,1,0,0,0,3517,'\n',0,1,0,1228264383),('PBtmpl0000000000000082',1149286279,'3','pbversion0000000000001','approved','Unordered List','Unordered List','unordered_list','3','7','12',NULL,0,1,0,0,0,2985,'\n',0,1,0,1228264383),('PBtmpl0000000000000112',1149286279,'3','pbversion0000000000001','approved','Weblog','Weblog','weblog','3','7','12',NULL,0,1,0,0,0,3490,'',0,1,0,1228264383),('PBtmpl0000000000000039',1154535073,'3','pbversion0000000000001','approved','Default File Macro','Default File Macro','default_file_macro','3','7','12',NULL,0,1,0,0,0,464,NULL,0,1,0,1228264383),('PBtmpl0000000000000055',1154535073,'3','pbversion0000000000001','approved','Default Poll','Default Poll','default_poll','3','7','12',NULL,0,1,0,0,0,2001,'\n',0,1,0,1228264383),('Szs5eev3OMssmnsyLRZmWA',1213317790,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend/tell_a_friend','3','7','3',NULL,0,1,0,0,0,2029,NULL,0,1,0,1213317790),('PBtmpl0000000000000111',1154535074,'3','pbversion0000000000001','approved','Make Page Printable','Make Page Printable','make_page_printable','3','7','12',NULL,0,1,0,0,0,2027,NULL,0,1,0,1228264383),('PBtmpl0000000000000053',1154535074,'3','pbversion0000000000001','approved','Subscription code redemption','Subscription code redemption','subscription_code_redemption','3','7','12',NULL,0,1,0,0,0,460,NULL,0,1,0,1228264383),('WikiPageEditTmpl000001',1221692341,'3','pbversion0000000000001','approved','Default Wiki Page Edit','Default Wiki Page Edit','default-wiki-page-edit','3','7','12',NULL,0,0,0,0,0,1316,'\n',0,1,0,1228264384),('PBtmpl0000000000000097',1154535074,'3','pbversion0000000000001','approved','Traditional with Thumbnails','Traditional with Thumbnails','traditional_with_thumbnails','3','7','12',NULL,0,1,0,0,0,4463,'\n',0,1,0,1228264383),('PBnav00000000indentnav',1154535074,'3','pbversion0000000000001','approved','Indent Nav','Indent Nav','indent_nav','3','7','12',NULL,0,0,0,0,0,1560,'\n',0,1,0,1228264383),('PBtmpl0000000000000001',1157679164,'3','pbversion0000000000001','approved','Admin Console','Admin Console','admin_console2','3','7','12',NULL,0,1,0,0,0,3232,'\n\n',0,1,0,1228264383),('ProjectManagerTMPL0006',1157679165,'3','pbversion0000000000001','approved','Default Resource List','Default Resource List','default-pm-resource-list','3','7','12',NULL,0,0,0,0,0,1100,NULL,0,1,0,1228264383),('PBtmpl0000000000000002',1159989349,'3','pbversion0000000000001','approved','Default Article','Default Article','default_article','3','7','12',NULL,0,1,0,0,0,1507,NULL,0,1,0,1228264383),('ProjectManagerTMPL0003',1159989349,'3','pbversion0000000000001','approved','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart','default-pm-template-gantt-chart','3','7','12',NULL,0,0,0,0,0,2137,NULL,0,1,0,1228264383),('pbproto000000000000002',1163019036,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-prototype','3','7','12',NULL,0,0,0,1,0,488,NULL,0,1,0,1163019036),('WikiPHTmpl000000000001',1165460175,'3','pbversion0000000000001','approved','Default Page History','Default Page History','default-wiki-page-history','3','7','12',NULL,0,0,0,0,0,486,NULL,0,1,0,1228264383),('WikiMPTmpl000000000001',1165460175,'3','pbversion0000000000001','approved','Default Most Popular','Default Most Popular','default-wiki-most-popular','3','7','12',NULL,0,0,0,0,0,675,NULL,0,1,0,1228264383),('IOB0000000000000000002',1166019641,'3','pbversion0000000000001','approved','Default InOutBoard Report Template','Default InOutBoard Report Template','iob-report-template','3','7','12',NULL,0,0,0,0,0,2116,'',0,1,0,1228264383),('WikiSearchTmpl00000001',1168480840,'3','pbversion0000000000001','approved','Default Wiki Search','Default Wiki Search','default-wiki-search','3','7','12',NULL,0,0,0,0,0,1393,'\n\n',0,1,0,1228264383),('WikiRCTmpl000000000001',1169092823,'3','pbversion0000000000001','approved','Default Recent Changes','Default Recent Changes','default-wiki-recent-changes','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1228264383),('ZipArchiveTMPL00000001',1169738426,'3','pbversion0000000000001','approved','Default Zip Archive Template','Default Zip Archive Template','zip-archive-template','3','7','12',NULL,0,0,0,0,0,706,NULL,0,1,0,1228264383),('IOB0000000000000000001',1169795123,'3','pbversion0000000000001','approved','Default InOutBoard Template','Default InOutBoard Template','iob-template','3','7','12',NULL,0,0,0,0,0,2715,'',0,1,0,1228264383),('PBtmpl0000000000000142',1171466654,'3','pbversion0000000000001','approved','Default RSS','Default RSS','pbtmpl0000000000000142','3','7','12',NULL,0,1,0,0,0,731,NULL,0,1,0,1228264383),('PBtmpl0000000000000080',1171466654,'3','pbversion0000000000001','approved','FAQ','FAQ','faqtemplate','3','7','12',NULL,0,1,0,0,0,2167,NULL,0,1,0,1228264383),('SQLReportDownload00001',1171466654,'3','pbversion0000000000001','approved','SQLReport Download Default Template','untitled','SQLReportDownload0001','3','7','12',NULL,0,0,0,0,0,3664,NULL,0,1,0,1228264383),('newsletter000000000001',1185754569,'3','pbversion0000000000001','approved',' Summary Newsletter (default)',' Summary Newsletter','newsletterdefaulttemplate','3','7','3',NULL,0,0,0,0,0,498,NULL,0,1,0,1228264383),('PBtmpl0000000000000026',1185754569,'3','pbversion0000000000001','approved','Default Forum','Default Forum','default_forum','3','7','12',NULL,0,1,0,0,0,4871,'\n\n\n',0,1,0,1228264383),('PBtmpl0000000000000068',1227480813,'3','pbversion0000000000001','approved','Default Submission Form','Default Submission Form','default_submission_form','3','7','12',NULL,0,1,0,0,0,2946,'\n',0,1,0,1228264383),('PBtmpl0000000000000010',1227026287,'3','pbversion0000000000001','approved','Default WebGUI Account Display Template','Default WebGUI Account Display Template','default_webgui_account_display_template','3','7','12',NULL,0,1,0,0,0,1616,NULL,0,1,0,1228264385),('PBtmpl0000000000000014',1227218041,'3','pbversion0000000000001','approved','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template','default_webgui_password_recovery_template','3','7','12',NULL,0,1,0,0,0,1741,NULL,0,1,0,1228264385),('PBtmpl0000000000000004',1227026214,'3','pbversion0000000000001','approved','Default LDAP Account Display Template','Default LDAP Account Display Template','default_ldap_account_display_template','3','7','12',NULL,0,1,0,0,0,898,NULL,0,1,0,1228264383),('WikiKeyword00000000001',1185754571,'3','pbversion0000000000001','approved',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword','wiki-master-by-keyword-template.tmpl','3','7','3',NULL,0,0,0,0,0,474,NULL,0,1,0,1228264383),('WikiFrontTmpl000000001',1185754572,'3','pbversion0000000000001','approved','Default Wiki Front Page','Default Wiki Front Page','default-wiki-front-page','3','7','12',NULL,0,0,0,0,0,1322,NULL,0,1,0,1228264383),('tempspace0000000000000',1185754574,'3','pbversion0000000000001','approved','Tempspace','Tempspace','tempspace','3','7','3',NULL,0,0,0,0,0,270,NULL,0,1,0,1185754574),('MBZK_LPVzqhb4TV4mMRTJg',1197330678,'3','pbversion0000000000001','approved','admin_ie7.css','admin_ie7.css','root/import/gallery-templates/admin_ie7.css','3','7','3',NULL,0,1,0,0,0,320,NULL,0,1,0,1197330678),('kaPRSaf8UKiskiGEgJgLAw',1197330678,'3','pbversion0000000000001','approved','images','images','root/import/gallery-templates/images','3','7','3',NULL,0,0,0,0,0,304,NULL,0,1,0,1197330678),('bANo8aiAPA7aY_oQZKxIWw',1197330678,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss.gif','3','7','3',NULL,0,1,0,0,0,1378,NULL,0,1,0,1197330678),('fdd8tGExyVwHyrB8RBbKXg',1197330839,'3','pbversion0000000000001','approved','next.gif','next.gif','root/import/gallery-templates/images/next.gif','3','7','3',NULL,0,1,0,0,0,1665,NULL,0,1,0,1197330839),('BpisgHl4ZDcSECJp6oib1w',1197330840,'3','pbversion0000000000001','approved','play.gif','play.gif','root/import/gallery-templates/images/play.gif','3','7','3',NULL,0,1,0,0,0,2102,NULL,0,1,0,1197330840),('zshreRgPAXtnF0DtVbQ1Yg',1197330840,'3','pbversion0000000000001','approved','previous.gif','previous.gif','root/import/gallery-templates/images/previous.gif','3','7','3',NULL,0,1,0,0,0,1671,NULL,0,1,0,1197330840),('TimeTrackingTMPL000001',1201205738,'3','pbversion0000000000001','approved','Default Time Tracking User View','Default Time Tracking User View','default-tt-template-user','3','7','12',NULL,0,0,0,0,0,10402,'\n \n',0,1,0,1228264383),('PBtmpl0000000000000085',1202884864,'3','pbversion0000000000001','approved','Default Email','Default Email','default_email','3','7','12',NULL,0,1,0,0,0,1175,NULL,0,1,0,1228264383),('CalendarEventEdit00001',1205160982,'3','pbversion0000000000001','approved','Default Calendar Event Edit','Default Calendar Event Edit','root/import/calendar-templates/default-calendar-event-edit','3','7','12',NULL,0,0,0,0,0,11817,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n',0,1,0,1228264383),('CalendarPrintMonth0001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Month','Default Calendar Print Month','root/import/calendar-templates/default-calendar-print-month','3','7','12',NULL,0,0,0,0,0,2151,' \r\n',0,1,0,1228264383),('CalendarPrintWeek00001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Week','Default Calendar Print Week','root/import/calendar-templates/default-calendar-print-week','3','7','12',NULL,0,0,0,0,0,2249,' \r\n',0,1,0,1228264383),('CalendarPrintDay000001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Day','Default Calendar Print Day','root/import/calendar-templates/default-calendar-print-day','3','7','12',NULL,0,0,0,0,0,2117,' \r\n',0,1,0,1228264383),('PBtmpl0000000000000067',1206998733,'3','pbversion0000000000001','approved','Default Submission','Default Submission','default_submission','3','7','12',NULL,0,1,0,0,0,14012,'\r\n',0,1,0,1228264383),('PBtmpl0000000000000032',1206998756,'3','pbversion0000000000001','approved','Default Thread','Default Thread','default_thread','3','7','12',NULL,0,1,0,0,0,7847,'\r\n',0,1,0,1228264383),('PBtmpl0000000000000209',1206998862,'3','pbversion0000000000001','approved','Request Tracker Thread','Request Tracker Thread','request-tracker-post-template','3','7','12',NULL,0,0,0,0,0,14030,'\r\n',0,1,0,1228264383),('FOvmwGC0GtZo5VTxJIL3OA',1207068851,'3','pbversion0000000000001','approved','Get Documentation','Get Documentation','yns/docs','3','7','4',NULL,0,1,0,0,0,595,NULL,0,1,0,1207068851),('PBrichedit000000000001',1207240829,'3','pbversion0000000000001','approved','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit','content_managers_rich_edit','3','7','12',NULL,0,0,0,0,0,538,NULL,0,1,0,1207240829),('3qiVYhNTXMVC5hfsumVHgg',1206743306,'3','pbversion0000000000001','approved','browserdetect.js','browserdetect.js','root/import/gallery-templates/browserdetect.js','3','7','3',NULL,0,1,0,0,0,2681,NULL,0,1,0,1206743306),('F7MAQ-cpuvQ1KuC7J4P5zQ',1222803673,'3','pbversion0000000000001','approved','View','View','root/import/profile/view','3','7','12',NULL,0,0,0,0,0,294,NULL,0,1,0,1222803673),('Tsg7xmPYv782j6IVz7yHFg',1213244777,'3','pbversion0000000000001','approved','Calendar Templates','Calendar Templates','root/import/calendar-templates','3','7','12',NULL,0,1,0,0,0,317,NULL,0,1,0,1213244777),('-K8Hj45mbelljN9-0CXZxg',1209325764,'3','pbversion0000000000001','approved','DataForm','DataForm','root/import/dataform','3','7','12',NULL,0,0,0,0,0,300,NULL,0,1,0,1209325764),('Q4uX_C557arTp6D_jwB1jQ',1222803760,'3','pbversion0000000000001','approved','Wiki','Wiki','root/import/wiki','3','12','12',NULL,0,0,0,0,0,280,NULL,0,1,0,1222803760),('4qh0kIsFUdd4Ox-Iu1JZgg',1208725439,'3','pbversion0000000000001','approved','EMS','EMS','root/import/ems','3','7','12',NULL,0,1,0,0,0,285,NULL,0,1,0,1208725439),('PsFn7dJt4wMwBa8hiE3hOA',1208558071,'3','pbversion0000000000001','approved','Print Badge (Default)','Print Badge (Default)','root/import/ems/print-badge-default','3','7','12',NULL,0,1,0,0,0,1417,NULL,0,1,0,1228264384),('yBwydfooiLvhEFawJb0VTQ',1208629936,'3','pbversion0000000000001','approved','Print Ticket (Default)','Print Ticket (Default)','root/import/ems/print-ticket-default','3','7','12',NULL,0,1,0,0,0,1449,NULL,0,1,0,1228264384),('aNNC62qLAS6TB-0_MCYjsw',1213283425,'3','pbversion0000000000001','approved','Layout','Layout','root/import/layout','3','7','12',NULL,0,0,0,0,0,281,NULL,0,1,0,1213283425),('NywJYmGWe1f6EBXJnWg9Xg',1222803638,'3','pbversion0000000000001','approved','Profile','Profile','root/import/profile','3','7','12',NULL,0,1,0,0,0,288,NULL,0,1,0,1222803638),('AgyFhx3eXlfZXNp2MkrsiQ',1222803665,'3','pbversion0000000000001','approved','Edit','Edit','root/import/profile/edit','3','7','12',NULL,0,0,0,0,0,294,NULL,0,1,0,1222803665),('_hELmIJfgbAyXFNqPyApxQ',1213309523,'3','pbversion0000000000001','approved','admin.css','admin.css','root/import/gallery-templates/admin.css','3','7','3',NULL,0,1,0,0,0,2031,NULL,0,1,0,1213309523),('2ci_v2d4x4uvyjTRlC49OA',1209499188,'3','pbversion0000000000001','approved','moveDown.gif','moveDown.gif','root/import/gallery-templates/images/movedown.gif','3','7','3',NULL,0,1,0,0,0,363,NULL,0,1,0,1209499188),('O-EsSzKgAk1KolFT-x_KsA',1209499188,'3','pbversion0000000000001','approved','moveUp.gif','moveUp.gif','root/import/gallery-templates/images/moveup.gif','3','7','3',NULL,0,1,0,0,0,353,NULL,0,1,0,1209499188),('POVcY79vIqAHR8OfGt36aw',1209499189,'3','pbversion0000000000001','approved','pagination_button.jpg','pagination_button.jpg','root/import/gallery-templates/images/pagination_button.jpg','3','7','12',NULL,0,1,0,0,0,1039,NULL,0,0,0,1209499189),('hIB-z34r8Xl-vYVYCkKr-w',1209499189,'3','pbversion0000000000001','approved','bar-btn-r.jpg','bar-btn-r.jpg','root/import/gallery-templates/images/bar-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,819,NULL,0,0,0,1209499189),('-mPUoFlYcjqjPUPRLAlxNQ',1209499189,'3','pbversion0000000000001','approved','search-field-r.jpg','search-field-r.jpg','root/import/gallery-templates/images/search-field-r.jpg','3','7','12',NULL,0,1,0,0,0,837,NULL,0,0,0,1209499189),('MDpUOR-N8KMyt1J7Hh_h4w',1209499189,'3','pbversion0000000000001','approved','bar-btn.jpg','bar-btn.jpg','root/import/gallery-templates/images/bar-btn.jpg','3','7','12',NULL,0,1,0,0,0,697,NULL,0,0,0,1209499189),('YfXKByTwDZVituMc4h13Dg',1209499189,'3','pbversion0000000000001','approved','pagination_bg.jpg','pagination_bg.jpg','root/import/gallery-templates/images/pagination_bg.jpg','3','7','12',NULL,0,1,0,0,0,1120,NULL,0,0,0,1209499189),('esko_HSU0Gh-uJZ1h3xRmQ',1209499189,'3','pbversion0000000000001','approved','search-field-l.jpg','search-field-l.jpg','root/import/gallery-templates/images/search-field-l.jpg','3','7','12',NULL,0,1,0,0,0,863,NULL,0,0,0,1209499189),('oSqpGswzpBG_ErdfYwIO8A',1209499189,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg.jpg','3','7','12',NULL,0,1,0,0,0,681,NULL,0,0,0,1209499189),('MXJklShZvLLB_DSnZQmXrQ',1209499189,'3','pbversion0000000000001','approved','title_bg.jpg','title_bg.jpg','root/import/gallery-templates/images/title_bg.jpg','3','7','12',NULL,0,1,0,0,0,1647,NULL,0,0,0,1209499189),('BthxD5oJ0idmsyI3ioA2FA',1209499189,'3','pbversion0000000000001','approved','bar-btn-l.jpg','bar-btn-l.jpg','root/import/gallery-templates/images/bar-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,834,NULL,0,0,0,1209499189),('aZ-1HYQamkRHYXvzAra8WQ',1209499189,'3','pbversion0000000000001','approved','search-field.jpg','search-field.jpg','root/import/gallery-templates/images/search-field.jpg','3','7','12',NULL,0,1,0,0,0,739,NULL,0,0,0,1209499189),('eRkb94OYcS5AdcrrerOP5Q',1209499189,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss2.gif','3','7','12',NULL,0,1,0,0,0,1380,NULL,0,0,0,1209499189),('TbnkjAJQEASORXIpYqDkcA',1209499189,'3','pbversion0000000000001','approved','blank-image.jpg','blank-image.jpg','root/import/gallery-templates/images/blank-image.jpg','3','7','12',NULL,0,1,0,0,0,3073,NULL,0,0,0,1209499189),('er-3faBjY-hhlDcc5aKqdQ',1209499189,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg2.jpg','3','7','12',NULL,0,1,0,0,0,682,NULL,0,0,0,1209499189),('8bFsu2FJUqHRUiHcozcVFw',1209499189,'3','pbversion0000000000001','approved','sub-btn-l.jpg','sub-btn-l.jpg','root/import/gallery-templates/images/sub-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,833,NULL,0,0,0,1209499189),('34Aayx5eA320D8VfhdfDBw',1209499189,'3','pbversion0000000000001','approved','sub-btn-r.jpg','sub-btn-r.jpg','root/import/gallery-templates/images/sub-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,813,NULL,0,0,0,1209499189),('TlhKOVmWblZOsAdqmhEpeg',1209499189,'3','pbversion0000000000001','approved','sub-btn.jpg','sub-btn.jpg','root/import/gallery-templates/images/sub-btn.jpg','3','7','12',NULL,0,1,0,0,0,691,NULL,0,0,0,1209499189),('Nx0ypjO3cN6QdZUBUEE0lA',1209499189,'3','pbversion0000000000001','approved','pic-title-bg.jpg','pic-title-bg.jpg','root/import/gallery-templates/images/pic-title-bg.jpg','3','7','12',NULL,0,1,0,0,0,854,NULL,0,0,0,1209499189),('CmFZLN7iPS7XXvUEsxKPKA',1209499190,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/gallery-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,795,NULL,0,0,0,1209499190),('v_XBgwwZqgW1D5s4y05qfg',1209499190,'3','pbversion0000000000001','approved','addtl-info.gif','addtl-info.gif','root/import/gallery-templates/images/addtl-info.gif','3','7','12',NULL,0,1,0,0,0,903,NULL,0,0,0,1209499190),('4TdAkKoQbSCvI7QWcW889A',1209499190,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/gallery-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,780,NULL,0,0,0,1209499190),('SAgK6eDPCG1cgkJ59WapHQ',1209499190,'3','pbversion0000000000001','approved','prev-btn.gif','prev-btn.gif','root/import/gallery-templates/images/prev-btn.gif','3','7','12',NULL,0,1,0,0,0,2004,NULL,0,0,0,1209499190),('XJYLuvGy9ubF7JNKyINtpA',1209499190,'3','pbversion0000000000001','approved','play-btn.gif','play-btn.gif','root/import/gallery-templates/images/play-btn.gif','3','7','12',NULL,0,1,0,0,0,2532,NULL,0,0,0,1209499190),('RWj7hyv2SpZuXxwj1Wocug',1209499190,'3','pbversion0000000000001','approved','next-btn.gif','next-btn.gif','root/import/gallery-templates/images/next-btn.gif','3','7','12',NULL,0,1,0,0,0,2034,NULL,0,0,0,1209499190),('aq8QElnlm3YufAoxRz9Pcg',1209499190,'3','pbversion0000000000001','approved','data-bg.jpg','data-bg.jpg','root/import/gallery-templates/images/data-bg.jpg','3','7','12',NULL,0,1,0,0,0,810,NULL,0,0,0,1209499190),('7fE8md51vTCcuJFOvxNaGA',1209503742,'3','pbversion0000000000001','approved','thumbnails.js','thumbnails.js','root/import/gallery-templates/thumbnails.js','3','7','3',NULL,0,1,0,0,0,3933,NULL,0,1,0,1209503742),('mTOiwwk3q4k9g5-XykXhPA',1218149728,'3','pbversion0000000000001','approved','Documentation','Documentation','documentation','3','7','3',NULL,0,0,0,0,0,506,NULL,0,1,0,1218149728),('TYo2Bwl7aafzTtdHlS-arQ',1211664878,'3','pbversion0000000000001','approved','Product','Product','root/import/product','3','7','12',NULL,0,0,0,0,0,284,NULL,0,1,0,1211664878),('gbnRhcWNk1iQe32LFEB5eQ',1212086102,'3','pbversion0000000000001','approved','Shelf','Shelf','root/import/shelf2','3','7','12',NULL,0,1,0,0,0,279,NULL,0,1,0,1212086102),('6tK47xsaIH-ELw0IBo0uRQ',1210777115,'3','pbversion0000000000001','approved','images','images','root/import/shelf2/images','3','7','12',NULL,0,1,0,0,0,294,NULL,0,1,0,1210777115),('_bZJ9LA_KNekZiFPaP2SeQ',1210777868,'3','pbversion0000000000001','approved','shelf-titles.jpg','shelf-titles.jpg','root/import/shelf2/images/shelf-titles.jpg','3','7','12',NULL,0,1,0,0,0,1027,NULL,0,0,0,1210777868),('4e-_rNs6mSWedZhQ_V5kJA',1210779672,'3','pbversion0000000000001','approved','shelf-ie.css','shelf-ie.css','root/import/shelf2/shelf-ie.css','3','7','12',NULL,0,1,0,0,0,693,NULL,0,1,0,1210779672),('6D4Z-oruXPS6OlH_Kx8pBg',1209509389,'3','pbversion0000000000001','approved','images','images','root/import/thingy-templates/images','3','7','12',NULL,0,1,0,0,0,304,NULL,0,1,0,1209509389),('hQ7z33_jOYkQ8WNX5xy9Sw',1209509455,'3','pbversion0000000000001','approved','style-button.gif','style-button.gif','root/import/thingy-templates/images/style-button.gif','3','7','12',NULL,0,1,0,0,0,912,NULL,0,0,0,1209509455),('vWW_DcHiYSrKZOkkIfEfcQ',1209509433,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/thingy-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,794,NULL,0,0,0,1209509433),('_bPYzRA87NTAUIKlfrJMHg',1209509433,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/thingy-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,779,NULL,0,0,0,1209509433),('nJjZHRwdDs5MAZYsAyioHw',1209509433,'3','pbversion0000000000001','approved','title-bg.jpg','title-bg.jpg','root/import/thingy-templates/images/title-bg.jpg','3','7','12',NULL,0,1,0,0,0,1094,NULL,0,0,0,1209509433),('8hxfkrJPeFVRWF5piCNJ1A',1209509433,'3','pbversion0000000000001','approved','field-bg.jpg','field-bg.jpg','root/import/thingy-templates/images/field-bg.jpg','3','7','12',NULL,0,1,0,0,0,710,NULL,0,0,0,1209509433),('Osx7WN52iIKHZFT4vqUBHQ',1209509433,'3','pbversion0000000000001','approved','search-btn.gif','search-btn.gif','root/import/thingy-templates/images/search-btn.gif','3','7','12',NULL,0,1,0,0,0,1252,NULL,0,0,0,1209509433),('oWff8fGzRdHPyq5VNREe9Q',1209509433,'3','pbversion0000000000001','approved','top-bg.jpg','top-bg.jpg','root/import/thingy-templates/images/top-bg.jpg','3','7','12',NULL,0,1,0,0,0,680,NULL,0,0,0,1209509433),('uqbkvb1b9443VvfkyRz95w',1209509433,'3','pbversion0000000000001','approved','save-button.gif','save-button.gif','root/import/thingy-templates/images/save-button.gif','3','7','12',NULL,0,1,0,0,0,1260,NULL,0,0,0,1209509433),('8YiMkcz32xalkAn3WBLpag',1210181860,'3','pbversion0000000000001','approved','go-btn.gif','go-btn.gif','root/import/thingy-templates/images/go-btn.gif','3','7','12',NULL,0,1,0,0,0,419,NULL,0,0,0,1210181860),('C5fPz-Wg85vkYRvCdl-Xqw',1212160830,'3','pbversion0000000000001','approved','UserList','UserList','root/import/userlist','3','7','12',NULL,0,1,0,0,0,287,NULL,0,1,0,1212160830),('usuxw9V3jN4d4pujRiEYxg',1209494150,'3','pbversion0000000000001','approved','css03-ie.css','css03-ie.css','style3/css03-ie.css','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1209494150),('aNmgn0cd6tldmC1FpW4KbA',1213122695,'3','pbversion0000000000001','approved','Shop','Shop','shopping-cart-collateral-items','3','7','3',NULL,0,1,0,0,0,288,NULL,0,0,0,1213122695),('2q5fxatSFLgIhXaUX-oSvg',1204149033,'3','pbversion0000000000001','approved','bottom-left.jpg','bottom-left.jpg','shopping-cart-collateral-items/bottom-left.jpg','3','7','3',NULL,0,1,0,0,0,32243,NULL,0,0,0,1204149033),('_d5WTkKjnwct-_Dk7gZHvQ',1204149033,'3','pbversion0000000000001','approved','bottom-right.jpg','bottom-right.jpg','shopping-cart-collateral-items/bottom-right.jpg','3','7','3',NULL,0,1,0,0,0,32247,NULL,0,0,0,1204149033),('Iz2mUR3jCPKyemwAea4b2g',1204149033,'3','pbversion0000000000001','approved','input_bg.jpg','input_bg.jpg','shopping-cart-collateral-items/input_bg.jpg','3','7','3',NULL,0,1,0,0,0,30065,NULL,0,0,0,1204149033),('JU9bjsLRoWj7GVHs__prig',1204149033,'3','pbversion0000000000001','approved','top-left.jpg','top-left.jpg','shopping-cart-collateral-items/top-left.jpg','3','7','3',NULL,0,1,0,0,0,32196,NULL,0,0,0,1204149033),('noOlnjQGexHg8c4bGVUo9g',1204149033,'3','pbversion0000000000001','approved','top-right.jpg','top-right.jpg','shopping-cart-collateral-items/top-right.jpg','3','7','3',NULL,0,1,0,0,0,32234,NULL,0,0,0,1204149033),('bPz1yk6Y9uwMDMBcmMsSCg',1211829604,'3','pbversion0000000000001','approved','Email Receipt (Default)','Email Receipt (Default)','shopping-cart-collateral-items/email-receipt-default','3','7','3',NULL,0,1,0,0,0,2895,NULL,0,1,0,1228264384),('EBlxJpZQ9o-8VBOaGQbChA',1212093746,'3','pbversion0000000000001','approved','MiniCart','MiniCart','shopping-cart-collateral-items/minicart','3','7','3',NULL,0,1,0,0,0,2295,'',0,1,0,1228264384),('iLzlwGmwrvzlGHXKzaDyjA',1222804090,'3','pbversion0000000000001','approved','Messaging','Messaging','root/import/messaging','3','12','3',NULL,0,0,0,0,0,294,NULL,0,1,0,1222804090),('WeatherDataTmpl0000001',1210711353,'3','pbversion0000000000001','approved','WeatherData Default View','WeatherData Default View','weatherdatatmpl0000001','3','7','12',NULL,0,1,0,0,0,5190,'\r\n\r\n\r\n',0,1,0,1228264384),('Ik9HHky10DIyFTKehUD1dw',1222803478,'3','pbversion0000000000001','approved','Prompt','Prompt','root/import/prompt','3','7','12',NULL,0,0,0,0,0,285,NULL,0,1,0,1222803478),('gI_TxK-5S4DNuv42wpImmw',1213734379,'3','pbversion0000000000001','approved','Gallery Templates','Gallery Templates','root/import/gallery-templates','3','7','3',NULL,0,0,0,0,0,326,NULL,0,1,0,1213734379),('BmLaN4rmAANkCglXUViEbg',1222803871,'3','pbversion0000000000001','approved','Resource','Resource','root/import/projectmanager/resource','3','12','12',NULL,0,0,0,0,0,314,NULL,0,1,0,1222803871),('X7DrzUcj8pOKFa_6k9D5iw',1222804045,'3','pbversion0000000000001','approved','Newsletter','Newsletter','root/import/newsletter','3','12','3',NULL,0,0,0,0,0,297,NULL,0,1,0,1222804045),('7.0-style0000000000059',1213386091,'3','pbversion0000000000001','approved','main_top.jpg','main_top.jpg','style3/main_top.jpg','3','7','12',NULL,0,0,0,0,0,3583,NULL,0,1,0,1213386091),('CalendarPrintEvent0001',1215396964,'3','pbversion0000000000001','approved','Default Calendar Print Event','Default Calendar Print Event','root/import/calendar-templates/default-calendar-print-event','3','7','12',NULL,0,0,0,0,0,3079,' \r\n',0,1,0,1228264384),('_gBYAdTcbkiyamnqi2Xskg',1222803409,'3','pbversion0000000000001','approved','WebGUI/Recovery','WebGUI/Recovery','root/import/auth/webgui/recovery','3','7','12',NULL,0,0,0,0,0,324,NULL,0,1,0,1222803409),('j_1qEqM6iLfQLiR6VKy0aA',1215718151,'3','pbversion0000000000001','approved','Free Documentation','Free Documentation','documentation/free-documentation','3','7','3',NULL,0,1,0,0,0,1382,NULL,0,1,0,1215718151),('o_pq_e4vRyhMOKFzs61eag',1215714957,'3','pbversion0000000000001','approved','book-covers.jpg','book-covers.jpg','documentation/book-covers.jpg','3','7','3',NULL,0,1,0,0,0,106067,NULL,0,0,0,1215714957),('diZvW4bSgZWwyyGP3qXi1g',1215717972,'3','pbversion0000000000001','approved','Commercial Documentation','Commercial Documentation','documentation/commercial-documentation','3','7','3',NULL,0,1,0,0,0,1077,NULL,0,1,0,1215717972),('oHk7fAFhEEkB7dHzi0QOQA',1222803399,'3','pbversion0000000000001','approved','WebGUI/Expired','WebGUI/Expired','root/import/auth/webgui/expired','3','7','12',NULL,0,0,0,0,0,321,NULL,0,1,0,1222803399),('fq1ZkYhH24R5tb96kuT10Q',1222803395,'3','pbversion0000000000001','approved','WebGUI/Create','WebGUI/Create','root/import/auth/webgui/create','3','7','12',NULL,0,0,0,0,0,318,NULL,0,1,0,1222803395),('63ix2-hU0FchXGIWkG3tow',1216169693,'3','pbversion0000000000001','approved','Flat Discount (Default)','Flat Discount (Default)','root/import/flat-discount-default','3','7','12',NULL,0,1,0,0,0,811,NULL,0,1,0,1228264384),('K0q_N885Httqev1VCqUWxg',1222803391,'3','pbversion0000000000001','approved','WebGUI/Account','WebGUI/Account','root/import/auth/webgui/account','3','7','12',NULL,0,0,0,0,0,321,NULL,0,1,0,1222803391),('jnYdqDkUR8x7Pv2eGR1qTA',1216250666,'3','pbversion0000000000001','approved','Thingy Templates','Thingy Templates','root/import/thingy-templates','3','7','12',NULL,0,1,0,0,0,312,NULL,0,1,0,1216250666),('taX2UYkFF21ALpFZY2rhMw',1222803387,'3','pbversion0000000000001','approved','LDAP/Login','LDAP/Login','root/import/auth/ldap/login','3','7','12',NULL,0,0,0,0,0,309,NULL,0,1,0,1222803387),('3n3H85BsdeRQ0I08WmvlOg',1216227244,'3','pbversion0000000000001','approved','thingy.css','thingy.css','root/import/thingy-templates/thingy.css','3','7','12',NULL,0,1,0,0,0,2768,NULL,0,1,0,1216227244),('5m5I7__l40C4hhv4ydqAHQ',1216227786,'3','pbversion0000000000001','approved','thingy-ie.css','thingy-ie.css','root/import/thingy-templates/thingy-ie.css','3','7','12',NULL,0,1,0,0,0,830,NULL,0,1,0,1216227786),('9M-lrlPQWeeNWfvnDnK_Xg',1222803405,'3','pbversion0000000000001','approved','WebGUI/Login','WebGUI/Login','root/import/auth/webgui/login','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1222803405),('xSmREZO3GNzK3M5PaueOOQ',1222803378,'3','pbversion0000000000001','approved','LDAP/Account','LDAP/Account','root/import/auth/ldap/account','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1222803378),('0bx-xoL8TSXXubFuqKAoVQ',1222803383,'3','pbversion0000000000001','approved','LDAP/Create','LDAP/Create','root/import/auth/ldap/create','3','7','12',NULL,0,0,0,0,0,312,NULL,0,1,0,1222803383),('1oGhfj00KkCzP1ez01AfKA',1218582812,'3','pbversion0000000000001','approved','slideshow.js','slideshow.js','root/import/gallery-templates/slideshow.js','3','7','3',NULL,0,1,0,0,0,8708,NULL,0,1,0,1218582812),('PBtmpl0000000000000130',1219072470,'3','pbversion0000000000001','approved','Tree Navigation','Tree Navigation','root/import/navigation/tree-navigation','3','7','12',NULL,0,1,0,0,0,2512,'\r\n\r\n\r\n',0,1,0,1228264384),('pV7GnZdpjR3XpZaSINIoeg',1222803347,'3','pbversion0000000000001','approved','gantt','gantt','root/import/projectmanager/gantt','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1222803347),('9A-mg2gwWmaYi9o_1C7ArQ',1222803338,'3','pbversion0000000000001','approved','dashboard','dashboard','root/import/projectmanager/dashboard','3','7','12',NULL,0,0,0,0,0,316,NULL,0,1,0,1222803338),('PBtmpl0000000000000054',1220655703,'3','pbversion0000000000001','approved','Default Page','Default Page','default_page','3','7','12',NULL,0,1,0,0,0,1193,NULL,0,1,0,1228264384),('PBtmpl000000000table54',1220655704,'3','pbversion0000000000001','approved','Default Page (Table)','Default Page (Table)','default_page_table','3','7','12',NULL,0,0,0,0,0,1258,NULL,0,1,0,1228264384),('yD1SMHelczihzjEmx6eXBA',1222803342,'3','pbversion0000000000001','approved','editTask','editTask','root/import/projectmanager/edittask','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803342),('PBtmpl0000000000000125',1220655703,'3','pbversion0000000000001','approved','Left Column','Left Column','left_column','3','7','12',NULL,0,1,0,0,0,2407,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table125',1220655705,'3','pbversion0000000000001','approved','Left Column (Table)','Left Column (Table)','left_column_table','3','7','12',NULL,0,0,0,0,0,2419,'\n',0,1,0,1228264384),('PBtmpl00000000table094',1220655704,'3','pbversion0000000000001','approved','News (Table)','News (Table)','news_table','3','7','12',NULL,0,0,0,0,0,3604,'\r\n',0,1,0,1228264384),('PBtmpl0000000000000109',1220655703,'3','pbversion0000000000001','approved','One Over Three','One Over Three','one_over_three','3','7','12',NULL,0,1,0,0,0,3851,'\n\n',0,1,0,1228264384),('PBtmpl00000000table109',1220655705,'3','pbversion0000000000001','approved','One Over Three (Table)','One Over Three (Table)','one_over_three_table','3','7','12',NULL,0,0,0,0,0,3921,'\n\n',0,1,0,1228264384),('PBtmpl0000000000000094',1220655703,'3','pbversion0000000000001','approved','News','News','plainblacknews','3','7','12',NULL,0,1,0,0,0,3564,'\r\n\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000131',1220655704,'3','pbversion0000000000001','approved','Right Column','Right Column','right_column','3','7','12',NULL,0,1,0,0,0,2421,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table131',1220655705,'3','pbversion0000000000001','approved','Right Column (Table)','Right Column (Table)','right_column_table','3','7','12',NULL,0,0,0,0,0,2415,'\n',0,1,0,1228264384),('1XOJDcg_ITRYwVM-QnIcPw',1219175575,'3','pbversion0000000000001','approved','shelf.css','shelf.css','root/import/shelf2/shelf.css','3','7','12',NULL,0,1,0,0,0,1486,NULL,0,1,0,1219175575),('PBtmpl0000000000000135',1220655704,'3','pbversion0000000000001','approved','Side By Side','Side By Side','side_by_side','3','7','12',NULL,0,1,0,0,0,2256,'\n\n',0,1,0,1228264384),('PBtmpl00000000table135',1220655706,'3','pbversion0000000000001','approved','Side By Side (Table)','Side By Side (Table)','side_by_side_table','3','7','12',NULL,0,0,0,0,0,2277,'\r\n',0,1,0,1228264384),('PBtmpl0000000000000118',1220655703,'3','pbversion0000000000001','approved','Three Over One','Three Over One','three_over_one','3','7','12',NULL,0,1,0,0,0,3814,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table118',1220655705,'3','pbversion0000000000001','approved','Three Over One (Table)','Three Over One (Table)','three_over_one_table','3','7','12',NULL,0,0,0,0,0,3936,'\r\n',0,1,0,1228264384),('huASapWvFDzqwOSbcN-JFQ',1222803313,'3','pbversion0000000000001','approved','user','user','root/import/timetracking/user','3','7','12',NULL,0,0,0,0,0,299,NULL,0,1,0,1222803313),('lo1ac3BsoJx3ijGQ3gR-bQ',1222803309,'3','pbversion0000000000001','approved','row','row','root/import/timetracking/row','3','7','12',NULL,0,0,0,0,0,296,NULL,0,1,0,1222803309),('1z9J1O08n_7gVVlBwSRBJQ',1222803099,'3','pbversion0000000000001','approved','Auth','Auth','root/import/auth','3','7','12',NULL,0,1,0,0,0,279,NULL,0,1,0,1222803099),('zyWi26q9na-iiZqL4yedog',1222803114,'3','pbversion0000000000001','approved','Macro','Macro','root/import/macro','3','7','12',NULL,0,1,0,0,0,282,NULL,0,1,0,1222803114),('tBL7BWiQRZFed2Y-Zjo9tQ',1222803200,'3','pbversion0000000000001','approved','AdminToggle','AdminToggle','root/import/macro/admintoggle','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803200),('GdkQpvjRtJqtzOUbwIIQRA',1222803205,'3','pbversion0000000000001','approved','a_account','a_account','root/import/macro/a_account','3','7','12',NULL,0,0,0,0,0,307,NULL,0,1,0,1222803205),('tnc5iYyynX2hfdEs9D3P8w',1222803213,'3','pbversion0000000000001','approved','EditableToggle','EditableToggle','root/import/macro/editabletoggle','3','7','12',NULL,0,0,0,0,0,322,NULL,0,1,0,1222803213),('vgXdBcFTqU7h4wBG1ewdBw',1222803217,'3','pbversion0000000000001','approved','File','File','root/import/macro/file','3','7','12',NULL,0,0,0,0,0,292,NULL,0,1,0,1222803217),('hcFlqnXlsmC1ujN6Id0F0A',1222803234,'3','pbversion0000000000001','approved','GroupAdd','GroupAdd','root/import/macro/groupadd','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1222803234),('eRJR52fvlaxfetv3DQkQYw',1222803238,'3','pbversion0000000000001','approved','GroupDelete','GroupDelete','root/import/macro/groupdelete','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803238),('5HIDHq5lAWHV5gpYGS0zLg',1222803244,'3','pbversion0000000000001','approved','H_homeLink','H_homeLink','root/import/macro/h_homelink','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803244),('rYEFwXXo0tkGhQTcbDibvg',1222803249,'3','pbversion0000000000001','approved','LoginToggle','LoginToggle','root/import/macro/logintoggle','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803249),('-WM2dt0ZGpDasuL2wWocxg',1222803056,'3','pbversion0000000000001','approved','ProjectManager','ProjectManager','root/import/projectmanager','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1222803056),('2OcUWHVsu_L1sDFzIMWYqw',1222803070,'3','pbversion0000000000001','approved','TimeTracking','TimeTracking','root/import/timetracking','3','7','12',NULL,0,1,0,0,0,303,NULL,0,1,0,1222803070),('vTymIDYL2YqEh6PV50F7ew',1222803302,'3','pbversion0000000000001','approved','manager','manager','root/import/timetracking/manager','3','7','12',NULL,0,0,0,0,0,308,NULL,0,1,0,1222803302),('nqNbSUAhk9Vd1zda2SCz9A',1222803258,'3','pbversion0000000000001','approved','RandomThread','RandomThread','root/import/macro/randomthread','3','7','12',NULL,0,0,0,0,0,316,NULL,0,1,0,1222803258),('y8XkRdxIperLKkJ3bL5sSQ',1222803264,'3','pbversion0000000000001','approved','r_printable','r_printable','root/import/macro/r_printable','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803264),('V3l5S5TtI7wMm1WpIMhvOA',1222803253,'3','pbversion0000000000001','approved','L_loginBox','L_loginBox','root/import/macro/l_loginbox','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803253),('aIpCmr9Hi__vgdZnDTz1jw',1227539574,'3','pbversion0000000000001','approved','Cart (Default)','Cart (Default)','default-shopping-cart-template','3','7','3',NULL,0,1,0,0,0,8125,' ',0,1,0,1228264384),('PBEmsBadgeTemplate0000',1221692339,'3','pbversion0000000000001','approved','Default EMS Badge Template','Default EMS Badge Template','default_emsbadge','3','7','4',NULL,0,0,0,0,0,1456,NULL,0,1,0,1228264384),('PBtmpl0000000000000005',1221612327,'3','pbversion0000000000001','approved','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template','default_ldap_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,5808,'\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000200',1222383245,'3','pbversion0000000000001','approved','Default Search','Default Search','default_search2','3','7','12',NULL,0,0,0,0,0,1042,NULL,0,1,0,1228264384),('PBtmpl0000000000000011',1221612288,'3','pbversion0000000000001','approved','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template','default_webgui_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,6179,'\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000134',1222574692,'3','pbversion0000000000001','approved','Hierarchical Top Nav','Hierarchical Top Nav','import/hierarchical-top-nav','3','7','12',NULL,0,1,0,0,0,2993,'\r\n\r\n\r\n\r\n\r\n\n',0,1,0,1228264384),('PBtmpl0000000000000020',1221692340,'3','pbversion0000000000001','approved','Mail Form','Mail Form','mail_form','3','7','12',NULL,0,1,0,0,0,3147,'\n',0,1,0,1228264384),('PBtmpl0000000000000029',1227480813,'3','pbversion0000000000001','approved','Default Post Form','Default Post Form','default_post_form','3','7','12',NULL,0,1,0,0,0,2375,'\n',0,1,0,1228264383),('newslettersubscrip0001',1221692339,'3','pbversion0000000000001','approved','My Subscriptions (default)',' My Subscriptions','newslettermysubscriptionstemplate','3','7','3',NULL,0,0,0,0,0,778,NULL,0,1,0,1228264384),('PBtmpl0000000000000141',1221692340,'3','pbversion0000000000001','approved','Default DataForm','Default DataForm','pbtmpl0000000000000141','3','7','12',NULL,0,1,0,0,0,4343,'\r\n',0,1,0,1228264384),('kj3b-X3i6zRKnhLb4ZiCLw',1222574694,'3','pbversion0000000000001','approved','Default Calendar List View','Default Calendar List View','root/import/calendar-templates/default-calendar-list-view','3','7','3',NULL,0,1,0,0,0,4212,'\n',0,1,0,1228264384),('eqb9sWjFEVq0yHunGV8IGw',1222574693,'3','pbversion0000000000001','approved','Subscription (Default)','Subscription (Default)','root/import/subscription-default','3','7','12',NULL,0,1,0,0,0,2113,'\n',0,1,0,1228264384),('2gtFt7c0qAFNU3BG_uvNvg',1222574694,'3','pbversion0000000000001','approved','My Purchases (Default)','My Purchases (Default)','shopping-cart-collateral-items/my-purchases-default','3','7','3',NULL,0,1,0,0,0,2535,'\n',0,1,0,1228264384),('g8W53Pd71uHB9pxaXhWf_A',1222574693,'3','pbversion0000000000001','approved','My Purchases Detail (Default)','My Purchases Detail (Default)','shopping-cart-collateral-items/my-purchases-detail-default','3','7','3',NULL,0,1,0,0,0,6039,'\n',0,1,0,1228264384),('stevestyle000000000001',1222383245,'3','pbversion0000000000001','approved','Style 01','Style 01','style_01','3','7','12',NULL,0,0,0,0,0,1618,NULL,0,1,0,1228264384),('stevestyle000000000002',1222383245,'3','pbversion0000000000001','approved','Style 02','Style 02','style_02','3','7','12',NULL,0,0,0,0,0,2603,NULL,0,1,0,1228264384),('PBtmpl0000000000000116',1221692340,'3','pbversion0000000000001','approved','Tab Form','Tab Form','tab_form','3','7','12',NULL,0,1,0,0,0,3847,'\n',0,1,0,1228264384),('ThingyTmpl000000000002',1222574693,'3','pbversion0000000000001','approved','Default Thingy View Thing','Default Thingy View Thing','templates/thingy-default-view-thing','3','7','12',NULL,0,0,0,0,0,2859,'\n',0,1,0,1228264384),('UL-ItI4L1Z6-WSuhuXVvsQ',1225139673,'3','pbversion0000000000001','approved','DataTable','DataTable','root/import/datatable','3','7','3',NULL,0,0,0,0,0,293,NULL,0,1,0,1225139673),('3rjnBVJRO6ZSkxlFkYh_ug',1225139643,'3','pbversion0000000000001','approved','Default DataTable Template (YUI)','Default DataTable Template (YUI)','root/import/datatable/default-datatable-template-yui','3','7','3',NULL,0,1,0,0,0,557,NULL,0,1,0,1228264385),('TuYPpHx7TUyk08639Pc8Bg',1225139643,'3','pbversion0000000000001','approved','Default DataTable Template (HTML)','Default DataTable Template (HTML)','root/import/datatable/default-datatable-template-html','3','7','3',NULL,0,1,0,0,0,730,NULL,0,1,0,1228264385),('BMybD3cEnmXVk2wQ_qEsRQ',1224723361,'3','pbversion0000000000001','approved','Badge Builder (Default)','Badge Builder (Default)','root/import/ems/badge-builder-default','3','7','12',NULL,0,1,0,0,0,22629,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('2rC4ErZ3c77OJzJm7O5s3w',1224723218,'3','pbversion0000000000001','approved','EMS Badge Listing (default)','EMS Badge Listing (default)','root/import/ems/ems-badge-listing-default','3','7','12',NULL,0,1,0,0,0,7157,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n',0,1,0,1228264385),('OOyMH33plAy6oCj_QWrxtg',1224724790,'3','pbversion0000000000001','approved','Lookup Registrant (Default)','Lookup Registrant (Default)','root/import/ems/lookup-registrant-default','3','7','12',NULL,0,1,0,0,0,5159,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('THQhn1C-ooj-TLlEP7aIJQ',1225313951,'3','pbversion0000000000001','approved','gallery-ie.css','gallery-ie.css','root/import/gallery-templates/gallery-ie.css','3','7','3',NULL,0,1,0,0,0,441,NULL,0,1,0,1225313951),('7.0-style0000000000049',1224117144,'3','pbversion0000000000001','approved','WebGUI 7 Style 3','WebGUI 7 Style 3','root/import/webgui-7-style-3','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1224117144),('stevecoolmenu000000001',1224116942,'3','pbversion0000000000001','approved','Site Nav','Site Nav','webgui7/style3/hierarchical-top-nav','3','7','12',NULL,0,0,0,0,0,2566,'\r\n\r\n\r\n\r\n',0,1,0,1228264385),('7.0-style0000000000051',1224117026,'3','pbversion0000000000001','approved','css03.css','css03.css','style3/css03.css','3','7','12',NULL,0,0,0,0,0,3683,NULL,0,1,0,1224117026),('jVKLVakT_iA2010_oEuAwg',1224116526,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','department_nav','3','7','12',NULL,0,0,0,0,0,354,NULL,0,1,0,1224116526),('XNd7a_g_cTvJVYrVHcx2Mw',1224606020,'3','pbversion0000000000001','approved','Address (Default)','Address (Default)','shopping-cart-collateral-items/address-default','3','7','3',NULL,0,1,0,0,0,3231,'\r\n',0,1,0,1228264385),('stevestyle000000000003',1224795533,'3','pbversion0000000000001','approved','Style 03','Style 03','style_03','3','7','12',NULL,0,0,0,0,0,1716,NULL,0,1,0,1228264385),('ThingyTmpl000000000003',1224518002,'3','pbversion0000000000001','approved','Default Thingy Edit Thing','Default Thingy Edit Thing','templates/thingy-default-edit-thing','3','7','12',NULL,0,0,0,0,0,3883,'\r\n\r\n\r\n',0,1,0,1228264385),('QpmlAiYZz6VsKBM-_0wXaw',1224616691,'3','pbversion0000000000001','approved','UsersOnline Macro','UsersOnline Macro','users-online-macro-templates','3','7','3',NULL,0,0,0,0,0,329,NULL,0,1,0,1224616691),('h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'3','pbversion0000000000001','approved','UsersOnline Default View','UsersOnline Default View','users-online-macro-templates/usersonline-default-view','3','7','3',NULL,0,1,0,0,0,1728,'\r\n\r\n',0,1,0,1228264385),('4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'3','pbversion0000000000001','approved','UsersOnline Detailed View','UsersOnline Detailed View','users-online-macro-templates/usersonline-detailed-view','3','7','3',NULL,0,1,0,0,0,2706,'\r\n\r\n',0,1,0,1228264385),('PBtmpl0000000000000065',1226457084,'3','pbversion0000000000001','approved','Default Syndicated Content','Default Syndicated Content','default_syndicated_content','3','7','12',NULL,0,1,0,0,0,1041,NULL,0,1,0,1228264385),('PBtmpl0000000000000099',1227480813,'3','pbversion0000000000001','approved','FAQ Submission Form','FAQ Submission Form','faq_submission_form','3','7','12',NULL,0,1,0,0,0,2543,'\n',0,1,0,1228264385),('PBtmpl0000000000000122',1227480813,'3','pbversion0000000000001','approved','Job Submission Form','Job Submission Form','job_submission_form','3','7','12',NULL,0,1,0,0,0,3469,'\n',0,1,0,1228264385),('PBtmpl0000000000000114',1227480813,'3','pbversion0000000000001','approved','Link List Submission Form','Link List Submission Form','link_list_submission_form','3','7','12',NULL,0,1,0,0,0,3150,'\n',0,1,0,1228264385),('newslettercs0000000001',1226896423,'3','pbversion0000000000001','approved','Newsletter Manager (default)',' Newsletter Manager','newslettercstemplate','3','7','3',NULL,0,0,0,0,0,1886,'\n',0,1,0,1228264385),('PBtmpl0000000000000210',1227480812,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template2','3','7','12',NULL,0,0,0,0,0,3285,'\n\n\n',0,1,0,1228264385),('QHn6T9rU7KsnS3Y70KCNTg',1227080251,'3','pbversion0000000000001','approved','Account','Account','root/import/account','3','7','12',NULL,0,1,0,0,0,298,NULL,0,1,0,1227556683),('HPDOcsj4gBme8D4svHodBw',1225404573,'3','pbversion0000000000001','approved','Profile','Profile','root/import/account/profile','3','7','12',NULL,0,1,0,0,0,312,NULL,0,1,0,1227556683),('FJbUTvZ2nUTn65LpW6gjsA',1227070381,'3','pbversion0000000000001','approved','Profile Account Layout','Profile Account Layout','root/import/account/profile/profile-account-layout','3','7','12',NULL,0,1,0,0,0,2735,'\r\n',0,1,0,1228264385),('75CmQgpcCSkdsL-oawdn3Q',1227052575,'3','pbversion0000000000001','approved','Default Edit Profile Template','Default Edit Profile Template','root/import/account/profile/default-edit-profile-template','3','7','12',NULL,0,1,0,0,0,2912,'\r\n\r\n\r\n\r\n',0,1,0,1228264385),('2CS-BErrjMmESOtGT90qOg',1227070888,'3','pbversion0000000000001','approved','Default View Profile Template','Default View Profile Template','root/import/account/profile/default-view-profile-template','3','7','12',NULL,0,1,0,0,0,5384,NULL,0,1,0,1228264385),('MBmWlA_YEA2I6D29OMGtRg',1226542675,'3','pbversion0000000000001','approved','Default Profile Error Template','Default Profile Error Template','root/import/account/profile/default-profile-error-template','3','7','12',NULL,0,1,0,0,0,855,NULL,0,1,0,1228264385),('IZkrow_zwvbf4FCH-taVTQ',1226011853,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/account/inbox','3','7','12',NULL,0,1,0,0,0,306,NULL,0,1,0,1227556685),('gfZOwaTWYjbSoVaQtHBBEw',1226974679,'3','pbversion0000000000001','approved','Inbox Account Layout','Inbox Account Layout','root/import/account/inbox-account-layout','3','7','12',NULL,0,1,0,0,0,2208,'\r\n',0,1,0,1228264385),('c8xrwVuu5QE0XtF9DiVzLw',1226894351,'3','pbversion0000000000001','approved','Default Inbox View Template','Default Inbox View Template','root/import/account/inbox/default-inbox-view-template','3','7','12',NULL,0,1,0,0,0,8462,'\r\n\r\n',0,1,0,1228264385),('0n4HtbXaWa_XJHkFjetnLQ',1226894994,'3','pbversion0000000000001','approved','Default Inbox View Message Template','Default Inbox View Message Template','root/import/account/inbox/default-inbox-view-message-template','3','7','12',NULL,0,1,0,0,0,3775,NULL,0,1,0,1228264385),('6uQEULvXFgCYlRWnYzZsuA',1226896682,'3','pbversion0000000000001','approved','Default Inbox Send Message Template','Default Inbox Send Message Template','root/import/account/inbox/default-inbox-send-message-template','3','7','12',NULL,0,1,0,0,0,6051,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('DUoxlTBXhVS-Zl3CFDpt9g',1226896802,'3','pbversion0000000000001','approved','Default Message Confirm Template','Default Message Confirm Template','root/import/account/inbox/default-message-confirm-template','3','7','12',NULL,0,1,0,0,0,582,NULL,0,1,0,1228264385),('1Q4Je3hKCJzeo0ZBB5YB8g',1226898445,'3','pbversion0000000000001','approved','Default Manage Invitations Template','Default Manage Invitations Template','root/import/account/inbox/default-manage-invitations-template','3','7','12',NULL,0,1,0,0,0,8013,'\r\n\r\n',0,1,0,1228264385),('VBkY05f-E3WJS50WpdKd1Q',1226899241,'3','pbversion0000000000001','approved','Default View Invitation Template','Default View Invitation Template','root/import/account/inbox/default-view-invitation-template','3','7','12',NULL,0,1,0,0,0,3009,NULL,0,1,0,1228264385),('cR0UFm7I1qUI2Wbpj--08Q',1226964738,'3','pbversion0000000000001','approved','Default Invite User Form Template','Default Invite User Form Template','root/import/account/inbox/default-invite-user-form-template','3','7','12',NULL,0,1,0,0,0,3173,NULL,0,1,0,1228264385),('SVIhz68689hwUGgcDM-gWw',1226973314,'3','pbversion0000000000001','approved','Default Invite User Confirm Template','Default Invite User Confirm Template','root/import/account/inbox/default-invite-user-confirm-template','3','7','12',NULL,0,1,0,0,0,610,NULL,0,1,0,1228264385),('K0YjxqOqr7RupSo6sIdcAg',1227074310,'3','pbversion0000000000001','approved','Friends','Friends','root/import/account/friends','3','7','12',NULL,0,1,0,0,0,312,NULL,0,1,0,1227556687),('zrNpGbT3odfIkg6nFSUy8Q',1226994016,'3','pbversion0000000000001','approved','Friends Layout Template','Friends Layout Template','root/import/account/friends/friends-layout-template','3','7','12',NULL,0,1,0,0,0,1858,'\r\n',0,1,0,1228264385),('1Yn_zE_dSiNuaBGNLPbxtw',1226994422,'3','pbversion0000000000001','approved','Default Friends View Template','Default Friends View Template','root/import/account/friends/default-friends-view-template','3','7','12',NULL,0,1,0,0,0,6481,NULL,0,1,0,1228264385),('AZFU33p0jpPJ-E6qLSWZng',1226994865,'3','pbversion0000000000001','approved','Default Friends Edit Template','Default Friends Edit Template','root/import/account/friends/default-friends-edit-template','3','7','12',NULL,0,1,0,0,0,7310,NULL,0,1,0,1228264385),('AGJBGviWGAwjnwziiPjvDg',1226995497,'3','pbversion0000000000001','approved','Default Send Request Template','Default Send Request Template','root/import/account/friends/default-send-request-template','3','7','12',NULL,0,1,0,0,0,2355,NULL,0,1,0,1228264385),('7Ijdd8SW32lVgg2H8R-Aqw',1226995714,'3','pbversion0000000000001','approved','Default Friends Error Template','Default Friends Error Template','root/import/account/friends/default-friends-error-template','3','7','12',NULL,0,1,0,0,0,585,NULL,0,1,0,1228264385),('K8F0j_cq_jgo8dvWY_26Ag',1226995643,'3','pbversion0000000000001','approved','Default Friends Confirmation Template','Default Friends Confirmation Template','root/import/account/friends/default-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,678,NULL,0,1,0,1228264385),('G5V6neXIDiFXN05oL-U3AQ',1226995768,'3','pbversion0000000000001','approved','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template','root/import/account/friends/default-remove-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,813,NULL,0,1,0,1228264385),('_ilRXNR3s8F2vGJ_k9ePcg',1226643205,'3','pbversion0000000000001','approved','User','User','root/import/account/user','3','7','12',NULL,0,1,0,0,0,303,NULL,0,1,0,1227556688),('9ThW278DWLV0-Svf68ljFQ',1226647187,'3','pbversion0000000000001','approved','Account Layout','Account Layout','root/import/account/user/account-layout','3','7','12',NULL,0,1,0,0,0,1380,'\r\n',0,1,0,1228264385),('AOjPG2NHgfL9Cq6dDJ7mew',1226659753,'3','pbversion0000000000001','approved','Shop','Shop','root/import/account/shop','3','7','12',NULL,0,1,0,0,0,303,NULL,0,1,0,1227556688),('aUDsJ-vB9RgP-AYvPOy8FQ',1226660439,'3','pbversion0000000000001','approved','Shop Account Layout','Shop Account Layout','root/import/account/shop/shop-account-layout','3','7','12',NULL,0,1,0,0,0,1737,'\r\n',0,1,0,1228264385),('qaVcU0FFzzraMX_bzELqzw',1227074362,'3','pbversion0000000000001','approved','Contributions','Contributions','root/import/account/contributions','3','7','12',NULL,0,1,0,0,0,330,NULL,0,1,0,1227556688),('b4n3VyUIsAHyIvT-W-jziA',1227074747,'3','pbversion0000000000001','approved','Contributions Layout','Contributions Layout','root/import/account/contributions/contributions-layout','3','7','12',NULL,0,1,0,0,0,1407,'\r\n',0,1,0,1228264385),('1IzRpX0tgW7iuCfaU2Kk0A',1227079721,'3','pbversion0000000000001','approved','Default Contributions View','Default Contributions View','root/import/account/contributions/default-contributions-view','3','7','12',NULL,0,1,0,0,0,6257,NULL,0,1,0,1228264385),('N716tpSna0iIQTKxS4gTWA',1226604666,'3','pbversion0000000000001','approved','Default Account Layout','Default Account Layout','root/import/account/default-account-layout2','3','7','12',NULL,0,1,0,0,0,1130,'\r\n',0,1,0,1228264385),('vrKXEtluIhbmAS9xmPukDA',1226698051,'3','pbversion0000000000001','approved','Donation (Default)','Donation (Default)','root/import/default-donation-template','3','7','12',NULL,0,1,0,0,0,1876,'\r\n',0,0,0,1228264385),('5bnNzteN7w3NnK9mF4XiCg',1227540002,'3','pbversion0000000000001','approved','Survey','Survey','root/import/survey','3','7','12',NULL,0,0,0,0,0,295,NULL,0,1,0,1227556681),('PBtmpl0000000000000061',1227252733,'3','pbversion0000000000001','approved','Default Survey','Default Survey','default_survey','3','7','12',NULL,0,1,0,0,0,1340,NULL,0,1,0,1228264385),('PBtmpl0000000000000064',1226009610,'3','pbversion0000000000001','approved','Default Response','Default Response','default_response','3','7','12',NULL,0,1,0,0,0,1981,NULL,0,1,0,1228264385),('d8jMMMRddSQ7twP4l1ZSIw',1227248175,'3','pbversion0000000000001','approved','Default Survey Take','Default Survey Take','root/import/survey/default-survey-take','3','7','12',NULL,0,1,0,0,0,2147,'\r\n\r\n',0,1,0,1228264385),('CxMpE_UPauZA3p8jdrOABw',1227556536,'3','pbversion0000000000001','approved','Default Questions','Default Questions','root/import/survey/default-questions','3','7','12',NULL,0,1,0,0,0,8628,NULL,0,1,0,1228264385),('3womoo7Teyy2YKFa25-MZg',1226703362,'3','pbversion0000000000001','approved','Address Book (Default)','Address Book (Default)','shopping-cart-collateral-items/address-book-default','3','7','3',NULL,0,1,0,0,0,2603,'\r\n',0,1,0,1228264385),('ThingyTmpl000000000004',1227044214,'3','pbversion0000000000001','approved','Default Thingy Search Thing','Default Thingy Search Thing','templates/thingy-default-search-thing','3','7','12',NULL,0,0,0,0,0,6455,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('XgcsoDrbC0duVla7N7JAdw',1227566394,'3','pbversion0000000000001','approved','Default Invite User Email Template','Default Invite User Email Template','root/import/account/inbox/default-invite-user-email-template','3','7','12',NULL,0,1,0,0,0,443,NULL,0,1,0,1228264387),('UserListTmpl0000000001',1228125743,'3','pbversion0000000000001','approved','Default UserList','Default UserList','root/import/userlist/default-userlist','3','7','12',NULL,0,1,0,0,0,2817,NULL,0,1,0,1228264387),('UserListTmpl0000000003',1228125758,'3','pbversion0000000000001','approved','UserList with multiple search keywords','UserList with multiple search keywords','root/import/userlist/userlist-with-multiple-search-keywords','3','7','12',NULL,0,1,0,0,0,2998,NULL,0,1,0,1228264387),('UserListTmpl0000000002',1228125752,'3','pbversion0000000000001','approved','UserList with search field selection','UserList with search field selection','root/import/userlist/userlist-with-search-field-selection','3','7','12',NULL,0,1,0,0,0,2804,NULL,0,1,0,1228264387),('ThingyTmpl000000000001',1227753116,'3','pbversion0000000000001','approved','Default Thingy','Default Thingy','templates/thingy-default','3','7','12',NULL,0,0,0,0,0,1442,'',0,1,0,1228264387),('matrixtmpl000000000004',1228834590,'3','pbversion0000000000001','approved','Matrix Default Edit Listing','Matrix Default Edit Listing','default-matrix-edit-listing-template','3','7','12',NULL,0,0,0,0,0,430,NULL,0,1,0,1233158077),('PBtmpl0000000000000207',1229100306,'3','pbversion0000000000001','approved','Article with Files','Article with Files','article-with-files','3','7','12',NULL,0,0,0,0,0,1232,NULL,0,1,0,1229459611),('PBtmpl0000000000000084',1229100305,'3','pbversion0000000000001','approved','Center Image','Center Image','center_image','3','7','12',NULL,0,1,0,0,0,1329,NULL,0,1,0,1229459611),('TimeTrackingTMPL000003',1229311434,'3','pbversion0000000000001','approved','Default Time Tracking Row Template','Default Time Tracking Row Template','default-tt-template-row','3','7','12',NULL,0,0,0,0,0,3170,NULL,0,1,0,1229459611),('PBtmpl0000000000000056',1228934532,'3','pbversion0000000000001','approved','Default Product','Default Product','default_product','3','7','12',NULL,0,1,0,0,0,7505,'\r\n\r\n',0,1,0,1229459611),('PBtmpl0000000000000103',1229100306,'3','pbversion0000000000001','approved','Left Align Image','Left Align Image','left_align_image','3','7','12',NULL,0,1,0,0,0,1514,NULL,0,1,0,1229459611),('PBtmpl0000000000000115',1229100306,'3','pbversion0000000000001','approved','Linked Image with Caption','Linked Image with Caption','linked_image_with_caption','3','7','12',NULL,0,1,0,0,0,1700,NULL,0,1,0,1229459611),('uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'3','pbversion0000000000001','approved','Default Calendar Print List View','Default Calendar Print List View','root/import/calendar-templates/default-calendar-print-list-view','3','7','3',NULL,0,1,0,0,0,1080,NULL,0,1,0,1229459611),('nFen0xjkZn8WkpM93C9ceQ',1229117831,'3','pbversion0000000000001','approved','Shelf (Default)','Shelf (Default)','root/import/shelf-default','3','7','12',NULL,0,1,0,0,0,2282,'\r\n',0,1,0,1229459611),('StockDataTMPL000000001',1229453697,'3','pbversion0000000000001','approved','StockData Default View','StockData Default View','stockdatatmpl000000001','3','7','12',NULL,0,1,0,0,0,5126,'\n',0,1,0,1229459611),('PBtmpl0000000000000137',1229581394,'3','pbversion0000000000001','approved','Admin Console Style','Admin Console','admin_console','3','7','12',NULL,0,1,0,0,0,806,NULL,0,1,0,1231494253),('DashboardViewTmpl00001',1230358389,'3','pbversion0000000000001','approved','Dashboard Default View','Dashboard Default View','dashboard-default-view-template','3','7','12',NULL,0,0,0,0,0,7665,'\r\n\r\n\r\n',0,1,0,1231494252),('PBtmpl0000000000000021',1230269962,'3','pbversion0000000000001','approved','Data List','Data List','data_list','3','7','12',NULL,0,1,0,0,0,2218,'',0,1,0,1231494252),('ProjectManagerTMPL0005',1229579830,'3','pbversion0000000000001','approved','Default Resource Popup','Default Resource Popup','default-pm-resource-popup','3','7','12',NULL,0,0,0,0,0,1989,NULL,0,1,0,1231494253),('ProjectManagerTMPL0001',1229579830,'3','pbversion0000000000001','approved','Default Project Management System Dashboard','Default Project Management System Dashboard','default-pm-template-dashboard','3','7','12',NULL,0,0,0,0,0,3820,'',0,1,0,1231494253),('WikiPageTmpl0000000001',1229706257,'3','pbversion0000000000001','approved','Default Wiki Page','Default Wiki Page','default-wiki-page','3','7','12',NULL,0,0,0,0,0,3566,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1231494253),('PBtmpl0000000000000027',1230159257,'3','pbversion0000000000001','approved','Default Forum Notification','Default Forum Notification','default_forum_notification','3','7','12',NULL,0,1,0,0,0,1743,NULL,0,1,0,1231494252),('PBtmpl0000000000000033',1230159454,'3','pbversion0000000000001','approved','Default HTTP Proxy','Default HTTP Proxy','default_http_proxy','3','7','12',NULL,0,1,0,0,0,1269,NULL,0,1,0,1231494253),('default_post_received1',1230356300,'3','pbversion0000000000001','approved','Default Post Received','Default Post Received','default_post_received','3','7','4',NULL,0,0,0,0,0,429,NULL,0,1,0,1231494252),('PBtmpl0000000000000059',1229907401,'3','pbversion0000000000001','approved','Default SQL Report','Default SQL Report','default_sql_report','3','7','12',NULL,0,1,0,0,0,4341,NULL,0,1,0,1231494253),('PBtmpl0000000000000117',1229581394,'3','pbversion0000000000001','approved','DropMenu','DropMenu','dropmenu','3','7','12',NULL,0,1,0,0,0,1076,NULL,0,1,0,1231494253),('PBtmpl0000000000000098',1229907401,'3','pbversion0000000000001','approved','Job','Job','job','3','7','12',NULL,0,1,0,0,0,11222,'',0,1,0,1231494252),('PBtmpl0000000000000113',1229581394,'3','pbversion0000000000001','approved','Link','Link','link','3','7','12',NULL,0,1,0,0,0,10612,'',0,1,0,1231494252),('MultiSearchTmpl0000001',1230269962,'3','pbversion0000000000001','approved','MultiSearch Default Display','MultiSearch Default Display','multisearchtmpl0000001','3','7','12',NULL,0,1,0,0,0,1963,'',0,1,0,1231494253),('CalendarDay00000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Day','Default Calendar Day','root/import/calendar-templates/default-calendar-day','3','7','12',NULL,0,0,0,0,0,8702,' ',0,1,0,1231494252),('CalendarEvent000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Event','Default Calendar Event','root/import/calendar-templates/default-calendar-event','3','7','12',NULL,0,0,0,0,0,7436,' ',0,1,0,1231494252),('CalendarMonth000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Month','Default Calendar Month','root/import/calendar-templates/default-calendar-month','3','7','12',NULL,0,0,0,0,0,10690,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1231494252),('CalendarSearch00000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Search','Default Calendar Search','root/import/calendar-templates/default-calendar-search','3','7','12',NULL,0,0,0,0,0,9346,' ',0,1,0,1231494252),('CalendarWeek0000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Week','Default Calendar Week','root/import/calendar-templates/default-calendar-week','3','7','12',NULL,0,0,0,0,0,7189,'',0,1,0,1231494252),('0X4Q3tBWUb_thsVbsYz9xQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery Add Archive','Default Gallery Add Archive','root/import/gallery-templates/default-gallery-add-archive','3','7','3',NULL,0,1,0,0,0,1858,' \r\n\r\n ',0,1,0,1231494252),('mM3bjP_iG9sv5nQb4S17tQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album RSS','Default Gallery View Album RSS','root/import/gallery-templates/default-gallery-album-rss','3','7','3',NULL,0,1,0,0,0,819,NULL,0,1,0,1231494253),('UTNFeV7B_aSCRmmaFCq4Vw',1230581176,'3','pbversion0000000000001','approved','Default Gallery Delete Album','Default Gallery Delete Album','root/import/gallery-templates/default-gallery-delete-album','3','7','3',NULL,0,1,0,0,0,2612,'\r\n \r\n\r\n\r\n',0,1,0,1231494252),('zcX-wIUct0S_np14xxOA-A',1230581176,'3','pbversion0000000000001','approved','Default Gallery Delete File','Default Gallery Delete File','root/import/gallery-templates/default-gallery-delete-file','3','7','3',NULL,0,1,0,0,0,2631,'\r\n \r\n\r\n\r\n',0,1,0,1231494252),('6X-7Twabn5KKO_AbgK3PEw',1230585542,'3','pbversion0000000000001','approved','Default Gallery Edit Album','Default Gallery Edit Album','root/import/gallery-templates/default-gallery-edit-album','3','7','3',NULL,0,1,0,0,0,3452,'\n\n',0,1,0,1231494252),('OxJWQgnGsgyGohP2L3zJPQ',1230585543,'3','pbversion0000000000001','approved','Default Gallery Edit Comment','Default Gallery Edit Comment','root/import/gallery-templates/default-gallery-edit-comment','3','7','3',NULL,0,1,0,0,0,2916,'',0,1,0,1231494253),('7JCTAiu1U_bT9ldr655Blw',1230585543,'3','pbversion0000000000001','approved','Default Gallery Edit Photo','Default Gallery Edit Photo','root/import/gallery-templates/default-gallery-edit-photo','3','7','3',NULL,0,1,0,0,0,3988,'\n\n\n\n',0,1,0,1231494252),('ilu5BrM-VGaOsec9Lm7M6Q',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Albums RSS','Default Gallery List Albums RSS','root/import/gallery-templates/default-gallery-list-albums-rss','3','7','3',NULL,0,1,0,0,0,828,NULL,0,1,0,1231494253),('azCqD0IjdQSlM3ar29k5Sg',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Albums View','Default Gallery List Albums View','root/import/gallery-templates/default-gallery-list-albums-view','3','7','3',NULL,0,1,0,0,0,3260,' \r\n \r\n ',0,1,0,1231494252),('-ANLpoTEP-n4POAdRxCzRw',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS','root/import/gallery-templates/default-gallery-list-files-for-user-rss','3','7','3',NULL,0,1,0,0,0,859,NULL,0,1,0,1231494253),('OkphOEdaSGTXnFGhK4GT5A',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Files For User','Default Gallery List Files For User','root/import/gallery-templates/default-gallery-list-files-for-user','3','7','3',NULL,0,1,0,0,0,4312,'\r\n \r\n',0,1,0,1231494252),('m3IbBavqzuKDd2PGGhKPlA',1230585543,'3','pbversion0000000000001','approved','Default Gallery Make Shortcut','Default Gallery Make Shortcut','root/import/gallery-templates/default-gallery-make-shortcut','3','7','3',NULL,0,1,0,0,0,2793,'\n\n\n\n',0,1,0,1231494252),('jME5BEDYVDlBZ8jIQA9-jQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery Search','Default Gallery Search','root/import/gallery-templates/default-gallery-search','3','7','3',NULL,0,1,0,0,0,6033,'\r\n\r\n \r\n',0,1,0,1231494252),('KAMdiUdJykjN02CPHpyZOw',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow','root/import/gallery-templates/default-gallery-view-album-slideshow','3','7','3',NULL,0,1,0,0,0,4311,'\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n',0,1,0,1231494252),('q5O62aH4pjUXsrQR3Pq4lw',1230585542,'3','pbversion0000000000001','approved','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails','root/import/gallery-templates/default-gallery-view-album-thumbnails','3','7','3',NULL,0,1,0,0,0,4260,'\n\n\n\n\n\n\n',0,1,0,1231494252),('05FpjceLYhq4csF1Kww1KQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album','Default Gallery View Album','root/import/gallery-templates/default-gallery-view-album','3','7','3',NULL,0,1,0,0,0,4261,' \r\n \r\n ',0,1,0,1231494252),('TEId5V-jEvUULsZA0wuRuA',1230702582,'3','pbversion0000000000001','approved','Default Gallery View Photo','Default Gallery View Photo','root/import/gallery-templates/default-gallery-view-photo','3','7','3',NULL,0,1,0,0,0,6878,'\r\n\r\n\r\n\r\n',0,1,0,1231494252),('_9_eiaPgxzF_x_upt6-PNQ',1230702602,'3','pbversion0000000000001','approved','gallery.css','gallery.css','root/import/gallery-templates/gallery.css','3','7','3',NULL,0,1,0,0,0,10869,NULL,0,1,0,1231494252),('itransact_credentials1',1228953856,'3','pbversion0000000000001','approved','ITransact Credentials (Default)','ITransact Credentials (Default)','shopping-cart-collateral-items/itransact-credentials','3','7','4',NULL,0,0,0,0,0,3037,'\n',0,1,0,1231494253),('StockDataTMPL000000002',1229494994,'3','pbversion0000000000001','approved','StockData Default Display','StockData Default Display','stockdatatmpl000000002','3','7','12',NULL,0,1,0,0,0,11239,NULL,0,1,0,1231494253),('GNvjCFQWjY2AF2uf0aCM8Q',1230356300,'3','pbversion0000000000001','approved','Syndicated Articles','Syndicated Articles','syndicated_articles','3','7','12',NULL,0,1,0,0,0,1063,NULL,0,1,0,1231494253),('matrixtmpl000000000002',1233132357,'3','pbversion0000000000001','approved','Matrix Default Compare','Matrix Default Compare','matrix-default-compare-template','3','7','12',NULL,0,0,0,0,0,2278,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1233158079),('LdiozcIUciWuvt3Z-na5Ww',1232673968,'3','pbversion0000000000001','approved','Matrix','Matrix','root/import/matrix','3','7','12',NULL,0,0,0,0,0,295,NULL,0,1,0,1233158078),('matrixtmpl000000000001',1232674109,'3','pbversion0000000000001','approved','Matrix Default View','Matrix Default View','matrix-default-view-template','3','7','12',NULL,0,0,0,0,0,5991,'\r\n\r\n',0,1,0,1233158079),('matrixtmpl000000000003',1232674242,'3','pbversion0000000000001','approved','Matrix Default Detailed Listing','Matrix Default Detailed Listing','matrix-default-detailed-listing','3','7','12',NULL,0,0,0,0,0,4800,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1233158079),('matrixtmpl000000000005',1232674190,'3','pbversion0000000000001','approved','Matrix Default Search','Matrix Default Search','matrix-search-template','3','7','12',NULL,0,0,0,0,0,2236,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1233158079),('hkj6WeChxFyqfP85UlRP8w',1232664229,'3','pbversion0000000000001','approved','matrix.css','matrix.css','new-matrix/matrix.css','3','7','12',NULL,0,1,0,0,0,9039,NULL,0,1,0,1233158079),('kJf77eCr9GAMiEzWrzsBTA',1229639255,'3','pbversion0000000000001','approved','matrix-ie.css','matrix-ie.css','new-matrix/matrix-ie.css','3','7','12',NULL,0,1,0,0,0,527,NULL,0,1,0,1233158079),('4LQT4-bGW4FkiEQLSY5gvQ',1232400287,'3','pbversion0000000000001','approved','show-hide.js','show-hide.js','new-matrix/show-hide.js','3','7','12',NULL,0,1,0,0,0,659,NULL,0,1,0,1233158079),('alraubvBu-YJJ614jAHD5w',1232664015,'3','pbversion0000000000001','approved','matrix-nav-tmpl','matrix-nav-tmpl','new-matrix/matrix-nav-tmpl','3','7','12',NULL,0,1,0,0,0,447,NULL,0,1,0,1233158079),('Vch1Ww7G_JpBhOhXX07RDg',1232664082,'3','pbversion0000000000001','approved','matrx-nav','matrix-nav','new-matrix/matrix-nav','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1233158079),('AjhlNO3wZvN5k4i4qioWcg',1232726656,'3','pbversion0000000000001','approved','Default Answer Edit','Default Answer Edit','root/import/survey/default-answer-edit','3','7','12',NULL,0,1,0,0,0,3855,NULL,0,1,0,1233158079),('wAc4azJViVTpo-2NYOXWvg',1232907257,'3','pbversion0000000000001','approved','Default Question Edit','Default Question Edit','root/import/survey/default-question-edit','3','7','12',NULL,0,1,0,0,0,5278,NULL,0,1,0,1233158079),('1oBRscNIcFOI-pETrCOspA',1232648656,'3','pbversion0000000000001','approved','Default Section Edit','Default Section Edit','root/import/survey/default-section-edit','3','7','12',NULL,0,1,0,0,0,5675,NULL,0,1,0,1233158079),('GRUNFctldUgop-qRLuo_DA',1232646902,'3','pbversion0000000000001','approved','Default Survey Edit','Default Survey Edit','root/import/survey/default-survey-edit','3','7','12',NULL,0,1,0,0,0,2554,NULL,0,1,0,1233158079),('PBtmpl0000000000000062',1232981641,'3','pbversion0000000000001','approved','Default Gradebook Report','Default Gradebook Report','root/import/survey/default_gradebook_report','3','7','12',NULL,0,1,0,0,0,1932,NULL,0,1,0,1233158079),('PBtmpl0000000000000063',1233156264,'3','pbversion0000000000001','approved','Default Overview Report','Default Overview Report','root/import/survey/default_overview_report','3','7','12',NULL,0,1,0,0,0,3268,NULL,0,1,0,1233158079); -INSERT INTO `assetIndex` VALUES ('PBasset000000000000003','Media','Media Media media ','media',1147642437,1147642437,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Media\'\'Media\'\'media','000001000003'),('PBtmpl0000000000000112','Weblog','Weblog Weblog weblog ','weblog',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Weblog\'\'Weblog\'\'weblog Collaboration','000001000001000005000004'),('PBtmplBlankStyle000001','WebGUI 6 Blank Style','WebGUI 6 Blank Style WebGUI 6 Blank Style pbtmplblankstyle000001 ','pbtmplblankstyle000001',1133743239,1147642431,'3','7','12','WebGUI::Asset::Template',1,'WebGUI\'\'6\'\'Blank\'\'Style\'\'WebGUI\'\'6\'\'Blank\'\'Style\'\'pbtmplblankstyle000001 style','000001000001000038000005'),('PBtmpl0000000000000048','verticalMenu','verticalMenu verticalMenu verticalmenu ','verticalmenu',1124395696,1147642431,'3','7','12','WebGUI::Asset::Template',1,'verticalMenu\'\'verticalMenu\'\'verticalmenu Navigation','000001000001000022000002'),('PBtmpl0000000000000079','Topics','Topics Topics topics ','topics',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Topics\'\'Topics\'\'topics Collaboration','000001000001000005000009'),('PBtmpl0000000000000097','Traditional with Thumbnails','Traditional with Thumbnails Traditional with Thumbnails traditional with thumbnails ','traditional_with_thumbnails',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Traditional\'\'with\'\'Thumbnails\'\'Traditional\'\'with\'\'Thumbnails\'\'traditional\'\'with\'\'thumbnails Collaboration','000001000001000005000003'),('PBtmpl0000000000000082','Unordered List','Unordered List Unordered List unordered list ','unordered_list',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Unordered\'\'List\'\'Unordered\'\'List\'\'unordered\'\'list Collaboration','000001000001000005000011'),('PBtmpl0000000000000118','Three Over One','Three Over One Three Over One three over one ','three_over_one',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Three\'\'Over\'\'One\'\'Three\'\'Over\'\'One\'\'three\'\'over\'\'one Layout','000001000001000016000005'),('PBtmpl0000000000000124','Tabs','Tabs Tabs tabs ','tabs',1124395696,1147642429,'3','7','12','WebGUI::Asset::Template',1,'Tabs\'\'Tabs\'\'tabs Navigation','000001000001000022000005'),('GNvjCFQWjY2AF2uf0aCM8Q','Syndicated Articles','Syndicated Articles Syndicated Articles syndicated articles ','syndicated_articles',1124395696,1230356300,'3','7','12','WebGUI::Asset::Template',1,'Syndicated\'\'Articles\'\'Syndicated\'\'Articles\'\'syndicated\'\'articles SyndicatedContent','000001000001000040000002'),('PBtmpl0000000000000136','Synopsis','Synopsis Synopsis synopsis2 ','synopsis2',1124395696,1147642428,'3','7','12','WebGUI::Asset::Template',1,'Synopsis\'\'Synopsis\'\'synopsis2 Navigation','000001000001000022000008'),('PBtmpl0000000000000116','Tab Form','Tab Form Tab Form tab form ','tab_form',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Tab\'\'Form\'\'Tab\'\'Form\'\'tab\'\'form DataForm','000001000001000007000005'),('GRUNFctldUgop-qRLuo_DA','Default Survey Edit','Default Survey Edit Default Survey Edit root import survey default survey edit ','root/import/survey/default-survey-edit',1227254010,1232646902,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Edit\'\'Default\'\'Survey\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'survey\'\'edit Survey\'\'/\'\'Edit','000001000001000039000005'),('ProjectManagerTMPL0004','Default Project Manager Edit Task','Default Project Manager Edit Task Default Project Manager Edit Task default pm template edit task ','default-pm-template-edit-task',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Manager\'\'Edit\'\'Task\'\'Default\'\'Project\'\'Manager\'\'Edit\'\'Task\'\'default\'\'pm\'\'template\'\'edit\'\'task ProjectManager_editTask','000001000001000027000002000001'),('ProjectManagerTMPL0002','Default Project Display','Default Project Display Default Project Display default pm template project display ','default-pm-template-project-display',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Display\'\'Default\'\'Project\'\'Display\'\'default\'\'pm\'\'template\'\'project\'\'display ProjectManager_project','000001000001000027000004000001'),('PBtmpl0000000000000137','Admin Console Style','Admin Console Style Admin Console admin console ','admin_console',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'Admin\'\'Console\'\'Style\'\'Admin\'\'Console\'\'admin\'\'console style','000001000001000038000003'),('StockDataTMPL000000001','StockData Default View','StockData Default View StockData Default View stockdatatmpl000000001 ','stockdatatmpl000000001',1133743239,1229453697,'3','7','12','WebGUI::Asset::Template',1,'StockData\'\'Default\'\'View\'\'StockData\'\'Default\'\'View\'\'stockdatatmpl000000001 StockData','000001000001000037000002'),('PBtmpl0000000000000135','Side By Side','Side By Side Side By Side side by side ','side_by_side',1124395696,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Side\'\'By\'\'Side\'\'Side\'\'By\'\'Side\'\'side\'\'by\'\'side Layout','000001000001000016000001'),('PBtmpl0000000000000200','Default Search','Default Search Default Search default search2 ','default_search2',1147642427,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Search\'\'Default\'\'Search\'\'default\'\'search2 Search','000001000001000032000001'),('PBtmpl0000000000000101','Ordered List','Ordered List Ordered List ordered list ','ordered_list',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Ordered\'\'List\'\'Ordered\'\'List\'\'ordered\'\'list Collaboration','000001000001000005000024'),('PBtmpl0000000000000121','Photo Gallery','Photo Gallery Photo Gallery photo gallery ','photo_gallery',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Photo\'\'Gallery\'\'Photo\'\'Gallery\'\'photo\'\'gallery Collaboration','000001000001000005000005'),('PBtmpl0000000000000081','Q and A','Q and A Q and A q and a ','q_and_a',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Q\'\'and\'\'A\'\'Q\'\'and\'\'A\'\'q\'\'and\'\'a Collaboration','000001000001000005000023'),('WVtmpl0000000000000001','Random Thread Macro Default Template','Random Thread Macro Default Template Random Thread Macro Default Template randomthread template ','randomthread-template',1133743240,1147642426,'3','7','12','WebGUI::Asset::Template',1,'Random\'\'Thread\'\'Macro\'\'Default\'\'Template\'\'Random\'\'Thread\'\'Macro\'\'Default\'\'Template\'\'randomthread\'\'template Macro\'\'/\'\'RandomThread','000001000001000017000010000001'),('PBtmpl0000000000000131','Right Column','Right Column Right Column right column ','right_column',1124395696,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Right\'\'Column\'\'Right\'\'Column\'\'right\'\'column Layout','000001000001000016000002'),('PBtmpl0000000000000094','News','News News plainblacknews ','plainblacknews',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'News\'\'News\'\'plainblacknews Layout','000001000001000016000007'),('matrixtmpl000000000005','Matrix Default Search','Matrix Default Search Matrix Default Search matrix search template ','matrix-search-template',1133743239,1232674190,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Search\'\'Matrix\'\'Default\'\'Search\'\'matrix\'\'search\'\'template Matrix\'\'/\'\'Search','000001000001000018000005'),('MultiSearchTmpl0000001','MultiSearch Default Display','MultiSearch Default Display MultiSearch Default Display multisearchtmpl0000001 ','multisearchtmpl0000001',1133743239,1230269962,'3','7','12','WebGUI::Asset::Template',1,'MultiSearch\'\'Default\'\'Display\'\'MultiSearch\'\'Default\'\'Display\'\'multisearchtmpl0000001 MultiSearch','000001000001000021000001'),('matrixtmpl000000000001','Matrix Default View','Matrix Default View Matrix Default View matrix default view template ','matrix-default-view-template',1133743238,1232674109,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'View\'\'Matrix\'\'Default\'\'View\'\'matrix\'\'default\'\'view\'\'template Matrix','000001000001000018000002'),('matrixtmpl000000000003','Matrix Default Detailed Listing','Matrix Default Detailed Listing Matrix Default Detailed Listing matrix default detailed listing ','matrix-default-detailed-listing',1133743238,1232674242,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Detailed\'\'Listing\'\'Matrix\'\'Default\'\'Detailed\'\'Listing\'\'matrix\'\'default\'\'detailed\'\'listing Matrix\'\'/\'\'Detail','000001000001000018000003'),('matrixtmpl000000000002','Matrix Default Compare','Matrix Default Compare Matrix Default Compare matrix default compare template ','matrix-default-compare-template',1133743238,1233132357,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Compare\'\'Matrix\'\'Default\'\'Compare\'\'matrix\'\'default\'\'compare\'\'template Matrix\'\'/\'\'Compare','000001000001000018000001'),('PBtmpl0000000000000111','Make Page Printable','Make Page Printable Make Page Printable make page printable ','make_page_printable',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Make\'\'Page\'\'Printable\'\'Make\'\'Page\'\'Printable\'\'make\'\'page\'\'printable style','000001000001000038000002'),('PBtmpl0000000000000020','Mail Form','Mail Form Mail Form mail form ','mail_form',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Mail\'\'Form\'\'Mail\'\'Form\'\'mail\'\'form DataForm','000001000001000007000001'),('PBtmpl0000000000000113','Link','Link Link link ','link',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'Link\'\'link Collaboration\'\'/\'\'Thread','000001000001000005000025'),('PBtmpl0000000000000083','Link List','Link List Link List link list ','link_list',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'List\'\'Link\'\'List\'\'link\'\'list Collaboration','000001000001000005000010'),('PBtmpl0000000000000114','Link List Submission Form','Link List Submission Form Link List Submission Form link list submission form ','link_list_submission_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'List\'\'Submission\'\'Form\'\'Link\'\'List\'\'Submission\'\'Form\'\'link\'\'list\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000019'),('PBtmpl0000000000000115','Linked Image with Caption','Linked Image with Caption Linked Image with Caption linked image with caption ','linked_image_with_caption',1124395696,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Linked\'\'Image\'\'with\'\'Caption\'\'Linked\'\'Image\'\'with\'\'Caption\'\'linked\'\'image\'\'with\'\'caption Article','000001000001000002000004'),('PBtmpl0000000000000129','Item w/pop-up Links','Item w/pop-up Links Item w/pop-up Links item w pop up links ','item_w/pop-up_links',1124395696,1147642422,'3','7','12','WebGUI::Asset::Template',1,'Item\'\'w\'\'/\'\'pop\'\'-\'\'up\'\'Links\'\'Item\'\'w\'\'/\'\'pop\'\'-\'\'up\'\'Links\'\'item\'\'w\'\'pop\'\'up\'\'links Article','000001000001000002000006'),('PBtmpl0000000000000098','Job','Job Job job ','job',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Job\'\'job Collaboration\'\'/\'\'Thread','000001000001000005000021'),('PBtmpl0000000000000077','Job Listing','Job Listing Job Listing job listing ','job_listing',1124395696,1147642422,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Listing\'\'Job\'\'Listing\'\'job\'\'listing Collaboration','000001000001000005000020'),('PBtmpl0000000000000122','Job Submission Form','Job Submission Form Job Submission Form job submission form ','job_submission_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Submission\'\'Form\'\'Job\'\'Submission\'\'Form\'\'job\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000022'),('PBtmpl0000000000000103','Left Align Image','Left Align Image Left Align Image left align image ','left_align_image',1124395696,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Align\'\'Image\'\'Left\'\'Align\'\'Image\'\'left\'\'align\'\'image Article','000001000001000002000001'),('PBtmpl0000000000000092','Horizontal Login Box','Horizontal Login Box Horizontal Login Box horizontal login box ','horizontal_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Horizontal\'\'Login\'\'Box\'\'Horizontal\'\'Login\'\'Box\'\'horizontal\'\'login\'\'box Macro\'\'/\'\'L_loginBox','000001000001000017000009000001'),('PBtmpl0000000000000108','horizontalMenu','horizontalMenu horizontalMenu horizontalmenu ','horizontalmenu',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'horizontalMenu\'\'horizontalMenu\'\'horizontalmenu Navigation','000001000001000022000003'),('PBtmpl0000000000000088','Image','Image Image image ','image',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'Image\'\'Image\'\'image ImageAsset','000001000001000013000001'),('IOB0000000000000000002','Default InOutBoard Report Template','Default InOutBoard Report Template Default InOutBoard Report Template iob report template ','iob-report-template',1133743239,1166019641,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'InOutBoard\'\'Report\'\'Template\'\'Default\'\'InOutBoard\'\'Report\'\'Template\'\'iob\'\'report\'\'template InOutBoard\'\'/\'\'Report','000001000001000015000001'),('IOB0000000000000000001','Default InOutBoard Template','Default InOutBoard Template Default InOutBoard Template iob template ','iob-template',1133743239,1169795123,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'InOutBoard\'\'Template\'\'Default\'\'InOutBoard\'\'Template\'\'iob\'\'template InOutBoard','000001000001000015000002'),('PBtmpl0000000000000123','Item','Item Item item ','item',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'Item\'\'Item\'\'item Article','000001000001000002000005'),('PBtmpl0000000000000024','File','File File file ','file',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'File\'\'file FileAsset','000001000001000009000001'),('PBtmpl0000000000000078','File Folder','File Folder File Folder file folder ','file_folder',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'Folder\'\'File\'\'Folder\'\'file\'\'folder Folder','000001000001000010000001'),('PBtmpl0000000000000107','File with size','File with size File with size file with size ','file_with_size',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'with\'\'size\'\'File\'\'with\'\'size\'\'file\'\'with\'\'size Macro\'\'/\'\'File','000001000001000017000004000003'),('PBtmpl0000000000000133','Guest Book','Guest Book Guest Book guest book ','guest_book',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Guest\'\'Book\'\'Guest\'\'Book\'\'guest\'\'book Collaboration','000001000001000005000012'),('PBtmpl0000000000000117','DropMenu','DropMenu DropMenu dropmenu ','dropmenu',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'DropMenu\'\'DropMenu\'\'dropmenu Navigation','000001000001000022000004'),('PBtmpl0000000000000130','Tree Navigation','Tree Navigation Tree Navigation root import navigation tree navigation ','root/import/navigation/tree-navigation',1124395696,1219072470,'3','7','12','WebGUI::Asset::Template',1,'Tree\'\'Navigation\'\'Tree\'\'Navigation\'\'root\'\'import\'\'navigation\'\'tree\'\'navigation Navigation','000001000001000022000006'),('PBtmpl0000000000000060','Fail Safe','Fail Safe Fail Safe fail safe ','fail_safe',1124395696,1147642419,'3','7','12','WebGUI::Asset::Template',1,'Fail\'\'Safe\'\'Fail\'\'Safe\'\'fail\'\'safe style','000001000001000038000001'),('PBtmpl0000000000000080','FAQ','FAQ FAQ faqtemplate ','faqtemplate',1124395696,1171466654,'3','7','12','WebGUI::Asset::Template',1,'FAQ\'\'FAQ\'\'faqtemplate Collaboration','000001000001000005000002'),('PBtmpl0000000000000099','FAQ Submission Form','FAQ Submission Form FAQ Submission Form faq submission form ','faq_submission_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'FAQ\'\'Submission\'\'Form\'\'FAQ\'\'Submission\'\'Form\'\'faq\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000018'),('PBtmpl0000000000000010','Default WebGUI Account Display Template','Default WebGUI Account Display Template Default WebGUI Account Display Template default webgui account display template ','default_webgui_account_display_template',1124395696,1227026287,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Account\'\'Display\'\'Template\'\'Default\'\'WebGUI\'\'Account\'\'Display\'\'Template\'\'default\'\'webgui\'\'account\'\'display\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Account','000001000001000003000004000001'),('PBtmpl0000000000000013','Default WebGUI Login Template','Default WebGUI Login Template Default WebGUI Login Template default webgui login template ','default_webgui_login_template',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Login\'\'Template\'\'Default\'\'WebGUI\'\'Login\'\'Template\'\'default\'\'webgui\'\'login\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Login','000001000001000003000007000001'),('PBtmpl0000000000000012','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template Default WebGUI Password Reset Template default webgui password reset template ','default_webgui_password_reset_template',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Password\'\'Reset\'\'Template\'\'Default\'\'WebGUI\'\'Password\'\'Reset\'\'Template\'\'default\'\'webgui\'\'password\'\'reset\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Expired','000001000001000003000006000001'),('PBtmpl0000000000000057','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt Default WebGUI Yes/No Prompt default webgui yes no prompt ','default_webgui_yes/no_prompt',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Yes\'\'/\'\'No\'\'Prompt\'\'Default\'\'WebGUI\'\'Yes\'\'/\'\'No\'\'Prompt\'\'default\'\'webgui\'\'yes\'\'no\'\'prompt prompt','000001000001000028000001'),('PBtmpl0000000000000066','Default USS','Default USS Default USS default uss ','default_uss',1124395696,1147642417,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'USS\'\'Default\'\'USS\'\'default\'\'uss Collaboration','000001000001000005000001'),('TimeTrackingTMPL000001','Default Time Tracking User View','Default Time Tracking User View Default Time Tracking User View default tt template user ','default-tt-template-user',1147642417,1201205738,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'User\'\'View\'\'Default\'\'Time\'\'Tracking\'\'User\'\'View\'\'default\'\'tt\'\'template\'\'user TimeTracking_user','000001000001000042000003000001'),('TimeTrackingTMPL000003','Default Time Tracking Row Template','Default Time Tracking Row Template Default Time Tracking Row Template default tt template row ','default-tt-template-row',1147642417,1229311434,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'Row\'\'Template\'\'Default\'\'Time\'\'Tracking\'\'Row\'\'Template\'\'default\'\'tt\'\'template\'\'row TimeTracking_row','000001000001000042000002000001'),('TimeTrackingTMPL000002','Default Time Tracking Manager View','Default Time Tracking Manager View Default Time Tracking Manager View default tt template manager ','default-tt-template-manager',1147642417,1147642417,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'Manager\'\'View\'\'Default\'\'Time\'\'Tracking\'\'Manager\'\'View\'\'default\'\'tt\'\'template\'\'manager TimeTracking_manager','000001000001000042000001000001'),('X7DrzUcj8pOKFa_6k9D5iw','Newsletter','Newsletter Newsletter root import newsletter ','root/import/newsletter',1185754569,1222804045,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Newsletter\'\'Newsletter\'\'root\'\'import\'\'newsletter','000001000001000023'),('PBtmpl0000000000000065','Default Syndicated Content','Default Syndicated Content Default Syndicated Content default syndicated content ','default_syndicated_content',1124395696,1226457084,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Syndicated\'\'Content\'\'Default\'\'Syndicated\'\'Content\'\'default\'\'syndicated\'\'content SyndicatedContent','000001000001000040000001'),('CxMpE_UPauZA3p8jdrOABw','Default Questions','Default Questions Default Questions root import survey default questions ','root/import/survey/default-questions',1227556536,1227556536,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Questions\'\'Default\'\'Questions\'\'root\'\'import\'\'survey\'\'default\'\'questions Survey\'\'/\'\'Take','000001000001000039000007'),('PBtmpl0000000000000064','Default Response','Default Response Default Response default response ','default_response',1124395696,1226009610,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Response\'\'Default\'\'Response\'\'default\'\'response Survey\'\'/\'\'Response','000001000001000039000004'),('PBtmpl0000000000000059','Default SQL Report','Default SQL Report Default SQL Report default sql report ','default_sql_report',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'SQL\'\'Report\'\'Default\'\'SQL\'\'Report\'\'default\'\'sql\'\'report SQLReport','000001000001000036000001'),('PBtmpl0000000000000067','Default Submission','Default Submission Default Submission default submission ','default_submission',1124395696,1206998733,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Submission\'\'Default\'\'Submission\'\'default\'\'submission Collaboration\'\'/\'\'Thread','000001000001000005000006'),('PBtmpl0000000000000068','Default Submission Form','Default Submission Form Default Submission Form default submission form ','default_submission_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Submission\'\'Form\'\'Default\'\'Submission\'\'Form\'\'default\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000017'),('PBtmpl0000000000000061','Default Survey','Default Survey Default Survey default survey ','default_survey',1124395696,1227252733,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Default\'\'Survey\'\'default\'\'survey Survey','000001000001000039000003'),('ProjectManagerTMPL0003','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart Default Project Manager Gantt Chart default pm template gantt chart ','default-pm-template-gantt-chart',1147642415,1159989349,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Manager\'\'Gantt\'\'Chart\'\'Default\'\'Project\'\'Manager\'\'Gantt\'\'Chart\'\'default\'\'pm\'\'template\'\'gantt\'\'chart ProjectManager_gantt','000001000001000027000003000001'),('ProjectManagerTMPL0001','Default Project Management System Dashboard','Default Project Management System Dashboard Default Project Management System Dashboard default pm template dashboard ','default-pm-template-dashboard',1147642415,1229579830,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Management\'\'System\'\'Dashboard\'\'Default\'\'Project\'\'Management\'\'System\'\'Dashboard\'\'default\'\'pm\'\'template\'\'dashboard ProjectManager_dashboard','000001000001000027000001000001'),('PBtmpl0000000000000055','Default Poll','Default Poll Default Poll default poll ','default_poll',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Poll\'\'Default\'\'Poll\'\'default\'\'poll Poll','000001000001000024000001'),('PBtmpl0000000000000029','Default Post Form','Default Post Form Default Post Form default post form ','default_post_form',1124395696,1227480813,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Post\'\'Form\'\'Default\'\'Post\'\'Form\'\'default\'\'post\'\'form Collaboration\'\'/\'\'PostForm','000001000001000005000013'),('PBtmpl0000000000000056','Default Product','Default Product Default Product default product ','default_product',1124395696,1228934532,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Product\'\'Default\'\'Product\'\'default\'\'product Product','000001000001000025000001'),('PBtmpl0000000000000033','Default HTTP Proxy','Default HTTP Proxy Default HTTP Proxy default http proxy ','default_http_proxy',1124395696,1230159454,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'HTTP\'\'Proxy\'\'Default\'\'HTTP\'\'Proxy\'\'default\'\'http\'\'proxy HttpProxy','000001000001000012000001'),('PBtmpl0000000000000004','Default LDAP Account Display Template','Default LDAP Account Display Template Default LDAP Account Display Template default ldap account display template ','default_ldap_account_display_template',1124395696,1227026214,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Account\'\'Display\'\'Template\'\'Default\'\'LDAP\'\'Account\'\'Display\'\'Template\'\'default\'\'ldap\'\'account\'\'display\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Account','000001000001000003000001000001'),('PBtmpl0000000000000006','Default LDAP Login Template','Default LDAP Login Template Default LDAP Login Template default ldap login template ','default_ldap_login_template',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Login\'\'Template\'\'Default\'\'LDAP\'\'Login\'\'Template\'\'default\'\'ldap\'\'login\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Login','000001000001000003000003000001'),('PBtmpl0000000000000044','Default Login Box','Default Login Box Default Login Box default login box ','default_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Login\'\'Box\'\'Default\'\'Login\'\'Box\'\'default\'\'login\'\'box Macro\'\'/\'\'L_loginBox','000001000001000017000009000002'),('PBtmpl0000000000000047','Default Message Board','Default Message Board Default Message Board default message board ','default_message_board',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Message\'\'Board\'\'Default\'\'Message\'\'Board\'\'default\'\'message\'\'board MessageBoard','000001000001000019000001'),('PBtmpl0000000000000054','Default Page','Default Page Default Page default page ','default_page',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'Default\'\'Page\'\'default\'\'page Layout','000001000001000016000003'),('Q4uX_C557arTp6D_jwB1jQ','Wiki','Wiki Wiki root import wiki ','root/import/wiki',1165460175,1222803760,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Wiki\'\'Wiki\'\'root\'\'import\'\'wiki','000001000001000048'),('BmLaN4rmAANkCglXUViEbg','Resource','Resource Resource root import projectmanager resource ','root/import/projectmanager/resource',1157679165,1222803871,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Resource\'\'Resource\'\'root\'\'import\'\'projectmanager\'\'resource','000001000001000027000005'),('PBtmpl0000000000000039','Default File Macro','Default File Macro Default File Macro default file macro ','default_file_macro',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'File\'\'Macro\'\'Default\'\'File\'\'Macro\'\'default\'\'file\'\'macro Macro\'\'/\'\'File','000001000001000017000004000001'),('PBtmpl0000000000000026','Default Forum','Default Forum Default Forum default forum ','default_forum',1124395696,1185754569,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Default\'\'Forum\'\'default\'\'forum Collaboration','000001000001000005000007'),('PBtmpl0000000000000031','Default Forum Search','Default Forum Search Default Forum Search default forum search ','default_forum_search',1124395696,1147642413,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Search\'\'Default\'\'Forum\'\'Search\'\'default\'\'forum\'\'search Collaboration\'\'/\'\'Search','000001000001000005000016'),('PBtmpl0000000000000093','crumbTrail','crumbTrail crumbTrail crumbtrail2 ','crumbtrail2',1124395696,1147642412,'3','7','12','WebGUI::Asset::Template',1,'crumbTrail\'\'crumbTrail\'\'crumbtrail2 Navigation','000001000001000022000001'),('DashboardViewTmpl00001','Dashboard Default View','Dashboard Default View Dashboard Default View dashboard default view template ','dashboard-default-view-template',1133743239,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Dashboard\'\'Default\'\'View\'\'Dashboard\'\'Default\'\'View\'\'dashboard\'\'default\'\'view\'\'template Dashboard','000001000001000006000001'),('PBtmpl0000000000000021','Data List','Data List Data List data list ','data_list',1124395696,1230269962,'3','7','12','WebGUI::Asset::Template',1,'Data\'\'List\'\'Data\'\'List\'\'data\'\'list DataForm\'\'/\'\'List','000001000001000007000004'),('PBtmpl0000000000000104','Default Acknowledgement','Default Acknowledgement Default Acknowledgement default acknowledgement ','default_acknowledgement',1124395696,1147642412,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Acknowledgement\'\'Default\'\'Acknowledgement\'\'default\'\'acknowledgement DataForm','000001000001000007000003'),('PBtmpl0000000000000002','Default Article','Default Article Default Article default article ','default_article',1124395696,1159989349,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Article\'\'Default\'\'Article\'\'default\'\'article Article','000001000001000002000003'),('PBtmpl0000000000000141','Default DataForm','Default DataForm Default DataForm pbtmpl0000000000000141 ','pbtmpl0000000000000141',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'DataForm\'\'Default\'\'DataForm\'\'pbtmpl0000000000000141 DataForm','000001000001000007000006'),('WikiRCTmpl000000000001','Default Recent Changes','Default Recent Changes Default Recent Changes default wiki recent changes ','default-wiki-recent-changes',1165460175,1169092823,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Recent\'\'Changes\'\'Default\'\'Recent\'\'Changes\'\'default\'\'wiki\'\'recent\'\'changes WikiMaster_recentChanges','000001000001000048000001'),('PBtmpl0000000000000084','Center Image','Center Image Center Image center image ','center_image',1124395696,1229100305,'3','7','12','WebGUI::Asset::Template',1,'Center\'\'Image\'\'Center\'\'Image\'\'center\'\'image Article','000001000001000002000002'),('PBtmpl0000000000000128','Classifieds','Classifieds Classifieds classifieds ','classifieds',1124395696,1147642411,'3','7','12','WebGUI::Asset::Template',1,'Classifieds\'\'Classifieds\'\'classifieds Collaboration','000001000001000005000008'),('PBtmpl0000000000000134','Hierarchical Top Nav','Hierarchical Top Nav Hierarchical Top Nav import hierarchical top nav ','import/hierarchical-top-nav',1124395696,1222574692,'3','7','12','WebGUI::Asset::Template',1,'Hierarchical\'\'Top\'\'Nav\'\'Hierarchical\'\'Top\'\'Nav\'\'import\'\'hierarchical\'\'top\'\'nav Navigation','000001000001000022000007'),('PBtmplHelp000000000001','Help','Help Help help ','help',1124395706,1147642410,'3','7','12','WebGUI::Asset::Template',1,'Help\'\'Help\'\'help AdminConsole','000001000001000001000002'),('PBtmpl0000000000000208','Request Tracker','Request Tracker Request Tracker request tracker template ','request-tracker-template',1147642410,1147642410,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'template Collaboration','000001000001000005000027'),('wAc4azJViVTpo-2NYOXWvg','Default Question Edit','Default Question Edit Default Question Edit root import survey default question edit ','root/import/survey/default-question-edit',1226009650,1232907257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Question\'\'Edit\'\'Default\'\'Question\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'question\'\'edit Survey\'\'/\'\'Edit','000001000001000039000009'),('1z9J1O08n_7gVVlBwSRBJQ','Auth','Auth Auth root import auth ','root/import/auth',1222803099,1222803099,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Auth\'\'Auth\'\'root\'\'import\'\'auth','000001000001000003'),('zyWi26q9na-iiZqL4yedog','Macro','Macro Macro root import macro ','root/import/macro',1222803114,1222803114,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Macro\'\'Macro\'\'root\'\'import\'\'macro','000001000001000017'),('PBtmpl0000000000000207','Article with Files','Article with Files Article with Files article with files ','article-with-files',1147642410,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Article\'\'with\'\'Files\'\'Article\'\'with\'\'Files\'\'article\'\'with\'\'files Article','000001000001000002000007'),('PBtmpl0000000000000209','Request Tracker Thread','Request Tracker Thread Request Tracker Thread request tracker post template ','request-tracker-post-template',1147642410,1206998862,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Thread\'\'Request\'\'Tracker\'\'Thread\'\'request\'\'tracker\'\'post\'\'template Collaboration\'\'/\'\'Thread','000001000001000005000028'),('PBtmpl0000000000000210','Request Tracker','Request Tracker Request Tracker request tracker template2 ','request-tracker-template2',1147642410,1227480812,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'template2 Collaboration\'\'/\'\'PostForm','000001000001000005000029'),('PBtmpl0000000000000109','One Over Three','One Over Three One Over Three one over three ','one_over_three',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'One\'\'Over\'\'Three\'\'One\'\'Over\'\'Three\'\'one\'\'over\'\'three Layout','000001000001000016000006'),('PBtmpl0000000000000001','Admin Console','Admin Console Admin Console admin console2 ','admin_console2',1124395696,1157679164,'3','7','12','WebGUI::Asset::Template',1,'Admin\'\'Console\'\'Admin\'\'Console\'\'admin\'\'console2 AdminConsole','000001000001000001000001'),('LBuiKzg2mWwmOPS9AgV3bg','Get Translated','Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of exper','yns/translated',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Translated\'\'Get\'\'Translated\'\'yns\'\'translated\'\'Let\'\'our\'\'team\'\'of\'\'professional\'\'translators\'\'bring\'\'your\'\'site\'\'to\'\'new\'\'customers\'\'by\'\'translating\'\'your\'\'content\'\'into\'\'additional\'\'languages\'\'.\'\'Our\'\'translation\'\'services\'\'are\'\'never\'\'machine\'\'automated\'\'.\'\'They\'\'\'\'\'re\'\'always\'\'done\'\'by\'\'professional\'\'translators\'\'that\'\'have\'\'years\'\'of\'\'experience\'\'reading\'\',\'\'writing\'\',\'\'and\'\'speaking\'\'many\'\'languages\'\'. ','000001000002000002000007'),('jTNggl7AoVSUc_ZzrvuCmw','Get Promoted','Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate pro','yns/promotion',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Promoted\'\'Get\'\'Promoted\'\'yns\'\'promotion\'\'Now\'\'that\'\'you\'\'have\'\'a\'\'brilliant\'\'WebGUI\'\'site\'\',\'\'you\'\'need\'\'to\'\'get\'\'people\'\'to\'\'visit\'\'it\'\'.\'\'We\'\'can\'\'help\'\'there\'\'too\'\'.\'\'Our\'\'marketing\'\'specialists\'\'can\'\'work\'\'with\'\'you\'\'to\'\'develop\'\'and\'\'execute\'\'the\'\'right\'\'combination\'\'of\'\'search\'\'engine\'\'placement\'\',\'\'advertising\'\'buys\'\',\'\'and\'\'affilliate\'\'programs\'\'to\'\'ensure\'\'your\'\'site\'\'gets\'\'the\'\'traffic\'\'it\'\'needs\'\'. ','000001000002000002000008'),('Wl8WZ43g2rK5AYr9o4zY7w','Get Style','Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site. ','yns/style',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Style\'\'Get\'\'Style\'\'yns\'\'style\'\'Not\'\'a\'\'designer\'\'?\'\'No\'\'problem\'\'!\'\'Plain\'\'Black\'\'\'\'\'s\'\'professional\'\'design\'\'team\'\'can\'\'make\'\'your\'\'site\'\'look\'\'great\'\'.\'\'Our\'\'team\'\'is\'\'fast\'\',\'\'easy\'\'to\'\'work\'\'with\'\',\'\'and\'\'can\'\'even\'\'migrate\'\'your\'\'existing\'\'content\'\'into\'\'your\'\'new\'\'WebGUI\'\'site\'\'. ','000001000002000002000006'),('ix1p0AbwKAz8QWB-T-HHfg','Get Support','Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of s','yns/support',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Support\'\'Get\'\'Support\'\'yns\'\'support\'\'Plain\'\'Black\'\'provides\'\'support\'\'packages\'\'to\'\'fit\'\'any\'\'budget\'\'or\'\'need\'\'.\'\'Start\'\'out\'\'with\'\'online\'\'support\'\'which\'\'costs\'\'only\'\'$\'\'500\'\'per\'\'year\'\'!\'\'And\'\'grow\'\'support\'\'as\'\'your\'\'needs\'\'grow\'\'.\'\'We\'\'build\'\'custom\'\'support\'\'packages\'\'to\'\'match\'\'our\'\'client\'\'\'\'\'s\'\'needs\'\'.\'\'And\'\'no\'\'matter\'\'what\'\'level\'\'of\'\'support\'\'you\'\'purchase\'\',\'\'you\'\'get\'\'WebGUI\'\'Documentation\'\'included\'\'in\'\'your\'\'purchase\'\'. ','000001000002000002000003'),('iCYOjohB9SKvAPr6bXElKA','Get Hosting','Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with host','yns/hosting',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Hosting\'\'Get\'\'Hosting\'\'yns\'\'hosting\'\'Who\'\'better\'\'to\'\'host\'\'your\'\'WebGUI\'\'sites\'\'than\'\'Plain\'\'Black\'\'.\'\'Let\'\'us\'\'deal\'\'with\'\'upgrades\'\',\'\'security\'\',\'\'and\'\'server\'\'management\'\'.\'\'Doing\'\'so\'\'lets\'\'you\'\'focus\'\'on\'\'building\'\'your\'\'WebGUI\'\'site\'\',\'\'which\'\'is\'\'where\'\'your\'\'time\'\'and\'\'expertise\'\'should\'\'be\'\'spent\'\'.\'\'And\'\'when\'\'you\'\'sign\'\'up\'\'with\'\'hosting\'\',\'\'online\'\'support\'\'is\'\'included\'\'! ','000001000002000002000004'),('4Yfz9hqBqM8OYMGuQK8oLw','Get Features','What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to cu','yns/features',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Features\'\'Get\'\'Features\'\'yns\'\'features\'\'What\'\'\'\'\'s\'\'that\'\'you\'\'say\'\'?\'\'WebGUI\'\'\'\'\'s\'\'thousands\'\'of\'\'features\'\'are\'\'still\'\'missing\'\'some\'\'important\'\'ones\'\'?\'\'No\'\'problem\'\',\'\'our\'\'professional\'\'development\'\'team\'\'can\'\'add\'\'any\'\'features\'\'you\'\'need\'\'for\'\'your\'\'site\'\'.\'\'We\'\'\'\'\'ve\'\'built\'\'hundreds\'\'of\'\'custom\'\'apps\'\'for\'\'people\'\'.\'\'From\'\'simple\'\'macros\'\',\'\'to\'\'custom\'\'single\'\'sign\'\'on\'\'systems\'\',\'\'to\'\'applications\'\'that\'\'will\'\'manage\'\'your\'\'entire\'\'company\'\',\'\'our\'\'team\'\'can\'\'do\'\'it\'\'. ','000001000002000002000005'),('Vzv1pWpg_w6R_o-b0rM2qQ','Ad','Ad Ad home ad2 ','home/ad2',1147642515,1147642515,'3','7','4','WebGUI::Asset::File',1,'Ad\'\'Ad\'\'home\'\'ad2','000001000002000001000002'),('FOvmwGC0GtZo5VTxJIL3OA','Get Documentation','WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization. ','yns/docs',1147642515,1207068851,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Documentation\'\'Get\'\'Documentation\'\'yns\'\'docs\'\'WebGUI\'\'Documentation\'\'is\'\'the\'\'ultimate\'\'compendium\'\'to\'\'WebGUI\'\'.\'\'This\'\'is\'\'a\'\'must\'\'for\'\'anyone\'\'working\'\'in\'\'WebGUI\'\',\'\'and\'\'Plain\'\'Black\'\'offers\'\'vast\'\'bulk\'\'discounts\'\'so\'\'you\'\'can\'\'give\'\'it\'\'to\'\'everyone\'\'in\'\'your\'\'organization\'\'. ','000001000002000002000002'),('6QuS-0rosuZTdTv11fobig','Talk to the Experts','Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us tod','yns/experts',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Talk\'\'to\'\'the\'\'Experts\'\'Talk\'\'to\'\'the\'\'Experts\'\'yns\'\'experts\'\'Plain\'\'Black\'\'&\'\'reg\'\';\'\'created\'\'the\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'and\'\'is\'\'here\'\'to\'\'answer\'\'your\'\'questions\'\'and\'\'provide\'\'you\'\'with\'\'services\'\'to\'\'make\'\'sure\'\'your\'\'WebGUI\'\'implementation\'\'is\'\'entirely\'\'successful\'\'.\'\'We\'\'bend\'\'over\'\'backwards\'\'to\'\'make\'\'sure\'\'you\'\'\'\'\'re\'\'a\'\'success\'\'.\'\'Contact\'\'us\'\'today\'\'to\'\'see\'\'how\'\'we\'\'can\'\'help\'\'you\'\'. ','000001000002000002000001'),('NK8bqlwVRILJknqeCDPBHg','Getting Started (part 2)','\n\nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n \n\nNow that you\'re logged in, we recommend ','getting_started/getting-started-part2',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting\'\'Started\'\'(\'\'part\'\'2\'\')\'\'Getting\'\'Started\'\'(\'\'part\'\'2\'\')\'\'getting\'\'started\'\'getting\'\'started\'\'part2\'\'Now\'\'you\'\'should\'\'log\'\'in\'\'and\'\'go\'\'into\'\'admin\'\'mode\'\'.\'\'The\'\'default\'\'username\'\'is\'\'\"\'\'admin\'\'\"\'\'and\'\'the\'\'default\'\'password\'\'is\'\'\"\'\'123qwe\'\'\"\'\',\'\'but\'\'you\'\'probably\'\'customized\'\'both\'\'of\'\'those\'\'when\'\'you\'\'visited\'\'this\'\'site\'\'for\'\'the\'\'very\'\'first\'\'time\'\'.\'\'Now\'\'that\'\'you\'\'\'\'\'re\'\'logged\'\'in\'\',\'\'we\'\'recommend\'\'that\'\'you\'\'add\'\'a\'\'new\'\'user\'\'for\'\'yourself\'\'with\'\'admin\'\'privileges\'\'just\'\'in\'\'case\'\'you\'\'forget\'\'the\'\'login\'\'information\'\'for\'\'your\'\'primary\'\'admin\'\'account\'\'.\'\'Don\'\'\'\'\'t\'\'worry\'\'if\'\'you\'\'lock\'\'yourself\'\'out\'\',\'\'you\'\'can\'\'always\'\'contact\'\'Plain\'\'Black\'\'&\'\'reg\'\';\'\'support\'\'to\'\'get\'\'instructions\'\'to\'\'get\'\'back\'\'in\'\'.\'\'NOTE\'\':\'\'If\'\'you\'\'appear\'\'to\'\'be\'\'get\'\'logged\'\'out\'\'while\'\'moving\'\'between\'\'pages\'\',\'\'this\'\'is\'\'most\'\'likely\'\'your\'\'browser\'\'displaying\'\'a\'\'cached\'\'version\'\'of\'\'the\'\'page\'\'.\'\'Click\'\'on\'\'your\'\'browser\'\'\'\'\'s\'\'refresh\'\'button\'\'to\'\'correct\'\'the\'\'problem\'\'.\'\'No\'\'doubt\'\'after\'\'you\'\'enabled\'\'admin\'\'mode\'\'you\'\'saw\'\'a\'\'menu\'\'along\'\'the\'\'left\'\'side\'\'of\'\'the\'\'screen\'\',\'\'that\'\'\'\'\'s\'\'called\'\'the\'\'Admin\'\'Bar\'\'.\'\'Use\'\'that\'\'to\'\'add\'\'content\'\'and\'\'access\'\'administrative\'\'functions\'\'.\'\'You\'\'\'\'\'re\'\'now\'\'ready\'\'to\'\'begin\'\'exploring\'\'your\'\'new\'\'WebGUI\'\'site\'\'.\'\'For\'\'more\'\'information\'\'about\'\'services\'\'related\'\'to\'\'WebGUI\'\'click\'\'here\'\'.\'\'Enjoy\'\'your\'\'new\'\'WebGUI\'\'site\'\'! ','000001000002000001000003'),('m4YJFaqzultnB_sj1Uq0aw','Ad','Ad Ad home ad ','home/ad',1147642514,1147642514,'3','7','4','WebGUI::Asset::File',1,'Ad\'\'Ad\'\'home\'\'ad','000001000002000008'),('IWFxZDyGhQ3-SLZhELa3qw','Key Benefits','\n\nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n \n\nWorkflow &','home/key-benefits',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Key\'\'Benefits\'\'Key\'\'Benefits\'\'home\'\'key\'\'benefits\'\'Easy\'\'To\'\'Use\'\'-\'\'WebGUI\'\'is\'\'absolutely\'\'easy\'\'to\'\'use\'\'.\'\'WebGUI\'\'7\'\'has\'\'a\'\'completely\'\'revamped\'\'user\'\'interface\'\'to\'\'make\'\'it\'\'even\'\'easier\'\'to\'\'use\'\'.\'\'There\'\'are\'\'lots\'\'of\'\'visual\'\'cues\'\',\'\'consistent\'\'icons\'\',\'\'helper\'\'apps\'\',\'\'and\'\'a\'\'huge\'\'repository\'\'of\'\'built\'\'-\'\'in\'\'help\'\'files\'\'.\'\'Workflow\'\'&\'\'amp\'\';\'\'Versioning\'\'-\'\'Never\'\'again\'\'worry\'\'about\'\'content\'\'getting\'\'put\'\'on\'\'your\'\'site\'\'that\'\'you\'\'don\'\'\'\'\'t\'\'want\'\'there\'\'.\'\'Never\'\'again\'\'lose\'\'your\'\'old\'\'content\'\'after\'\'making\'\'an\'\'edit\'\'.\'\'And\'\'never\'\'again\'\'push\'\'out\'\'new\'\'changes\'\'until\'\'you\'\'\'\'\'re\'\'absolutely\'\'ready\'\'to\'\'release\'\'them\'\'.\'\'WebGUI\'\'\'\'\'s\'\'workflow\'\'and\'\'versioning\'\'system\'\'is\'\'fast\'\',\'\'flexible\'\',\'\'powerful\'\',\'\'and\'\'easy\'\'to\'\'use\'\'.\'\'Everything\'\'\'\'\'s\'\'a\'\'Template\'\'-\'\'Worry\'\'nevermore\'\'about\'\'your\'\'CMS\'\'forcing\'\'you\'\'into\'\'a\'\'mould\'\'that\'\'doesn\'\'\'\'\'t\'\'suit\'\'you\'\'.\'\'With\'\'WebGUI\'\'everything\'\'a\'\'site\'\'visitor\'\'can\'\'see\'\'is\'\'a\'\'customizable\'\'template\'\',\'\'so\'\'you\'\'can\'\'make\'\'it\'\'look\'\'exactly\'\'how\'\'you\'\'want\'\'.\'\'Moreover\'\'if\'\'you\'\'\'\'\'re\'\'the\'\'type\'\'that\'\'strives\'\'for\'\'excellence\'\'rest\'\'in\'\'the\'\'knowledge\'\'that\'\'all\'\'the\'\'templates\'\'that\'\'come\'\'with\'\'WebGUI\'\'are\'\'XHTML\'\'1\'\'.\'\'0\'\'strict\'\'compliant\'\'.\'\'Localization\'\'-\'\'WebGUI\'\'\'\'\'s\'\'entire\'\'user\'\'interface\'\'is\'\'set\'\'up\'\'to\'\'be\'\'internationalized\'\'.\'\'Visit\'\'one\'\'of\'\'the\'\'WebGUI\'\'Worldwide\'\'member\'\'sites\'\'to\'\'get\'\'translations\'\'for\'\'your\'\'language\'\'.\'\'Stay\'\'there\'\'to\'\'get\'\'support\'\'and\'\'services\'\'in\'\'your\'\'native\'\'language\'\'.\'\'Feel\'\'confident\'\'in\'\'the\'\'knowledge\'\'that\'\'WebGUI\'\'will\'\'work\'\'with\'\'your\'\'native\'\'characters\'\'because\'\'it\'\'\'\'\'s\'\'UTF\'\'-\'\'8\'\'compliant\'\'.\'\'On\'\'top\'\'of\'\'that\'\'WebGUI\'\'allows\'\'you\'\'to\'\'customize\'\'dates\'\',\'\'currency\'\',\'\'and\'\'weights\'\'to\'\'match\'\'your\'\'locale\'\'.\'\'Pluggable\'\'By\'\'Design\'\'-\'\'With\'\'WebGUI\'\'7\'\'you\'\'have\'\'many\'\'plug\'\'-\'\'in\'\'points\'\'to\'\'add\'\'your\'\'own\'\'functionality\'\'.\'\'And\'\'best\'\'of\'\'all\'\',\'\'the\'\'API\'\'is\'\'stable\'\'and\'\'standardized\'\'.\'\'Write\'\'it\'\'today\'\'and\'\'it\'\'will\'\'still\'\'work\'\'years\'\'from\'\'now\'\'and\'\'survive\'\'all\'\'upgrades\'\'. ','000001000002000009'),('bX5rYxb6tZ9docY6sUhBlw','Getting Started','\n\nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n \nNOTE: Click on the green start icon on t','getting_started/getting-started',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting\'\'Started\'\'Getting\'\'Started\'\'getting\'\'started\'\'getting\'\'started\'\'If\'\'you\'\'\'\'\'re\'\'reading\'\'this\'\'message\'\'that\'\'means\'\'you\'\'\'\'\'ve\'\'successfully\'\'installed\'\'and\'\'configured\'\'the\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'.\'\'Great\'\'job\'\'!\'\'To\'\'get\'\'started\'\'with\'\'managing\'\'content\'\',\'\'watch\'\'the\'\'short\'\'instructional\'\'video\'\'below\'\'.\'\'NOTE\'\':\'\'Click\'\'on\'\'the\'\'green\'\'start\'\'icon\'\'on\'\'the\'\'video\'\'to\'\'begin\'\'your\'\'tutorial\'\'. ','000001000002000001000001'),('Szs5eev3OMssmnsyLRZmWA','Tell A Friend','Tell a friend about WebGUI.','tell_a_friend/tell_a_friend',1124395696,1213317790,'3','7','3','WebGUI::Asset::Wobject::DataForm',1,'Tell\'\'A\'\'Friend\'\'Tell\'\'A\'\'Friend\'\'tell\'\'a\'\'friend\'\'tell\'\'a\'\'friend\'\'Tell\'\'a\'\'friend\'\'about\'\'WebGUI\'\'.','000001000002000004000001'),('OhdaFLE7sXOzo_SIP2ZUgA','Welcome','The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy eno','home/welcome',1147642513,1147642513,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Welcome\'\'Welcome\'\'home\'\'welcome\'\'The\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'is\'\'a\'\'powerful\'\'and\'\'easy\'\'to\'\'use\'\'system\'\'for\'\'managing\'\'web\'\'sites\'\',\'\'and\'\'building\'\'web\'\'applications\'\'.\'\'It\'\'provides\'\'thousands\'\'of\'\'features\'\'out\'\'of\'\'the\'\'box\'\',\'\'and\'\'lots\'\'of\'\'plug\'\'-\'\'in\'\'points\'\'so\'\'you\'\'can\'\'extend\'\'it\'\'to\'\'match\'\'your\'\'needs\'\'.\'\'It\'\'\'\'\'s\'\'easy\'\'enough\'\'for\'\'the\'\'average\'\'business\'\'user\'\',\'\'but\'\'powerful\'\'enough\'\'for\'\'any\'\'large\'\'enterprise\'\'.\'\'There\'\'are\'\'thousands\'\'of\'\'small\'\'and\'\'large\'\'businesses\'\',\'\'schools\'\',\'\'universities\'\',\'\'governments\'\',\'\'associations\'\',\'\'clubs\'\',\'\'churches\'\',\'\'projects\'\',\'\'and\'\'communities\'\'using\'\'WebGUI\'\'all\'\'over\'\'the\'\'world\'\'today\'\'.\'\'A\'\'brief\'\'list\'\'of\'\'some\'\'of\'\'them\'\'can\'\'be\'\'found\'\'here\'\'.\'\'Your\'\'site\'\'should\'\'be\'\'on\'\'that\'\'list\'\'.\'\'If\'\'you\'\'\'\'\'re\'\'new\'\'to\'\'WebGUI\'\',\'\'click\'\'here\'\'to\'\'learn\'\'how\'\'to\'\'get\'\'started\'\'.\'\'If\'\'you\'\'\'\'\'re\'\'getting\'\'up\'\'to\'\'speed\'\',\'\'check\'\'out\'\'some\'\'ways\'\'you\'\'can\'\'do\'\'more\'\'faster\'\'.\'\'If\'\'this\'\'is\'\'all\'\'old\'\'hat\'\'to\'\'you\'\',\'\'then\'\'check\'\'out\'\'the\'\'latest\'\'news\'\'.\'\'No\'\'matter\'\'what\'\'level\'\'you\'\'\'\'\'re\'\'at\'\'tell\'\'your\'\'friends\'\'about\'\'WebGUI\'\'. ','000001000002000007'),('pbrobot000000000000001','robots.txt','robots.txt robots.txt robots.txt ','robots.txt',1147642511,1147642511,'3','7','12','WebGUI::Asset::Snippet',1,'robots\'\'.\'\'txt\'\'robots\'\'.\'\'txt\'\'robots\'\'.\'\'txt User\'\'-\'\'agent\'\':\'\'googlebot\'\'Disallow\'\':\'\'*\'\'?\'\'op\'\'=\'\'displayLogin\'\'Disallow\'\':\'\'*\'\'?\'\'op\'\'=\'\'makePrintable','000001000001000031'),('7.0-style0000000000071','wg.jpg','wg.jpg wg.jpg style3 wg.jpg ','style3/wg.jpg',1147642511,1147642511,'3','7','12','WebGUI::Asset::File::Image',1,'wg\'\'.\'\'jpg\'\'wg\'\'.\'\'jpg\'\'style3\'\'wg\'\'.\'\'jpg','000001000001000047000022'),('7.0-style0000000000068','spacer.gif','spacer.gif spacer.gif style3 spacer.gif ','style3/spacer.gif',1147642510,1147642510,'3','7','12','WebGUI::Asset::File::Image',1,'spacer\'\'.\'\'gif\'\'spacer\'\'.\'\'gif\'\'style3\'\'spacer\'\'.\'\'gif','000001000001000047000019'),('7.0-style0000000000070','Style3 Coolmenu','Style3 Coolmenu Style3 Coolmenu style3 coolmenu ','style3_coolmenu',1147642510,1147642510,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3\'\'Coolmenu\'\'Style3\'\'Coolmenu\'\'style3\'\'coolmenu','000001000001000047000021'),('7.0-style0000000000066','nav_bg_on.jpg','nav_bg_on.jpg nav_bg_on.jpg style3 nav bg on.jpg ','style3/nav_bg_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg_on\'\'.\'\'jpg\'\'nav_bg_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg\'\'on\'\'.\'\'jpg','000001000001000047000017'),('7.0-style0000000000064','nav_bg2.jpg','nav_bg2.jpg nav_bg2.jpg style3 nav bg2.jpg ','style3/nav_bg2.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2\'\'.\'\'jpg\'\'nav_bg2\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg2\'\'.\'\'jpg','000001000001000047000015'),('7.0-style0000000000065','nav_bg2_on.jpg','nav_bg2_on.jpg nav_bg2_on.jpg style3 nav bg2 on.jpg ','style3/nav_bg2_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2_on\'\'.\'\'jpg\'\'nav_bg2_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg2\'\'on\'\'.\'\'jpg','000001000001000047000016'),('7.0-style0000000000067','pb.jpg','pb.jpg pb.jpg style3 pb.jpg ','style3/pb.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'pb\'\'.\'\'jpg\'\'pb\'\'.\'\'jpg\'\'style3\'\'pb\'\'.\'\'jpg','000001000001000047000018'),('7.0-style0000000000063','nav_bg1_on.jpg','nav_bg1_on.jpg nav_bg1_on.jpg style3 nav bg1 on.jpg ','style3/nav_bg1_on.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1_on\'\'.\'\'jpg\'\'nav_bg1_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg1\'\'on\'\'.\'\'jpg','000001000001000047000014'),('7.0-style0000000000060','main_top_bg.jpg','main_top_bg.jpg main_top_bg.jpg style3 main top bg.jpg ','style3/main_top_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'main_top_bg\'\'.\'\'jpg\'\'main_top_bg\'\'.\'\'jpg\'\'style3\'\'main\'\'top\'\'bg\'\'.\'\'jpg','000001000001000047000011'),('7.0-style0000000000062','nav_bg1.jpg','nav_bg1.jpg nav_bg1.jpg style3 nav bg1.jpg ','style3/nav_bg1.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1\'\'.\'\'jpg\'\'nav_bg1\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg1\'\'.\'\'jpg','000001000001000047000013'),('7.0-style0000000000061','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style3 nav bg.jpg ','style3/nav_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000047000012'),('7.0-style0000000000059','main_top.jpg','main_top.jpg main_top.jpg style3 main top.jpg ','style3/main_top.jpg',1147642507,1213386091,'3','7','12','WebGUI::Asset::File::Image',1,'main_top\'\'.\'\'jpg\'\'main_top\'\'.\'\'jpg\'\'style3\'\'main\'\'top\'\'.\'\'jpg','000001000001000047000010'),('7.0-style0000000000057','main_bg.jpg','main_bg.jpg main_bg.jpg style3 main bg.jpg ','style3/main_bg.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style3\'\'main\'\'bg\'\'.\'\'jpg','000001000001000047000008'),('7.0-style0000000000058','main_bottom.jpg','main_bottom.jpg main_bottom.jpg style3 main bottom.jpg ','style3/main_bottom.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bottom\'\'.\'\'jpg\'\'main_bottom\'\'.\'\'jpg\'\'style3\'\'main\'\'bottom\'\'.\'\'jpg','000001000001000047000009'),('7.0-style0000000000055','header_left.jpg','header_left.jpg header_left.jpg style3 header left.jpg ','style3/header_left.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_left\'\'.\'\'jpg\'\'header_left\'\'.\'\'jpg\'\'style3\'\'header\'\'left\'\'.\'\'jpg','000001000001000047000006'),('7.0-style0000000000056','header_right.jpg','header_right.jpg header_right.jpg style3 header right.jpg ','style3/header_right.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_right\'\'.\'\'jpg\'\'header_right\'\'.\'\'jpg\'\'style3\'\'header\'\'right\'\'.\'\'jpg','000001000001000047000007'),('7.0-style0000000000054','header_bg.jpg','header_bg.jpg header_bg.jpg style3 header bg.jpg ','style3/header_bg.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_bg\'\'.\'\'jpg\'\'header_bg\'\'.\'\'jpg\'\'style3\'\'header\'\'bg\'\'.\'\'jpg','000001000001000047000005'),('7.0-style0000000000052','footer_bg.jpg','footer_bg.jpg footer_bg.jpg style3 footer bg.jpg ','style3/footer_bg.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_bg\'\'.\'\'jpg\'\'footer_bg\'\'.\'\'jpg\'\'style3\'\'footer\'\'bg\'\'.\'\'jpg','000001000001000047000003'),('7.0-style0000000000053','footer_right.jpg','footer_right.jpg footer_right.jpg style3 footer right.jpg ','style3/footer_right.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_right\'\'.\'\'jpg\'\'footer_right\'\'.\'\'jpg\'\'style3\'\'footer\'\'right\'\'.\'\'jpg','000001000001000047000004'),('7.0-style0000000000046','rightCol_bg.jpg','rightCol_bg.jpg rightCol_bg.jpg style2 rightcol bg.jpg ','style2/rightcol_bg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'rightCol_bg\'\'.\'\'jpg\'\'rightCol_bg\'\'.\'\'jpg\'\'style2\'\'rightcol\'\'bg\'\'.\'\'jpg','000001000001000046000015'),('stevestyle000000000002','Style 02','Style 02 Style 02 style 02 ','style_02',1147642504,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'02\'\'Style\'\'02\'\'style\'\'02 style','000001000001000046000016'),('7.0-style0000000000049','WebGUI 7 Style 3','WebGUI 7 Style 3 WebGUI 7 Style 3 root import webgui 7 style 3 ','root/import/webgui-7-style-3',1147642504,1224117144,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'3\'\'WebGUI\'\'7\'\'Style\'\'3\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'3','000001000001000047'),('7.0-style0000000000048','wg.jpg','wg.jpg wg.jpg style2 wg.jpg ','style2/wg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'wg\'\'.\'\'jpg\'\'wg\'\'.\'\'jpg\'\'style2\'\'wg\'\'.\'\'jpg','000001000001000046000017'),('7.0-style0000000000045','pb_wg_bg.jpg','pb_wg_bg.jpg pb_wg_bg.jpg style2 pb wg bg.jpg ','style2/pb_wg_bg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg_bg\'\'.\'\'jpg\'\'pb_wg_bg\'\'.\'\'jpg\'\'style2\'\'pb\'\'wg\'\'bg\'\'.\'\'jpg','000001000001000046000014'),('7.0-style0000000000044','pb_wg.jpg','pb_wg.jpg pb_wg.jpg style2 pb wg.jpg ','style2/pb_wg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg\'\'.\'\'jpg\'\'pb_wg\'\'.\'\'jpg\'\'style2\'\'pb\'\'wg\'\'.\'\'jpg','000001000001000046000013'),('7.0-style0000000000043','pb.jpg','pb.jpg pb.jpg style2 pb.jpg ','style2/pb.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb\'\'.\'\'jpg\'\'pb\'\'.\'\'jpg\'\'style2\'\'pb\'\'.\'\'jpg','000001000001000046000012'),('7.0-style0000000000042','page_title_bg.jpg','page_title_bg.jpg page_title_bg.jpg style2 page title bg.jpg ','style2/page_title_bg.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title_bg\'\'.\'\'jpg\'\'page_title_bg\'\'.\'\'jpg\'\'style2\'\'page\'\'title\'\'bg\'\'.\'\'jpg','000001000001000046000011'),('7.0-style0000000000041','page_title.jpg','page_title.jpg page_title.jpg style2 page title.jpg ','style2/page_title.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title\'\'.\'\'jpg\'\'page_title\'\'.\'\'jpg\'\'style2\'\'page\'\'title\'\'.\'\'jpg','000001000001000046000010'),('7.0-style0000000000040','navbar_right.jpg','navbar_right.jpg navbar_right.jpg style2 navbar right.jpg ','style2/navbar_right.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_right\'\'.\'\'jpg\'\'navbar_right\'\'.\'\'jpg\'\'style2\'\'navbar\'\'right\'\'.\'\'jpg','000001000001000046000009'),('7.0-style0000000000039','navbar_left.jpg','navbar_left.jpg navbar_left.jpg style2 navbar left.jpg ','style2/navbar_left.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_left\'\'.\'\'jpg\'\'navbar_left\'\'.\'\'jpg\'\'style2\'\'navbar\'\'left\'\'.\'\'jpg','000001000001000046000008'),('7.0-style0000000000036','main_bg.jpg','main_bg.jpg main_bg.jpg style2 main bg.jpg ','style2/main_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style2\'\'main\'\'bg\'\'.\'\'jpg','000001000001000046000005'),('7.0-style0000000000038','navbar_bg.jpg','navbar_bg.jpg navbar_bg.jpg style2 navbar bg.jpg ','style2/navbar_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_bg\'\'.\'\'jpg\'\'navbar_bg\'\'.\'\'jpg\'\'style2\'\'navbar\'\'bg\'\'.\'\'jpg','000001000001000046000007'),('7.0-style0000000000035','leftCol_header02.jpg','leftCol_header02.jpg leftCol_header02.jpg style2 leftcol header02.jpg ','style2/leftcol_header02.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header02\'\'.\'\'jpg\'\'leftCol_header02\'\'.\'\'jpg\'\'style2\'\'leftcol\'\'header02\'\'.\'\'jpg','000001000001000046000004'),('7.0-style0000000000037','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style2 nav bg.jpg ','style2/nav_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style2\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000046000006'),('7.0-style0000000000032','context_bg.jpg','context_bg.jpg context_bg.jpg style2 context bg.jpg ','style2/context_bg.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'context_bg\'\'.\'\'jpg\'\'context_bg\'\'.\'\'jpg\'\'style2\'\'context\'\'bg\'\'.\'\'jpg','000001000001000046000001'),('7.0-style0000000000031','WebGUI 7 Style 2','WebGUI 7 Style 2 WebGUI 7 Style 2 root import webgui 7 style 2 ','root/import/webgui-7-style-2',1147642500,1147642500,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'2\'\'WebGUI\'\'7\'\'Style\'\'2\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'2','000001000001000046'),('7.0-style0000000000033','css02.css','css02.css css02.css style2 css02.css ','style2/css02.css',1147642500,1147642500,'3','7','12','WebGUI::Asset::Snippet',1,'css02\'\'.\'\'css\'\'css02\'\'.\'\'css\'\'style2\'\'css02\'\'.\'\'css body\'\',\'\'html\'\'{\'\'height\'\':\'\'100\'\'%\'\';\'\'}\'\'body\'\'{\'\'background\'\':\'\'#\'\'7c9ab0\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'main_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'rightColumn\'\'{\'\'width\'\':\'\'20\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'background\'\':\'\'#\'\'eeeeee\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'rightCol_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'pb_wg_bg\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'pb_wg_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'pb_wg\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'pb_wg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'left\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'53px\'\';\'\'}\'\'.\'\'leftColumn\'\'{\'\'width\'\':\'\'80\'\'%\'\';\'\'background\'\':\'\'white\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'context_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'background\'\':\'\'#\'\'7c9ab0\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'leftCol_header\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'right\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'86px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title\'\',\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title_bg\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'36pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'variant\'\':\'\'small\'\'-\'\'caps\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'12px\'\';\'\'top\'\':\'\'15px\'\';\'\'left\'\':\'\'5px\'\';\'\'position\'\':\'\'absolute\'\';\'\'z\'\'-\'\'index\'\':\'\'10\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title_bg\'\'{\'\'color\'\':\'\'black\'\';\'\'z\'\'-\'\'index\'\':\'\'5\'\';\'\'top\'\':\'\'17px\'\';\'\'left\'\':\'\'7px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'{\'\'/\'\'*\'\'background\'\':\'\'#\'\'fff\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'context_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'*\'\'/\'\'width\'\':\'\'95\'\'%\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'color\'\':\'\'#\'\'242424\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\'-\'\'left\'\':\'\'1\'\'%\'\';\'\'padding\'\'-\'\'right\'\':\'\'1\'\'%\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'a\'\'{\'\'color\'\':\'\'#\'\'7C9AB0\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'page_title_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'#\'\'pageTitle\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'page_title\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'right\'\'no\'\'-\'\'repeat\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'50px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'#\'\'pageTitle\'\'h2\'\'{\'\'font\'\'-\'\'size\'\':\'\'14pt\'\';\'\'color\'\':\'\'#\'\'696969\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'2px\'\';\'\'padding\'\'-\'\'left\'\':\'\'25px\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'3px\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'{\'\'width\'\':\'\'85\'\'%\'\';\'\'background\'\':\'\'#\'\'b5b5b5\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'nav_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'#\'\'848484\'\'1px\'\';\'\'margin\'\'-\'\'left\'\':\'\'auto\'\';\'\'margin\'\'-\'\'right\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'padding\'\'-\'\'left\'\':\'\'3px\'\';\'\'padding\'\'-\'\'top\'\':\'\'7px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'7px\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'line\'\'-\'\'height\'\':\'\'8pt\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'.\'\'selectedMenuItem\'\'{\'\'color\'\':\'\'yellow\'\';\'\'}\'\'#\'\'loginStyles\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'25px\'\';\'\'}\'\'#\'\'loginStyles\'\'a\'\'{\'\'color\'\':\'\'#\'\'89ACCF\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'transparent\'\'2px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'loginStyles\'\'a\'\':\'\'hover\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dotted\'\'#\'\'B2C9D9\'\'2px\'\';\'\'}\'\'.\'\'copyright\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'3px\'\';\'\'background\'\'-\'\'color\'\':\'\'gray\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'color\'\':\'\'silver\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}','000001000001000046000002'),('7.0-style0000000000034','leftCol_header.jpg','leftCol_header.jpg leftCol_header.jpg style2 leftcol header.jpg ','style2/leftcol_header.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header\'\'.\'\'jpg\'\'leftCol_header\'\'.\'\'jpg\'\'style2\'\'leftcol\'\'header\'\'.\'\'jpg','000001000001000046000003'),('stevenav00000000000001','Style 01 Nav','Style 01 Nav Style 01 Nav style1 nav ','style1_nav',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Nav\'\'Style\'\'01\'\'Nav\'\'style1\'\'nav Navigation','000001000001000045000027'),('PBnav000000style01lvl2','Style 01 Nav lvl2','Style 01 Nav lvl2 untitled style1 nav lvl2 ','style1_nav_lvl2',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Nav\'\'lvl2\'\'untitled\'\'style1\'\'nav\'\'lvl2 Navigation','000001000001000045000028'),('7.0-style0000000000030','webgui_btn.jpg','webgui_btn.jpg webgui_btn.jpg style1 webgui btn.jpg ','style1/webgui_btn.jpg',1147642499,1147642499,'3','7','12','WebGUI::Asset::File::Image',1,'webgui_btn\'\'.\'\'jpg\'\'webgui_btn\'\'.\'\'jpg\'\'style1\'\'webgui\'\'btn\'\'.\'\'jpg','000001000001000045000029'),('stevestyle000000000001','Style 01','Style 01 Style 01 style 01 ','style_01',1147642499,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Style\'\'01\'\'style\'\'01 style','000001000001000045000026'),('7.0-style0000000000026','RootTab Level 1','RootTab Level 1 RootTab Level 1 roottab level1 ','roottab_level1',1147642499,1147642499,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'Level\'\'1\'\'RootTab\'\'Level\'\'1\'\'roottab\'\'level1','000001000001000045000025'),('7.0-style0000000000024','orange_left01.jpg','orange_left01.jpg orange_left01.jpg style1 orange left01.jpg ','style1/orange_left01.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'orange_left01\'\'.\'\'jpg\'\'orange_left01\'\'.\'\'jpg\'\'style1\'\'orange\'\'left01\'\'.\'\'jpg','000001000001000045000023'),('7.0-style0000000000023','nav_on.jpg','nav_on.jpg nav_on.jpg style1 nav on.jpg ','style1/nav_on.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'nav_on\'\'.\'\'jpg\'\'nav_on\'\'.\'\'jpg\'\'style1\'\'nav\'\'on\'\'.\'\'jpg','000001000001000045000022'),('7.0-style0000000000025','RootTab Level 0','RootTab Level 0 RootTab Level 0 roottab level0 ','roottab_level0',1147642498,1147642498,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'Level\'\'0\'\'RootTab\'\'Level\'\'0\'\'roottab\'\'level0','000001000001000045000024'),('7.0-style0000000000019','nav2_off_right.jpg','nav2_off_right.jpg nav2_off_right.jpg style1 nav2 off right.jpg ','style1/nav2_off_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_right\'\'.\'\'jpg\'\'nav2_off_right\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'right\'\'.\'\'jpg','000001000001000045000018'),('7.0-style0000000000020','nav2_on_left.jpg','nav2_on_left.jpg nav2_on_left.jpg style1 nav2 on left.jpg ','style1/nav2_on_left.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_left\'\'.\'\'jpg\'\'nav2_on_left\'\'.\'\'jpg\'\'style1\'\'nav2\'\'on\'\'left\'\'.\'\'jpg','000001000001000045000019'),('7.0-style0000000000022','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style1 nav bg.jpg ','style1/nav_bg.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style1\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000045000021'),('7.0-style0000000000021','nav2_on_right.jpg','nav2_on_right.jpg nav2_on_right.jpg style1 nav2 on right.jpg ','style1/nav2_on_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_right\'\'.\'\'jpg\'\'nav2_on_right\'\'.\'\'jpg\'\'style1\'\'nav2\'\'on\'\'right\'\'.\'\'jpg','000001000001000045000020'),('7.0-style0000000000017','nav2_off_center.jpg','nav2_off_center.jpg nav2_off_center.jpg style1 nav2 off center.jpg ','style1/nav2_off_center.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_center\'\'.\'\'jpg\'\'nav2_off_center\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'center\'\'.\'\'jpg','000001000001000045000016'),('7.0-style0000000000016','nav2_center_on.jpg','nav2_center_on.jpg nav2_center_on.jpg style1 nav2 center on.jpg ','style1/nav2_center_on.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_center_on\'\'.\'\'jpg\'\'nav2_center_on\'\'.\'\'jpg\'\'style1\'\'nav2\'\'center\'\'on\'\'.\'\'jpg','000001000001000045000015'),('7.0-style0000000000018','nav2_off_left.jpg','nav2_off_left.jpg nav2_off_left.jpg style1 nav2 off left.jpg ','style1/nav2_off_left.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_left\'\'.\'\'jpg\'\'nav2_off_left\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'left\'\'.\'\'jpg','000001000001000045000017'),('7.0-style0000000000015','nav1_on_right.jpg','nav1_on_right.jpg nav1_on_right.jpg style1 nav1 on right.jpg ','style1/nav1_on_right.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_right\'\'.\'\'jpg\'\'nav1_on_right\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'right\'\'.\'\'jpg','000001000001000045000014'),('7.0-style0000000000014','nav1_on_left.jpg','nav1_on_left.jpg nav1_on_left.jpg style1 nav1 on left.jpg ','style1/nav1_on_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_left\'\'.\'\'jpg\'\'nav1_on_left\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'left\'\'.\'\'jpg','000001000001000045000013'),('7.0-style0000000000013','nav1_on.jpg','nav1_on.jpg nav1_on.jpg style1 nav1 on.jpg ','style1/nav1_on.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on\'\'.\'\'jpg\'\'nav1_on\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'.\'\'jpg','000001000001000045000012'),('7.0-style0000000000011','nav1_off_left.jpg','nav1_off_left.jpg nav1_off_left.jpg style1 nav1 off left.jpg ','style1/nav1_off_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_left\'\'.\'\'jpg\'\'nav1_off_left\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'left\'\'.\'\'jpg','000001000001000045000010'),('7.0-style0000000000012','nav1_off_right.jpg','nav1_off_right.jpg nav1_off_right.jpg style1 nav1 off right.jpg ','style1/nav1_off_right.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_right\'\'.\'\'jpg\'\'nav1_off_right\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'right\'\'.\'\'jpg','000001000001000045000011'),('7.0-style0000000000009','nav1_off.jpg','nav1_off.jpg nav1_off.jpg style1 nav1 off.jpg ','style1/nav1_off.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off\'\'.\'\'jpg\'\'nav1_off\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'.\'\'jpg','000001000001000045000008'),('7.0-style0000000000010','nav1_off_center.jpg','nav1_off_center.jpg nav1_off_center.jpg style1 nav1 off center.jpg ','style1/nav1_off_center.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_center\'\'.\'\'jpg\'\'nav1_off_center\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'center\'\'.\'\'jpg','000001000001000045000009'),('7.0-style0000000000008','nav1_center_on.jpg','nav1_center_on.jpg nav1_center_on.jpg style1 nav1 center on.jpg ','style1/nav1_center_on.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_center_on\'\'.\'\'jpg\'\'nav1_center_on\'\'.\'\'jpg\'\'style1\'\'nav1\'\'center\'\'on\'\'.\'\'jpg','000001000001000045000007'),('7.0-style0000000000006','main_bg.gif','main_bg.gif main_bg.gif style1 main bg.gif ','style1/main_bg.gif',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'gif\'\'main_bg\'\'.\'\'gif\'\'style1\'\'main\'\'bg\'\'.\'\'gif','000001000001000045000005'),('7.0-style0000000000007','main_bg.jpg','main_bg.jpg main_bg.jpg style1 main bg.jpg ','style1/main_bg.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style1\'\'main\'\'bg\'\'.\'\'jpg','000001000001000045000006'),('7.0-style0000000000004','gui_bottom.jpg','gui_bottom.jpg gui_bottom.jpg style1 gui bottom.jpg ','style1/gui_bottom.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'gui_bottom\'\'.\'\'jpg\'\'gui_bottom\'\'.\'\'jpg\'\'style1\'\'gui\'\'bottom\'\'.\'\'jpg','000001000001000045000003'),('7.0-style0000000000005','header.jpg','header.jpg header.jpg style1 header.jpg ','style1/header.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'header\'\'.\'\'jpg\'\'header\'\'.\'\'jpg\'\'style1\'\'header\'\'.\'\'jpg','000001000001000045000004'),('7.0-style0000000000001','WebGUI 7 Style 1','WebGUI 7 Style 1 WebGUI 7 Style 1 root import webgui 7 style 1 ','root/import/webgui-7-style-1',1147642492,1147642492,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'1\'\'WebGUI\'\'7\'\'Style\'\'1\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'1','000001000001000045'),('7.0-style0000000000002','body_bg.jpg','body_bg.jpg body_bg.jpg style1 body bg.jpg ','style1/body_bg.jpg',1147642492,1147642492,'3','7','12','WebGUI::Asset::File::Image',1,'body_bg\'\'.\'\'jpg\'\'body_bg\'\'.\'\'jpg\'\'style1\'\'body\'\'bg\'\'.\'\'jpg','000001000001000045000001'),('7.0-style0000000000003','css01.css','css01.css css01.css style1 css01.css ','style1/css01.css',1147642492,1147642492,'3','7','12','WebGUI::Asset::Snippet',1,'css01\'\'.\'\'css\'\'css01\'\'.\'\'css\'\'style1\'\'css01\'\'.\'\'css body\'\',\'\'html\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'494949\'\';\'\'}\'\'#\'\'main\'\'{\'\'width\'\':\'\'800px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'main_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'margin\'\'-\'\'left\'\':\'\'auto\'\';\'\'margin\'\'-\'\'right\'\':\'\'auto\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'body\'\'>\'\'#\'\'main\'\'{\'\'height\'\':\'\'auto\'\';\'\'min\'\'-\'\'height\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'{\'\'width\'\':\'\'800px\'\';\'\'height\'\':\'\'133px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'header\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'top\'\'left\'\'no\'\'-\'\'repeat\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'#\'\'title\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'23px\'\';\'\'left\'\':\'\'145px\'\';\'\'font\'\'-\'\'size\'\':\'\'32pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'#\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'orange_left01\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'left\'\'top\'\'no\'\'-\'\'repeat\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'red\'\'0px\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainContent\'\'{\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainContent\'\'>\'\'p\'\'{\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'#\'\'mainText\'\'a\'\':\'\'link\'\'{\'\'color\'\':\'\'#\'\'FF7F23\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'#\'\'mainText\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'D25900\'\';\'\'}\'\'/\'\'*\'\'LEVEL\'\'1\'\'AND\'\'2\'\'NAVIGATION\'\'*\'\'/\'\'#\'\'main\'\'.\'\'mainNav_1\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dashed\'\'#\'\'DADADA\'\'1px\'\';\'\'width\'\':\'\'621px\'\';\'\'height\'\':\'\'25px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'position\'\':\'\'relative\'\';\'\'margin\'\'-\'\'left\'\':\'\'137px\'\';\'\'clear\'\':\'\'both\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'visited\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'top\'\':\'\'5px\'\';\'\'position\'\':\'\'relative\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'hover\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'left\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'left\'\'{\'\'width\'\':\'\'12px\'\';\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'center\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'center\'\'{\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_center\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\',\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_center\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'right\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'right\'\'{\'\'width\'\':\'\'10px\'\';\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_on_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_center_on\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_on_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_on_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_center_on\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_on_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'visited\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'/\'\'*\'\'ENDOF\'\'LEVEL\'\'1\'\'AND\'\'2\'\'NAVIGATION\'\'*\'\'/\'\'#\'\'main\'\'#\'\'crumbTrail\'\'{\'\'margin\'\'-\'\'left\'\':\'\'177px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'color\'\':\'\'gray\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'visited\'\',\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'link\'\'{\'\'color\'\':\'\'silver\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'hover\'\'{\'\'color\'\':\'\'gray\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainText\'\'{\'\'padding\'\'-\'\'left\'\':\'\'150px\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'width\'\':\'\'600px\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'{\'\'bottom\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'position\'\':\'\'absolute\'\';\'\'width\'\':\'\'135px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'{\'\'padding\'\'-\'\'right\'\':\'\'12px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'width\'\':\'\'100px\'\';\'\'float\'\':\'\'right\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'.\'\'loginBoxField\'\'{\'\'width\'\':\'\'75px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'.\'\'loginBoxButton\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'D65501\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'white\'\'2px\'\';\'\'margin\'\'-\'\'top\'\':\'\'4px\'\';\'\'font\'\'-\'\'variant\'\':\'\'small\'\'-\'\'caps\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'copyright\'\'{\'\'color\'\':\'\'#\'\'fff\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'110px\'\';\'\'right\'\':\'\'40px\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'2D2D2D\'\';\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'-\'\'moz\'\'-\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'-\'\'khtml\'\'-\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'*\'\'html\'\'#\'\'copyright\'\'{\'\'background\'\':\'\'transparent\'\';\'\'}','000001000001000045000002'),('CSN-ZON7Uwv8kxf3F1fh5Q','ZipArchiveAsset','ZipArchiveAsset ZipArchiveAsset root import ziparchiveasset ','root/import/ziparchiveasset',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ZipArchiveAsset\'\'ZipArchiveAsset\'\'root\'\'import\'\'ziparchiveasset','000001000001000049'),('TCtybxdqmdwdvRn555zpCQ','RichEdit','RichEdit RichEdit root import richedit ','root/import/richedit',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RichEdit\'\'RichEdit\'\'root\'\'import\'\'richedit','000001000001000030'),('NywJYmGWe1f6EBXJnWg9Xg','Profile','Profile Profile root import profile ','root/import/profile',1222803606,1222803638,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile\'\'Profile\'\'root\'\'import\'\'profile','000001000001000026'),('9wKWdum0_8z-OhhquWLtSQ','WeatherData','WeatherData WeatherData root import weatherdata ','root/import/weatherdata',1147642483,1147642483,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WeatherData\'\'WeatherData\'\'root\'\'import\'\'weatherdata','000001000001000044'),('AgyFhx3eXlfZXNp2MkrsiQ','Edit','Edit Edit root import profile edit ','root/import/profile/edit',1147642477,1222803665,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Edit\'\'Edit\'\'root\'\'import\'\'profile\'\'edit','000001000001000026000001'),('F7MAQ-cpuvQ1KuC7J4P5zQ','View','View View root import profile view ','root/import/profile/view',1147642477,1222803673,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'View\'\'View\'\'root\'\'import\'\'profile\'\'view','000001000001000026000002'),('oGfxez5sksyB_PcaAsEm_Q','SyndicatedContent','SyndicatedContent SyndicatedContent root import syndicatedcontent ','root/import/syndicatedcontent',1147642482,1147642482,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SyndicatedContent\'\'SyndicatedContent\'\'root\'\'import\'\'syndicatedcontent','000001000001000040'),('5bnNzteN7w3NnK9mF4XiCg','Survey','Survey Survey root import survey ','root/import/survey',1147642481,1227540002,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Survey\'\'Survey\'\'root\'\'import\'\'survey','000001000001000039'),('Efe2W0UgrSRDltNJ87jlfg','StockData','StockData StockData root import stockdata ','root/import/stockdata',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'StockData\'\'StockData\'\'root\'\'import\'\'stockdata','000001000001000037'),('bbiA9Zq5Gy2oCFBlILO3QA','SQLReport','SQLReport SQLReport root import sqlreport ','root/import/sqlreport',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SQLReport\'\'SQLReport\'\'root\'\'import\'\'sqlreport','000001000001000036'),('RrV4aAPnn4dM0ZcU3OXnlw','style','style style root import style ','root/import/style',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'style\'\'style\'\'root\'\'import\'\'style','000001000001000038'),('Ik9HHky10DIyFTKehUD1dw','Prompt','Prompt Prompt root import prompt ','root/import/prompt',1147642479,1222803478,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Prompt\'\'Prompt\'\'root\'\'import\'\'prompt','000001000001000028'),('f_tn9FfoSfKWX43F83v_3w','Search','Search Search root import search ','root/import/search',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Search\'\'Search\'\'root\'\'import\'\'search','000001000001000032'),('Da6KWn805L4B5e4HFgQRQA','Shortcut','Shortcut Shortcut root import shortcut ','root/import/shortcut',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shortcut\'\'Shortcut\'\'root\'\'import\'\'shortcut','000001000001000035'),('TYo2Bwl7aafzTtdHlS-arQ','Product','Product Product root import product ','root/import/product',1147642478,1211664878,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Product\'\'Product\'\'root\'\'import\'\'product','000001000001000025'),('VZK3CRgiMb8r4dBjUmCTgQ','Poll','Poll Poll root import poll ','root/import/poll',1147642477,1147642477,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Poll\'\'Poll\'\'root\'\'import\'\'poll','000001000001000024'),('jEz8iTGNWEt2I05IhVV19Q','Operation/RedeemSubscription','Operation/RedeemSubscription Operation/RedeemSubscription root import operation redeemsubscription ','root/import/operation/redeemsubscription',1147642477,1147642477,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Operation\'\'/\'\'RedeemSubscription\'\'Operation\'\'/\'\'RedeemSubscription\'\'root\'\'import\'\'operation\'\'redeemsubscription','000001000001000034000016'),('BFfNj5wA9bDw8H3cnr8pTw','Navigation','Navigation Navigation root import navigation ','root/import/navigation',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Navigation\'\'Navigation\'\'root\'\'import\'\'navigation','000001000001000022'),('bBzO4CWjqU_ile3gf5Iypw','MultiSearch','MultiSearch MultiSearch root import multisearch ','root/import/multisearch',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MultiSearch\'\'MultiSearch\'\'root\'\'import\'\'multisearch','000001000001000021'),('cj2y4papTVGZRFdwTI-_fw','MessageBoard','MessageBoard MessageBoard root import messageboard ','root/import/messageboard',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MessageBoard\'\'MessageBoard\'\'root\'\'import\'\'messageboard','000001000001000019'),('3womoo7Teyy2YKFa25-MZg','Address Book (Default)','Address Book (Default) Address Book (Default) shopping cart collateral items address book default ','shopping-cart-collateral-items/address-book-default',1212098997,1226703362,'3','7','3','WebGUI::Asset::Template',1,'Address\'\'Book\'\'(\'\'Default\'\')\'\'Address\'\'Book\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'address\'\'book\'\'default Shop\'\'/\'\'AddressBook','000001000001000034000013'),('g8W53Pd71uHB9pxaXhWf_A','My Purchases Detail (Default)','My Purchases Detail (Default) My Purchases Detail (Default) shopping cart collateral items my purchases detail default ','shopping-cart-collateral-items/my-purchases-detail-default',1213184121,1222574693,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Purchases\'\'Detail\'\'(\'\'Default\'\')\'\'My\'\'Purchases\'\'Detail\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'my\'\'purchases\'\'detail\'\'default Shop\'\'/\'\'MyPurchasesDetail','000001000001000034000015'),('-WM2dt0ZGpDasuL2wWocxg','ProjectManager','ProjectManager ProjectManager root import projectmanager ','root/import/projectmanager',1222803056,1222803056,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ProjectManager\'\'ProjectManager\'\'root\'\'import\'\'projectmanager','000001000001000027'),('LdiozcIUciWuvt3Z-na5Ww','Matrix','Matrix Matrix root import matrix ','root/import/matrix',1147642474,1232673968,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Matrix\'\'Matrix\'\'root\'\'import\'\'matrix','000001000001000018'),('default_post_received1','Default Post Received','Default Post Received Default Post Received default post received ','default_post_received',1222708029,1230356300,'3','7','4','WebGUI::Asset::Template',1,'Default\'\'Post\'\'Received\'\'Default\'\'Post\'\'Received\'\'default\'\'post\'\'received Collaboration\'\'/\'\'PostReceived','000001000001000005000030'),('aNNC62qLAS6TB-0_MCYjsw','Layout','Layout Layout root import layout ','root/import/layout',1147642471,1213283425,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Layout\'\'Layout\'\'root\'\'import\'\'layout','000001000001000016'),('GYaFxnMu9UsEG8oanwB6TA','Folder','Folder Folder root import folder ','root/import/folder',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Folder\'\'Folder\'\'root\'\'import\'\'folder','000001000001000010'),('N13SD1Fpqk00UgBt1Z8ivQ','HttpProxy','HttpProxy HttpProxy root import httpproxy ','root/import/httpproxy',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'HttpProxy\'\'HttpProxy\'\'root\'\'import\'\'httpproxy','000001000001000012'),('tPagC0AQErZXjLFZQ6OI1g','ImageAsset','ImageAsset ImageAsset root import imageasset ','root/import/imageasset',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ImageAsset\'\'ImageAsset\'\'root\'\'import\'\'imageasset','000001000001000013'),('3uuBf8cYuj1sew2OJXl9tg','InOutBoard','InOutBoard InOutBoard root import inoutboard ','root/import/inoutboard',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'InOutBoard\'\'InOutBoard\'\'root\'\'import\'\'inoutboard','000001000001000015'),('PBtmpl0000000000000005','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template Default LDAP Anonymous Registration Template default ldap anonymous registration template ','default_ldap_anonymous_registration_template',1124395696,1221612327,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Anonymous\'\'Registration\'\'Template\'\'Default\'\'LDAP\'\'Anonymous\'\'Registration\'\'Template\'\'default\'\'ldap\'\'anonymous\'\'registration\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Create','000001000001000003000002000001'),('PBtmpl0000000000000011','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template Default WebGUI Anonymous Registration Template default webgui anonymous registration template ','default_webgui_anonymous_registration_template',1124395696,1221612288,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Anonymous\'\'Registration\'\'Template\'\'Default\'\'WebGUI\'\'Anonymous\'\'Registration\'\'Template\'\'default\'\'webgui\'\'anonymous\'\'registration\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Create','000001000001000003000005000001'),('VXSsbsfcfht1904EWkb1sw','Inbox','Inbox Inbox root import inbox ','root/import/inbox',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox\'\'Inbox\'\'root\'\'import\'\'inbox','000001000001000014'),('tXwf1zaOXTvsqPn6yu-GSw','FileAsset','FileAsset FileAsset root import fileasset ','root/import/fileasset',1147642469,1147642469,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'FileAsset\'\'FileAsset\'\'root\'\'import\'\'fileasset','000001000001000009'),('S1A9iAwKcQQ6P20uTqw-Ew','Dashboard','Dashboard Dashboard root import dashboard ','root/import/dashboard',1147642468,1147642468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Dashboard\'\'Dashboard\'\'root\'\'import\'\'dashboard','000001000001000006'),('-K8Hj45mbelljN9-0CXZxg','DataForm',' ','root/import/dataform',1147642468,1209325764,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'DataForm\'\'DataForm\'\'root\'\'import\'\'dataform','000001000001000007'),('GNOAsX98vCsl0JRwfwL-gg','Collaboration','Collaboration Collaboration root import collaboration ','root/import/collaboration',1147642466,1147642466,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Collaboration\'\'Collaboration\'\'root\'\'import\'\'collaboration','000001000001000005'),('pbproto000000000000002','Request Tracker','Request Tracker Request Tracker request tracker prototype ','request-tracker-prototype',1147642465,1163019036,'3','7','12','WebGUI::Asset::Wobject::Collaboration',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'prototype','000001000001000029'),('pbtmpl0000000000000220','Flash Template','Flash Template Flash Template flash template ','flash-template',1147642465,1148579525,'3','7','12','WebGUI::Asset::Template',1,'Flash\'\'Template\'\'Flash\'\'Template\'\'flash\'\'template FileAsset','000001000001000009000002'),('pbtmpl0000000000000221','Flash Tutorial Template','Flash Tutorial Template Flash Tutorial Template flash tutorial template ','flash-tutorial-template',1147642465,1147642465,'3','7','12','WebGUI::Asset::Template',1,'Flash\'\'Tutorial\'\'Template\'\'Flash\'\'Tutorial\'\'Template\'\'flash\'\'tutorial\'\'template FileAsset','000001000001000009000003'),('nbSrhXZQuxIjhWFaFPSuVA','AdminConsole','AdminConsole AdminConsole root import adminconsole ','root/import/adminconsole',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminConsole\'\'AdminConsole\'\'root\'\'import\'\'adminconsole','000001000001000001'),('TvOZs8U1kRXLtwtmyW75pg','Article','Article Article root import article ','root/import/article',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Article\'\'Article\'\'root\'\'import\'\'article','000001000001000002'),('PBtmpl0000000000000027','Default Forum Notification','Default Forum Notification Default Forum Notification default forum notification ','default_forum_notification',1124395696,1230159257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Notification\'\'Default\'\'Forum\'\'Notification\'\'default\'\'forum\'\'notification Collaboration\'\'/\'\'Notification','000001000001000005000015'),('PBtmpl00000000table118','Three Over One (Table)','Three Over One (Table) Three Over One (Table) three over one table ','three_over_one_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Three\'\'Over\'\'One\'\'(\'\'Table\'\')\'\'Three\'\'Over\'\'One\'\'(\'\'Table\'\')\'\'three\'\'over\'\'one\'\'table Layout','000001000001000016000012'),('PBtmpl00000000table135','Side By Side (Table)','Side By Side (Table) Side By Side (Table) side by side table ','side_by_side_table',1148579525,1220655706,'3','7','12','WebGUI::Asset::Template',1,'Side\'\'By\'\'Side\'\'(\'\'Table\'\')\'\'Side\'\'By\'\'Side\'\'(\'\'Table\'\')\'\'side\'\'by\'\'side\'\'table Layout','000001000001000016000011'),('PBtmpl00000000table131','Right Column (Table)','Right Column (Table) Right Column (Table) right column table ','right_column_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Right\'\'Column\'\'(\'\'Table\'\')\'\'Right\'\'Column\'\'(\'\'Table\'\')\'\'right\'\'column\'\'table Layout','000001000001000016000010'),('PBtmpl00000000table094','News (Table)','News (Table) News (Table) news table ','news_table',1148579525,1220655704,'3','7','12','WebGUI::Asset::Template',1,'News\'\'(\'\'Table\'\')\'\'News\'\'(\'\'Table\'\')\'\'news\'\'table Layout','000001000001000016000009'),('PBtmpl00000000table125','Left Column (Table)','Left Column (Table) Left Column (Table) left column table ','left_column_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Column\'\'(\'\'Table\'\')\'\'Left\'\'Column\'\'(\'\'Table\'\')\'\'left\'\'column\'\'table Layout','000001000001000016000008'),('PBnav00000000indentnav','Indent Nav','Indent Nav Indent Nav indent nav ','indent_nav',1148579525,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Indent\'\'Nav\'\'Indent\'\'Nav\'\'indent\'\'nav Navigation','000001000001000022000028'),('PBtmpl0000000000000085','Default Email','Default Email Default Email default email ','default_email',1124395696,1202884864,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Email\'\'Default\'\'Email\'\'default\'\'email DataForm','000001000001000007000002'),('PBnav00000000000bullet','Bulleted List','Bulleted List Bulleted List bulleted list ','bulleted_list',1148579524,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Bulleted\'\'List\'\'Bulleted\'\'List\'\'bulleted\'\'list Navigation','000001000001000022000027'),('StockDataTMPL000000002','StockData Default Display','StockData Default Display StockData Default Display stockdatatmpl000000002 ','stockdatatmpl000000002',1133743239,1229494994,'3','7','12','WebGUI::Asset::Template',1,'StockData\'\'Default\'\'Display\'\'StockData\'\'Default\'\'Display\'\'stockdatatmpl000000002 StockData\'\'/\'\'Display','000001000001000037000001'),('2OcUWHVsu_L1sDFzIMWYqw','TimeTracking','TimeTracking TimeTracking root import timetracking ','root/import/timetracking',1222803070,1222803070,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'TimeTracking\'\'TimeTracking\'\'root\'\'import\'\'timetracking','000001000001000042'),('PBtmpl000000000table54','Default Page (Table)','Default Page (Table) Default Page (Table) default page table ','default_page_table',1154535074,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'(\'\'Table\'\')\'\'Default\'\'Page\'\'(\'\'Table\'\')\'\'default\'\'page\'\'table Layout','000001000001000016000013'),('PBtmpl00000000table109','One Over Three (Table)','One Over Three (Table) One Over Three (Table) one over three table ','one_over_three_table',1154535074,1220655705,'3','7','12','WebGUI::Asset::Template',1,'One\'\'Over\'\'Three\'\'(\'\'Table\'\')\'\'One\'\'Over\'\'Three\'\'(\'\'Table\'\')\'\'one\'\'over\'\'three\'\'table Layout','000001000001000016000014'),('PBtmpl0000000000000014','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template Default WebGUI Password Recovery Template default webgui password recovery template ','default_webgui_password_recovery_template',1124395696,1227218041,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Password\'\'Recovery\'\'Template\'\'Default\'\'WebGUI\'\'Password\'\'Recovery\'\'Template\'\'default\'\'webgui\'\'password\'\'recovery\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Recovery2','000001000001000003000008000001'),('ProjectManagerTMPL0006','Default Resource List','Default Resource List Default Resource List default pm resource list ','default-pm-resource-list',1157679165,1157679165,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Resource\'\'List\'\'Default\'\'Resource\'\'List\'\'default\'\'pm\'\'resource\'\'list ProjectManager_resourceList','000001000001000027000005000001'),('ProjectManagerTMPL0005','Default Resource Popup','Default Resource Popup Default Resource Popup default pm resource popup ','default-pm-resource-popup',1157679165,1229579830,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Resource\'\'Popup\'\'Default\'\'Resource\'\'Popup\'\'default\'\'pm\'\'resource\'\'popup ProjectManager_resourcePopup','000001000001000027000005000002'),('PBtmpl0000000000000032','Default Thread','Default Thread Default Thread default thread ','default_thread',1124395696,1206998756,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thread\'\'Default\'\'Thread\'\'default\'\'thread Collaboration\'\'/\'\'Thread','000001000001000005000014'),('WeatherDataTmpl0000001','WeatherData Default View','WeatherData Default View WeatherData Default View weatherdatatmpl0000001 ','weatherdatatmpl0000001',1133743239,1210711353,'3','7','12','WebGUI::Asset::Template',1,'WeatherData\'\'Default\'\'View\'\'WeatherData\'\'Default\'\'View\'\'weatherdatatmpl0000001 WeatherData','000001000001000044000001'),('PBasset000000000000001','Root','Root Root root ','root',1124395696,1124395696,'3','7','3','WebGUI::Asset',1,'Root\'\'Root\'\'root','000001'),('PBrichedit000000000001','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit Content Manager\'s Rich Edit content managers rich edit ','content_managers_rich_edit',1124395696,1207240829,'3','7','12','WebGUI::Asset::RichEdit',1,'Content\'\'Manager\'\'\'\'\'s\'\'Rich\'\'Edit\'\'Content\'\'Manager\'\'\'\'\'s\'\'Rich\'\'Edit\'\'content\'\'managers\'\'rich\'\'edit','000001000001000030000001'),('PBrichedit000000000002','Forum Rich Edit','Forum Rich Edit Forum Rich Edit forum rich edit ','forum_rich_edit',1124395696,1124395696,'3','7','12','WebGUI::Asset::RichEdit',1,'Forum\'\'Rich\'\'Edit\'\'Forum\'\'Rich\'\'Edit\'\'forum\'\'rich\'\'edit','000001000001000030000002'),('SynConXSLT000000000001','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT Stylesheet RSS 0.9 XSLT xslt rss0.9.xsl ','xslt/rss0.9.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'0\'\'.\'\'9\'\'XSLT\'\'Stylesheet\'\'RSS\'\'0\'\'.\'\'9\'\'XSLT\'\'xslt\'\'rss0\'\'.\'\'9\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'0\'\'.\'\'9\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.','000001000001000040000004'),('SynConXSLT000000000002','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT Stylesheet RSS 0.91 XSLT xslt rss0.91.xsl ','xslt/rss0.91.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'0\'\'.\'\'91\'\'XSLT\'\'Stylesheet\'\'RSS\'\'0\'\'.\'\'91\'\'XSLT\'\'xslt\'\'rss0\'\'.\'\'91\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'0\'\'.\'\'91\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.','000001000001000040000005'),('SynConXSLT000000000003','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT Stylesheet RSS 1.0 XSLT xslt rss1.0.xsl ','xslt/rss1.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'1\'\'.\'\'0\'\'XSLT\'\'Stylesheet\'\'RSS\'\'1\'\'.\'\'0\'\'XSLT\'\'xslt\'\'rss1\'\'.\'\'0\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'1\'\'.\'\'0\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.\'\'(\'\')','000001000001000040000006'),('SynConXSLT000000000004','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT Stylesheet RSS 2.0 XSLT xslt rss2.0.xsl ','xslt/rss2.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'2\'\'.\'\'0\'\'XSLT\'\'Stylesheet\'\'RSS\'\'2\'\'.\'\'0\'\'XSLT\'\'xslt\'\'rss2\'\'.\'\'0\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'2\'\'.\'\'0\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.\'\'(\'\')','000001000001000040000007'),('vrKXEtluIhbmAS9xmPukDA','Donation (Default)','Donation (Default) Donation (Default) root import default donation template ','root/import/default-donation-template',1212092352,1226698051,'3','7','12','WebGUI::Asset::Template',1,'Donation\'\'(\'\'Default\'\')\'\'Donation\'\'(\'\'Default\'\')\'\'root\'\'import\'\'default\'\'donation\'\'template Donation','000001000001000034000010'),('eqb9sWjFEVq0yHunGV8IGw','Subscription (Default)','Subscription (Default) Subscription (Default) root import subscription default ','root/import/subscription-default',1213182595,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Subscription\'\'(\'\'Default\'\')\'\'Subscription\'\'(\'\'Default\'\')\'\'root\'\'import\'\'subscription\'\'default Subscription','000001000001000034000012'),('PBtmpl0000000000000036','Default Admin Toggle Macro','Default Admin Toggle Macro Default Admin Toggle Macro default admin toggle macro ','default_admin_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Admin\'\'Toggle\'\'Macro\'\'Default\'\'Admin\'\'Toggle\'\'Macro\'\'default\'\'admin\'\'toggle\'\'macro Macro\'\'/\'\'AdminToggle','000001000001000017000001000001'),('PBtmpl0000000000000037','Default Account Macro','Default Account Macro Default Account Macro default account macro ','default_account_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Account\'\'Macro\'\'Default\'\'Account\'\'Macro\'\'default\'\'account\'\'macro Macro\'\'/\'\'a_account','000001000001000017000002000001'),('PBtmpl0000000000000038','Default Editable Toggle Macro','Default Editable Toggle Macro Default Editable Toggle Macro default editable toggle macro ','default_editable_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Editable\'\'Toggle\'\'Macro\'\'Default\'\'Editable\'\'Toggle\'\'Macro\'\'default\'\'editable\'\'toggle\'\'macro Macro\'\'/\'\'EditableToggle','000001000001000017000003000001'),('PBtmpl0000000000000040','Default Group Add Macro','Default Group Add Macro Default Group Add Macro default group add macro ','default_group_add_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Group\'\'Add\'\'Macro\'\'Default\'\'Group\'\'Add\'\'Macro\'\'default\'\'group\'\'add\'\'macro Macro\'\'/\'\'GroupAdd','000001000001000017000005000001'),('PBtmpl0000000000000041','Default Group Delete Macro','Default Group Delete Macro Default Group Delete Macro default group delete macro ','default_group_delete_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Group\'\'Delete\'\'Macro\'\'Default\'\'Group\'\'Delete\'\'Macro\'\'default\'\'group\'\'delete\'\'macro Macro\'\'/\'\'GroupDelete','000001000001000017000006000001'),('PBtmpl0000000000000042','Default Homelink','Default Homelink Default Homelink default homelink ','default_homelink',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Homelink\'\'Default\'\'Homelink\'\'default\'\'homelink Macro\'\'/\'\'H_homeLink','000001000001000017000007000001'),('PBtmpl0000000000000043','Default LoginToggle','Default LoginToggle Default LoginToggle default logintoggle ','default_logintoggle',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LoginToggle\'\'Default\'\'LoginToggle\'\'default\'\'logintoggle Macro\'\'/\'\'LoginToggle','000001000001000017000008000001'),('PBtmpl0000000000000045','Default Make Printable','Default Make Printable Default Make Printable default make printable ','default_make_printable',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Make\'\'Printable\'\'Default\'\'Make\'\'Printable\'\'default\'\'make\'\'printable Macro\'\'/\'\'r_printable','000001000001000017000011000001'),('PBtmpl0000000000000091','File no icon','File no icon File no icon file no icon ','file_no_icon',1124395696,1129049189,'3','7','12','WebGUI::Asset::Template',1,'File\'\'no\'\'icon\'\'File\'\'no\'\'icon\'\'file\'\'no\'\'icon Macro\'\'/\'\'File','000001000001000017000004000002'),('PBtmpl0000000000000125','Left Column','Left Column Left Column left column ','left_column',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Column\'\'Left\'\'Column\'\'left\'\'column Layout','000001000001000016000004'),('PBtmpl0000000000000132','Empty','Empty Empty empty ','empty',1124395696,1129049190,'3','7','12','WebGUI::Asset::Template',1,'Empty\'\'Empty\'\'empty style','000001000001000038000004'),('PBtmpl0000000000000140','Default Shortcut','Default Shortcut Default Shortcut pbtmpl0000000000000140 ','pbtmpl0000000000000140',1124395696,1129573244,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Shortcut\'\'Default\'\'Shortcut\'\'pbtmpl0000000000000140 Shortcut','000001000001000035000001'),('PBtmpl0000000000000142','Default RSS','Default RSS Default RSS pbtmpl0000000000000142 ','pbtmpl0000000000000142',1133743238,1171466654,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'RSS\'\'Default\'\'RSS\'\'pbtmpl0000000000000142 RSSCapable\'\'/\'\'RSS','000001000001000005000026'),('ZipArchiveTMPL00000001','Default Zip Archive Template','Default Zip Archive Template Default Zip Archive Template zip archive template ','zip-archive-template',1133743240,1169738426,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Zip\'\'Archive\'\'Template\'\'Default\'\'Zip\'\'Archive\'\'Template\'\'zip\'\'archive\'\'template ZipArchiveAsset','000001000001000049000001'),('PBasset000000000000002','Import Node','Import Node Import root import ','root/import',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Import\'\'Node\'\'Import\'\'root\'\'import','000001000001'),('2TqQc4OISddWCZmRY1_m8A','The Latest News','The Latest News The Latest News the latest news ','the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'The\'\'Latest\'\'News\'\'The\'\'Latest\'\'News\'\'the\'\'latest\'\'news','000001000002000003'),('68sKwDgf9cGH58-NZcU4lg','Home','Home Home home ','home',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Home\'\'Home\'\'home','000001000002'),('8Bb8gu-me2mhL3ljFyiWLg','What should you do next?','What should you do next? Your Next Step your next step ','your_next_step',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'What\'\'should\'\'you\'\'do\'\'next\'\'?\'\'Your\'\'Next\'\'Step\'\'your\'\'next\'\'step','000001000002000002'),('Swf6L8poXKc7hUaNPkBevw','Tell A Friend','Tell A Friend Tell A Friend tell a friend ','tell_a_friend',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Tell\'\'A\'\'Friend\'\'Tell\'\'A\'\'Friend\'\'tell\'\'a\'\'friend','000001000002000004'),('_iHetEvMQUOoxS-T2CM0sQ','Getting Started','Getting Started Getting Started getting started ','getting_started',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Getting\'\'Started\'\'Getting\'\'Started\'\'getting\'\'started','000001000002000001'),('x3OFY6OJh_qsXkZfPwug4A','Site Map','Site Map Site Map site map ','site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Site\'\'Map\'\'Site\'\'Map\'\'site\'\'map','000001000002000006'),('PBnav00000000000000001','crumbTrail','crumbTrail crumbTrail crumbtrail ','crumbtrail',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crumbTrail\'\'crumbTrail\'\'crumbtrail','000001000001000022000009'),('PBnav00000000000000002','SpecificSubMenuVertical','SpecificSubMenuVertical SpecificSubMenuVertical specificsubmenuvertical ','specificsubmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuVertical\'\'SpecificSubMenuVertical\'\'specificsubmenuvertical','000001000001000022000018'),('PBnav00000000000000006','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal SpecificSubMenuHorizontal specificsubmenuhorizontal ','specificsubmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuHorizontal\'\'SpecificSubMenuHorizontal\'\'specificsubmenuhorizontal','000001000001000022000019'),('PBnav00000000000000007','TopLevelMenuVertical','TopLevelMenuVertical TopLevelMenuVertical toplevelmenuvertical ','toplevelmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuVertical\'\'TopLevelMenuVertical\'\'toplevelmenuvertical','000001000001000022000020'),('PBnav00000000000000008','TopLevelMenuHorizontal','TopLevelMenuHorizontal TopLevelMenuHorizontal toplevelmenuhorizontal ','toplevelmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuHorizontal\'\'TopLevelMenuHorizontal\'\'toplevelmenuhorizontal','000001000001000022000021'),('PBnav00000000000000009','RootTab','RootTab RootTab roottab ','roottab',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'RootTab\'\'roottab','000001000001000022000022'),('PBnav00000000000000010','TopDropMenu','TopDropMenu TopDropMenu topdropmenu ','topdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopDropMenu\'\'TopDropMenu\'\'topdropmenu','000001000001000022000023'),('PBnav00000000000000011','dtree','dtree dtree dtree ','dtree',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'dtree\'\'dtree\'\'dtree','000001000001000022000024'),('PBnav00000000000000012','coolmenu','coolmenu coolmenu coolmenu ','coolmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'coolmenu\'\'coolmenu\'\'coolmenu','000001000001000022000025'),('PBnav00000000000000013','Synopsis','Synopsis Synopsis synopsis ','synopsis',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Synopsis\'\'Synopsis\'\'synopsis','000001000001000022000026'),('PBnav00000000000000014','FlexMenu','FlexMenu FlexMenu flexmenu ','flexmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'FlexMenu\'\'FlexMenu\'\'flexmenu','000001000001000022000010'),('PBnav00000000000000015','currentMenuVertical','currentMenuVertical currentMenuVertical currentmenuvertical ','currentmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuVertical\'\'currentMenuVertical\'\'currentmenuvertical','000001000001000022000011'),('PBnav00000000000000016','currentMenuHorizontal','currentMenuHorizontal currentMenuHorizontal currentmenuhorizontal ','currentmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuHorizontal\'\'currentMenuHorizontal\'\'currentmenuhorizontal','000001000001000022000012'),('PBnav00000000000000017','PreviousDropMenu','PreviousDropMenu PreviousDropMenu previousdropmenu ','previousdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'PreviousDropMenu\'\'PreviousDropMenu\'\'previousdropmenu','000001000001000022000013'),('PBnav00000000000000018','previousMenuVertical','previousMenuVertical previousMenuVertical previousmenuvertical ','previousmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuVertical\'\'previousMenuVertical\'\'previousmenuvertical','000001000001000022000014'),('PBnav00000000000000019','previousMenuHorizontal','previousMenuHorizontal previousMenuHorizontal previousmenuhorizontal ','previousmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuHorizontal\'\'previousMenuHorizontal\'\'previousmenuhorizontal','000001000001000022000015'),('PBnav00000000000000020','rootmenu','rootmenu rootmenu rootmenu ','rootmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'rootmenu\'\'rootmenu\'\'rootmenu','000001000001000022000016'),('PBnav00000000000000021','SpecificDropMenu','SpecificDropMenu SpecificDropMenu specificdropmenu ','specificdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificDropMenu\'\'SpecificDropMenu\'\'specificdropmenu','000001000001000022000017'),('pJd5TLAjfWMVXD6sCRLwUg','Site Map','Site Map Site Map site map site map ','site_map/site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Site\'\'Map\'\'Site\'\'Map\'\'site\'\'map\'\'site\'\'map','000001000002000006000001'),('fK-HMSboA3uu0c1KYkYspA','The Latest News','This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','the_latest_news/the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::SyndicatedContent',1,'The\'\'Latest\'\'News\'\'The\'\'Latest\'\'News\'\'the\'\'latest\'\'news\'\'the\'\'latest\'\'news\'\'This\'\'is\'\'the\'\'latest\'\'news\'\'from\'\'Plain\'\'Black\'\'and\'\'WebGUI\'\'pulled\'\'directly\'\'from\'\'the\'\'site\'\'every\'\'hour\'\'.','000001000002000003000001'),('WikiFrontTmpl000000001','Default Wiki Front Page','Default Wiki Front Page Default Wiki Front Page default wiki front page ','default-wiki-front-page',1165460175,1185754572,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Front\'\'Page\'\'Default\'\'Wiki\'\'Front\'\'Page\'\'default\'\'wiki\'\'front\'\'page WikiMaster_front','000001000001000048000002'),('WikiSearchTmpl00000001','Default Wiki Search','Default Wiki Search Default Wiki Search default wiki search ','default-wiki-search',1165460175,1168480840,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Search\'\'Default\'\'Wiki\'\'Search\'\'default\'\'wiki\'\'search WikiMaster_search','000001000001000048000003'),('WikiPHTmpl000000000001','Default Page History','Default Page History Default Page History default wiki page history ','default-wiki-page-history',1165460175,1165460175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'History\'\'Default\'\'Page\'\'History\'\'default\'\'wiki\'\'page\'\'history WikiPage_pageHistory','000001000001000048000004'),('WikiPageTmpl0000000001','Default Wiki Page','Default Wiki Page Default Wiki Page default wiki page ','default-wiki-page',1165460175,1229706257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Page\'\'Default\'\'Wiki\'\'Page\'\'default\'\'wiki\'\'page WikiPage','000001000001000048000005'),('WikiPageEditTmpl000001','Default Wiki Page Edit','Default Wiki Page Edit Default Wiki Page Edit default wiki page edit ','default-wiki-page-edit',1165460175,1221692341,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Page\'\'Edit\'\'Default\'\'Wiki\'\'Page\'\'Edit\'\'default\'\'wiki\'\'page\'\'edit WikiPage_edit','000001000001000048000006'),('WikiMPTmpl000000000001','Default Most Popular','Default Most Popular Default Most Popular default wiki most popular ','default-wiki-most-popular',1165460175,1165460175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Most\'\'Popular\'\'Default\'\'Most\'\'Popular\'\'default\'\'wiki\'\'most\'\'popular WikiMaster_mostPopular','000001000001000048000007'),('SQLReportDownload00001','SQLReport Download Default Template','SQLReport Download Default Template untitled SQLReportDownload0001 ','SQLReportDownload0001',1171466654,1171466654,'3','7','12','WebGUI::Asset::Template',1,'SQLReport\'\'Download\'\'Default\'\'Template\'\'untitled\'\'SQLReportDownload0001 SQLReport\'\'/\'\'Download','000001000001000036000002'),('newsletter000000000001',' Summary Newsletter (default)',' Summary Newsletter (default) Summary Newsletter newsletterdefaulttemplate ','newsletterdefaulttemplate',1185754569,1185754569,'3','7','3','WebGUI::Asset::Template',1,'Summary\'\'Newsletter\'\'(\'\'default\'\')\'\'Summary\'\'Newsletter\'\'newsletterdefaulttemplate newsletter','000001000001000023000001'),('newslettercs0000000001','Newsletter Manager (default)','Newsletter Manager (default) Newsletter Manager newslettercstemplate ','newslettercstemplate',1185754569,1226896423,'3','7','3','WebGUI::Asset::Template',1,'Newsletter\'\'Manager\'\'(\'\'default\'\')\'\'Newsletter\'\'Manager\'\'newslettercstemplate newsletter','000001000001000023000002'),('newslettersubscrip0001','My Subscriptions (default)','My Subscriptions (default) My Subscriptions newslettermysubscriptionstemplate ','newslettermysubscriptionstemplate',1185754569,1221692339,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Subscriptions\'\'(\'\'default\'\')\'\'My\'\'Subscriptions\'\'newslettermysubscriptionstemplate newsletter\'\'/\'\'mysubscriptions','000001000001000023000003'),('AjhlNO3wZvN5k4i4qioWcg','Default Answer Edit','Default Answer Edit Default Answer Edit root import survey default answer edit ','root/import/survey/default-answer-edit',1226009658,1232726656,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Answer\'\'Edit\'\'Default\'\'Answer\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'answer\'\'edit Survey\'\'/\'\'Edit','000001000001000039000010'),('QHn6T9rU7KsnS3Y70KCNTg','Account','Account Account root import account ','root/import/account',1227080251,1227080251,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Account\'\'Account\'\'root\'\'import\'\'account','000001000001000053'),('HPDOcsj4gBme8D4svHodBw','Profile','Profile Profile root import account profile ','root/import/account/profile',1225404573,1225404573,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile\'\'Profile\'\'root\'\'import\'\'account\'\'profile','000001000001000053000001'),('d8jMMMRddSQ7twP4l1ZSIw','Default Survey Take','Default Survey Take Default Survey Take root import survey default survey take ','root/import/survey/default-survey-take',1227248175,1227248175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Take\'\'Default\'\'Survey\'\'Take\'\'root\'\'import\'\'survey\'\'default\'\'survey\'\'take Survey\'\'/\'\'Take','000001000001000039000006'),('WikiKeyword00000000001',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword (default) Wiki Pages By Keyword wiki master by keyword template.tmpl ','wiki-master-by-keyword-template.tmpl',1185754571,1185754571,'3','7','3','WebGUI::Asset::Template',1,'Wiki\'\'Pages\'\'By\'\'Keyword\'\'(\'\'default\'\')\'\'Wiki\'\'Pages\'\'By\'\'Keyword\'\'wiki\'\'master\'\'by\'\'keyword\'\'template\'\'.\'\'tmpl WikiMaster_byKeyword','000001000001000048000008'),('tempspace0000000000000','Tempspace','Tempspace Tempspace tempspace ','tempspace',1185754574,1185754574,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Tempspace\'\'Tempspace\'\'tempspace','000001000004'),('iLzlwGmwrvzlGHXKzaDyjA','Messaging','Messaging Messaging root import messaging ','root/import/messaging',1199479244,1222804090,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Messaging\'\'Messaging\'\'root\'\'import\'\'messaging','000001000001000020'),('1oBRscNIcFOI-pETrCOspA','Default Section Edit','Default Section Edit Default Section Edit root import survey default section edit ','root/import/survey/default-section-edit',1226009642,1232648656,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Section\'\'Edit\'\'Default\'\'Section\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'section\'\'edit Survey\'\'/\'\'Edit','000001000001000039000008'),('gI_TxK-5S4DNuv42wpImmw','Gallery Templates',' ','root/import/gallery-templates',1197330678,1213734379,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Gallery\'\'Templates\'\'Gallery\'\'Templates\'\'root\'\'import\'\'gallery\'\'templates','000001000001000011'),('jME5BEDYVDlBZ8jIQA9-jQ','Default Gallery Search','Default Gallery Search Default Gallery Search root import gallery templates default gallery search ','root/import/gallery-templates/default-gallery-search',1197927169,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Search\'\'Default\'\'Gallery\'\'Search\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'search Gallery\'\'/\'\'Search','000001000001000011000001'),('azCqD0IjdQSlM3ar29k5Sg','Default Gallery List Albums View','Default Gallery List Albums View Default Gallery List Albums View root import gallery templates default gallery list albums view ','root/import/gallery-templates/default-gallery-list-albums-view',1197881748,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Albums\'\'View\'\'Default\'\'Gallery\'\'List\'\'Albums\'\'View\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'albums\'\'view Gallery\'\'/\'\'ListAlbums','000001000001000011000002'),('05FpjceLYhq4csF1Kww1KQ','Default Gallery View Album','Default Gallery View Album Default Gallery View Album root import gallery templates default gallery view album ','root/import/gallery-templates/default-gallery-view-album',1197879361,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Default\'\'Gallery\'\'View\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album GalleryAlbum\'\'/\'\'View','000001000001000011000003'),('q5O62aH4pjUXsrQR3Pq4lw','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails Default Gallery View Album Thumbnails root import gallery templates default gallery view album thumbnails ','root/import/gallery-templates/default-gallery-view-album-thumbnails',1197825772,1230585542,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Thumbnails\'\'Default\'\'Gallery\'\'View\'\'Album\'\'Thumbnails\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album\'\'thumbnails GalleryAlbum\'\'/\'\'ViewThumbnails','000001000001000011000004'),('KAMdiUdJykjN02CPHpyZOw','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow Default Gallery View Album Slideshow root import gallery templates default gallery view album slideshow ','root/import/gallery-templates/default-gallery-view-album-slideshow',1197825787,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Slideshow\'\'Default\'\'Gallery\'\'View\'\'Album\'\'Slideshow\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album\'\'slideshow GalleryAlbum\'\'/\'\'ViewSlideshow','000001000001000011000005'),('OkphOEdaSGTXnFGhK4GT5A','Default Gallery List Files For User','Default Gallery List Files For User Default Gallery List Files For User root import gallery templates default gallery list files for user ','root/import/gallery-templates/default-gallery-list-files-for-user',1197825794,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'files\'\'for\'\'user Gallery\'\'/\'\'ListFilesForUser','000001000001000011000006'),('TEId5V-jEvUULsZA0wuRuA','Default Gallery View Photo','Default Gallery View Photo Default Gallery View Photo root import gallery templates default gallery view photo ','root/import/gallery-templates/default-gallery-view-photo',1197989443,1230702582,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Photo\'\'Default\'\'Gallery\'\'View\'\'Photo\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'photo GalleryFile\'\'/\'\'View','000001000001000011000007'),('6X-7Twabn5KKO_AbgK3PEw','Default Gallery Edit Album','Default Gallery Edit Album Default Gallery Edit Album root import gallery templates default gallery edit album ','root/import/gallery-templates/default-gallery-edit-album',1197987780,1230585542,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Album\'\'Default\'\'Gallery\'\'Edit\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'album GalleryAlbum\'\'/\'\'Edit','000001000001000011000008'),('7JCTAiu1U_bT9ldr655Blw','Default Gallery Edit Photo','Default Gallery Edit Photo Default Gallery Edit Photo root import gallery templates default gallery edit photo ','root/import/gallery-templates/default-gallery-edit-photo',1197825824,1230585543,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Photo\'\'Default\'\'Gallery\'\'Edit\'\'Photo\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'photo GalleryFile\'\'/\'\'Edit','000001000001000011000009'),('0X4Q3tBWUb_thsVbsYz9xQ','Default Gallery Add Archive','Default Gallery Add Archive Default Gallery Add Archive root import gallery templates default gallery add archive ','root/import/gallery-templates/default-gallery-add-archive',1197987372,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Add\'\'Archive\'\'Default\'\'Gallery\'\'Add\'\'Archive\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'add\'\'archive GalleryAlbum\'\'/\'\'AddArchive','000001000001000011000010'),('m3IbBavqzuKDd2PGGhKPlA','Default Gallery Make Shortcut','Default Gallery Make Shortcut Default Gallery Make Shortcut root import gallery templates default gallery make shortcut ','root/import/gallery-templates/default-gallery-make-shortcut',1197825845,1230585543,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Make\'\'Shortcut\'\'Default\'\'Gallery\'\'Make\'\'Shortcut\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'make\'\'shortcut GalleryFile\'\'/\'\'MakeShortcut','000001000001000011000011'),('UTNFeV7B_aSCRmmaFCq4Vw','Default Gallery Delete Album','Default Gallery Delete Album Default Gallery Delete Album root import gallery templates default gallery delete album ','root/import/gallery-templates/default-gallery-delete-album',1197825856,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Delete\'\'Album\'\'Default\'\'Gallery\'\'Delete\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'delete\'\'album GalleryAlbum\'\'/\'\'Delete','000001000001000011000012'),('zcX-wIUct0S_np14xxOA-A','Default Gallery Delete File','Default Gallery Delete File Default Gallery Delete File root import gallery templates default gallery delete file ','root/import/gallery-templates/default-gallery-delete-file',1197825866,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Delete\'\'File\'\'Default\'\'Gallery\'\'Delete\'\'File\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'delete\'\'file GalleryFile\'\'/\'\'Delete','000001000001000011000013'),('MBZK_LPVzqhb4TV4mMRTJg','admin_ie7.css','admin_ie7.css admin_ie7.css root import gallery templates admin ie7.css ','root/import/gallery-templates/admin_ie7.css',1197330678,1197330678,'3','7','3','WebGUI::Asset::Snippet',1,'admin_ie7\'\'.\'\'css\'\'admin_ie7\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'admin\'\'ie7\'\'.\'\'css input\'\'.\'\'captionEnter\'\'{\'\'margin\'\'-\'\'left\'\':\'\'-\'\'5px\'\';\'\'width\'\':\'\'92px\'\';\'\'}','000001000001000011000014'),('_hELmIJfgbAyXFNqPyApxQ','admin.css','admin.css admin.css root import gallery templates admin.css ','root/import/gallery-templates/admin.css',1197330678,1213309523,'3','7','3','WebGUI::Asset::Snippet',1,'admin\'\'.\'\'css\'\'admin\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'admin\'\'.\'\'css #\'\'adminWrapper\'\'{\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'2\'\';\'\'}\'\'h2\'\'{\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'}\'\'.\'\'messageStyle\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'8px\'\';\'\'}\'\'.\'\'adminButton\'\'{\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'e0e0e0\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'padding\'\':\'\'0\'\'.\'\'5em\'\'1em\'\';\'\'}\'\'.\'\'adminTable\'\'{\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'F0F0F0\'\';\'\'color\'\':\'\'black\'\';\'\'width\'\':\'\'320px\'\';\'\'padding\'\':\'\'5px\'\';\'\'}\'\'.\'\'adminTable\'\'select\'\',\'\'.\'\'adminTable\'\'input\'\',\'\'.\'\'adminTable\'\'textarea\'\'{\'\'border\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'.\'\'label\'\'{\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'1px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'galleryOrg\'\'{\'\'position\'\':\'\'relative\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'border\'\':\'\'gray\'\'solid\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\'-\'\'top\'\':\'\'3px\'\';\'\'width\'\':\'\'95\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'DEDEDE\'\'}\'\'.\'\'galleryOrg\'\'.\'\'left\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'36\'\'%\'\';\'\'}\'\'.\'\'galleryOrg\'\'.\'\'right\'\'{\'\'width\'\':\'\'63\'\'%\'\';\'\'}\'\'.\'\'galleryOrg\'\'img\'\'{\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'150px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'}\'\'.\'\'promote\'\'{\'\'margin\'\'-\'\'left\'\':\'\'3px\'\';\'\'}\'\'.\'\'promote\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'width\'\':\'\'16px\'\';\'\'}\'\'.\'\'demote\'\'{\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'}\'\'.\'\'demote\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'width\'\':\'\'16px\'\';\'\'}\'\'.\'\'delete\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'}\'\'.\'\'numbering\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'padding\'\':\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomRight\'\':\'\'5px\'\'}\'\'input\'\'.\'\'captionEnter\'\'{\'\'width\'\':\'\'93px\'\';\'\'clear\'\':\'\'both\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'3px\'\'}\'\'.\'\'galleryOrg\'\'button\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\':\'\'none\'\';\'\'}\'\'.\'\'galleryOrg\'\'button\'\'img\'\'{\'\'width\'\':\'\'16px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'galleryOrg\'\'.\'\'synopsis\'\'input\'\'{\'\'width\'\':\'\'80px\'\';\'\'}','000001000001000011000015'),('kaPRSaf8UKiskiGEgJgLAw','images','images images root import gallery templates images ','root/import/gallery-templates/images',1197330678,1197330678,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'gallery\'\'templates\'\'images','000001000001000011000017'),('bANo8aiAPA7aY_oQZKxIWw','rss.gif','rss.gif rss.gif root import gallery templates images rss.gif ','root/import/gallery-templates/images/rss.gif',1197330678,1197330678,'3','7','3','WebGUI::Asset::File::Image',1,'rss\'\'.\'\'gif\'\'rss\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'rss\'\'.\'\'gif','000001000001000011000017000001'),('2ci_v2d4x4uvyjTRlC49OA','moveDown.gif','moveDown.gif moveDown.gif root import gallery templates images movedown.gif ','root/import/gallery-templates/images/movedown.gif',1197330678,1209499188,'3','7','3','WebGUI::Asset::File::Image',1,'moveDown\'\'.\'\'gif\'\'moveDown\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'movedown\'\'.\'\'gif','000001000001000011000017000002'),('O-EsSzKgAk1KolFT-x_KsA','moveUp.gif','moveUp.gif moveUp.gif root import gallery templates images moveup.gif ','root/import/gallery-templates/images/moveup.gif',1197330678,1209499188,'3','7','3','WebGUI::Asset::File::Image',1,'moveUp\'\'.\'\'gif\'\'moveUp\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'moveup\'\'.\'\'gif','000001000001000011000017000003'),('fdd8tGExyVwHyrB8RBbKXg','next.gif','next.gif next.gif root import gallery templates images next.gif ','root/import/gallery-templates/images/next.gif',1197330839,1197330839,'3','7','3','WebGUI::Asset::File::Image',1,'next\'\'.\'\'gif\'\'next\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'next\'\'.\'\'gif','000001000001000011000017000004'),('BpisgHl4ZDcSECJp6oib1w','play.gif','play.gif play.gif root import gallery templates images play.gif ','root/import/gallery-templates/images/play.gif',1197330840,1197330840,'3','7','3','WebGUI::Asset::File::Image',1,'play\'\'.\'\'gif\'\'play\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'play\'\'.\'\'gif','000001000001000011000017000005'),('zshreRgPAXtnF0DtVbQ1Yg','previous.gif','previous.gif previous.gif root import gallery templates images previous.gif ','root/import/gallery-templates/images/previous.gif',1197330840,1197330840,'3','7','3','WebGUI::Asset::File::Image',1,'previous\'\'.\'\'gif\'\'previous\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'previous\'\'.\'\'gif','000001000001000011000017000006'),('mM3bjP_iG9sv5nQb4S17tQ','Default Gallery View Album RSS','Default Gallery View Album RSS Default Gallery View Album RSS root import gallery templates default gallery album rss ','root/import/gallery-templates/default-gallery-album-rss',1197879662,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'RSS\'\'Default\'\'Gallery\'\'View\'\'Album\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'album\'\'rss GalleryAlbum\'\'/\'\'ViewRss','000001000001000011000018'),('ilu5BrM-VGaOsec9Lm7M6Q','Default Gallery List Albums RSS','Default Gallery List Albums RSS Default Gallery List Albums RSS root import gallery templates default gallery list albums rss ','root/import/gallery-templates/default-gallery-list-albums-rss',1197878780,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Albums\'\'RSS\'\'Default\'\'Gallery\'\'List\'\'Albums\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'albums\'\'rss Gallery\'\'/\'\'ListAlbumsRss','000001000001000011000019'),('-ANLpoTEP-n4POAdRxCzRw','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS Default Gallery List Files For User RSS root import gallery templates default gallery list files for user rss ','root/import/gallery-templates/default-gallery-list-files-for-user-rss',1197880641,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'RSS\'\'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'files\'\'for\'\'user\'\'rss Gallery\'\'/\'\'ListFilesForUserRss','000001000001000011000020'),('OxJWQgnGsgyGohP2L3zJPQ','Default Gallery Edit Comment','Default Gallery Edit Comment Default Gallery Edit Comment root import gallery templates default gallery edit comment ','root/import/gallery-templates/default-gallery-edit-comment',1204663962,1230585543,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Comment\'\'Default\'\'Gallery\'\'Edit\'\'Comment\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'comment GalleryFile\'\'/\'\'EditComment','000001000001000011000021'),('Tsg7xmPYv782j6IVz7yHFg','Calendar Templates','Calendar Templates Calendar Templates root import calendar templates ','root/import/calendar-templates',1204890713,1213244777,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Calendar\'\'Templates\'\'Calendar\'\'Templates\'\'root\'\'import\'\'calendar\'\'templates','000001000001000004'),('kj3b-X3i6zRKnhLb4ZiCLw','Default Calendar List View','Default Calendar List View Default Calendar List View root import calendar templates default calendar list view ','root/import/calendar-templates/default-calendar-list-view',1204890713,1222574694,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'List\'\'View\'\'Default\'\'Calendar\'\'List\'\'View\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'list\'\'view Calendar\'\'/\'\'List','000001000001000004000001'),('uRL9qtk7Rb0YRJ41LmHOJw','Default Calendar Print List View','Default Calendar Print List View Default Calendar Print List View root import calendar templates default calendar print list view ','root/import/calendar-templates/default-calendar-print-list-view',1204890713,1229311072,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'List\'\'View\'\'Default\'\'Calendar\'\'Print\'\'List\'\'View\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'list\'\'view Calendar\'\'/\'\'Print\'\'/\'\'List','000001000001000004000002'),('CalendarWeek0000000001','Default Calendar Week','Default Calendar Week Default Calendar Week root import calendar templates default calendar week ','root/import/calendar-templates/default-calendar-week',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Week\'\'Default\'\'Calendar\'\'Week\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'week Calendar\'\'/\'\'Week','000001000001000004000003'),('CalendarDay00000000001','Default Calendar Day','Default Calendar Day Default Calendar Day root import calendar templates default calendar day ','root/import/calendar-templates/default-calendar-day',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Day\'\'Default\'\'Calendar\'\'Day\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'day Calendar\'\'/\'\'Day','000001000001000004000004'),('CalendarEvent000000001','Default Calendar Event','Default Calendar Event Default Calendar Event root import calendar templates default calendar event ','root/import/calendar-templates/default-calendar-event',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Event\'\'Default\'\'Calendar\'\'Event\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'event Calendar\'\'/\'\'Event','000001000001000004000005'),('CalendarEventEdit00001','Default Calendar Event Edit','Default Calendar Event Edit Default Calendar Event Edit root import calendar templates default calendar event edit ','root/import/calendar-templates/default-calendar-event-edit',1205160982,1205160982,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Event\'\'Edit\'\'Default\'\'Calendar\'\'Event\'\'Edit\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'event\'\'edit Calendar\'\'/\'\'EventEdit','000001000001000004000006'),('CalendarMonth000000001','Default Calendar Month','Default Calendar Month Default Calendar Month root import calendar templates default calendar month ','root/import/calendar-templates/default-calendar-month',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Month\'\'Default\'\'Calendar\'\'Month\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'month Calendar\'\'/\'\'Month','000001000001000004000007'),('CalendarSearch00000001','Default Calendar Search','Default Calendar Search Default Calendar Search root import calendar templates default calendar search ','root/import/calendar-templates/default-calendar-search',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Search\'\'Default\'\'Calendar\'\'Search\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'search Calendar\'\'/\'\'Search','000001000001000004000008'),('CalendarPrintEvent0001','Default Calendar Print Event','Default Calendar Print Event Default Calendar Print Event root import calendar templates default calendar print event ','root/import/calendar-templates/default-calendar-print-event',1204890714,1215396964,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Event\'\'Default\'\'Calendar\'\'Print\'\'Event\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'event Calendar\'\'/\'\'Print\'\'/\'\'Event','000001000001000004000009'),('CalendarPrintMonth0001','Default Calendar Print Month','Default Calendar Print Month Default Calendar Print Month root import calendar templates default calendar print month ','root/import/calendar-templates/default-calendar-print-month',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Month\'\'Default\'\'Calendar\'\'Print\'\'Month\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'month Calendar\'\'/\'\'Print\'\'/\'\'Month','000001000001000004000010'),('CalendarPrintWeek00001','Default Calendar Print Week','Default Calendar Print Week Default Calendar Print Week root import calendar templates default calendar print week ','root/import/calendar-templates/default-calendar-print-week',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Week\'\'Default\'\'Calendar\'\'Print\'\'Week\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'week Calendar\'\'/\'\'Print\'\'/\'\'Week','000001000001000004000011'),('CalendarPrintDay000001','Default Calendar Print Day','Default Calendar Print Day Default Calendar Print Day root import calendar templates default calendar print day ','root/import/calendar-templates/default-calendar-print-day',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Day\'\'Default\'\'Calendar\'\'Print\'\'Day\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'day Calendar\'\'/\'\'Print\'\'/\'\'Day','000001000001000004000012'),('jnYdqDkUR8x7Pv2eGR1qTA','Thingy Templates','Thingy Templates Thingy Templates root import thingy templates ','root/import/thingy-templates',1205431513,1216250666,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Thingy\'\'Templates\'\'Thingy\'\'Templates\'\'root\'\'import\'\'thingy\'\'templates','000001000001000041'),('ThingyTmpl000000000001','Default Thingy','Default Thingy Default Thingy templates thingy default ','templates/thingy-default',1205003608,1227753116,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Default\'\'Thingy\'\'templates\'\'thingy\'\'default Thingy','000001000001000041000001'),('ThingyTmpl000000000002','Default Thingy View Thing','Default Thingy View Thing Default Thingy View Thing templates thingy default view thing ','templates/thingy-default-view-thing',1205003676,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'View\'\'Thing\'\'Default\'\'Thingy\'\'View\'\'Thing\'\'templates\'\'thingy\'\'default\'\'view\'\'thing Thingy\'\'/\'\'ViewThing','000001000001000041000002'),('ThingyTmpl000000000003','Default Thingy Edit Thing','Default Thingy Edit Thing Default Thingy Edit Thing templates thingy default edit thing ','templates/thingy-default-edit-thing',1205003711,1224518002,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Edit\'\'Thing\'\'Default\'\'Thingy\'\'Edit\'\'Thing\'\'templates\'\'thingy\'\'default\'\'edit\'\'thing Thingy\'\'/\'\'EditThing','000001000001000041000003'),('ThingyTmpl000000000004','Default Thingy Search Thing','Default Thingy Search Thing Default Thingy Search Thing templates thingy default search thing ','templates/thingy-default-search-thing',1205158717,1227044214,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Search\'\'Thing\'\'Default\'\'Thingy\'\'Search\'\'Thing\'\'templates\'\'thingy\'\'default\'\'search\'\'thing Thingy\'\'/\'\'SearchThing','000001000001000041000004'),('7fE8md51vTCcuJFOvxNaGA','thumbnails.js','thumbnails.js thumbnails.js root import gallery templates thumbnails.js ','root/import/gallery-templates/thumbnails.js',1205443600,1209503742,'3','7','3','WebGUI::Asset::Snippet',1,'thumbnails\'\'.\'\'js\'\'thumbnails\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'thumbnails\'\'.\'\'js /\'\'/\'\'Depends\'\'on\'\'BrowserDetect\'\'.\'\'js\'\'/\'\'/\'\'Make\'\'the\'\'thumbnails\'\'a\'\'little\'\'bigger\'\'while\'\'the\'\'mouse\'\'is\'\'over\'\'them\'\'function\'\'scaleThumbUp\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'/\'\'/\'\'IE6\'\'doesn\'\'\'\'\'t\'\'like\'\'to\'\'do\'\'the\'\'right\'\'thing\'\'with\'\'the\'\'CSS\'\'stuff\'\'below\'\',\'\'exclude\'\'it\'\'if\'\'(\'\'BrowserDetect\'\')\'\'{\'\'if\'\'(\'\'BrowserDetect\'\'.\'\'browser\'\'=\'\'=\'\'\"\'\'Explorer\'\'\"\'\'&\'\'&\'\'BrowserDetect\'\'.\'\'version\'\'<\'\'7\'\')\'\'{\'\'return\'\';\'\'}\'\'}\'\'/\'\'/\'\'Make\'\'a\'\'new\'\'image\'\'with\'\'the\'\'same\'\'image\'\'src\'\'as\'\'the\'\'anchor\'\'var\'\'oldImage\'\'=\'\'anchor\'\'.\'\'getElementsByTagName\'\'(\'\'\"\'\'img\'\'\"\'\')\'\'[0]\'\';\'\'var\'\'newContainer\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'div\'\'\"\'\')\'\';\'\'newContainer\'\'.\'\'className\'\'=\'\'\"\'\'thumb\'\'-\'\'popup\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'position\'\'=\'\'\"\'\'absolute\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'zIndex\'\'=\'\'\"\'\'1\'\'\"\'\';\'\'var\'\'newWidth\'\'=\'\'oldImage\'\'.\'\'offsetWidth\'\'*\'\'3\'\';\'\'var\'\'newHeight\'\'=\'\'oldImage\'\'.\'\'offsetHeight\'\'*\'\'3\'\';\'\'var\'\'newLeft\'\'=\'\'(\'\'(\'\'anchor\'\'.\'\'offsetLeft\'\'+\'\'(\'\'anchor\'\'.\'\'offsetWidth\'\'/\'\'2\'\')\'\')\'\'-\'\'(\'\'newWidth\'\'/\'\'2\'\')\'\')\'\';\'\'var\'\'newTop\'\'=\'\'(\'\'(\'\'anchor\'\'.\'\'offsetTop\'\'+\'\'(\'\'anchor\'\'.\'\'offsetHeight\'\'/\'\'2\'\')\'\')\'\'-\'\'(\'\'newHeight\'\'/\'\'2\'\')\'\')\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'left\'\'=\'\'newLeft\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'top\'\'=\'\'newTop\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'width\'\'=\'\'newWidth\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'height\'\'=\'\'newHeight\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'var\'\'newImage\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'img\'\'\"\'\')\'\';\'\'newImage\'\'.\'\'src\'\'=\'\'oldImage\'\'.\'\'src\'\';\'\'newImage\'\'.\'\'style\'\'.\'\'width\'\'=\'\'\"\'\'100\'\'%\'\'\"\'\';\'\'newImage\'\'.\'\'style\'\'.\'\'height\'\'=\'\'\"\'\'100\'\'%\'\'\"\'\';\'\'newContainer\'\'.\'\'appendChild\'\'(\'\'newImage\'\')\'\';\'\'/\'\'/\'\'Make\'\'some\'\'text\'\'for\'\'the\'\'caption\'\'var\'\'caption\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'div\'\'\"\'\')\'\';\'\'caption\'\'.\'\'appendChild\'\'(\'\'document\'\'.\'\'createTextNode\'\'(\'\'anchor\'\'.\'\'title\'\')\'\')\'\';\'\'caption\'\'.\'\'className\'\'=\'\'\"\'\'caption\'\'\"\'\';\'\'newContainer\'\'.\'\'appendChild\'\'(\'\'caption\'\')\'\';\'\'var\'\'newBox\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'a\'\'\"\'\')\'\';\'\'newBox\'\'.\'\'href\'\'=\'\'anchor\'\'.\'\'href\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'position\'\'=\'\'\"\'\'absolute\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'zIndex\'\'=\'\'\"\'\'10\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'left\'\'=\'\'(\'\'anchor\'\'.\'\'offsetLeft\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'top\'\'=\'\'(\'\'anchor\'\'.\'\'offsetTop\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'height\'\'=\'\'(\'\'anchor\'\'.\'\'offsetHeight\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'width\'\'=\'\'(\'\'anchor\'\'.\'\'offsetWidth\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'border\'\'=\'\'\"\'\'1px\'\'solid\'\'transparent\'\'\"\'\';\'\'anchor\'\'.\'\'parentNode\'\'.\'\'appendChild\'\'(\'\'newContainer\'\')\'\';\'\'anchor\'\'.\'\'parentNode\'\'.\'\'appendChild\'\'(\'\'newBox\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newBox\'\',\'\'\"\'\'click\'\'\"\'\',\'\'function\'\'(\'\')\'\'{\'\'window\'\'.\'\'location\'\'.\'\'href\'\'=\'\'anchor\'\'.\'\'href\'\'}\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newContainer\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'scaleThumbDown\'\',\'\'[\'\'newBox\'\',\'\'newContainer\'\',\'\'caption\'\']\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newBox\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'scaleThumbDown\'\',\'\'[\'\'newBox\'\',\'\'newContainer\'\',\'\'caption\'\']\'\')\'\';\'\'}\'\'function\'\'scaleThumbDown\'\'(\'\'e\'\',\'\'elements\'\')\'\'{\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'elements\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'elements[i]\'\'.\'\'parentNode\'\'.\'\'removeChild\'\'(\'\'elements[i]\'\')\'\';\'\'}\'\'}\'\'var\'\'anchorTimeout\'\';\'\'function\'\'enterAnchor\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'if\'\'(\'\'typeof\'\'anchorTimeout\'\'!\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'clearTimeout\'\'(\'\'anchorTimeout\'\')\'\';\'\'}\'\'anchorTimeout\'\'=\'\'setTimeout\'\'(\'\'function\'\'(\'\')\'\'{\'\'scaleThumbUp\'\'(\'\'e\'\',\'\'anchor\'\')\'\';\'\'}\'\',\'\'150\'\')\'\';\'\'}\'\'function\'\'leaveAnchor\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'if\'\'(\'\'typeof\'\'anchorTimeout\'\'!\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'clearTimeout\'\'(\'\'anchorTimeout\'\')\'\';\'\'}\'\'}\'\'function\'\'initThumb\'\'(\'\')\'\'{\'\'var\'\'anchors\'\'=\'\'YAHOO\'\'.\'\'util\'\'.\'\'Dom\'\'.\'\'getElementsByClassName\'\'(\'\'\"\'\'thumb\'\'\"\'\')\'\';\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'anchors\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'anchors[i]\'\',\'\'\"\'\'mouseover\'\'\"\'\',\'\'enterAnchor\'\',\'\'anchors[i]\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'anchors[i]\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'leaveAnchor\'\',\'\'anchors[i]\'\')\'\';\'\'}\'\'}\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'onDOMReady\'\'(\'\'initThumb\'\')\'\';','000001000001000011000022'),('1oGhfj00KkCzP1ez01AfKA','slideshow.js','slideshow.js slideshow.js root import gallery templates slideshow.js ','root/import/gallery-templates/slideshow.js',1205635970,1218582812,'3','7','3','WebGUI::Asset::Snippet',1,'slideshow\'\'.\'\'js\'\'slideshow\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'slideshow\'\'.\'\'js if\'\'(\'\'typeof\'\'WebGUI\'\'=\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'WebGUI\'\'=\'\'{\'\'}\'\';\'\'}\'\'/\'\'*\'\'*\'\'WebGUI\'\'.\'\'Slideshow\'\'(\'\'config\'\')\'\'Configure\'\'and\'\'return\'\'a\'\'new\'\'Slideshow\'\'object\'\'.\'\'config\'\'is\'\'an\'\'object\'\'with\'\'the\'\'following\'\'properties\'\':\'\'containerId\'\'-\'\'The\'\'ID\'\'of\'\'the\'\'element\'\'that\'\'contains\'\'the\'\'Slideshow\'\'items\'\'.\'\'Defaults\'\'to\'\'\"\'\'slideshow\'\'-\'\'container\'\'\"\'\'currentIndex\'\'-\'\'The\'\'index\'\'of\'\'the\'\'first\'\'item\'\'in\'\'the\'\'Slideshow\'\'.\'\'Defaults\'\'to\'\'0\'\'isPlaying\'\'-\'\'If\'\'true\'\',\'\'the\'\'slideshow\'\'will\'\'begin\'\'immediately\'\'itemClassName\'\'-\'\'The\'\'class\'\'name\'\'of\'\'the\'\'slideshow\'\'items\'\'.\'\'Defaults\'\'to\'\'\"\'\'slideshow\'\'-\'\'item\'\'\"\'\'nextButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'go\'\'to\'\'the\'\'next\'\'item\'\'pauseImageSrc\'\'-\'\'The\'\'URL\'\'to\'\'the\'\'pause\'\'button\'\'image\'\'playDelay\'\'-\'\'The\'\'delay\'\'(\'\'in\'\'milliseconds\'\')\'\'between\'\'slides\'\'.\'\'Defaults\'\'to\'\'5000\'\'playImageSrc\'\'-\'\'The\'\'URL\'\'to\'\'the\'\'play\'\'button\'\'image\'\'playPauseButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'toggle\'\'between\'\'play\'\'and\'\'pause\'\'previousButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'go\'\'to\'\'the\'\'previous\'\'item\'\'wrap\'\'-\'\'If\'\'true\'\',\'\'the\'\'slideshow\'\'will\'\'wrap\'\'around\'\'*\'\'*\'\'*\'\'Control\'\'the\'\'slideshow\'\'To\'\'control\'\'the\'\'slideshow\'\',\'\'you\'\'can\'\'use\'\'the\'\'following\'\'methods\'\':\'\'next\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'next\'\'slide\'\'previous\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'previous\'\'slide\'\'play\'\'(\'\')\'\'-\'\'Play\'\'the\'\'slideshow\'\'pause\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'togglePlay\'\'(\'\')\'\'-\'\'If\'\'it\'\'\'\'\'s\'\'playing\'\',\'\'pause\'\'it\'\'.\'\'If\'\'it\'\'\'\'\'s\'\'paused\'\',\'\'play\'\'it\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'=\'\'function\'\'(\'\'config\'\')\'\'{\'\'this\'\'.\'\'containerId\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'containerId\'\'?\'\'config\'\'.\'\'containerId\'\':\'\'\"\'\'slideshow\'\'-\'\'container\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'currentIndex\'\'?\'\'config\'\'.\'\'currentIndex\'\':\'\'0\'\';\'\'this\'\'.\'\'isPlaying\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'isPlaying\'\'?\'\'config\'\'.\'\'isPlaying\'\':\'\'false\'\';\'\'this\'\'.\'\'itemClassName\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'itemClassName\'\'?\'\'config\'\'.\'\'itemClassName\'\':\'\'\"\'\'slideshow\'\'-\'\'item\'\'\"\'\';\'\'this\'\'.\'\'nextButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'nextButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'pauseImageSrc\'\'=\'\'config\'\'?\'\'config\'\'.\'\'pauseImageSrc\'\':\'\'undefined\'\';\'\'this\'\'.\'\'playDelay\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'playDelay\'\'?\'\'config\'\'.\'\'playDelay\'\':\'\'5000\'\';\'\'this\'\'.\'\'playImageSrc\'\'=\'\'config\'\'?\'\'config\'\'.\'\'playImageSrc\'\':\'\'undefined\'\';\'\'this\'\'.\'\'playPauseButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'playPauseButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'previousButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'previousButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'wrap\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'wrap\'\'?\'\'config\'\'.\'\'wrap\'\':\'\'false\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'onDOMReady\'\'(\'\'this\'\'.\'\'init\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'clearPlayTimeout\'\'(\'\')\'\'Clears\'\'the\'\'timeout\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'clearPlayTimeout\'\'=\'\'function\'\'(\'\')\'\'{\'\'clearTimeout\'\'(\'\'this\'\'.\'\'playTimeout\'\')\'\';\'\'this\'\'.\'\'playTimeout\'\'=\'\'undefined\'\';\'\'}\'\'/\'\'*\'\'*\'\'doPlayTick\'\'(\'\'self\'\')\'\'Performs\'\'the\'\'action\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'and\'\'start\'\'a\'\'new\'\'timeout\'\'.\'\'self\'\'is\'\'a\'\'new\'\'reference\'\'to\'\'the\'\'object\'\'to\'\'get\'\'around\'\'the\'\'scoping\'\'issues\'\'with\'\'setTimeout\'\'(\'\')\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'doPlayTick\'\'=\'\'function\'\'(\'\'self\'\')\'\'{\'\'self\'\'.\'\'showNext\'\'(\'\')\'\';\'\'self\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'getSlideshowContainer\'\'(\'\')\'\'Returns\'\'the\'\'HTMLElement\'\'for\'\'the\'\'Slideshow\'\'container\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'getSlideshowContainer\'\'=\'\'function\'\'(\'\')\'\'{\'\'return\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'containerId\'\')\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'getSlideshowItems\'\'(\'\')\'\'Returns\'\'an\'\'array\'\'of\'\'HTMLElements\'\'for\'\'the\'\'Slideshow\'\'\'\'\'s\'\'items\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'getSlideshowItems\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'YAHOO\'\'.\'\'util\'\'.\'\'Dom\'\'.\'\'getElementsByClassName\'\'(\'\'this\'\'.\'\'itemClassName\'\',\'\'undefined\'\',\'\'this\'\'.\'\'getSlideshowContainer\'\'(\'\')\'\')\'\';\'\'return\'\'items\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'init\'\'(\'\')\'\'Initialize\'\'the\'\'slideshow\'\'.\'\'Performed\'\'after\'\'the\'\'DOM\'\'is\'\'ready\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'init\'\'=\'\'function\'\'(\'\')\'\'{\'\'/\'\'/\'\'Add\'\'handlers\'\'to\'\'buttons\'\'if\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'togglePlay\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'if\'\'(\'\'this\'\'.\'\'nextButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'nextButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'next\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'if\'\'(\'\'this\'\'.\'\'previousButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'previousButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'previous\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'/\'\'/\'\'Hide\'\'all\'\'but\'\'the\'\'currentIndex\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'items\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'if\'\'(\'\'i\'\'!\'\'=\'\'this\'\'.\'\'currentIndex\'\')\'\'{\'\'items[\'\'i\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'}\'\'else\'\'{\'\'items[\'\'i\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'}\'\'}\'\'/\'\'/\'\'Start\'\'it\'\'off\'\'if\'\'necessary\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'next\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'next\'\'=\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'this\'\'.\'\'showNext\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'play\'\'(\'\')\'\'Start\'\'the\'\'slideshow\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'play\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'!\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'isPlaying\'\'=\'\'true\'\';\'\'this\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\'/\'\'*\'\'*\'\'previous\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'and\'\'show\'\'the\'\'previous\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'previous\'\'=\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'this\'\'.\'\'showPrevious\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'pause\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'pause\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'isPlaying\'\'=\'\'false\'\';\'\'this\'\'.\'\'clearPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\'/\'\'*\'\'*\'\'setPlayTimeout\'\'(\'\')\'\'Sets\'\'the\'\'timeout\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'setPlayTimeout\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'self\'\'=\'\'this\'\';\'\'this\'\'.\'\'playTimeout\'\'=\'\'setTimeout\'\'(\'\'function\'\'(\'\')\'\'{\'\'self\'\'.\'\'doPlayTick\'\'(\'\'self\'\')\'\'}\'\',\'\'this\'\'.\'\'playDelay\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'showNext\'\'(\'\')\'\'Show\'\'the\'\'next\'\'slide\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'showNext\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'var\'\'hideIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\';\'\'var\'\'showIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\'+\'\'1\'\';\'\'/\'\'/\'\'Wrap\'\'around\'\'if\'\'(\'\'this\'\'.\'\'wrap\'\'&\'\'&\'\'showIndex\'\'>\'\'=\'\'items\'\'.\'\'length\'\')\'\'{\'\'showIndex\'\'=\'\'0\'\';\'\'}\'\'/\'\'/\'\'Don\'\'\'\'\'t\'\'allow\'\'going\'\'past\'\'the\'\'last\'\'item\'\'else\'\'if\'\'(\'\'showIndex\'\'>\'\'=\'\'items\'\'.\'\'length\'\')\'\'{\'\'return\'\';\'\'}\'\'/\'\'/\'\'Do\'\'the\'\'switch\'\'if\'\'(\'\'items[\'\'hideIndex\'\']\'\')\'\'items[\'\'hideIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'if\'\'(\'\'items[\'\'showIndex\'\']\'\')\'\'{\'\'items[\'\'showIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'showIndex\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'showPrevious\'\'(\'\')\'\'Show\'\'the\'\'previous\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'showPrevious\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'var\'\'hideIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\';\'\'var\'\'showIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\'-\'\'1\'\';\'\'/\'\'/\'\'Wrap\'\'around\'\'if\'\'(\'\'this\'\'.\'\'wrap\'\'&\'\'&\'\'showIndex\'\'<\'\'0\'\')\'\'{\'\'showIndex\'\'=\'\'items\'\'.\'\'length\'\'-\'\'1\'\';\'\'}\'\'/\'\'/\'\'Don\'\'\'\'\'t\'\'allow\'\'going\'\'past\'\'the\'\'last\'\'item\'\'else\'\'if\'\'(\'\'showIndex\'\'<\'\'0\'\')\'\'{\'\'return\'\';\'\'}\'\'/\'\'/\'\'Do\'\'the\'\'switch\'\'items[\'\'hideIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'items[\'\'showIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'showIndex\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'togglePlay\'\'(\'\')\'\'If\'\'it\'\'\'\'\'s\'\'paused\'\',\'\'play\'\'it\'\'.\'\'If\'\'it\'\'\'\'\'s\'\'playing\'\',\'\'pause\'\'it\'\'.\'\'Return\'\'true\'\'if\'\'the\'\'slideshow\'\'is\'\'now\'\'playing\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'togglePlay\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\'=\'\'=\'\'false\'\')\'\'{\'\'this\'\'.\'\'play\'\'(\'\')\'\';\'\'return\'\'true\'\';\'\'}\'\'else\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'updatePlayPauseButton\'\'(\'\')\'\'Update\'\'the\'\'Play\'\'/\'\'Pause\'\'button\'\'to\'\'have\'\'the\'\'correct\'\'image\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'updatePlayPauseButton\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\'&\'\'&\'\'this\'\'.\'\'playImageSrc\'\')\'\'{\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'.\'\'src\'\'=\'\'this\'\'.\'\'pauseImageSrc\'\';\'\'}\'\'else\'\'if\'\'(\'\'this\'\'.\'\'pauseImageSrc\'\')\'\'{\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'.\'\'src\'\'=\'\'this\'\'.\'\'playImageSrc\'\';\'\'}\'\'}\'\'}\'\';','000001000001000011000023'),('3qiVYhNTXMVC5hfsumVHgg','browserdetect.js','browserdetect.js browserdetect.js root import gallery templates browserdetect.js ','root/import/gallery-templates/browserdetect.js',1206743306,1206743306,'3','7','3','WebGUI::Asset::Snippet',1,'browserdetect\'\'.\'\'js\'\'browserdetect\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'browserdetect\'\'.\'\'js var\'\'BrowserDetect\'\'=\'\'{\'\'init\'\':\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'browser\'\'=\'\'this\'\'.\'\'searchString\'\'(\'\'this\'\'.\'\'dataBrowser\'\')\'\'||\'\'\"\'\'An\'\'unknown\'\'browser\'\'\"\'\';\'\'this\'\'.\'\'version\'\'=\'\'this\'\'.\'\'searchVersion\'\'(\'\'navigator\'\'.\'\'userAgent\'\')\'\'||\'\'this\'\'.\'\'searchVersion\'\'(\'\'navigator\'\'.\'\'appVersion\'\')\'\'||\'\'\"\'\'an\'\'unknown\'\'version\'\'\"\'\';\'\'this\'\'.\'\'OS\'\'=\'\'this\'\'.\'\'searchString\'\'(\'\'this\'\'.\'\'dataOS\'\')\'\'||\'\'\"\'\'an\'\'unknown\'\'OS\'\'\"\'\';\'\'}\'\',\'\'searchString\'\':\'\'function\'\'(\'\'data\'\')\'\'{\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i','000001000001000011000024'),('usuxw9V3jN4d4pujRiEYxg','css03-ie.css','css03-ie.css css03-ie.css style3 css03 ie.css ','style3/css03-ie.css',1209494150,1209494150,'3','7','12','WebGUI::Asset::Snippet',1,'css03\'\'-\'\'ie\'\'.\'\'css\'\'css03\'\'-\'\'ie\'\'.\'\'css\'\'style3\'\'css03\'\'ie\'\'.\'\'css #\'\'contentArea\'\'{\'\'height\'\':\'\'500px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'300px\'\';\'\'}','000001000001000047000023'),('POVcY79vIqAHR8OfGt36aw','pagination_button.jpg','pagination_button.jpg pagination_button.jpg root import gallery templates images pagination button.jpg ','root/import/gallery-templates/images/pagination_button.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_button\'\'.\'\'jpg\'\'pagination_button\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pagination\'\'button\'\'.\'\'jpg','000001000001000011000017000007'),('hIB-z34r8Xl-vYVYCkKr-w','bar-btn-r.jpg','bar-btn-r.jpg bar-btn-r.jpg root import gallery templates images bar btn r.jpg ','root/import/gallery-templates/images/bar-btn-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'r\'\'.\'\'jpg','000001000001000011000017000008'),('-mPUoFlYcjqjPUPRLAlxNQ','search-field-r.jpg','search-field-r.jpg search-field-r.jpg root import gallery templates images search field r.jpg ','root/import/gallery-templates/images/search-field-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'-\'\'r\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'r\'\'.\'\'jpg','000001000001000011000017000009'),('MDpUOR-N8KMyt1J7Hh_h4w','bar-btn.jpg','bar-btn.jpg bar-btn.jpg root import gallery templates images bar btn.jpg ','root/import/gallery-templates/images/bar-btn.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'.\'\'jpg','000001000001000011000017000010'),('YfXKByTwDZVituMc4h13Dg','pagination_bg.jpg','pagination_bg.jpg pagination_bg.jpg root import gallery templates images pagination bg.jpg ','root/import/gallery-templates/images/pagination_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_bg\'\'.\'\'jpg\'\'pagination_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pagination\'\'bg\'\'.\'\'jpg','000001000001000011000017000011'),('esko_HSU0Gh-uJZ1h3xRmQ','search-field-l.jpg','search-field-l.jpg search-field-l.jpg root import gallery templates images search field l.jpg ','root/import/gallery-templates/images/search-field-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'-\'\'l\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'l\'\'.\'\'jpg','000001000001000011000017000012'),('oSqpGswzpBG_ErdfYwIO8A','top_bg.jpg','top_bg.jpg top_bg.jpg root import gallery templates images top bg.jpg ','root/import/gallery-templates/images/top_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg\'\'.\'\'jpg\'\'top_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'top\'\'bg\'\'.\'\'jpg','000001000001000011000017000013'),('MXJklShZvLLB_DSnZQmXrQ','title_bg.jpg','title_bg.jpg title_bg.jpg root import gallery templates images title bg.jpg ','root/import/gallery-templates/images/title_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'title_bg\'\'.\'\'jpg\'\'title_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'title\'\'bg\'\'.\'\'jpg','000001000001000011000017000014'),('BthxD5oJ0idmsyI3ioA2FA','bar-btn-l.jpg','bar-btn-l.jpg bar-btn-l.jpg root import gallery templates images bar btn l.jpg ','root/import/gallery-templates/images/bar-btn-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'l\'\'.\'\'jpg','000001000001000011000017000015'),('aZ-1HYQamkRHYXvzAra8WQ','search-field.jpg','search-field.jpg search-field.jpg root import gallery templates images search field.jpg ','root/import/gallery-templates/images/search-field.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'.\'\'jpg','000001000001000011000017000016'),('eRkb94OYcS5AdcrrerOP5Q','rss.gif','rss.gif rss.gif root import gallery templates images rss2.gif ','root/import/gallery-templates/images/rss2.gif',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'rss\'\'.\'\'gif\'\'rss\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'rss2\'\'.\'\'gif','000001000001000011000017000017'),('TbnkjAJQEASORXIpYqDkcA','blank-image.jpg','blank-image.jpg blank-image.jpg root import gallery templates images blank image.jpg ','root/import/gallery-templates/images/blank-image.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'blank\'\'-\'\'image\'\'.\'\'jpg\'\'blank\'\'-\'\'image\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'blank\'\'image\'\'.\'\'jpg','000001000001000011000017000018'),('er-3faBjY-hhlDcc5aKqdQ','top_bg.jpg','top_bg.jpg top_bg.jpg root import gallery templates images top bg2.jpg ','root/import/gallery-templates/images/top_bg2.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg\'\'.\'\'jpg\'\'top_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'top\'\'bg2\'\'.\'\'jpg','000001000001000011000017000019'),('8bFsu2FJUqHRUiHcozcVFw','sub-btn-l.jpg','sub-btn-l.jpg sub-btn-l.jpg root import gallery templates images sub btn l.jpg ','root/import/gallery-templates/images/sub-btn-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'l\'\'.\'\'jpg','000001000001000011000017000020'),('34Aayx5eA320D8VfhdfDBw','sub-btn-r.jpg','sub-btn-r.jpg sub-btn-r.jpg root import gallery templates images sub btn r.jpg ','root/import/gallery-templates/images/sub-btn-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'r\'\'.\'\'jpg','000001000001000011000017000021'),('TlhKOVmWblZOsAdqmhEpeg','sub-btn.jpg','sub-btn.jpg sub-btn.jpg root import gallery templates images sub btn.jpg ','root/import/gallery-templates/images/sub-btn.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'.\'\'jpg','000001000001000011000017000022'),('Nx0ypjO3cN6QdZUBUEE0lA','pic-title-bg.jpg','pic-title-bg.jpg pic-title-bg.jpg root import gallery templates images pic title bg.jpg ','root/import/gallery-templates/images/pic-title-bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pic\'\'-\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'pic\'\'-\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pic\'\'title\'\'bg\'\'.\'\'jpg','000001000001000011000017000023'),('CmFZLN7iPS7XXvUEsxKPKA','row-2.jpg','row-2.jpg row-2.jpg root import gallery templates images row 2.jpg ','root/import/gallery-templates/images/row-2.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'2\'\'.\'\'jpg\'\'row\'\'-\'\'2\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'row\'\'2\'\'.\'\'jpg','000001000001000011000017000024'),('v_XBgwwZqgW1D5s4y05qfg','addtl-info.gif','addtl-info.gif addtl-info.gif root import gallery templates images addtl info.gif ','root/import/gallery-templates/images/addtl-info.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'addtl\'\'-\'\'info\'\'.\'\'gif\'\'addtl\'\'-\'\'info\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'addtl\'\'info\'\'.\'\'gif','000001000001000011000017000025'),('4TdAkKoQbSCvI7QWcW889A','row-1.jpg','row-1.jpg row-1.jpg root import gallery templates images row 1.jpg ','root/import/gallery-templates/images/row-1.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'1\'\'.\'\'jpg\'\'row\'\'-\'\'1\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'row\'\'1\'\'.\'\'jpg','000001000001000011000017000026'),('SAgK6eDPCG1cgkJ59WapHQ','prev-btn.gif','prev-btn.gif prev-btn.gif root import gallery templates images prev btn.gif ','root/import/gallery-templates/images/prev-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'prev\'\'-\'\'btn\'\'.\'\'gif\'\'prev\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'prev\'\'btn\'\'.\'\'gif','000001000001000011000017000027'),('XJYLuvGy9ubF7JNKyINtpA','play-btn.gif','play-btn.gif play-btn.gif root import gallery templates images play btn.gif ','root/import/gallery-templates/images/play-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'play\'\'-\'\'btn\'\'.\'\'gif\'\'play\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'play\'\'btn\'\'.\'\'gif','000001000001000011000017000028'),('RWj7hyv2SpZuXxwj1Wocug','next-btn.gif','next-btn.gif next-btn.gif root import gallery templates images next btn.gif ','root/import/gallery-templates/images/next-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'next\'\'-\'\'btn\'\'.\'\'gif\'\'next\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'next\'\'btn\'\'.\'\'gif','000001000001000011000017000029'),('aq8QElnlm3YufAoxRz9Pcg','data-bg.jpg','data-bg.jpg data-bg.jpg root import gallery templates images data bg.jpg ','root/import/gallery-templates/images/data-bg.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'data\'\'-\'\'bg\'\'.\'\'jpg\'\'data\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'data\'\'bg\'\'.\'\'jpg','000001000001000011000017000030'),('6D4Z-oruXPS6OlH_Kx8pBg','images','images images root import thingy templates images ','root/import/thingy-templates/images',1209509389,1209509389,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'thingy\'\'templates\'\'images','000001000001000041000005'),('hQ7z33_jOYkQ8WNX5xy9Sw','style-button.gif','style-button.gif style-button.gif root import thingy templates images style button.gif ','root/import/thingy-templates/images/style-button.gif',1209509455,1209509455,'3','7','12','WebGUI::Asset::File::Image',1,'style\'\'-\'\'button\'\'.\'\'gif\'\'style\'\'-\'\'button\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'style\'\'button\'\'.\'\'gif','000001000001000041000005000001'),('vWW_DcHiYSrKZOkkIfEfcQ','row-2.jpg','row-2.jpg row-2.jpg root import thingy templates images row 2.jpg ','root/import/thingy-templates/images/row-2.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'2\'\'.\'\'jpg\'\'row\'\'-\'\'2\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'row\'\'2\'\'.\'\'jpg','000001000001000041000005000002'),('_bPYzRA87NTAUIKlfrJMHg','row-1.jpg','row-1.jpg row-1.jpg root import thingy templates images row 1.jpg ','root/import/thingy-templates/images/row-1.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'1\'\'.\'\'jpg\'\'row\'\'-\'\'1\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'row\'\'1\'\'.\'\'jpg','000001000001000041000005000003'),('nJjZHRwdDs5MAZYsAyioHw','title-bg.jpg','title-bg.jpg title-bg.jpg root import thingy templates images title bg.jpg ','root/import/thingy-templates/images/title-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'title\'\'-\'\'bg\'\'.\'\'jpg\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'title\'\'bg\'\'.\'\'jpg','000001000001000041000005000004'),('8hxfkrJPeFVRWF5piCNJ1A','field-bg.jpg','field-bg.jpg field-bg.jpg root import thingy templates images field bg.jpg ','root/import/thingy-templates/images/field-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'field\'\'-\'\'bg\'\'.\'\'jpg\'\'field\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'field\'\'bg\'\'.\'\'jpg','000001000001000041000005000005'),('Osx7WN52iIKHZFT4vqUBHQ','search-btn.gif','search-btn.gif search-btn.gif root import thingy templates images search btn.gif ','root/import/thingy-templates/images/search-btn.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'btn\'\'.\'\'gif\'\'search\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'search\'\'btn\'\'.\'\'gif','000001000001000041000005000006'),('oWff8fGzRdHPyq5VNREe9Q','top-bg.jpg','top-bg.jpg top-bg.jpg root import thingy templates images top bg.jpg ','root/import/thingy-templates/images/top-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'top\'\'-\'\'bg\'\'.\'\'jpg\'\'top\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'top\'\'bg\'\'.\'\'jpg','000001000001000041000005000007'),('uqbkvb1b9443VvfkyRz95w','save-button.gif','save-button.gif save-button.gif root import thingy templates images save button.gif ','root/import/thingy-templates/images/save-button.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'save\'\'-\'\'button\'\'.\'\'gif\'\'save\'\'-\'\'button\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'save\'\'button\'\'.\'\'gif','000001000001000041000005000008'),('8YiMkcz32xalkAn3WBLpag','go-btn.gif','go-btn.gif go-btn.gif root import thingy templates images go btn.gif ','root/import/thingy-templates/images/go-btn.gif',1210181860,1210181860,'3','7','12','WebGUI::Asset::File::Image',1,'go\'\'-\'\'btn\'\'.\'\'gif\'\'go\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'go\'\'btn\'\'.\'\'gif','000001000001000041000005000009'),('3n3H85BsdeRQ0I08WmvlOg','thingy.css','thingy.css thingy.css root import thingy templates thingy.css ','root/import/thingy-templates/thingy.css',1212091492,1216227244,'3','7','12','WebGUI::Asset::Snippet',1,'thingy\'\'.\'\'css\'\'thingy\'\'.\'\'css\'\'root\'\'import\'\'thingy\'\'templates\'\'thingy\'\'.\'\'css .\'\'wgThingy\'\'{\'\'margin\'\':\'\'5px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'styleButton\'\'{\'\'color\'\':\'\'black\'\';\'\'margin\'\':\'\'0px\'\'5px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'spacerOne\'\'{\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'rowOne\'\',\'\'.\'\'wgThingy\'\'*\'\'tr\'\'.\'\'rowOne\'\'td\'\'{\'\'background\'\':\'\'#\'\'EEEEEE\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'color\'\':\'\'#\'\'000\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'rowTwo\'\',\'\'.\'\'wgThingy\'\'*\'\'tr\'\'.\'\'rowTwo\'\'td\'\'{\'\'background\'\':\'\'#\'\'DBDBDB\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'DDDDDD\'\'1px\'\';\'\'color\'\':\'\'#\'\'000\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgThingsWrapper\'\'img\'\'{\'\'display\'\':\'\'block\'\';\'\'vertical\'\'-\'\'align\'\':\'\'center\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgThingsWrapper\'\'.\'\'label\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'}\'\'.\'\'wgThingy\'\'h2\'\'.\'\'title\'\'{\'\'background\'\':\'\'#\'\'000\'\';\'\'height\'\':\'\'42px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'span\'\'.\'\'smaller\'\'{\'\'font\'\'-\'\'size\'\':\'\'13px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'wgThingy\'\'.\'\'controls\'\'{\'\'line\'\'-\'\'height\'\':\'\'35px\'\';\'\'height\'\':\'\'35px\'\';\'\'background\'\':\'\'#\'\'f1f1f1\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'label\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'.\'\'wgThingy\'\'.\'\'label\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'searchTable\'\'*\'\'input\'\',\'\'.\'\'editThing\'\'*\'\'input\'\'{\'\'background\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'}\'\'.\'\'editThing\'\'{\'\'margin\'\'-\'\'top\'\':\'\'15px\'\';\'\'}\'\'#\'\'thingyList\'\',\'\'#\'\'thingyList\'\'*\'\'{\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'#\'\'thingyList\'\'{\'\'position\'\':\'\'relative\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'visited\'\'{\'\'padding\'\':\'\'2px\'\'25px\'\'2px\'\'2px\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'thingy\'\'-\'\'templates\'\'/\'\'images\'\'/\'\'go\'\'-\'\'btn\'\'.\'\'gif\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\'right\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\',\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'0px\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'width\'\':\'\'300px\'\';\'\'z\'\'-\'\'index\'\':\'\'5000\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'27px\'\';\'\'left\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'727272\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'12px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'12px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}','000001000001000041000006'),('5m5I7__l40C4hhv4ydqAHQ','thingy-ie.css','thingy-ie.css thingy-ie.css root import thingy templates thingy ie.css ','root/import/thingy-templates/thingy-ie.css',1210181698,1216227786,'3','7','12','WebGUI::Asset::Snippet',1,'thingy\'\'-\'\'ie\'\'.\'\'css\'\'thingy\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'thingy\'\'templates\'\'thingy\'\'ie\'\'.\'\'css #\'\'thingyList\'\'.\'\'things\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'width\'\':\'\'200px\'\';\'\'z\'\'-\'\'index\'\':\'\'5000\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'27px\'\';\'\'left\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'727272\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'12px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'12px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'width\'\':\'\'190px\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}','000001000001000041000007'),('4qh0kIsFUdd4Ox-Iu1JZgg','EMS',' ','root/import/ems',1208725439,1208725439,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EMS\'\'EMS\'\'root\'\'import\'\'ems','000001000001000008'),('2rC4ErZ3c77OJzJm7O5s3w','EMS Badge Listing (default)','EMS Badge Listing (default) EMS Badge Listing (default) root import ems ems badge listing default ','root/import/ems/ems-badge-listing-default',1208721232,1224723218,'3','7','12','WebGUI::Asset::Template',1,'EMS\'\'Badge\'\'Listing\'\'(\'\'default\'\')\'\'EMS\'\'Badge\'\'Listing\'\'(\'\'default\'\')\'\'root\'\'import\'\'ems\'\'ems\'\'badge\'\'listing\'\'default EMS','000001000001000008000003'),('PsFn7dJt4wMwBa8hiE3hOA','Print Badge (Default)','Print Badge (Default) Print Badge (Default) root import ems print badge default ','root/import/ems/print-badge-default',1208558071,1208558071,'3','7','12','WebGUI::Asset::Template',1,'Print\'\'Badge\'\'(\'\'Default\'\')\'\'Print\'\'Badge\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'print\'\'badge\'\'default EMS\'\'/\'\'PrintBadge','000001000001000008000004'),('yBwydfooiLvhEFawJb0VTQ','Print Ticket (Default)','Print Ticket (Default) Print Ticket (Default) root import ems print ticket default ','root/import/ems/print-ticket-default',1208629936,1208629936,'3','7','12','WebGUI::Asset::Template',1,'Print\'\'Ticket\'\'(\'\'Default\'\')\'\'Print\'\'Ticket\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'print\'\'ticket\'\'default EMS\'\'/\'\'PrintTicket','000001000001000008000005'),('63ix2-hU0FchXGIWkG3tow','Flat Discount (Default)','Flat Discount (Default) Flat Discount (Default) root import flat discount default ','root/import/flat-discount-default',1209588387,1216169693,'3','7','12','WebGUI::Asset::Template',1,'Flat\'\'Discount\'\'(\'\'Default\'\')\'\'Flat\'\'Discount\'\'(\'\'Default\'\')\'\'root\'\'import\'\'flat\'\'discount\'\'default FlatDiscount','000001000001000034000011'),('gbnRhcWNk1iQe32LFEB5eQ','Shelf','Shelf Shelf root import shelf2 ','root/import/shelf2',1210779723,1212086102,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shelf\'\'Shelf\'\'root\'\'import\'\'shelf2','000001000001000033'),('1XOJDcg_ITRYwVM-QnIcPw','shelf.css','shelf.css shelf.css root import shelf2 shelf.css ','root/import/shelf2/shelf.css',1210779441,1219175575,'3','7','12','WebGUI::Asset::Snippet',1,'shelf\'\'.\'\'css\'\'shelf\'\'.\'\'css\'\'root\'\'import\'\'shelf2\'\'shelf\'\'.\'\'css .\'\'wgShelf\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\',\'\'verdana\'\';\'\'margin\'\':\'\'15px\'\'0px\'\';\'\'}\'\'.\'\'wgShelf\'\'h2\'\'{\'\'background\'\':\'\'black\'\';\'\'padding\'\':\'\'5px\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'line\'\'-\'\'height\'\':\'\'32px\'\';\'\'color\'\':\'\'white\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'32px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'wgShelves\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'height\'\':\'\'29px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'29px\'\';\'\'padding\'\'-\'\'left\'\':\'\'30px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'{\'\'margin\'\':\'\'15px\'\';\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'width\'\':\'\'200px\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'thumbnail\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'margin\'\':\'\'3px\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'{\'\'background\'\':\'\'#\'\'e1e1e1\'\';\'\'height\'\':\'\'30px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'24px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'link\'\',\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'000\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'price\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}','000001000001000033000003'),('C5fPz-Wg85vkYRvCdl-Xqw','UserList','UserList UserList root import userlist ','root/import/userlist',1212160830,1212160830,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'UserList\'\'UserList\'\'root\'\'import\'\'userlist','000001000001000043'),('aNmgn0cd6tldmC1FpW4KbA','Shop','Shop Shop shopping cart collateral items ','shopping-cart-collateral-items',1213122695,1213122695,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Shop\'\'Shop\'\'shopping\'\'cart\'\'collateral\'\'items','000001000001000034'),('2q5fxatSFLgIhXaUX-oSvg','bottom-left.jpg','bottom-left.jpg bottom-left.jpg shopping cart collateral items bottom left.jpg ','shopping-cart-collateral-items/bottom-left.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'bottom\'\'-\'\'left\'\'.\'\'jpg\'\'bottom\'\'-\'\'left\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'bottom\'\'left\'\'.\'\'jpg','000001000001000034000001'),('_d5WTkKjnwct-_Dk7gZHvQ','bottom-right.jpg','bottom-right.jpg bottom-right.jpg shopping cart collateral items bottom right.jpg ','shopping-cart-collateral-items/bottom-right.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'bottom\'\'-\'\'right\'\'.\'\'jpg\'\'bottom\'\'-\'\'right\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'bottom\'\'right\'\'.\'\'jpg','000001000001000034000002'),('Iz2mUR3jCPKyemwAea4b2g','input_bg.jpg','input_bg.jpg input_bg.jpg shopping cart collateral items input bg.jpg ','shopping-cart-collateral-items/input_bg.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'input_bg\'\'.\'\'jpg\'\'input_bg\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'input\'\'bg\'\'.\'\'jpg','000001000001000034000003'),('JU9bjsLRoWj7GVHs__prig','top-left.jpg','top-left.jpg top-left.jpg shopping cart collateral items top left.jpg ','shopping-cart-collateral-items/top-left.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'top\'\'-\'\'left\'\'.\'\'jpg\'\'top\'\'-\'\'left\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'top\'\'left\'\'.\'\'jpg','000001000001000034000004'),('noOlnjQGexHg8c4bGVUo9g','top-right.jpg','top-right.jpg top-right.jpg shopping cart collateral items top right.jpg ','shopping-cart-collateral-items/top-right.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'top\'\'-\'\'right\'\'.\'\'jpg\'\'top\'\'-\'\'right\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'top\'\'right\'\'.\'\'jpg','000001000001000034000005'),('aIpCmr9Hi__vgdZnDTz1jw','Cart (Default)','Cart (Default) Cart (Default) default shopping cart template ','default-shopping-cart-template',1209921197,1227539574,'3','7','3','WebGUI::Asset::Template',1,'Cart\'\'(\'\'Default\'\')\'\'Cart\'\'(\'\'Default\'\')\'\'default\'\'shopping\'\'cart\'\'template Shop\'\'/\'\'Cart','000001000001000034000006'),('4e-_rNs6mSWedZhQ_V5kJA','shelf-ie.css','shelf-ie.css shelf-ie.css root import shelf2 shelf ie.css ','root/import/shelf2/shelf-ie.css',1210779672,1210779672,'3','7','12','WebGUI::Asset::Snippet',1,'shelf\'\'-\'\'ie\'\'.\'\'css\'\'shelf\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'shelf2\'\'shelf\'\'ie\'\'.\'\'css .\'\'wgShelf\'\'.\'\'product\'\'{\'\'margin\'\':\'\'15px\'\';\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'float\'\':\'\'left\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'min\'\'-\'\'height\'\':\'\'100px\'\';\'\'min\'\'-\'\'width\'\':\'\'200px\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'100px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'{\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'shelf2\'\'/\'\'images\'\'/\'\'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'right\'\';\'\'height\'\':\'\'30px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'24px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}','000001000001000033000004'),('2gtFt7c0qAFNU3BG_uvNvg','My Purchases (Default)','My Purchases (Default) My Purchases (Default) shopping cart collateral items my purchases default ','shopping-cart-collateral-items/my-purchases-default',1211824430,1222574694,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Purchases\'\'(\'\'Default\'\')\'\'My\'\'Purchases\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'my\'\'purchases\'\'default Shop\'\'/\'\'MyPurchases','000001000001000034000008'),('bPz1yk6Y9uwMDMBcmMsSCg','Email Receipt (Default)','Email Receipt (Default) Email Receipt (Default) shopping cart collateral items email receipt default ','shopping-cart-collateral-items/email-receipt-default',1211829604,1211829604,'3','7','3','WebGUI::Asset::Template',1,'Email\'\'Receipt\'\'(\'\'Default\'\')\'\'Email\'\'Receipt\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'email\'\'receipt\'\'default Shop\'\'/\'\'EmailReceipt','000001000001000034000009'),('EBlxJpZQ9o-8VBOaGQbChA','MiniCart','MiniCart MiniCart shopping cart collateral items minicart ','shopping-cart-collateral-items/minicart',1212093746,1212093746,'3','7','3','WebGUI::Asset::Template',1,'MiniCart\'\'MiniCart\'\'shopping\'\'cart\'\'collateral\'\'items\'\'minicart Shop\'\'/\'\'MiniCart','000001000001000034000014'),('PBtmpl0000000000000053','Subscription code redemption','Subscription code redemption Subscription code redemption subscription code redemption ','subscription_code_redemption',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Subscription\'\'code\'\'redemption\'\'Subscription\'\'code\'\'redemption\'\'subscription\'\'code\'\'redemption Operation\'\'/\'\'RedeemSubscription','000001000001000034000017'),('6tK47xsaIH-ELw0IBo0uRQ','images','images images root import shelf2 images ','root/import/shelf2/images',1210777115,1210777115,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'shelf2\'\'images','000001000001000033000001'),('XNd7a_g_cTvJVYrVHcx2Mw','Address (Default)','Address (Default) Address (Default) shopping cart collateral items address default ','shopping-cart-collateral-items/address-default',1212099009,1224606020,'3','7','3','WebGUI::Asset::Template',1,'Address\'\'(\'\'Default\'\')\'\'Address\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'address\'\'default Shop\'\'/\'\'Address','000001000001000034000007'),('_bZJ9LA_KNekZiFPaP2SeQ','shelf-titles.jpg','shelf-titles.jpg shelf-titles.jpg root import shelf2 images shelf titles.jpg ','root/import/shelf2/images/shelf-titles.jpg',1210777868,1210777868,'3','7','12','WebGUI::Asset::File::Image',1,'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\'root\'\'import\'\'shelf2\'\'images\'\'shelf\'\'titles\'\'.\'\'jpg','000001000001000033000001000001'),('nFen0xjkZn8WkpM93C9ceQ','Shelf (Default)','Shelf (Default) Shelf (Default) root import shelf default ','root/import/shelf-default',1210779326,1229117831,'3','7','12','WebGUI::Asset::Template',1,'Shelf\'\'(\'\'Default\'\')\'\'Shelf\'\'(\'\'Default\'\')\'\'root\'\'import\'\'shelf\'\'default Shelf','000001000001000033000002'),('mTOiwwk3q4k9g5-XykXhPA','Documentation','With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation. ','documentation',1215717999,1218149728,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Documentation\'\'Documentation\'\'documentation\'\'With\'\'any\'\'large\'\'system\'\',\'\'having\'\'the\'\'right\'\'documentation\'\'to\'\'get\'\'you\'\'started\'\'is\'\'mandatory\'\'.\'\'The\'\'good\'\'news\'\'is\'\'that\'\'WebGUI\'\'has\'\'abundant\'\'documentation\'\'.','000001000002000005'),('j_1qEqM6iLfQLiR6VKy0aA','Free Documentation','There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction. \n\n\n\nPrimer - A download','documentation/free-documentation',1215718151,1215718151,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Free\'\'Documentation\'\'Free\'\'Documentation\'\'documentation\'\'free\'\'documentation\'\'There\'\'are\'\'hundreds\'\'of\'\'pages\'\'of\'\'free\'\'documentation\'\'available\'\'for\'\'WebGUI\'\',\'\'provided\'\'by\'\'both\'\'Plain\'\'Black\'\'and\'\'the\'\'community\'\'at\'\'large\'\'.\'\'The\'\'following\'\'list\'\'is\'\'by\'\'no\'\'means\'\'comprehensive\'\',\'\'but\'\'it\'\'should\'\'get\'\'you\'\'started\'\'in\'\'the\'\'right\'\'direction\'\'.\'\'Primer\'\'-\'\'A\'\'downloadable\'\'PDF\'\'that\'\'shows\'\'you\'\'the\'\'basics\'\'of\'\'publishing\'\'content\'\'in\'\'WebGUI\'\'.\'\'Wiki\'\'-\'\'Hundreds\'\'of\'\'pages\'\'of\'\'WebGUI\'\'community\'\'contributed\'\'content\'\'featuring\'\'a\'\'variety\'\'of\'\'tutorials\'\'.\'\'Worldwide\'\'-\'\'A\'\'collection\'\'of\'\'WebGUI\'\'related\'\'web\'\'sites\'\'from\'\'all\'\'over\'\'the\'\'world\'\'that\'\'have\'\'documentation\'\'and\'\'other\'\'resources\'\'for\'\'WebGUI\'\'.\'\'API\'\'Docs\'\'-\'\'The\'\'documentation\'\'of\'\'all\'\'of\'\'the\'\'WebGUI\'\'source\'\'code\'\'.\'\'Template\'\'Help\'\'-\'\'The\'\'documentation\'\'of\'\'all\'\'of\'\'WebGUI\'\'\'\'\'s\'\'template\'\'variables\'\'. ','000001000002000005000001'),('o_pq_e4vRyhMOKFzs61eag','book-covers.jpg','book-covers.jpg book-covers.jpg documentation book covers.jpg ','documentation/book-covers.jpg',1215714957,1215714957,'3','7','3','WebGUI::Asset::File::Image',1,'book\'\'-\'\'covers\'\'.\'\'jpg\'\'book\'\'-\'\'covers\'\'.\'\'jpg\'\'documentation\'\'book\'\'covers\'\'.\'\'jpg','000001000002000005000002'),('diZvW4bSgZWwyyGP3qXi1g','Commercial Documentation','Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of t','documentation/commercial-documentation',1215717972,1215717972,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Commercial\'\'Documentation\'\'Commercial\'\'Documentation\'\'documentation\'\'commercial\'\'documentation\'\'Plain\'\'Black\'\'has\'\'created\'\'a\'\'whole\'\'line\'\'of\'\'commercial\'\'books\'\'which\'\'total\'\'over\'\'1500\'\'pages\'\'of\'\'detailed\'\'documentation\'\'about\'\'WebGUI\'\'.\'\'Both\'\'black\'\'and\'\'white\'\'and\'\'full\'\'color\'\'editions\'\'of\'\'these\'\'books\'\'are\'\'available\'\',\'\'and\'\'they\'\'are\'\'updated\'\'frequently\'\'to\'\'keep\'\'you\'\'on\'\'top\'\'of\'\'the\'\'latest\'\'WebGUI\'\'features\'\'.\'\'Visit\'\'the\'\'book\'\'store\'\'today\'\'to\'\'stock\'\'your\'\'WebGUI\'\'library\'\'.\'\'Other\'\'than\'\'hands\'\'on\'\'training\'\',\'\'there\'\'is\'\'no\'\'better\'\'way\'\'to\'\'hone\'\'your\'\'WebGUI\'\'skills\'\'.\'\'No\'\'matter\'\'what\'\'your\'\'need\'\',\'\'Plain\'\'Black\'\'has\'\'created\'\'a\'\'book\'\'that\'\'\'\'\'s\'\'right\'\'for\'\'you\'\'and\'\'is\'\'creating\'\'new\'\'books\'\'each\'\'year\'\'. ','000001000002000005000003'),('PBEmsBadgeTemplate0000','Default EMS Badge Template','Default EMS Badge Template Default EMS Badge Template default emsbadge ','default_emsbadge',1221077977,1221692339,'3','7','4','WebGUI::Asset::Template',1,'Default\'\'EMS\'\'Badge\'\'Template\'\'Default\'\'EMS\'\'Badge\'\'Template\'\'default\'\'emsbadge EMSBadge','000001000001000008000006'),('9A-mg2gwWmaYi9o_1C7ArQ','dashboard','dashboard dashboard root import projectmanager dashboard ','root/import/projectmanager/dashboard',1147642478,1222803338,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'dashboard\'\'dashboard\'\'root\'\'import\'\'projectmanager\'\'dashboard','000001000001000027000001'),('yD1SMHelczihzjEmx6eXBA','editTask','editTask editTask root import projectmanager edittask ','root/import/projectmanager/edittask',1147642478,1222803342,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'editTask\'\'editTask\'\'root\'\'import\'\'projectmanager\'\'edittask','000001000001000027000002'),('pV7GnZdpjR3XpZaSINIoeg','gantt','gantt gantt root import projectmanager gantt ','root/import/projectmanager/gantt',1147642478,1222803347,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'gantt\'\'gantt\'\'root\'\'import\'\'projectmanager\'\'gantt','000001000001000027000003'),('71e17KeduiXgODLMlUxiow','project','project project root import projectmanager project ','root/import/projectmanager/project',1147642479,1222803352,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'project\'\'project\'\'root\'\'import\'\'projectmanager\'\'project','000001000001000027000004'),('vTymIDYL2YqEh6PV50F7ew','manager','manager manager root import timetracking manager ','root/import/timetracking/manager',1147642482,1222803302,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'manager\'\'manager\'\'root\'\'import\'\'timetracking\'\'manager','000001000001000042000001'),('lo1ac3BsoJx3ijGQ3gR-bQ','row','row row root import timetracking row ','root/import/timetracking/row',1147642482,1222803309,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'row\'\'row\'\'root\'\'import\'\'timetracking\'\'row','000001000001000042000002'),('huASapWvFDzqwOSbcN-JFQ','user','user user root import timetracking user ','root/import/timetracking/user',1147642483,1222803313,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'user\'\'user\'\'root\'\'import\'\'timetracking\'\'user','000001000001000042000003'),('xSmREZO3GNzK3M5PaueOOQ','LDAP/Account','LDAP/Account LDAP/Account root import auth ldap account ','root/import/auth/ldap/account',1147642466,1222803378,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Account\'\'LDAP\'\'/\'\'Account\'\'root\'\'import\'\'auth\'\'ldap\'\'account','000001000001000003000001'),('0bx-xoL8TSXXubFuqKAoVQ','LDAP/Create','LDAP/Create LDAP/Create root import auth ldap create ','root/import/auth/ldap/create',1147642466,1222803383,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Create\'\'LDAP\'\'/\'\'Create\'\'root\'\'import\'\'auth\'\'ldap\'\'create','000001000001000003000002'),('taX2UYkFF21ALpFZY2rhMw','LDAP/Login','LDAP/Login LDAP/Login root import auth ldap login ','root/import/auth/ldap/login',1147642466,1222803387,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Login\'\'LDAP\'\'/\'\'Login\'\'root\'\'import\'\'auth\'\'ldap\'\'login','000001000001000003000003'),('K0q_N885Httqev1VCqUWxg','WebGUI/Account','WebGUI/Account WebGUI/Account root import auth webgui account ','root/import/auth/webgui/account',1147642466,1222803391,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Account\'\'WebGUI\'\'/\'\'Account\'\'root\'\'import\'\'auth\'\'webgui\'\'account','000001000001000003000004'),('fq1ZkYhH24R5tb96kuT10Q','WebGUI/Create','WebGUI/Create WebGUI/Create root import auth webgui create ','root/import/auth/webgui/create',1147642466,1222803395,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Create\'\'WebGUI\'\'/\'\'Create\'\'root\'\'import\'\'auth\'\'webgui\'\'create','000001000001000003000005'),('oHk7fAFhEEkB7dHzi0QOQA','WebGUI/Expired','WebGUI/Expired WebGUI/Expired root import auth webgui expired ','root/import/auth/webgui/expired',1147642466,1222803399,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Expired\'\'WebGUI\'\'/\'\'Expired\'\'root\'\'import\'\'auth\'\'webgui\'\'expired','000001000001000003000006'),('9M-lrlPQWeeNWfvnDnK_Xg','WebGUI/Login','WebGUI/Login WebGUI/Login root import auth webgui login ','root/import/auth/webgui/login',1147642466,1222803405,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Login\'\'WebGUI\'\'/\'\'Login\'\'root\'\'import\'\'auth\'\'webgui\'\'login','000001000001000003000007'),('_gBYAdTcbkiyamnqi2Xskg','WebGUI/Recovery','WebGUI/Recovery WebGUI/Recovery root import auth webgui recovery ','root/import/auth/webgui/recovery',1147642466,1222803409,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Recovery\'\'WebGUI\'\'/\'\'Recovery\'\'root\'\'import\'\'auth\'\'webgui\'\'recovery','000001000001000003000008'),('tBL7BWiQRZFed2Y-Zjo9tQ','AdminToggle','AdminToggle AdminToggle root import macro admintoggle ','root/import/macro/admintoggle',1147642471,1222803200,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminToggle\'\'AdminToggle\'\'root\'\'import\'\'macro\'\'admintoggle','000001000001000017000001'),('GdkQpvjRtJqtzOUbwIIQRA','a_account','a_account a_account root import macro a account ','root/import/macro/a_account',1147642471,1222803205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'a_account\'\'a_account\'\'root\'\'import\'\'macro\'\'a\'\'account','000001000001000017000002'),('tnc5iYyynX2hfdEs9D3P8w','EditableToggle','EditableToggle EditableToggle root import macro editabletoggle ','root/import/macro/editabletoggle',1147642472,1222803213,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EditableToggle\'\'EditableToggle\'\'root\'\'import\'\'macro\'\'editabletoggle','000001000001000017000003'),('vgXdBcFTqU7h4wBG1ewdBw','File','File File root import macro file ','root/import/macro/file',1147642472,1222803217,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'File\'\'File\'\'root\'\'import\'\'macro\'\'file','000001000001000017000004'),('hcFlqnXlsmC1ujN6Id0F0A','GroupAdd','GroupAdd GroupAdd root import macro groupadd ','root/import/macro/groupadd',1147642473,1222803234,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupAdd\'\'GroupAdd\'\'root\'\'import\'\'macro\'\'groupadd','000001000001000017000005'),('eRJR52fvlaxfetv3DQkQYw','GroupDelete','GroupDelete GroupDelete root import macro groupdelete ','root/import/macro/groupdelete',1147642473,1222803238,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupDelete\'\'GroupDelete\'\'root\'\'import\'\'macro\'\'groupdelete','000001000001000017000006'),('5HIDHq5lAWHV5gpYGS0zLg','H_homeLink','H_homeLink H_homeLink root import macro h homelink ','root/import/macro/h_homelink',1147642473,1222803244,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'H_homeLink\'\'H_homeLink\'\'root\'\'import\'\'macro\'\'h\'\'homelink','000001000001000017000007'),('rYEFwXXo0tkGhQTcbDibvg','LoginToggle','LoginToggle LoginToggle root import macro logintoggle ','root/import/macro/logintoggle',1147642473,1222803249,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LoginToggle\'\'LoginToggle\'\'root\'\'import\'\'macro\'\'logintoggle','000001000001000017000008'),('V3l5S5TtI7wMm1WpIMhvOA','L_loginBox','L_loginBox L_loginBox root import macro l loginbox ','root/import/macro/l_loginbox',1147642473,1222803253,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'L_loginBox\'\'L_loginBox\'\'root\'\'import\'\'macro\'\'l\'\'loginbox','000001000001000017000009'),('nqNbSUAhk9Vd1zda2SCz9A','RandomThread','RandomThread RandomThread root import macro randomthread ','root/import/macro/randomthread',1147642474,1222803258,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RandomThread\'\'RandomThread\'\'root\'\'import\'\'macro\'\'randomthread','000001000001000017000010'),('y8XkRdxIperLKkJ3bL5sSQ','r_printable','r_printable r_printable root import macro r printable ','root/import/macro/r_printable',1147642474,1222803264,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'r_printable\'\'r_printable\'\'root\'\'import\'\'macro\'\'r\'\'printable','000001000001000017000011'),('UserListTmpl0000000002','UserList with search field selection','UserList with search field selection UserList with search field selection root import userlist userlist with search field selection ','root/import/userlist/userlist-with-search-field-selection',1212000800,1228125752,'3','7','12','WebGUI::Asset::Template',1,'UserList\'\'with\'\'search\'\'field\'\'selection\'\'UserList\'\'with\'\'search\'\'field\'\'selection\'\'root\'\'import\'\'userlist\'\'userlist\'\'with\'\'search\'\'field\'\'selection UserList','000001000001000043000002'),('UserListTmpl0000000003','UserList with multiple search keywords','UserList with multiple search keywords UserList with multiple search keywords root import userlist userlist with multiple search keywords ','root/import/userlist/userlist-with-multiple-search-keywords',1212001437,1228125758,'3','7','12','WebGUI::Asset::Template',1,'UserList\'\'with\'\'multiple\'\'search\'\'keywords\'\'UserList\'\'with\'\'multiple\'\'search\'\'keywords\'\'root\'\'import\'\'userlist\'\'userlist\'\'with\'\'multiple\'\'search\'\'keywords UserList','000001000001000043000003'),('UserListTmpl0000000001','Default UserList','Default UserList Default UserList root import userlist default userlist ','root/import/userlist/default-userlist',1212159641,1228125743,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'UserList\'\'Default\'\'UserList\'\'root\'\'import\'\'userlist\'\'default\'\'userlist UserList','000001000001000043000001'),('BMybD3cEnmXVk2wQ_qEsRQ','Badge Builder (Default)','Badge Builder (Default) Badge Builder (Default) root import ems badge builder default ','root/import/ems/badge-builder-default',1208530113,1224723361,'3','7','12','WebGUI::Asset::Template',1,'Badge\'\'Builder\'\'(\'\'Default\'\')\'\'Badge\'\'Builder\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'badge\'\'builder\'\'default EMS\'\'/\'\'BadgeBuilder','000001000001000008000001'),('OOyMH33plAy6oCj_QWrxtg','Lookup Registrant (Default)','Lookup Registrant (Default) Lookup Registrant (Default) root import ems lookup registrant default ','root/import/ems/lookup-registrant-default',1207951375,1224724790,'3','7','12','WebGUI::Asset::Template',1,'Lookup\'\'Registrant\'\'(\'\'Default\'\')\'\'Lookup\'\'Registrant\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'lookup\'\'registrant\'\'default EMS\'\'/\'\'LookupRegistrant','000001000001000008000002'),('stevecoolmenu000000001','Site Nav','Site Nav Site Nav webgui7 style3 hierarchical top nav ','webgui7/style3/hierarchical-top-nav',1147642505,1224116942,'3','7','12','WebGUI::Asset::Template',1,'Site\'\'Nav\'\'Site\'\'Nav\'\'webgui7\'\'style3\'\'hierarchical\'\'top\'\'nav Navigation','000001000001000047000001'),('7.0-style0000000000051','css03.css','css03.css css03.css style3 css03.css ','style3/css03.css',1147642505,1224117026,'3','7','12','WebGUI::Asset::Snippet',1,'css03\'\'.\'\'css\'\'css03\'\'.\'\'css\'\'style3\'\'css03\'\'.\'\'css body\'\',\'\'html\'\'{\'\'margin\'\':\'\'0px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'b53018\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'body\'\'a\'\'{\'\'color\'\':\'\'#\'\'EE963E\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'{\'\'width\'\':\'\'98\'\'%\'\';\'\'/\'\'*\'\'min\'\'-\'\'width\'\':\'\'790px\'\';\'\'*\'\'/\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'20px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'header\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'115px\'\';\'\'}\'\'#\'\'headerTitle\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'left\'\'top\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'headerRight\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\'top\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'headerRight\'\'#\'\'title\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'25px\'\';\'\'left\'\':\'\'20px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'#\'\'title\'\'h1\'\'{\'\'text\'\'-\'\'transform\'\':\'\'uppercase\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'font\'\'-\'\'size\'\':\'\'26pt\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'title\'\'h1\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'26pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}\'\'#\'\'title\'\'h2\'\'{\'\'margin\'\':\'\'0px\'\';\'\'font\'\'-\'\'size\'\':\'\'12pt\'\';\'\'color\'\':\'\'#\'\'bebebe\'\';\'\'padding\'\'-\'\'left\'\':\'\'20px\'\';\'\'}\'\'#\'\'title\'\'img\'\'{\'\'z\'\'-\'\'index\'\':\'\'5\'\';\'\'}\'\'#\'\'login\'\'{\'\'position\'\':\'\'absolute\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'top\'\':\'\'45\'\'%\'\';\'\'right\'\':\'\'150px\'\';\'\'color\'\':\'\'white\'\';\'\'z\'\'-\'\'index\'\':\'\'6\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'}\'\'#\'\'login\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'0px\'\';\'\'}\'\'.\'\'loginBox\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'margin\'\':\'\'0px\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'.\'\'loginBox\'\'input\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'mainBody\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'500px\'\';\'\'background\'\':\'\'#\'\'fff\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainBody\'\'{\'\'height\'\':\'\'auto\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'#\'\'contentArea\'\'{\'\'z\'\'-\'\'index\'\':\'\'2\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\'-\'\'top\'\':\'\'10px\'\';\'\'padding\'\'-\'\'left\'\':\'\'10px\'\';\'\'padding\'\'-\'\'right\'\':\'\'20px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'html\'\'#\'\'main\'\'#\'\'mainBody\'\'#\'\'contentArea\'\'{\'\'height\'\':\'\'1\'\'%\'\';\'\'}\'\'#\'\'topCorner\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'214px\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'/\'\'style3\'\'/\'\'main_top\'\'.\'\'jpg\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'#\'\'bottomCorner\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'211px\'\';\'\'position\'\':\'\'absolute\'\';\'\'bottom\'\':\'\'59px\'\';\'\'right\'\':\'\'0px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'main_bottom\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'*\'\'html\'\'#\'\'bottomCorner\'\'{\'\'bottom\'\':\'\'58px\'\';\'\'}\'\'#\'\'footer\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'background\'\':\'\'#\'\'000\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'footer_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\'top\'\';\'\'height\'\':\'\'57px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'B53018\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'footer\'\'#\'\'copyright\'\'{\'\'color\'\':\'\'#\'\'3b3b3b\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'20px\'\';\'\'left\'\':\'\'30px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'{\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}','000001000001000047000002'),('stevestyle000000000003','Style 03','Style 03 Style 03 style 03 ','style_03',1147642510,1224795533,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'03\'\'Style\'\'03\'\'style\'\'03 style','000001000001000047000020'),('jVKLVakT_iA2010_oEuAwg','Style3 Coolmenu','Style3 Coolmenu Style3 Coolmenu department nav ','department_nav',1224116526,1224116526,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3\'\'Coolmenu\'\'Style3\'\'Coolmenu\'\'department\'\'nav','000001000001000047000024'),('UL-ItI4L1Z6-WSuhuXVvsQ','DataTable','DataTable DataTable root import datatable ','root/import/datatable',1225139673,1225139673,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'DataTable\'\'DataTable\'\'root\'\'import\'\'datatable','000001000001000050'),('3rjnBVJRO6ZSkxlFkYh_ug','Default DataTable Template (YUI)','Default DataTable Template (YUI) Default DataTable Template (YUI) root import datatable default datatable template yui ','root/import/datatable/default-datatable-template-yui',1225139643,1225139643,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'DataTable\'\'Template\'\'(\'\'YUI\'\')\'\'Default\'\'DataTable\'\'Template\'\'(\'\'YUI\'\')\'\'root\'\'import\'\'datatable\'\'default\'\'datatable\'\'template\'\'yui DataTable','000001000001000050000001'),('TuYPpHx7TUyk08639Pc8Bg','Default DataTable Template (HTML)','Default DataTable Template (HTML) Default DataTable Template (HTML) root import datatable default datatable template html ','root/import/datatable/default-datatable-template-html',1225139643,1225139643,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'DataTable\'\'Template\'\'(\'\'HTML\'\')\'\'Default\'\'DataTable\'\'Template\'\'(\'\'HTML\'\')\'\'root\'\'import\'\'datatable\'\'default\'\'datatable\'\'template\'\'html DataTable','000001000001000050000002'),('THQhn1C-ooj-TLlEP7aIJQ','gallery-ie.css','gallery-ie.css gallery-ie.css root import gallery templates gallery ie.css ','root/import/gallery-templates/gallery-ie.css',1225313951,1225313951,'3','7','3','WebGUI::Asset::Snippet',1,'gallery\'\'-\'\'ie\'\'.\'\'css\'\'gallery\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'gallery\'\'ie\'\'.\'\'css .\'\'wgPicture\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgAlbum\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'li\'\',\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'a\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'container\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'}','000001000001000051'),('QpmlAiYZz6VsKBM-_0wXaw','UsersOnline Macro',' ','users-online-macro-templates',1224616691,1224616691,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'UsersOnline\'\'Macro\'\'UsersOnline\'\'Macro\'\'users\'\'online\'\'macro\'\'templates','000001000001000052'),('h_T2xtOxGRQ9QJOR6ebLpQ','UsersOnline Default View','UsersOnline Default View UsersOnline Default View users online macro templates usersonline default view ','users-online-macro-templates/usersonline-default-view',1224616545,1224616545,'3','7','3','WebGUI::Asset::Template',1,'UsersOnline\'\'Default\'\'View\'\'UsersOnline\'\'Default\'\'View\'\'users\'\'online\'\'macro\'\'templates\'\'usersonline\'\'default\'\'view Macro\'\'/\'\'UsersOnline','000001000001000052000001'),('4Ekp0kJoJllRRRo_J1Rj6w','UsersOnline Detailed View','UsersOnline Detailed View UsersOnline Detailed View users online macro templates usersonline detailed view ','users-online-macro-templates/usersonline-detailed-view',1224616672,1224616672,'3','7','3','WebGUI::Asset::Template',1,'UsersOnline\'\'Detailed\'\'View\'\'UsersOnline\'\'Detailed\'\'View\'\'users\'\'online\'\'macro\'\'templates\'\'usersonline\'\'detailed\'\'view Macro\'\'/\'\'UsersOnline','000001000001000052000002'),('FJbUTvZ2nUTn65LpW6gjsA','Profile Account Layout','Profile Account Layout Profile Account Layout root import account profile profile account layout ','root/import/account/profile/profile-account-layout',1227070381,1227070381,'3','7','12','WebGUI::Asset::Template',1,'Profile\'\'Account\'\'Layout\'\'Profile\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'profile\'\'profile\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000053000001000001'),('75CmQgpcCSkdsL-oawdn3Q','Default Edit Profile Template','Default Edit Profile Template Default Edit Profile Template root import account profile default edit profile template ','root/import/account/profile/default-edit-profile-template',1227052575,1227052575,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Edit\'\'Profile\'\'Template\'\'Default\'\'Edit\'\'Profile\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'edit\'\'profile\'\'template Account\'\'/\'\'Profile\'\'/\'\'Edit','000001000001000053000001000002'),('2CS-BErrjMmESOtGT90qOg','Default View Profile Template','Default View Profile Template Default View Profile Template root import account profile default view profile template ','root/import/account/profile/default-view-profile-template',1227070888,1227070888,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'View\'\'Profile\'\'Template\'\'Default\'\'View\'\'Profile\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'view\'\'profile\'\'template Account\'\'/\'\'Profile\'\'/\'\'View','000001000001000053000001000003'),('MBmWlA_YEA2I6D29OMGtRg','Default Profile Error Template','Default Profile Error Template Default Profile Error Template root import account profile default profile error template ','root/import/account/profile/default-profile-error-template',1226542675,1226542675,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Profile\'\'Error\'\'Template\'\'Default\'\'Profile\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'profile\'\'error\'\'template Account\'\'/\'\'Profile\'\'/\'\'Error','000001000001000053000001000004'),('IZkrow_zwvbf4FCH-taVTQ','Inbox','Inbox Inbox root import account inbox ','root/import/account/inbox',1226011853,1226011853,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox\'\'Inbox\'\'root\'\'import\'\'account\'\'inbox','000001000001000053000002'),('gfZOwaTWYjbSoVaQtHBBEw','Inbox Account Layout','Inbox Account Layout Inbox Account Layout root import account inbox account layout ','root/import/account/inbox-account-layout',1226974679,1226974679,'3','7','12','WebGUI::Asset::Template',1,'Inbox\'\'Account\'\'Layout\'\'Inbox\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'inbox\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000053000002000001'),('c8xrwVuu5QE0XtF9DiVzLw','Default Inbox View Template','Default Inbox View Template Default Inbox View Template root import account inbox default inbox view template ','root/import/account/inbox/default-inbox-view-template',1226894351,1226894351,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'View\'\'Template\'\'Default\'\'Inbox\'\'View\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'view\'\'template Account\'\'/\'\'Inbox\'\'/\'\'View','000001000001000053000002000002'),('0n4HtbXaWa_XJHkFjetnLQ','Default Inbox View Message Template','Default Inbox View Message Template Default Inbox View Message Template root import account inbox default inbox view message template ','root/import/account/inbox/default-inbox-view-message-template',1226894994,1226894994,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'View\'\'Message\'\'Template\'\'Default\'\'Inbox\'\'View\'\'Message\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'view\'\'message\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ViewMessage','000001000001000053000002000003'),('ErEzulFiEKDkaCDVmxUavw','Default Inbox Error Template','Default Inbox Error Template Default Inbox Error Template root import account inbox default inbox error template ','root/import/account/inbox/default-inbox-error-template',1226895484,1227566394,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'Error\'\'Template\'\'Default\'\'Inbox\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'error\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Error','000001000001000053000002000004'),('6uQEULvXFgCYlRWnYzZsuA','Default Inbox Send Message Template','Default Inbox Send Message Template Default Inbox Send Message Template root import account inbox default inbox send message template ','root/import/account/inbox/default-inbox-send-message-template',1226896682,1226896682,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'Send\'\'Message\'\'Template\'\'Default\'\'Inbox\'\'Send\'\'Message\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'send\'\'message\'\'template Account\'\'/\'\'Inbox\'\'/\'\'SendMessage','000001000001000053000002000005'),('DUoxlTBXhVS-Zl3CFDpt9g','Default Message Confirm Template','Default Message Confirm Template Default Message Confirm Template root import account inbox default message confirm template ','root/import/account/inbox/default-message-confirm-template',1226896802,1226896802,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Message\'\'Confirm\'\'Template\'\'Default\'\'Message\'\'Confirm\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'message\'\'confirm\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Confirm','000001000001000053000002000006'),('1Q4Je3hKCJzeo0ZBB5YB8g','Default Manage Invitations Template','Default Manage Invitations Template Default Manage Invitations Template root import account inbox default manage invitations template ','root/import/account/inbox/default-manage-invitations-template',1226898445,1226898445,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Manage\'\'Invitations\'\'Template\'\'Default\'\'Manage\'\'Invitations\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'manage\'\'invitations\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ManageInvitations','000001000001000053000002000007'),('5A8Hd9zXvByTDy4x-H28qw','Default Invitation Confirmation Template','Default Invitation Confirmation Template Default Invitation Confirmation Template root import account inbox default invitation confirmation template ','root/import/account/inbox/default-invitation-confirmation-template',1226899462,1227566395,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invitation\'\'Confirmation\'\'Template\'\'Default\'\'Invitation\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invitation\'\'confirmation\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Confirm','000001000001000053000002000008'),('VBkY05f-E3WJS50WpdKd1Q','Default View Invitation Template','Default View Invitation Template Default View Invitation Template root import account inbox default view invitation template ','root/import/account/inbox/default-view-invitation-template',1226899241,1226899241,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'View\'\'Invitation\'\'Template\'\'Default\'\'View\'\'Invitation\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'view\'\'invitation\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ViewInvitation','000001000001000053000002000009'),('XgcsoDrbC0duVla7N7JAdw','Default Invite User Email Template','Default Invite User Email Template Default Invite User Email Template root import account inbox default invite user email template ','root/import/account/inbox/default-invite-user-email-template',1226973330,1227566394,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Email\'\'Template\'\'Default\'\'Invite\'\'User\'\'Email\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'email\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUserMessage','000001000001000053000002000010'),('cR0UFm7I1qUI2Wbpj--08Q','Default Invite User Form Template','Default Invite User Form Template Default Invite User Form Template root import account inbox default invite user form template ','root/import/account/inbox/default-invite-user-form-template',1226964738,1226964738,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Form\'\'Template\'\'Default\'\'Invite\'\'User\'\'Form\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'form\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUser','000001000001000053000002000011'),('SVIhz68689hwUGgcDM-gWw','Default Invite User Confirm Template','Default Invite User Confirm Template Default Invite User Confirm Template root import account inbox default invite user confirm template ','root/import/account/inbox/default-invite-user-confirm-template',1226973314,1226973314,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Confirm\'\'Template\'\'Default\'\'Invite\'\'User\'\'Confirm\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'confirm\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUserConfirm','000001000001000053000002000012'),('K0YjxqOqr7RupSo6sIdcAg','Friends','Friends Friends root import account friends ','root/import/account/friends',1227074310,1227074310,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friends\'\'Friends\'\'root\'\'import\'\'account\'\'friends','000001000001000053000003'),('zrNpGbT3odfIkg6nFSUy8Q','Friends Layout Template','Friends Layout Template Friends Layout Template root import account friends friends layout template ','root/import/account/friends/friends-layout-template',1226994016,1226994016,'3','7','12','WebGUI::Asset::Template',1,'Friends\'\'Layout\'\'Template\'\'Friends\'\'Layout\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'friends\'\'layout\'\'template Account\'\'/\'\'Layout','000001000001000053000003000001'),('1Yn_zE_dSiNuaBGNLPbxtw','Default Friends View Template','Default Friends View Template Default Friends View Template root import account friends default friends view template ','root/import/account/friends/default-friends-view-template',1226994422,1226994422,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'View\'\'Template\'\'Default\'\'Friends\'\'View\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'view\'\'template Account\'\'/\'\'Friends\'\'/\'\'View','000001000001000053000003000002'),('AZFU33p0jpPJ-E6qLSWZng','Default Friends Edit Template','Default Friends Edit Template Default Friends Edit Template root import account friends default friends edit template ','root/import/account/friends/default-friends-edit-template',1226994865,1226994865,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Edit\'\'Template\'\'Default\'\'Friends\'\'Edit\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'edit\'\'template Account\'\'/\'\'Friends\'\'/\'\'Edit','000001000001000053000003000003'),('AGJBGviWGAwjnwziiPjvDg','Default Send Request Template','Default Send Request Template Default Send Request Template root import account friends default send request template ','root/import/account/friends/default-send-request-template',1226995497,1226995497,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Send\'\'Request\'\'Template\'\'Default\'\'Send\'\'Request\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'send\'\'request\'\'template Account\'\'/\'\'Friends\'\'/\'\'SendRequest','000001000001000053000003000004'),('7Ijdd8SW32lVgg2H8R-Aqw','Default Friends Error Template','Default Friends Error Template Default Friends Error Template root import account friends default friends error template ','root/import/account/friends/default-friends-error-template',1226995714,1226995714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Error\'\'Template\'\'Default\'\'Friends\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'error\'\'template Account\'\'/\'\'Friends\'\'/\'\'Error','000001000001000053000003000005'),('K8F0j_cq_jgo8dvWY_26Ag','Default Friends Confirmation Template','Default Friends Confirmation Template Default Friends Confirmation Template root import account friends default friends confirmation template ','root/import/account/friends/default-friends-confirmation-template',1226995643,1226995643,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Confirmation\'\'Template\'\'Default\'\'Friends\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'confirmation\'\'template Account\'\'/\'\'Friends\'\'/\'\'Confirm','000001000001000053000003000006'),('G5V6neXIDiFXN05oL-U3AQ','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template Default Remove Friends Confirmation Template root import account friends default remove friends confirmation template ','root/import/account/friends/default-remove-friends-confirmation-template',1226995768,1226995768,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Remove\'\'Friends\'\'Confirmation\'\'Template\'\'Default\'\'Remove\'\'Friends\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'remove\'\'friends\'\'confirmation\'\'template Account\'\'/\'\'Friends\'\'/\'\'Confirm','000001000001000053000003000007'),('_ilRXNR3s8F2vGJ_k9ePcg','User','User User root import account user ','root/import/account/user',1226643205,1226643205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'User\'\'User\'\'root\'\'import\'\'account\'\'user','000001000001000053000004'),('9ThW278DWLV0-Svf68ljFQ','Account Layout','Account Layout Account Layout root import account user account layout ','root/import/account/user/account-layout',1226647187,1226647187,'3','7','12','WebGUI::Asset::Template',1,'Account\'\'Layout\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'user\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000053000004000001'),('AOjPG2NHgfL9Cq6dDJ7mew','Shop','Shop Shop root import account shop ','root/import/account/shop',1226659753,1226659753,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shop\'\'Shop\'\'root\'\'import\'\'account\'\'shop','000001000001000053000005'),('aUDsJ-vB9RgP-AYvPOy8FQ','Shop Account Layout','Shop Account Layout Shop Account Layout root import account shop shop account layout ','root/import/account/shop/shop-account-layout',1226660439,1226660439,'3','7','12','WebGUI::Asset::Template',1,'Shop\'\'Account\'\'Layout\'\'Shop\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'shop\'\'shop\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000053000005000001'),('qaVcU0FFzzraMX_bzELqzw','Contributions','Contributions Contributions root import account contributions ','root/import/account/contributions',1227074362,1227074362,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Contributions\'\'Contributions\'\'root\'\'import\'\'account\'\'contributions','000001000001000053000006'),('b4n3VyUIsAHyIvT-W-jziA','Contributions Layout','Contributions Layout Contributions Layout root import account contributions contributions layout ','root/import/account/contributions/contributions-layout',1227074747,1227074747,'3','7','12','WebGUI::Asset::Template',1,'Contributions\'\'Layout\'\'Contributions\'\'Layout\'\'root\'\'import\'\'account\'\'contributions\'\'contributions\'\'layout Account\'\'/\'\'Layout','000001000001000053000006000001'),('1IzRpX0tgW7iuCfaU2Kk0A','Default Contributions View','Default Contributions View Default Contributions View root import account contributions default contributions view ','root/import/account/contributions/default-contributions-view',1227079721,1227079721,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Contributions\'\'View\'\'Default\'\'Contributions\'\'View\'\'root\'\'import\'\'account\'\'contributions\'\'default\'\'contributions\'\'view Account\'\'/\'\'Contrib\'\'/\'\'View','000001000001000053000006000002'),('N716tpSna0iIQTKxS4gTWA','Default Account Layout','Default Account Layout Default Account Layout root import account default account layout2 ','root/import/account/default-account-layout2',1226604666,1226604666,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Account\'\'Layout\'\'Default\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'default\'\'account\'\'layout2 Account\'\'/\'\'Layout','000001000001000053000007'),('matrixtmpl000000000004','Matrix Default Edit Listing','Matrix Default Edit Listing Matrix Default Edit Listing default matrix edit listing template ','default-matrix-edit-listing-template',1133743239,1228834590,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Edit\'\'Listing\'\'Matrix\'\'Default\'\'Edit\'\'Listing\'\'default\'\'matrix\'\'edit\'\'listing\'\'template Matrix\'\'/\'\'EditListing','000001000001000018000004'),('_9_eiaPgxzF_x_upt6-PNQ','gallery.css','gallery.css gallery.css root import gallery templates gallery.css ','root/import/gallery-templates/gallery.css',1197988920,1230702602,'3','7','3','WebGUI::Asset::Snippet',1,'gallery\'\'.\'\'css\'\'gallery\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'gallery\'\'.\'\'css /\'\'*\'\'FIXES\'\'FLOAT\'\'ISSUES\'\'.\'\'WITHOUT\'\'THIS\'\',\'\'FLOATS\'\'GET\'\'ALL\'\'NUTSY\'\'ESPECIALLY\'\'IN\'\'OPERA\'\'AND\'\'SAFARI\'\'*\'\'/\'\'.\'\'clearfix\'\':\'\'after\'\'{\'\'content\'\':\'\'\"\'\'.\'\'\"\'\';\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'0\'\';\'\'clear\'\':\'\'both\'\';\'\'visibility\'\':\'\'hidden\'\';\'\'}\'\'.\'\'clearfix\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'}\'\'/\'\'*\'\'END\'\'FLOAT\'\'FIX\'\'*\'\'/\'\'.\'\'wgGallery\'\'{\'\'font\'\'-\'\'family\'\':\'\'verdana\'\',\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'firstBar\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'title\'\'{\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'title\'\'a\'\'{\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'height\'\':\'\'42px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'0px\'\'5px\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'.\'\'rss\'\'{\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'29px\'\';\'\'position\'\':\'\'relative\'\';\'\'background\'\':\'\'transparent\'\';\'\'padding\'\'-\'\'top\'\':\'\'13px\'\';\'\'}\'\'.\'\'secondBar\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'8B8B8B\'\'5px\'\';\'\'color\'\':\'\'black\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'}\'\'.\'\'secondBar\'\'.\'\'author\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'secondBar\'\'.\'\'desc\'\'p\'\'{\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'margin\'\'-\'\'top\'\':\'\'0\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'pictures\'\'{\'\'}\'\'.\'\'searchArea\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'searchArea\'\'*\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'searchArea\'\'input\'\'.\'\'searchText\'\'{\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'width\'\':\'\'100px\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'2px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'15px\'\';\'\'margin\'\'-\'\'right\'\':\'\'10px\'\';\'\'}\'\'.\'\'searchArea\'\'input\'\'.\'\'searchBtn\'\'{\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'3px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'center\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'height\'\':\'\'21px\'\';\'\'}\'\'.\'\'searchArea\'\'a\'\':\'\'link\'\',\'\'.\'\'searchArea\'\'a\'\':\'\'visited\'\',\'\'.\'\'secondBar\'\'.\'\'author\'\'a\'\':\'\'link\'\',\'\'.\'\'secondBar\'\'.\'\'author\'\'a\'\':\'\'visited\'\'{\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'searchArea\'\'.\'\'current\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'transform\'\':\'\'uppercase\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgAlbum\'\'{\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'width\'\':\'\'250px\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumTitle\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'10px\'\';\'\'padding\'\'-\'\'right\'\':\'\'50px\'\';\'\'border\'\':\'\'solid\'\'#\'\'475f6f\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'8B8B8B\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'padding\'\'-\'\'top\'\':\'\'15px\'\';\'\'height\'\':\'\'135px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'a\'\'{\'\'height\'\':\'\'135px\'\';\'\'width\'\':\'\'200px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'0px\'\'23px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumDesc\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'black\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'5px\'\'23px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'description\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'40px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'padding\'\':\'\'5px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'fff\'\';\'\'color\'\':\'\'#\'\'222\'\';\'\'}\'\'.\'\'albumDesc\'\'.\'\'description\'\'*\'\'{\'\'margin\'\':\'\'2px\'\'0px\'\';\'\'}\'\'/\'\'*\'\'PAGINATION\'\'STYLES\'\'*\'\'/\'\'.\'\'wgGallery\'\'.\'\'paginationContainer\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\':\'\'black\'\';\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'container\'\'{\'\'clear\'\':\'\'both\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'{\'\'margin\'\':\'\'0px\'\'auto\'\'20px\'\'auto\'\';\'\'display\'\':\'\'table\'\';\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'padding\'\':\'\'0px\'\';\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'li\'\'{\'\'display\'\':\'\'table\'\'-\'\'cell\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'50px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgPicture\'\'a\'\':\'\'link\'\',\'\'.\'\'wgPicture\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'wgPicture\'\'{\'\'width\'\':\'\'250px\'\';\'\'margin\'\':\'\'10px\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'}\'\'.\'\'wgPicture\'\'.\'\'title\'\'{\'\'background\'\':\'\'#\'\'e0e0e0\'\';\'\'display\'\':\'\'block\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'8B8B8B\'\'4px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'padding\'\':\'\'15px\'\'23px\'\'15px\'\'23px\'\';\'\'margin\'\':\'\'0px\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'120px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'pictureDesc\'\'{\'\'padding\'\':\'\'0px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'pictureDesc\'\'.\'\'description\'\'{\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'{\'\'background\'\':\'\'#\'\'e0e0e0\'\';\'\'border\'\':\'\'solid\'\'#\'\'999\'\'1px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'aaa\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'padding\'\':\'\'1px\'\'3px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'.\'\'date\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'.\'\'comments\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'a\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'PHOTO\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Photo\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'wgSnapshot\'\'{\'\'float\'\':\'\'left\'\';\'\'margin\'\':\'\'10px\'\';\'\'max\'\'-\'\'width\'\':\'\'250px\'\';\'\'width\'\':\'\'25\'\'%\'\';\'\'}\'\'.\'\'wgSnapshot\'\'fieldset\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'fefefe\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'padding\'\':\'\'10px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f9f9f9\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgSnapshot\'\'p\'\'{\'\'max\'\'-\'\'width\'\':\'\'230px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'legend\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'max\'\'-\'\'width\'\':\'\'250px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'a\'\'.\'\'thumbnail\'\'img\'\'{\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'.\'\'description\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'border\'\':\'\'solid\'\'#\'\'555555\'\'2px\'\';\'\'padding\'\':\'\'5px\'\';\'\'width\'\':\'\'190px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'fff\'\';\'\'height\'\':\'\'50px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'overflow\'\':\'\'auto\'\';\'\'}\'\'.\'\'wgSnapshot\'\'a\'\'.\'\'fullSize\'\'{\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'a\'\':\'\'link\'\',\'\'.\'\'wgPictureDetails\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'fieldset\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'fefefe\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'padding\'\':\'\'10px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f9f9f9\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'legend\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'rowOne\'\'{\'\'background\'\':\'\'#\'\'EFEFEF\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'rowTwo\'\'{\'\'background\'\':\'\'#\'\'DCDCDC\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'DDDDDD\'\'1px\'\';\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'rowOne\'\'.\'\'label\'\',\'\'.\'\'rowTwo\'\'.\'\'label\'\'{\'\'margin\'\'-\'\'left\'\':\'\'15px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'}\'\'.\'\'rowOne\'\'.\'\'data\'\',\'\'.\'\'rowTwo\'\'.\'\'data\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'a\'\'.\'\'fullSize\'\':\'\'link\'\',\'\'a\'\'.\'\'fullSize\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgComments\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'margin\'\':\'\'10px\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'title\'\'{\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'555555\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'title\'\'a\'\'{\'\'color\'\':\'\'navy\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'comment\'\',\'\'.\'\'wgComments\'\'.\'\'commentAlt\'\'{\'\'position\'\':\'\'relative\'\';\'\'padding\'\':\'\'5px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'comment\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'F7F7F7\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'C9C9C9\'\'1px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'commentAlt\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f0f0f0\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'FBFBFB\'\'1px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'number\'\'{\'\'float\'\':\'\'left\'\';\'\'font\'\'-\'\'size\'\':\'\'30px\'\';\'\'color\'\':\'\'silver\'\';\'\'margin\'\':\'\'5px\'\'10px\'\'5px\'\'5px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'posted\'\'{\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'padding\'\'-\'\'top\'\':\'\'3px\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'color\'\':\'\'gray\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'posted\'\'a\'\'{\'\'color\'\':\'\'navy\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'THUMBNAIL\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Thumbnail\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'thumbView\'\'{\'\'width\'\':\'\'400px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'thumbView\'\'.\'\'thumbnail\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'350px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'thumbView\'\'.\'\'thumbnail\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'width\'\':\'\'350px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'thumb\'\'{\'\'width\'\':\'\'100px\'\';\'\'height\'\':\'\'65px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'thumb\'\'img\'\'{\'\'width\'\':\'\'100px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'{\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'padding\'\':\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'4px\'\';\'\'padding\'\'-\'\'right\'\':\'\'4px\'\';\'\'background\'\'-\'\'color\'\':\'\'silver\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'img\'\'{\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'.\'\'caption\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'SLIDESHOW\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Slideshow\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'wgSlideshow\'\'.\'\'controls\'\'{\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'gallery\'\'-\'\'templates\'\'/\'\'images\'\'/\'\'pagination_bg\'\'.\'\'jpg\'\')\'\';\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'500px\'\';\'\'height\'\':\'\'42px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'}\'\'.\'\'wgSlideshow\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'{\'\'width\'\':\'\'500px\'\';\'\'height\'\':\'\'auto\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'img\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'title\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'white\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'white\'\'1px\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'counter\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'synopsis\'\'{\'\'width\'\':\'\'494px\'\';\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'black\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'SEARCH\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Search\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'#\'\'adminWrapper\'\'{\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'label\'\'{\'\'background\'\':\'\'black\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'adminWrapper\'\'td\'\'.\'\'data\'\'input\'\'{\'\'background\'\':\'\'#\'\'f1f1f1\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'#\'\'adminWrapper\'\'td\'\'.\'\'radio\'\'input\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\':\'\'none\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'forwardButton\'\'{\'\'cursor\'\':\'\'pointer\'\';\'\'float\'\':\'\'rigbt\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'forwardButton\'\':\'\'hover\'\'{\'\'color\'\':\'\'gold\'\';\'\'}','000001000001000011000016'),('itransact_credentials1','ITransact Credentials (Default)','ITransact Credentials (Default) ITransact Credentials (Default) shopping cart collateral items itransact credentials ','shopping-cart-collateral-items/itransact-credentials',1228953856,1228953856,'3','7','4','WebGUI::Asset::Template',1,'ITransact\'\'Credentials\'\'(\'\'Default\'\')\'\'ITransact\'\'Credentials\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'itransact\'\'credentials Shop\'\'/\'\'Credentials','000001000001000054'),('hkj6WeChxFyqfP85UlRP8w','matrix.css','matrix.css matrix.css new matrix matrix.css ','new-matrix/matrix.css',1232664229,1232664229,'3','7','12','WebGUI::Asset::Snippet',1,'matrix\'\'.\'\'css\'\'matrix\'\'.\'\'css\'\'new\'\'matrix\'\'matrix\'\'.\'\'css .\'\'wg\'\'-\'\'clear\'\'{\'\'display\'\':\'\'inline\'\';\'\'clear\'\':\'\'both\'\';\'\'}\'\'/\'\'*\'\'COLUMN\'\'STYLES\'\'*\'\'/\'\'.\'\'matrixLeft\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'65\'\'%\'\';\'\'padding\'\':\'\'1\'\'%\'\';\'\'min\'\'-\'\'height\'\':\'\'1\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'}\'\'.\'\'matrixRight\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'25\'\'%\'\';\'\'padding\'\':\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'1\'\'%\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'/\'\'*\'\'DROPSHADOW\'\'BUTTONS\'\'*\'\'/\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'span\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'888\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\':\'\'5px\'\'0px\'\'0px\'\'0px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\',\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\'{\'\'border\'\':\'\'solid\'\'#\'\'2f495e\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'padding\'\':\'\'auto\'\'3px\'\';\'\'margin\'\':\'\'0px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'line\'\'-\'\'height\'\':\'\'13px\'\';\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'6px\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'height\'\':\'\'22px\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\'2px\'\'10px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\':\'\'hover\'\',\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\':\'\'hover\'\'{\'\'border\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'444\'\';\'\'}\'\'/\'\'*\'\'WHITE\'\'AREA\'\'FOR\'\'THE\'\'LISTING\'\'OF\'\'OBJECTS\'\'TO\'\'COMPARE\'\'*\'\'/\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'height\'\':\'\'300px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'margin\'\':\'\'10px\'\'2px\'\'20px\'\'2px\'\';\'\'padding\'\':\'\'auto\'\'10px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'link\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'color\'\':\'\'#\'\'111\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'GRAY\'\'BAR\'\'THAT\'\'HOLDS\'\'THE\'\'SORT\'\'BUTTONS\'\'*\'\'/\'\'.\'\'matrixLeft\'\'.\'\'matrixListing\'\'.\'\'sortButtons\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'D2D2D2\'\'2px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'/\'\'*\'\'STYLES\'\'TO\'\'OVERRIDE\'\'THE\'\'SORT\'\'BUTTON\'\'CSS\'\'BUILT\'\'INTO\'\'THE\'\'PERL\'\'CODE\'\'*\'\'/\'\'#\'\'sortByViews\'\'-\'\'button\'\',\'\'#\'\'sortByCompares\'\'-\'\'button\'\',\'\'#\'\'sortByUpdated\'\'-\'\'button\'\',\'\'#\'\'sortByClicks\'\'-\'\'button\'\'{\'\'background\'\':\'\'none\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'4px\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\'-\'\'color\'\':\'\'transparent\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'}\'\'#\'\'sortByViews\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByCompares\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByUpdated\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByClicks\'\'-\'\'button\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'/\'\'*\'\'MATRIX\'\'STATISTICS\'\'*\'\'/\'\'.\'\'matrixRight\'\'.\'\'mainTitle\'\'{\'\'font\'\'-\'\'size\'\':\'\'20px\'\';\'\'padding\'\':\'\'5px\'\'10px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'}\'\'.\'\'matrixRight\'\'.\'\'textBox\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'padding\'\':\'\'10px\'\'5px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'{\'\'padding\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'title\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'statistics\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'label\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'100px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'a\'\'{\'\'color\'\':\'\'#\'\'111\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'LINKS\'\'TO\'\'CONTROL\'\'ADMIN\'\'FUNCTIONS\'\'*\'\'/\'\'.\'\'adminLinks\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\':\'\'link\'\',\'\'.\'\'adminLinks\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'link\'\',\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'visited\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'3498d1\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'39a6e5\'\';\'\'}\'\'/\'\'*\'\'STYLE\'\'FOR\'\'THE\'\'DETAILED\'\'LISTING\'\'*\'\'/\'\'#\'\'matrixDetail\'\'{\'\'min\'\'-\'\'width\'\':\'\'1000px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'line\'\'-\'\'height\'\':\'\'11px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'margin\'\'-\'\'left\'\':\'\'10px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'.\'\'screenshot\'\'{\'\'float\'\':\'\'left\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'commentsMail\'\'strong\'\'.\'\'title\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'padding\'\':\'\'2px\'\'10px\'\';\'\'border\'\':\'\'solid\'\'1px\'\'gray\'\';\'\'border\'\'-\'\'bottom\'\'-\'\'color\'\':\'\'silver\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'{\'\'margin\'\':\'\'0px\'\'0px\'\'20px\'\'0px\'\';\'\'border\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomRight\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'.\'\'assetAspectComment\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'padding\'\':\'\'3px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f5f5f5\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'.\'\'assetAspectCommentForm\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'d2d2d2\'\'5px\'\';\'\'padding\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\',\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'{\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'{\'\'display\'\':\'\'block\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'margin\'\':\'\'4px\'\'0px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'strong\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'130px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\'-\'\'right\'\':\'\'5px\'\';\'\'margin\'\'-\'\'right\'\':\'\'5px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'3px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'}\'\'.\'\'showLink\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'showLink\'\':\'\'hover\'\',\'\'.\'\'hideLink\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'555\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'hideLink\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'border\'\'-\'\'bottom\'\'-\'\'style\'\':\'\'none\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'#\'\'matrixMail\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\':\'\'15px\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'0px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'0px\'\';\'\'margin\'\'-\'\'top\'\':\'\'1px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'.\'\'tableData\'\'{\'\'padding\'\':\'\'5px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'input\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'.\'\'formDescription\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'matrixMail\'\'form\'\'*\'\'img\'\'{\'\'margin\'\'-\'\'top\'\':\'\'-\'\'18px\'\';\'\'}\'\'#\'\'matrixMail\'\'#\'\'verify_formId\'\'{\'\'height\'\':\'\'45px\'\';\'\'line\'\'-\'\'height\'\':\'\'45px\'\';\'\'font\'\'-\'\'size\'\':\'\'35px\'\';\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixRatings\'\'{\'\'width\'\':\'\'264px\'\';\'\'position\'\':\'\'relative\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'top\'\':\'\'12px\'\';\'\'}\'\'#\'\'matrixRatings\'\'table\'\'{\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixRatings\'\'td\'\'{\'\'overflow\'\':\'\'hidden\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'97BCD1\'\';\'\'border\'\':\'\'solid\'\'#\'\'4D606B\'\'1px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10x\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'»\'\'\"\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'color\'\':\'\'red\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'#\'\'matrixAttributes\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'rightDetails\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\'}\'\'#\'\'attributes\'\'{\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'margin\'\'-\'\'top\'\':\'\'10px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'padding\'\':\'\'10px\'\';\'\'}\'\'#\'\'attributes\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'attributes\'\'table\'\'*\'\'td\'\'{\'\'padding\'\':\'\'2px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'dt0\'\'-\'\'col\'\'-\'\'value\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'padding\'\':\'\'3px\'\';\'\'white\'\'-\'\'space\'\':\'\'no\'\'-\'\'wrap\'\';\'\'}\'\'/\'\'*\'\'COMPARISON\'\'STYLES\'\'*\'\'/\'\'#\'\'compareList\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'}\'\'#\'\'compareList\'\'table\'\'*\'\'th\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'1px\'\'5px\'\';\'\'}\'\'#\'\'compareList\'\'table\'\'*\'\'td\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'{\'\'color\'\':\'\'#\'\'39A6E5\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'col\'\'-\'\'name\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'{\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'col\'\'-\'\'name\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'b\'\'{\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'style\'\':\'\'normal\'\';\'\'padding\'\'-\'\'right\'\':\'\'25px\'\';\'\'color\'\':\'\'black\'\';\'\'}','000001000001000018000006'),('kJf77eCr9GAMiEzWrzsBTA','matrix-ie.css','matrix-ie.css matrix-ie.css new matrix matrix ie.css ','new-matrix/matrix-ie.css',1229639255,1229639255,'3','7','12','WebGUI::Asset::Snippet',1,'matrix\'\'-\'\'ie\'\'.\'\'css\'\'matrix\'\'-\'\'ie\'\'.\'\'css\'\'new\'\'matrix\'\'matrix\'\'ie\'\'.\'\'css .\'\'matrixLeft\'\'.\'\'buttons\'\'span\'\',\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'span\'\'{\'\'padding\'\':\'\'0px\'\'0px\'\'0px\'\'0px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\',\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'a\'\'{\'\'top\'\':\'\'-\'\'3px\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'height\'\':\'\'22px\'\';\'\'}\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'padding\'\':\'\'1px\'\'3px\'\';\'\'}','000001000001000018000007'),('4LQT4-bGW4FkiEQLSY5gvQ','show-hide.js','show-hide.js show-hide.js new matrix show hide.js ','new-matrix/show-hide.js',1232400287,1232400287,'3','7','12','WebGUI::Asset::Snippet',1,'show\'\'-\'\'hide\'\'.\'\'js\'\'show\'\'-\'\'hide\'\'.\'\'js\'\'new\'\'matrix\'\'show\'\'hide\'\'.\'\'js function\'\'showHide\'\'(\'\'theLink\'\',\'\'theId\'\')\'\'{\'\'var\'\'theId\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'theId\'\')\'\';\'\'var\'\'theLink\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'theLink\'\')\'\';\'\'if\'\'(\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'=\'\'\'\'\'block\'\'\'\'\')\'\'{\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\'\'\'none\'\'\'\'\';\'\'theLink\'\'.\'\'innerHTML\'\'=\'\'\"\'\'Send\'\'Creator\'\'a\'\'Message\'\'\"\'\';\'\'theLink\'\'.\'\'className\'\'=\'\'\"\'\'showLink\'\'\"\'\'}\'\'else\'\'{\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\'\'\'block\'\'\'\'\';\'\'theLink\'\'.\'\'innerHTML\'\'=\'\'\"\'\'Hide\'\'\"\'\';\'\'theLink\'\'.\'\'className\'\'=\'\'\"\'\'hideLink\'\'\"\'\'}\'\'}','000001000001000018000008'),('alraubvBu-YJJ614jAHD5w','matrix-nav-tmpl','matrix-nav-tmpl matrix-nav-tmpl new matrix matrix nav tmpl ','new-matrix/matrix-nav-tmpl',1232664015,1232664015,'3','7','12','WebGUI::Asset::Template',1,'matrix\'\'-\'\'nav\'\'-\'\'tmpl\'\'matrix\'\'-\'\'nav\'\'-\'\'tmpl\'\'new\'\'matrix\'\'matrix\'\'nav\'\'tmpl Navigation','000001000001000018000009'),('Vch1Ww7G_JpBhOhXX07RDg','matrx-nav','matrx-nav matrix-nav new matrix matrix nav ','new-matrix/matrix-nav',1232664082,1232664082,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'matrx\'\'-\'\'nav\'\'matrix\'\'-\'\'nav\'\'new\'\'matrix\'\'matrix\'\'nav','000001000001000018000010'),('PBtmpl0000000000000063','Default Overview Report','Default Overview Report Default Overview Report root import survey default overview report ','root/import/survey/default_overview_report',1124395696,1233156264,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Overview\'\'Report\'\'Default\'\'Overview\'\'Report\'\'root\'\'import\'\'survey\'\'default\'\'overview\'\'report Survey\'\'/\'\'Overview','000001000001000039000001'),('PBtmpl0000000000000062','Default Gradebook Report','Default Gradebook Report Default Gradebook Report root import survey default gradebook report ','root/import/survey/default_gradebook_report',1124395696,1232981641,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Gradebook\'\'Report\'\'Default\'\'Gradebook\'\'Report\'\'root\'\'import\'\'survey\'\'default\'\'gradebook\'\'report Survey\'\'/\'\'Gradebook','000001000001000039000002'); -INSERT INTO `assetVersionTag` VALUES ('pbversion0000000000001','Base 7.6.10 Install',1,1233158082,'3',1233158082,'3',0,'','3','',NULL,NULL,NULL,NULL,0); +INSERT INTO `asset` VALUES ('PBasset000000000000001','infinity','000001','published','WebGUI::Asset',1124395696,'3','997995720','3',NULL,1,NULL),('PBasset000000000000002','PBasset000000000000001','000001000001','published','WebGUI::Asset::Wobject::Folder',1124395696,'3','997995720','3',NULL,1,NULL),('68sKwDgf9cGH58-NZcU4lg','PBasset000000000000001','000001000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('iCYOjohB9SKvAPr6bXElKA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000004','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('ix1p0AbwKAz8QWB-T-HHfg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000003','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('_iHetEvMQUOoxS-T2CM0sQ','68sKwDgf9cGH58-NZcU4lg','000001000002000001','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('FOvmwGC0GtZo5VTxJIL3OA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000002','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('8Bb8gu-me2mhL3ljFyiWLg','68sKwDgf9cGH58-NZcU4lg','000001000002000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('m4YJFaqzultnB_sj1Uq0aw','68sKwDgf9cGH58-NZcU4lg','000001000002000008','published','WebGUI::Asset::File',1147642514,'3','997995720','3',NULL,0,NULL),('IWFxZDyGhQ3-SLZhELa3qw','68sKwDgf9cGH58-NZcU4lg','000001000002000009','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('bX5rYxb6tZ9docY6sUhBlw','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000001','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('Vzv1pWpg_w6R_o-b0rM2qQ','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000002','published','WebGUI::Asset::File',1147642515,'3','997995720','3',NULL,0,NULL),('NK8bqlwVRILJknqeCDPBHg','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000003','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('6QuS-0rosuZTdTv11fobig','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000001','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('2TqQc4OISddWCZmRY1_m8A','68sKwDgf9cGH58-NZcU4lg','000001000002000003','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('fK-HMSboA3uu0c1KYkYspA','2TqQc4OISddWCZmRY1_m8A','000001000002000003000001','published','WebGUI::Asset::Wobject::SyndicatedContent',1124395696,'3','997995720','3',NULL,0,NULL),('Swf6L8poXKc7hUaNPkBevw','68sKwDgf9cGH58-NZcU4lg','000001000002000004','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('Szs5eev3OMssmnsyLRZmWA','Swf6L8poXKc7hUaNPkBevw','000001000002000004000001','published','WebGUI::Asset::Wobject::DataForm',1124395696,'3','997995720','3',NULL,0,NULL),('x3OFY6OJh_qsXkZfPwug4A','68sKwDgf9cGH58-NZcU4lg','000001000002000006','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('pJd5TLAjfWMVXD6sCRLwUg','x3OFY6OJh_qsXkZfPwug4A','000001000002000006000001','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000003','7-0-style0000000000001','000001000001000045000002','published','WebGUI::Asset::Snippet',1147642492,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000001','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000009','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000014','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000010','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000015','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000011','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000016','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000012','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000017','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000013','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000018','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000014','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000019','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000015','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000020','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000016','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000021','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000017','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000002','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000018','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000006','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000019','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000007','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000020','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000008','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000021','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000009','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000022','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000010','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000023','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000011','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000024','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000012','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000025','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000013','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000026','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('Wl8WZ43g2rK5AYr9o4zY7w','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000006','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('4Yfz9hqBqM8OYMGuQK8oLw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000005','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000005','7-0-style0000000000001','000001000001000045000004','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000006','7-0-style0000000000001','000001000001000045000005','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000103','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000084','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000002','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000115','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000066','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000080','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000097','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000112','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000121','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000067','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000026','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000128','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000079','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000009','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000083','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000010','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000082','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000011','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000056','TYo2Bwl7aafzTtdHlS-arQ','000001000001000025000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000135','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000131','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000054','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000024','tXwf1zaOXTvsqPn6yu-GSw','000001000001000011000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000088','tPagC0AQErZXjLFZQ6OI1g','000001000001000015000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000078','GYaFxnMu9UsEG8oanwB6TA','000001000001000012000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000125','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000118','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000109','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000094','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000133','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000012','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000065','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000055','VZK3CRgiMb8r4dBjUmCTgQ','000001000001000024000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000020','-K8Hj45mbelljN9-0CXZxg','000001000001000008000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000085','-K8Hj45mbelljN9-0CXZxg','000001000001000008000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000104','-K8Hj45mbelljN9-0CXZxg','000001000001000008000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000021','-K8Hj45mbelljN9-0CXZxg','000001000001000008000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000033','N13SD1Fpqk00UgBt1Z8ivQ','000001000001000014000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000047','cj2y4papTVGZRFdwTI-_fw','000001000001000020000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000029','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000013','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000032','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000014','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000027','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000015','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000031','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000016','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('jTNggl7AoVSUc_ZzrvuCmw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000008','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('LBuiKzg2mWwmOPS9AgV3bg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000007','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('GNvjCFQWjY2AF2uf0aCM8Q','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000068','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000017','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000099','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000018','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000114','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000019','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000092','V3l5S5TtI7wMm1WpIMhvOA','000001000001000018000009000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000044','V3l5S5TtI7wMm1WpIMhvOA','000001000001000018000009000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000059','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000036000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('IZkrow_zwvbf4FCH-taVTQ','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000002','published','WebGUI::Asset::Wobject::Folder',1226011853,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000207','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000007','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('QHn6T9rU7KsnS3Y70KCNTg','PBasset000000000000002','000001000001000001','published','WebGUI::Asset::Wobject::Folder',1227080251,'3','997995720','3',NULL,0,NULL),('HPDOcsj4gBme8D4svHodBw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000001','published','WebGUI::Asset::Wobject::Folder',1225404573,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000002','TCtybxdqmdwdvRn555zpCQ','000001000001000030000002','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000063','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000062','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000061','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000064','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000116','-K8Hj45mbelljN9-0CXZxg','000001000001000008000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000007','7-0-style0000000000001','000001000001000045000006','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000093','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000048','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000108','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000117','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000124','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000130','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000134','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000077','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000020','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000098','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000021','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000122','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000022','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000136','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000013','9M-lrlPQWeeNWfvnDnK_Xg','000001000001000004000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000010','K0q_N885Httqev1VCqUWxg','000001000001000004000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000011','fq1ZkYhH24R5tb96kuT10Q','000001000001000004000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000014','_gBYAdTcbkiyamnqi2Xskg','000001000001000004000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000012','oHk7fAFhEEkB7dHzi0QOQA','000001000001000004000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000006','taX2UYkFF21ALpFZY2rhMw','000001000001000004000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000004','xSmREZO3GNzK3M5PaueOOQ','000001000001000004000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000005','0bx-xoL8TSXXubFuqKAoVQ','000001000001000004000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000057','Ik9HHky10DIyFTKehUD1dw','000001000001000028000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000060','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('pbrobot000000000000001','PBasset000000000000002','000001000001000031','published','WebGUI::Asset::Snippet',1147642511,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000111','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000137','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000132','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000123','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000129','TvOZs8U1kRXLtwtmyW75pg','000001000001000003000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000081','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000023','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000101','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000024','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000065','7-0-style0000000000049','000001000001000047000016','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('OhdaFLE7sXOzo_SIP2ZUgA','68sKwDgf9cGH58-NZcU4lg','000001000002000007','published','WebGUI::Asset::Wobject::Article',1147642513,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000113','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000025','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000037','GdkQpvjRtJqtzOUbwIIQRA','000001000001000018000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000038','tnc5iYyynX2hfdEs9D3P8w','000001000001000018000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000036','tBL7BWiQRZFed2Y-Zjo9tQ','000001000001000018000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000039','vgXdBcFTqU7h4wBG1ewdBw','000001000001000018000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000091','vgXdBcFTqU7h4wBG1ewdBw','000001000001000018000004000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000107','vgXdBcFTqU7h4wBG1ewdBw','000001000001000018000004000003','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000040','hcFlqnXlsmC1ujN6Id0F0A','000001000001000018000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000041','eRJR52fvlaxfetv3DQkQYw','000001000001000018000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000042','5HIDHq5lAWHV5gpYGS0zLg','000001000001000018000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000045','y8XkRdxIperLKkJ3bL5sSQ','000001000001000018000011000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000043','rYEFwXXo0tkGhQTcbDibvg','000001000001000018000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('7-0-style0000000000064','7-0-style0000000000049','000001000001000047000015','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000001','TCtybxdqmdwdvRn555zpCQ','000001000001000030000001','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000053','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000017','published','WebGUI::Asset::Template',1124395696,'3','1222802960','3',NULL,0,NULL),('PBtmpl0000000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000002000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000140','Da6KWn805L4B5e4HFgQRQA','000001000001000035000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000141','-K8Hj45mbelljN9-0CXZxg','000001000001000008000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000066','7-0-style0000000000049','000001000001000047000017','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000062','7-0-style0000000000049','000001000001000047000013','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000060','7-0-style0000000000049','000001000001000047000011','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000061','7-0-style0000000000049','000001000001000047000012','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000057','7-0-style0000000000049','000001000001000047000008','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000058','7-0-style0000000000049','000001000001000047000009','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000059','7-0-style0000000000049','000001000001000047000010','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000056','7-0-style0000000000049','000001000001000047000007','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000052','7-0-style0000000000049','000001000001000047000003','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000053','7-0-style0000000000049','000001000001000047000004','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000054','7-0-style0000000000049','000001000001000047000005','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000055','7-0-style0000000000049','000001000001000047000006','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('stevecoolmenu000000001','7-0-style0000000000049','000001000001000047000001','published','WebGUI::Asset::Template',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000051','7-0-style0000000000049','000001000001000047000002','published','WebGUI::Asset::Snippet',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000049','PBasset000000000000002','000001000001000047','published','WebGUI::Asset::Wobject::Folder',1147642504,'3','997995720','3',NULL,0,NULL),('stevestyle000000000002','7-0-style0000000000031','000001000001000046000016','published','WebGUI::Asset::Template',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000048','7-0-style0000000000031','000001000001000046000017','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000046','7-0-style0000000000031','000001000001000046000015','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000044','7-0-style0000000000031','000001000001000046000013','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000045','7-0-style0000000000031','000001000001000046000014','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000043','7-0-style0000000000031','000001000001000046000012','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000041','7-0-style0000000000031','000001000001000046000010','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000042','7-0-style0000000000031','000001000001000046000011','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000038','7-0-style0000000000031','000001000001000046000007','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000039','7-0-style0000000000031','000001000001000046000008','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000040','7-0-style0000000000031','000001000001000046000009','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000036','7-0-style0000000000031','000001000001000046000005','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000037','7-0-style0000000000031','000001000001000046000006','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000034','7-0-style0000000000031','000001000001000046000003','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000035','7-0-style0000000000031','000001000001000046000004','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000032','7-0-style0000000000031','000001000001000046000001','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000033','7-0-style0000000000031','000001000001000046000002','published','WebGUI::Asset::Snippet',1147642500,'3','997995720','3',NULL,0,NULL),('PBnav000000style01lvl2','7-0-style0000000000001','000001000001000045000028','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000030','7-0-style0000000000001','000001000001000045000029','published','WebGUI::Asset::File::Image',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000031','PBasset000000000000002','000001000001000046','published','WebGUI::Asset::Wobject::Folder',1147642500,'3','997995720','3',NULL,0,NULL),('stevenav00000000000001','7-0-style0000000000001','000001000001000045000027','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000025','7-0-style0000000000001','000001000001000045000024','published','WebGUI::Asset::Wobject::Navigation',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000026','7-0-style0000000000001','000001000001000045000025','published','WebGUI::Asset::Wobject::Navigation',1147642499,'3','997995720','3',NULL,0,NULL),('stevestyle000000000001','7-0-style0000000000001','000001000001000045000026','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000023','7-0-style0000000000001','000001000001000045000022','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000024','7-0-style0000000000001','000001000001000045000023','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000022','7-0-style0000000000001','000001000001000045000021','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000021','7-0-style0000000000001','000001000001000045000020','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000018','7-0-style0000000000001','000001000001000045000017','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000019','7-0-style0000000000001','000001000001000045000018','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000020','7-0-style0000000000001','000001000001000045000019','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000017','7-0-style0000000000001','000001000001000045000016','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000016','7-0-style0000000000001','000001000001000045000015','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000015','7-0-style0000000000001','000001000001000045000014','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000014','7-0-style0000000000001','000001000001000045000013','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000012','7-0-style0000000000001','000001000001000045000011','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000013','7-0-style0000000000001','000001000001000045000012','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000010','7-0-style0000000000001','000001000001000045000009','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000011','7-0-style0000000000001','000001000001000045000010','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000009','7-0-style0000000000001','000001000001000045000008','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000008','7-0-style0000000000001','000001000001000045000007','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000067','7-0-style0000000000049','000001000001000047000018','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBtmplHelp000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000002000002','published','WebGUI::Asset::Template',1124395706,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000001','PBasset000000000000002','000001000001000045','published','WebGUI::Asset::Wobject::Folder',1147642492,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000001','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000003','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000002','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000004','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000003','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000005','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000004','oGfxez5sksyB_PcaAsEm_Q','000001000001000040000006','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000063','7-0-style0000000000049','000001000001000047000014','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000142','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000026','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('stevestyle000000000003','7-0-style0000000000049','000001000001000047000020','published','WebGUI::Asset::Template',1147642510,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000002','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000001','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000001','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000002','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000003','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000003','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000004','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000004','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000005','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000004','7-0-style0000000000001','000001000001000045000003','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000002','3uuBf8cYuj1sew2OJXl9tg','000001000001000016000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000001','3uuBf8cYuj1sew2OJXl9tg','000001000001000016000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('PBtmplBlankStyle000001','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000038000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('DashboardViewTmpl00001','S1A9iAwKcQQ6P20uTqw-Ew','000001000001000007000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('WeatherDataTmpl0000001','9wKWdum0_8z-OhhquWLtSQ','000001000001000044000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000002','Efe2W0UgrSRDltNJ87jlfg','000001000001000037000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000001','Efe2W0UgrSRDltNJ87jlfg','000001000001000037000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('MultiSearchTmpl0000001','bBzO4CWjqU_ile3gf5Iypw','000001000001000021000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000068','7-0-style0000000000049','000001000001000047000019','published','WebGUI::Asset::File::Image',1147642510,'3','997995720','3',NULL,0,NULL),('ZipArchiveTMPL00000001','CSN-ZON7Uwv8kxf3F1fh5Q','000001000001000049000001','published','WebGUI::Asset::Template',1133743240,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000002','7-0-style0000000000001','000001000001000045000001','published','WebGUI::Asset::File::Image',1147642492,'3','997995720','3',NULL,0,NULL),('WVtmpl0000000000000001','nqNbSUAhk9Vd1zda2SCz9A','000001000001000018000010000001','published','WebGUI::Asset::Template',1133743240,'3','1222803175','3',NULL,0,NULL),('2CS-BErrjMmESOtGT90qOg','HPDOcsj4gBme8D4svHodBw','000001000001000001000001000003','published','WebGUI::Asset::Template',1227070888,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000208','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000027','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000209','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000028','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000210','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000029','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('ProjectManagerTMPL0004','yD1SMHelczihzjEmx6eXBA','000001000001000027000002000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0003','pV7GnZdpjR3XpZaSINIoeg','000001000001000027000003000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0002','71e17KeduiXgODLMlUxiow','000001000001000027000004000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0001','9A-mg2gwWmaYi9o_1C7ArQ','000001000001000027000001000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('TimeTrackingTMPL000002','vTymIDYL2YqEh6PV50F7ew','000001000001000042000001000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000003','lo1ac3BsoJx3ijGQ3gR-bQ','000001000001000042000002000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000001','huASapWvFDzqwOSbcN-JFQ','000001000001000042000003000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('PBtmpl0000000000000200','f_tn9FfoSfKWX43F83v_3w','000001000001000032000001','published','WebGUI::Asset::Template',1147642427,'3','997995720','3',NULL,0,NULL),('PBasset000000000000003','PBasset000000000000001','000001000003','published','WebGUI::Asset::Wobject::Folder',1147642437,'3','997995720','3',NULL,1,NULL),('pbproto000000000000002','PBasset000000000000002','000001000001000029','published','WebGUI::Asset::Wobject::Collaboration',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000220','tXwf1zaOXTvsqPn6yu-GSw','000001000001000011000002','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000221','tXwf1zaOXTvsqPn6yu-GSw','000001000001000011000003','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('nbSrhXZQuxIjhWFaFPSuVA','PBasset000000000000002','000001000001000002','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('TvOZs8U1kRXLtwtmyW75pg','PBasset000000000000002','000001000001000003','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('xSmREZO3GNzK3M5PaueOOQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000001','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('0bx-xoL8TSXXubFuqKAoVQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000002','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('taX2UYkFF21ALpFZY2rhMw','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000003','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('K0q_N885Httqev1VCqUWxg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000004','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('fq1ZkYhH24R5tb96kuT10Q','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000005','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('oHk7fAFhEEkB7dHzi0QOQA','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000006','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('9M-lrlPQWeeNWfvnDnK_Xg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000007','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('_gBYAdTcbkiyamnqi2Xskg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000004000008','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('GNOAsX98vCsl0JRwfwL-gg','PBasset000000000000002','000001000001000006','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','997995720','3',NULL,0,NULL),('S1A9iAwKcQQ6P20uTqw-Ew','PBasset000000000000002','000001000001000007','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('-K8Hj45mbelljN9-0CXZxg','PBasset000000000000002','000001000001000008','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('tXwf1zaOXTvsqPn6yu-GSw','PBasset000000000000002','000001000001000011','published','WebGUI::Asset::Wobject::Folder',1147642469,'3','997995720','3',NULL,0,NULL),('GYaFxnMu9UsEG8oanwB6TA','PBasset000000000000002','000001000001000012','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('N13SD1Fpqk00UgBt1Z8ivQ','PBasset000000000000002','000001000001000014','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('tPagC0AQErZXjLFZQ6OI1g','PBasset000000000000002','000001000001000015','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('default_post_received1','GNOAsX98vCsl0JRwfwL-gg','000001000001000006000030','published','WebGUI::Asset::Template',1222708029,'3','1222803001','3',NULL,0,NULL),('3uuBf8cYuj1sew2OJXl9tg','PBasset000000000000002','000001000001000016','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('aNNC62qLAS6TB-0_MCYjsw','PBasset000000000000002','000001000001000017','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','997995720','3',NULL,0,NULL),('tBL7BWiQRZFed2Y-Zjo9tQ','zyWi26q9na-iiZqL4yedog','000001000001000018000001','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('GdkQpvjRtJqtzOUbwIIQRA','zyWi26q9na-iiZqL4yedog','000001000001000018000002','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('tnc5iYyynX2hfdEs9D3P8w','zyWi26q9na-iiZqL4yedog','000001000001000018000003','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('vgXdBcFTqU7h4wBG1ewdBw','zyWi26q9na-iiZqL4yedog','000001000001000018000004','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('hcFlqnXlsmC1ujN6Id0F0A','zyWi26q9na-iiZqL4yedog','000001000001000018000005','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('eRJR52fvlaxfetv3DQkQYw','zyWi26q9na-iiZqL4yedog','000001000001000018000006','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('5HIDHq5lAWHV5gpYGS0zLg','zyWi26q9na-iiZqL4yedog','000001000001000018000007','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('rYEFwXXo0tkGhQTcbDibvg','zyWi26q9na-iiZqL4yedog','000001000001000018000008','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('V3l5S5TtI7wMm1WpIMhvOA','zyWi26q9na-iiZqL4yedog','000001000001000018000009','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('nqNbSUAhk9Vd1zda2SCz9A','zyWi26q9na-iiZqL4yedog','000001000001000018000010','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('y8XkRdxIperLKkJ3bL5sSQ','zyWi26q9na-iiZqL4yedog','000001000001000018000011','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('LdiozcIUciWuvt3Z-na5Ww','PBasset000000000000002','000001000001000019','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','997995720','3',NULL,0,NULL),('cj2y4papTVGZRFdwTI-_fw','PBasset000000000000002','000001000001000020','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('bBzO4CWjqU_ile3gf5Iypw','PBasset000000000000002','000001000001000021','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('BFfNj5wA9bDw8H3cnr8pTw','PBasset000000000000002','000001000001000022','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('AgyFhx3eXlfZXNp2MkrsiQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000026000001','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803652','3',NULL,0,NULL),('F7MAQ-cpuvQ1KuC7J4P5zQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000026000002','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803653','3',NULL,0,NULL),('jEz8iTGNWEt2I05IhVV19Q','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000016','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222802937','3',NULL,0,NULL),('VZK3CRgiMb8r4dBjUmCTgQ','PBasset000000000000002','000001000001000024','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','997995720','3',NULL,0,NULL),('TYo2Bwl7aafzTtdHlS-arQ','PBasset000000000000002','000001000001000025','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','997995720','3',NULL,0,NULL),('9A-mg2gwWmaYi9o_1C7ArQ','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000001','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('yD1SMHelczihzjEmx6eXBA','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000002','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('pV7GnZdpjR3XpZaSINIoeg','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000003','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('71e17KeduiXgODLMlUxiow','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000004','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','1222803147','3',NULL,0,NULL),('Ik9HHky10DIyFTKehUD1dw','PBasset000000000000002','000001000001000028','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('f_tn9FfoSfKWX43F83v_3w','PBasset000000000000002','000001000001000032','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('Da6KWn805L4B5e4HFgQRQA','PBasset000000000000002','000001000001000035','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('bbiA9Zq5Gy2oCFBlILO3QA','PBasset000000000000002','000001000001000036','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('Efe2W0UgrSRDltNJ87jlfg','PBasset000000000000002','000001000001000037','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('RrV4aAPnn4dM0ZcU3OXnlw','PBasset000000000000002','000001000001000038','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('5bnNzteN7w3NnK9mF4XiCg','PBasset000000000000002','000001000001000039','published','WebGUI::Asset::Wobject::Folder',1147642481,'3','997995720','3',NULL,0,NULL),('oGfxez5sksyB_PcaAsEm_Q','PBasset000000000000002','000001000001000040','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','997995720','3',NULL,0,NULL),('vTymIDYL2YqEh6PV50F7ew','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000001','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('lo1ac3BsoJx3ijGQ3gR-bQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000002','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('huASapWvFDzqwOSbcN-JFQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000042000003','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','1222803153','3',NULL,0,NULL),('9wKWdum0_8z-OhhquWLtSQ','PBasset000000000000002','000001000001000044','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','997995720','3',NULL,0,NULL),('CSN-ZON7Uwv8kxf3F1fh5Q','PBasset000000000000002','000001000001000049','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('TCtybxdqmdwdvRn555zpCQ','PBasset000000000000002','000001000001000030','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000070','7-0-style0000000000049','000001000001000047000021','published','WebGUI::Asset::Wobject::Navigation',1147642510,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000071','7-0-style0000000000049','000001000001000047000022','published','WebGUI::Asset::File::Image',1147642511,'3','997995720','3',NULL,0,NULL),('PBnav00000000000bullet','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000027','published','WebGUI::Asset::Template',1148579524,'3','1222803972','3',NULL,0,NULL),('PBnav00000000indentnav','BFfNj5wA9bDw8H3cnr8pTw','000001000001000022000028','published','WebGUI::Asset::Template',1148579525,'3','1222803972','3',NULL,0,NULL),('PBtmpl00000000table125','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000008','published','WebGUI::Asset::Template',1148579525,'3','1222803981','3',NULL,0,NULL),('PBtmpl00000000table094','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000009','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table131','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000010','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table135','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000011','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table118','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000012','published','WebGUI::Asset::Template',1148579525,'3','1222803982','3',NULL,0,NULL),('PBtmpl000000000table54','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000013','published','WebGUI::Asset::Template',1154535074,'3','1222803982','3',NULL,0,NULL),('PBtmpl00000000table109','aNNC62qLAS6TB-0_MCYjsw','000001000001000017000014','published','WebGUI::Asset::Template',1154535074,'3','1222803982','3',NULL,0,NULL),('BmLaN4rmAANkCglXUViEbg','-WM2dt0ZGpDasuL2wWocxg','000001000001000027000005','published','WebGUI::Asset::Wobject::Folder',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0006','BmLaN4rmAANkCglXUViEbg','000001000001000027000005000001','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0005','BmLaN4rmAANkCglXUViEbg','000001000001000027000005000002','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('Q4uX_C557arTp6D_jwB1jQ','PBasset000000000000002','000001000001000048','published','WebGUI::Asset::Wobject::Folder',1165460175,'3','997995720','3',NULL,0,NULL),('WikiRCTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000001','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiFrontTmpl000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000002','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiSearchTmpl00000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000003','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPHTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000004','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageTmpl0000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000005','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageEditTmpl000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000006','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiMPTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000007','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('SQLReportDownload00001','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000036000002','published','WebGUI::Asset::Template',1171466654,'3','1222803962','3',NULL,0,NULL),('X7DrzUcj8pOKFa_6k9D5iw','PBasset000000000000002','000001000001000023','published','WebGUI::Asset::Wobject::Folder',1185754569,'3','997995720','3',NULL,0,NULL),('newsletter000000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000001','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettercs0000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000002','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettersubscrip0001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000023000003','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('MBmWlA_YEA2I6D29OMGtRg','HPDOcsj4gBme8D4svHodBw','000001000001000001000001000004','published','WebGUI::Asset::Template',1226542675,'3','997995720','3',NULL,0,NULL),('FJbUTvZ2nUTn65LpW6gjsA','HPDOcsj4gBme8D4svHodBw','000001000001000001000001000001','published','WebGUI::Asset::Template',1227070381,'3','997995720','3',NULL,0,NULL),('WikiKeyword00000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000048000008','published','WebGUI::Asset::Template',1185754571,'3','1222803956','3',NULL,0,NULL),('tempspace0000000000000','PBasset000000000000001','000001000004','published','WebGUI::Asset::Wobject::Folder',1185754574,'3','997995720','3',NULL,1,NULL),('75CmQgpcCSkdsL-oawdn3Q','HPDOcsj4gBme8D4svHodBw','000001000001000001000001000002','published','WebGUI::Asset::Template',1227052575,'3','997995720','3',NULL,0,NULL),('gI_TxK-5S4DNuv42wpImmw','PBasset000000000000002','000001000001000013','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('jME5BEDYVDlBZ8jIQA9-jQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000001','published','WebGUI::Asset::Template',1197927169,'3','997995720','3',NULL,0,NULL),('azCqD0IjdQSlM3ar29k5Sg','gI_TxK-5S4DNuv42wpImmw','000001000001000013000002','published','WebGUI::Asset::Template',1197881748,'3','997995720','3',NULL,0,NULL),('05FpjceLYhq4csF1Kww1KQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000003','published','WebGUI::Asset::Template',1197879361,'3','997995720','3',NULL,0,NULL),('q5O62aH4pjUXsrQR3Pq4lw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000004','published','WebGUI::Asset::Template',1197825772,'3','997995720','3',NULL,0,NULL),('KAMdiUdJykjN02CPHpyZOw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000005','published','WebGUI::Asset::Template',1197825787,'3','997995720','3',NULL,0,NULL),('OkphOEdaSGTXnFGhK4GT5A','gI_TxK-5S4DNuv42wpImmw','000001000001000013000006','published','WebGUI::Asset::Template',1197825794,'3','997995720','3',NULL,0,NULL),('TEId5V-jEvUULsZA0wuRuA','gI_TxK-5S4DNuv42wpImmw','000001000001000013000007','published','WebGUI::Asset::Template',1197989443,'3','997995720','3',NULL,0,NULL),('6X-7Twabn5KKO_AbgK3PEw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000008','published','WebGUI::Asset::Template',1197987780,'3','997995720','3',NULL,0,NULL),('7JCTAiu1U_bT9ldr655Blw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000009','published','WebGUI::Asset::Template',1197825824,'3','997995720','3',NULL,0,NULL),('0X4Q3tBWUb_thsVbsYz9xQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000010','published','WebGUI::Asset::Template',1197987372,'3','997995720','3',NULL,0,NULL),('m3IbBavqzuKDd2PGGhKPlA','gI_TxK-5S4DNuv42wpImmw','000001000001000013000011','published','WebGUI::Asset::Template',1197825845,'3','997995720','3',NULL,0,NULL),('UTNFeV7B_aSCRmmaFCq4Vw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000012','published','WebGUI::Asset::Template',1197825856,'3','997995720','3',NULL,0,NULL),('zcX-wIUct0S_np14xxOA-A','gI_TxK-5S4DNuv42wpImmw','000001000001000013000013','published','WebGUI::Asset::Template',1197825866,'3','997995720','3',NULL,0,NULL),('MBZK_LPVzqhb4TV4mMRTJg','gI_TxK-5S4DNuv42wpImmw','000001000001000013000014','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_hELmIJfgbAyXFNqPyApxQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000015','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_9_eiaPgxzF_x_upt6-PNQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000016','published','WebGUI::Asset::Snippet',1197988920,'3','997995720','3',NULL,0,NULL),('kaPRSaf8UKiskiGEgJgLAw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000017','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('bANo8aiAPA7aY_oQZKxIWw','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000001','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('2ci_v2d4x4uvyjTRlC49OA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000002','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('O-EsSzKgAk1KolFT-x_KsA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000003','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('fdd8tGExyVwHyrB8RBbKXg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000004','published','WebGUI::Asset::File::Image',1197330839,'3','997995720','3',NULL,0,NULL),('BpisgHl4ZDcSECJp6oib1w','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000005','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('zshreRgPAXtnF0DtVbQ1Yg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000006','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('mM3bjP_iG9sv5nQb4S17tQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000018','published','WebGUI::Asset::Template',1197879662,'3','997995720','3',NULL,0,NULL),('ilu5BrM-VGaOsec9Lm7M6Q','gI_TxK-5S4DNuv42wpImmw','000001000001000013000019','published','WebGUI::Asset::Template',1197878780,'3','997995720','3',NULL,0,NULL),('-ANLpoTEP-n4POAdRxCzRw','gI_TxK-5S4DNuv42wpImmw','000001000001000013000020','published','WebGUI::Asset::Template',1197880641,'3','997995720','3',NULL,0,NULL),('OxJWQgnGsgyGohP2L3zJPQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000021','published','WebGUI::Asset::Template',1204663962,'3','997995720','3',NULL,0,NULL),('Tsg7xmPYv782j6IVz7yHFg','PBasset000000000000002','000001000001000005','published','WebGUI::Asset::Wobject::Folder',1204890713,'3','997995720','3',NULL,0,NULL),('kj3b-X3i6zRKnhLb4ZiCLw','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000001','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('uRL9qtk7Rb0YRJ41LmHOJw','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000002','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarWeek0000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000003','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarDay00000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000004','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEvent000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000005','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEventEdit00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000006','published','WebGUI::Asset::Template',1205160982,'3','997995720','3',NULL,0,NULL),('CalendarMonth000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000007','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarSearch00000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000008','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarPrintEvent0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000009','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintMonth0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000010','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintWeek00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000011','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintDay000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000005000012','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('jnYdqDkUR8x7Pv2eGR1qTA','PBasset000000000000002','000001000001000041','published','WebGUI::Asset::Wobject::Folder',1205431513,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000001','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000001','published','WebGUI::Asset::Template',1205003608,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000002','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000002','published','WebGUI::Asset::Template',1205003676,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000003','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000003','published','WebGUI::Asset::Template',1205003711,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000004','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000004','published','WebGUI::Asset::Template',1205158717,'3','997995720','3',NULL,0,NULL),('7fE8md51vTCcuJFOvxNaGA','gI_TxK-5S4DNuv42wpImmw','000001000001000013000022','published','WebGUI::Asset::Snippet',1205443600,'3','997995720','3',NULL,0,NULL),('1oGhfj00KkCzP1ez01AfKA','gI_TxK-5S4DNuv42wpImmw','000001000001000013000023','published','WebGUI::Asset::Snippet',1205635970,'3','997995720','3',NULL,0,NULL),('3qiVYhNTXMVC5hfsumVHgg','gI_TxK-5S4DNuv42wpImmw','000001000001000013000024','published','WebGUI::Asset::Snippet',1206743306,'3','997995720','3',NULL,0,NULL),('vrKXEtluIhbmAS9xmPukDA','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000010','published','WebGUI::Asset::Template',1212092352,'3','1222802925','3',NULL,0,NULL),('4qh0kIsFUdd4Ox-Iu1JZgg','PBasset000000000000002','000001000001000010','published','WebGUI::Asset::Wobject::Folder',1208725439,'3','997995720','3',NULL,0,NULL),('BMybD3cEnmXVk2wQ_qEsRQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000001','published','WebGUI::Asset::Template',1208530113,'3','997995720','3',NULL,0,NULL),('OOyMH33plAy6oCj_QWrxtg','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000002','published','WebGUI::Asset::Template',1207951375,'3','997995720','3',NULL,0,NULL),('2rC4ErZ3c77OJzJm7O5s3w','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000003','published','WebGUI::Asset::Template',1208721232,'3','997995720','3',NULL,0,NULL),('PsFn7dJt4wMwBa8hiE3hOA','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000004','published','WebGUI::Asset::Template',1208558071,'3','997995720','3',NULL,0,NULL),('yBwydfooiLvhEFawJb0VTQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000005','published','WebGUI::Asset::Template',1208629936,'3','997995720','3',NULL,0,NULL),('63ix2-hU0FchXGIWkG3tow','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000011','published','WebGUI::Asset::Template',1209588387,'3','1222802925','3',NULL,0,NULL),('POVcY79vIqAHR8OfGt36aw','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000007','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('hIB-z34r8Xl-vYVYCkKr-w','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000008','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('-mPUoFlYcjqjPUPRLAlxNQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000009','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MDpUOR-N8KMyt1J7Hh_h4w','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000010','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('YfXKByTwDZVituMc4h13Dg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000011','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('esko_HSU0Gh-uJZ1h3xRmQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000012','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('oSqpGswzpBG_ErdfYwIO8A','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000013','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MXJklShZvLLB_DSnZQmXrQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000014','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('BthxD5oJ0idmsyI3ioA2FA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000015','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('aZ-1HYQamkRHYXvzAra8WQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000016','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('eRkb94OYcS5AdcrrerOP5Q','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000017','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TbnkjAJQEASORXIpYqDkcA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000018','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('er-3faBjY-hhlDcc5aKqdQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000019','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('8bFsu2FJUqHRUiHcozcVFw','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000020','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('34Aayx5eA320D8VfhdfDBw','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000021','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TlhKOVmWblZOsAdqmhEpeg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000022','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('Nx0ypjO3cN6QdZUBUEE0lA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000023','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('CmFZLN7iPS7XXvUEsxKPKA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000024','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('v_XBgwwZqgW1D5s4y05qfg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000025','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('4TdAkKoQbSCvI7QWcW889A','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000026','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('SAgK6eDPCG1cgkJ59WapHQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000027','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('XJYLuvGy9ubF7JNKyINtpA','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000028','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('RWj7hyv2SpZuXxwj1Wocug','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000029','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('aq8QElnlm3YufAoxRz9Pcg','kaPRSaf8UKiskiGEgJgLAw','000001000001000013000017000030','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('gbnRhcWNk1iQe32LFEB5eQ','PBasset000000000000002','000001000001000033','published','WebGUI::Asset::Wobject::Folder',1210779723,'3','997995720','3',NULL,0,NULL),('6tK47xsaIH-ELw0IBo0uRQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000001','published','WebGUI::Asset::Wobject::Folder',1210777115,'3','997995720','3',NULL,0,NULL),('_bZJ9LA_KNekZiFPaP2SeQ','6tK47xsaIH-ELw0IBo0uRQ','000001000001000033000001000001','published','WebGUI::Asset::File::Image',1210777868,'3','997995720','3',NULL,0,NULL),('nFen0xjkZn8WkpM93C9ceQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000002','published','WebGUI::Asset::Template',1210779326,'3','997995720','3',NULL,0,NULL),('1XOJDcg_ITRYwVM-QnIcPw','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000003','published','WebGUI::Asset::Snippet',1210779441,'3','997995720','3',NULL,0,NULL),('4e-_rNs6mSWedZhQ_V5kJA','gbnRhcWNk1iQe32LFEB5eQ','000001000001000033000004','published','WebGUI::Asset::Snippet',1210779672,'3','997995720','3',NULL,0,NULL),('eqb9sWjFEVq0yHunGV8IGw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000012','published','WebGUI::Asset::Template',1213182595,'3','1222802925','3',NULL,0,NULL),('6D4Z-oruXPS6OlH_Kx8pBg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000005','published','WebGUI::Asset::Wobject::Folder',1209509389,'3','997995720','3',NULL,0,NULL),('hQ7z33_jOYkQ8WNX5xy9Sw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000001','published','WebGUI::Asset::File::Image',1209509455,'3','997995720','3',NULL,0,NULL),('vWW_DcHiYSrKZOkkIfEfcQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000002','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('_bPYzRA87NTAUIKlfrJMHg','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000003','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('nJjZHRwdDs5MAZYsAyioHw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000004','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8hxfkrJPeFVRWF5piCNJ1A','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000005','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('Osx7WN52iIKHZFT4vqUBHQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000006','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('oWff8fGzRdHPyq5VNREe9Q','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000007','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('uqbkvb1b9443VvfkyRz95w','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000008','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8YiMkcz32xalkAn3WBLpag','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000041000005000009','published','WebGUI::Asset::File::Image',1210181860,'3','997995720','3',NULL,0,NULL),('3n3H85BsdeRQ0I08WmvlOg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000006','published','WebGUI::Asset::Snippet',1212091492,'3','997995720','3',NULL,0,NULL),('5m5I7__l40C4hhv4ydqAHQ','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000041000007','published','WebGUI::Asset::Snippet',1210181698,'3','997995720','3',NULL,0,NULL),('C5fPz-Wg85vkYRvCdl-Xqw','PBasset000000000000002','000001000001000043','published','WebGUI::Asset::Wobject::Folder',1212160830,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000001','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000001','published','WebGUI::Asset::Template',1212159641,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000002','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000002','published','WebGUI::Asset::Template',1212000800,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000003','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000043000003','published','WebGUI::Asset::Template',1212001437,'3','997995720','3',NULL,0,NULL),('usuxw9V3jN4d4pujRiEYxg','7-0-style0000000000049','000001000001000047000023','published','WebGUI::Asset::Snippet',1209494150,'3','997995720','3',NULL,0,NULL),('aNmgn0cd6tldmC1FpW4KbA','PBasset000000000000002','000001000001000034','published','WebGUI::Asset::Wobject::Folder',1213122695,'3','997995720','3',NULL,0,NULL),('2q5fxatSFLgIhXaUX-oSvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000001','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('_d5WTkKjnwct-_Dk7gZHvQ','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000002','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('Iz2mUR3jCPKyemwAea4b2g','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000003','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('JU9bjsLRoWj7GVHs__prig','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000004','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('noOlnjQGexHg8c4bGVUo9g','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000005','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('aIpCmr9Hi__vgdZnDTz1jw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000006','published','WebGUI::Asset::Template',1209921197,'3','997995720','3',NULL,0,NULL),('XNd7a_g_cTvJVYrVHcx2Mw','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000007','published','WebGUI::Asset::Template',1212099009,'3','997995720','3',NULL,0,NULL),('2gtFt7c0qAFNU3BG_uvNvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000008','published','WebGUI::Asset::Template',1211824430,'3','997995720','3',NULL,0,NULL),('bPz1yk6Y9uwMDMBcmMsSCg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000009','published','WebGUI::Asset::Template',1211829604,'3','997995720','3',NULL,0,NULL),('3womoo7Teyy2YKFa25-MZg','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000013','published','WebGUI::Asset::Template',1212098997,'3','1222802925','3',NULL,0,NULL),('EBlxJpZQ9o-8VBOaGQbChA','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000014','published','WebGUI::Asset::Template',1212093746,'3','1222802925','3',NULL,0,NULL),('g8W53Pd71uHB9pxaXhWf_A','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000015','published','WebGUI::Asset::Template',1213184121,'3','1222802925','3',NULL,0,NULL),('mTOiwwk3q4k9g5-XykXhPA','68sKwDgf9cGH58-NZcU4lg','000001000002000005','published','WebGUI::Asset::Wobject::Layout',1215717999,'3','1215733893','3',NULL,0,NULL),('j_1qEqM6iLfQLiR6VKy0aA','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000001','published','WebGUI::Asset::Wobject::Article',1215718151,'3','1215733893','3',NULL,0,NULL),('o_pq_e4vRyhMOKFzs61eag','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000002','published','WebGUI::Asset::File::Image',1215714957,'3','1215733893','3',NULL,0,NULL),('diZvW4bSgZWwyyGP3qXi1g','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000003','published','WebGUI::Asset::Wobject::Article',1215717972,'3','1215733893','3',NULL,0,NULL),('PBEmsBadgeTemplate0000','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000010000006','published','WebGUI::Asset::Template',1221077977,'3','1222802972','3',NULL,0,NULL),('-WM2dt0ZGpDasuL2wWocxg','PBasset000000000000002','000001000001000027','published','WebGUI::Asset::Wobject::Folder',1222803056,'3','997995720','3',NULL,0,NULL),('2OcUWHVsu_L1sDFzIMWYqw','PBasset000000000000002','000001000001000042','published','WebGUI::Asset::Wobject::Folder',1222803070,'3','997995720','3',NULL,0,NULL),('1z9J1O08n_7gVVlBwSRBJQ','PBasset000000000000002','000001000001000004','published','WebGUI::Asset::Wobject::Folder',1222803099,'3','997995720','3',NULL,0,NULL),('zyWi26q9na-iiZqL4yedog','PBasset000000000000002','000001000001000018','published','WebGUI::Asset::Wobject::Folder',1222803114,'3','997995720','3',NULL,0,NULL),('NywJYmGWe1f6EBXJnWg9Xg','PBasset000000000000002','000001000001000026','published','WebGUI::Asset::Wobject::Folder',1222803606,'3','997995720','3',NULL,0,NULL),('UL-ItI4L1Z6-WSuhuXVvsQ','PBasset000000000000002','000001000001000009','published','WebGUI::Asset::Wobject::Folder',1225139673,'3','997995720','3',NULL,0,NULL),('3rjnBVJRO6ZSkxlFkYh_ug','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000009000001','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('TuYPpHx7TUyk08639Pc8Bg','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000009000002','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('THQhn1C-ooj-TLlEP7aIJQ','gI_TxK-5S4DNuv42wpImmw','000001000001000013000025','published','WebGUI::Asset::Snippet',1225313951,'3','1234301624','3',NULL,0,NULL),('jVKLVakT_iA2010_oEuAwg','7-0-style0000000000049','000001000001000047000024','published','WebGUI::Asset::Wobject::Navigation',1224116526,'3','997995720','3',NULL,0,NULL),('QpmlAiYZz6VsKBM-_0wXaw','zyWi26q9na-iiZqL4yedog','000001000001000018000012','published','WebGUI::Asset::Wobject::Folder',1224616691,'3','1234301591','3',NULL,0,NULL),('h_T2xtOxGRQ9QJOR6ebLpQ','QpmlAiYZz6VsKBM-_0wXaw','000001000001000018000012000001','published','WebGUI::Asset::Template',1224616545,'3','1234301591','3',NULL,0,NULL),('4Ekp0kJoJllRRRo_J1Rj6w','QpmlAiYZz6VsKBM-_0wXaw','000001000001000018000012000002','published','WebGUI::Asset::Template',1224616672,'3','1234301591','3',NULL,0,NULL),('gfZOwaTWYjbSoVaQtHBBEw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000001','published','WebGUI::Asset::Template',1226974679,'3','997995720','3',NULL,0,NULL),('c8xrwVuu5QE0XtF9DiVzLw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000002','published','WebGUI::Asset::Template',1226894351,'3','997995720','3',NULL,0,NULL),('0n4HtbXaWa_XJHkFjetnLQ','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000003','published','WebGUI::Asset::Template',1226894994,'3','997995720','3',NULL,0,NULL),('ErEzulFiEKDkaCDVmxUavw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000004','published','WebGUI::Asset::Template',1226895484,'3','997995720','3',NULL,0,NULL),('6uQEULvXFgCYlRWnYzZsuA','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000005','published','WebGUI::Asset::Template',1226896682,'3','997995720','3',NULL,0,NULL),('DUoxlTBXhVS-Zl3CFDpt9g','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000006','published','WebGUI::Asset::Template',1226896802,'3','997995720','3',NULL,0,NULL),('1Q4Je3hKCJzeo0ZBB5YB8g','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000007','published','WebGUI::Asset::Template',1226898445,'3','997995720','3',NULL,0,NULL),('5A8Hd9zXvByTDy4x-H28qw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000008','published','WebGUI::Asset::Template',1226899462,'3','997995720','3',NULL,0,NULL),('VBkY05f-E3WJS50WpdKd1Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000009','published','WebGUI::Asset::Template',1226899241,'3','997995720','3',NULL,0,NULL),('XgcsoDrbC0duVla7N7JAdw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000010','published','WebGUI::Asset::Template',1226973330,'3','997995720','3',NULL,0,NULL),('cR0UFm7I1qUI2Wbpj--08Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000011','published','WebGUI::Asset::Template',1226964738,'3','997995720','3',NULL,0,NULL),('SVIhz68689hwUGgcDM-gWw','IZkrow_zwvbf4FCH-taVTQ','000001000001000001000002000012','published','WebGUI::Asset::Template',1226973314,'3','997995720','3',NULL,0,NULL),('K0YjxqOqr7RupSo6sIdcAg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000003','published','WebGUI::Asset::Wobject::Folder',1227074310,'3','997995720','3',NULL,0,NULL),('zrNpGbT3odfIkg6nFSUy8Q','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000001','published','WebGUI::Asset::Template',1226994016,'3','997995720','3',NULL,0,NULL),('1Yn_zE_dSiNuaBGNLPbxtw','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000002','published','WebGUI::Asset::Template',1226994422,'3','997995720','3',NULL,0,NULL),('AZFU33p0jpPJ-E6qLSWZng','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000003','published','WebGUI::Asset::Template',1226994865,'3','997995720','3',NULL,0,NULL),('AGJBGviWGAwjnwziiPjvDg','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000004','published','WebGUI::Asset::Template',1226995497,'3','997995720','3',NULL,0,NULL),('7Ijdd8SW32lVgg2H8R-Aqw','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000005','published','WebGUI::Asset::Template',1226995714,'3','997995720','3',NULL,0,NULL),('K8F0j_cq_jgo8dvWY_26Ag','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000006','published','WebGUI::Asset::Template',1226995643,'3','997995720','3',NULL,0,NULL),('G5V6neXIDiFXN05oL-U3AQ','K0YjxqOqr7RupSo6sIdcAg','000001000001000001000003000007','published','WebGUI::Asset::Template',1226995768,'3','997995720','3',NULL,0,NULL),('_ilRXNR3s8F2vGJ_k9ePcg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000004','published','WebGUI::Asset::Wobject::Folder',1226643205,'3','997995720','3',NULL,0,NULL),('9ThW278DWLV0-Svf68ljFQ','_ilRXNR3s8F2vGJ_k9ePcg','000001000001000001000004000001','published','WebGUI::Asset::Template',1226647187,'3','997995720','3',NULL,0,NULL),('AOjPG2NHgfL9Cq6dDJ7mew','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000005','published','WebGUI::Asset::Wobject::Folder',1226659753,'3','997995720','3',NULL,0,NULL),('aUDsJ-vB9RgP-AYvPOy8FQ','AOjPG2NHgfL9Cq6dDJ7mew','000001000001000001000005000001','published','WebGUI::Asset::Template',1226660439,'3','997995720','3',NULL,0,NULL),('qaVcU0FFzzraMX_bzELqzw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000006','published','WebGUI::Asset::Wobject::Folder',1227074362,'3','997995720','3',NULL,0,NULL),('b4n3VyUIsAHyIvT-W-jziA','qaVcU0FFzzraMX_bzELqzw','000001000001000001000006000001','published','WebGUI::Asset::Template',1227074747,'3','997995720','3',NULL,0,NULL),('1IzRpX0tgW7iuCfaU2Kk0A','qaVcU0FFzzraMX_bzELqzw','000001000001000001000006000002','published','WebGUI::Asset::Template',1227079721,'3','997995720','3',NULL,0,NULL),('N716tpSna0iIQTKxS4gTWA','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000007','published','WebGUI::Asset::Template',1226604666,'3','997995720','3',NULL,0,NULL),('GRUNFctldUgop-qRLuo_DA','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000005','published','WebGUI::Asset::Template',1227254010,'3','997995720','3',NULL,0,NULL),('d8jMMMRddSQ7twP4l1ZSIw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000006','published','WebGUI::Asset::Template',1227248175,'3','997995720','3',NULL,0,NULL),('CxMpE_UPauZA3p8jdrOABw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000007','published','WebGUI::Asset::Template',1227556536,'3','997995720','3',NULL,0,NULL),('1oBRscNIcFOI-pETrCOspA','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000008','published','WebGUI::Asset::Template',1226009642,'3','997995720','3',NULL,0,NULL),('wAc4azJViVTpo-2NYOXWvg','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000009','published','WebGUI::Asset::Template',1226009650,'3','997995720','3',NULL,0,NULL),('AjhlNO3wZvN5k4i4qioWcg','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000010','published','WebGUI::Asset::Template',1226009658,'3','997995720','3',NULL,0,NULL),('itransact_credentials1','aNmgn0cd6tldmC1FpW4KbA','000001000001000034000018','published','WebGUI::Asset::Template',1228953856,'3','1234301682','3',NULL,0,NULL),('hkj6WeChxFyqfP85UlRP8w','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000006','published','WebGUI::Asset::Snippet',1232664229,'3','997995720','3',NULL,0,NULL),('kJf77eCr9GAMiEzWrzsBTA','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000007','published','WebGUI::Asset::Snippet',1229639255,'3','997995720','3',NULL,0,NULL),('4LQT4-bGW4FkiEQLSY5gvQ','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000008','published','WebGUI::Asset::Snippet',1232400287,'3','997995720','3',NULL,0,NULL),('alraubvBu-YJJ614jAHD5w','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000009','published','WebGUI::Asset::Template',1232664015,'3','997995720','3',NULL,0,NULL),('Vch1Ww7G_JpBhOhXX07RDg','LdiozcIUciWuvt3Z-na5Ww','000001000001000019000010','published','WebGUI::Asset::Wobject::Navigation',1232664082,'3','997995720','3',NULL,0,NULL),('_XfvgNH__bY1ykMiKYSobQ','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000008','published','WebGUI::Asset::Snippet',1233168041,'3','997995720','3',NULL,0,NULL),('HW-sPoDDZR8wBZ0YgFgPtg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000001000009','published','WebGUI::Asset::Wobject::Folder',1227634350,'3','997995720','3',NULL,0,NULL),('hBpisL-_URyZnh9clR5ohA','HW-sPoDDZR8wBZ0YgFgPtg','000001000001000001000009000001','published','WebGUI::Asset::File::Image',1227634417,'3','997995720','3',NULL,0,NULL),('FOBV6KkifreXa4GmEAUU4A','HW-sPoDDZR8wBZ0YgFgPtg','000001000001000001000009000002','published','WebGUI::Asset::File::Image',1227634447,'3','997995720','3',NULL,0,NULL),('qsG6B24a0SC5KrhQjmdZBw','5bnNzteN7w3NnK9mF4XiCg','000001000001000039000011','published','WebGUI::Asset::Snippet',1233860274,'3','1234301655','3',NULL,0,NULL),('wrq7hMxb1ewQqZ46xmd8Gg','PBasset000000000000002','000001000001000050','published','WebGUI::Asset::Snippet',1235706620,'3','997995720','3',NULL,0,NULL); +INSERT INTO `assetData` VALUES ('PBasset000000000000001',1124395696,'3','pbversion0000000000001','approved','Root','Root','root','3','7','3',NULL,0,1,0,0,0,142,NULL,0,1,0,1124395696),('PBasset000000000000002',1124395696,'3','pbversion0000000000001','approved','Import Node','Import','root/import','3','7','12',NULL,0,1,0,0,0,269,NULL,0,1,0,1124395696),('68sKwDgf9cGH58-NZcU4lg',1124395696,'3','pbversion0000000000001','approved','Home','Home','home','3','7','3',NULL,0,0,0,0,0,299,NULL,0,1,0,1124395696),('_iHetEvMQUOoxS-T2CM0sQ',1124395696,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started','3','7','3',NULL,0,0,0,0,0,315,NULL,0,1,0,1124395696),('8Bb8gu-me2mhL3ljFyiWLg',1124395696,'3','pbversion0000000000001','approved','What should you do next?','Your Next Step','your_next_step','3','7','3',NULL,0,0,0,0,0,484,NULL,0,1,0,1124395696),('Vzv1pWpg_w6R_o-b0rM2qQ',1147642515,'3','pbversion0000000000001','approved','Ad','Ad','home/ad2','3','7','4',NULL,0,1,0,0,0,2155177,NULL,0,1,0,1147642515),('NK8bqlwVRILJknqeCDPBHg',1147642515,'3','pbversion0000000000001','approved','Getting Started (part 2)','Getting Started (part 2)','getting_started/getting-started-part2','3','7','4',NULL,0,1,0,0,0,1660,NULL,0,1,0,1147642515),('6QuS-0rosuZTdTv11fobig',1147642515,'3','pbversion0000000000001','approved','Talk to the Experts','Talk to the Experts','yns/experts','3','7','4',NULL,0,1,0,0,0,670,NULL,0,1,0,1147642515),('ix1p0AbwKAz8QWB-T-HHfg',1147642516,'3','pbversion0000000000001','approved','Get Support','Get Support','yns/support','3','7','4',NULL,0,1,0,0,0,706,NULL,0,1,0,1147642516),('iCYOjohB9SKvAPr6bXElKA',1147642516,'3','pbversion0000000000001','approved','Get Hosting','Get Hosting','yns/hosting','3','7','4',NULL,0,1,0,0,0,662,NULL,0,1,0,1147642516),('4Yfz9hqBqM8OYMGuQK8oLw',1147642516,'3','pbversion0000000000001','approved','Get Features','Get Features','yns/features','3','7','4',NULL,0,1,0,0,0,739,NULL,0,1,0,1147642516),('Wl8WZ43g2rK5AYr9o4zY7w',1147642516,'3','pbversion0000000000001','approved','Get Style','Get Style','yns/style','3','7','4',NULL,0,1,0,0,0,572,NULL,0,1,0,1147642516),('LBuiKzg2mWwmOPS9AgV3bg',1147642517,'3','pbversion0000000000001','approved','Get Translated','Get Translated','yns/translated','3','7','4',NULL,0,1,0,0,0,695,NULL,0,1,0,1147642517),('jTNggl7AoVSUc_ZzrvuCmw',1147642517,'3','pbversion0000000000001','approved','Get Promoted','Get Promoted','yns/promotion','3','7','4',NULL,0,1,0,0,0,688,NULL,0,1,0,1147642517),('2TqQc4OISddWCZmRY1_m8A',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news','3','7','3',NULL,0,0,0,0,0,315,NULL,0,1,0,1124395696),('fK-HMSboA3uu0c1KYkYspA',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news/the_latest_news','3','7','3',NULL,0,1,0,0,0,481,NULL,0,1,0,1124395696),('Swf6L8poXKc7hUaNPkBevw',1124395696,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend','3','7','3',NULL,0,0,0,0,0,309,NULL,0,1,0,1124395696),('x3OFY6OJh_qsXkZfPwug4A',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map','3','7','3',NULL,0,0,0,0,0,294,NULL,0,1,0,1124395696),('pJd5TLAjfWMVXD6sCRLwUg',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map/site_map','3','7','3',NULL,0,1,0,0,0,331,NULL,0,1,0,1124395696),('7-0-style0000000000003',1147642492,'3','pbversion0000000000001','approved','css01.css','css01.css','style1/css01.css','3','7','12',NULL,0,0,0,0,0,4896,NULL,0,1,0,1147642492),('PBnav00000000000000001',1124395696,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail','3','7','12',NULL,0,1,0,0,0,516,NULL,0,1,0,1124395696),('PBnav00000000000000014',1124395696,'3','pbversion0000000000001','approved','FlexMenu','FlexMenu','flexmenu','3','7','12',NULL,0,1,0,0,0,498,NULL,0,1,0,1124395696),('PBnav00000000000000015',1124395696,'3','pbversion0000000000001','approved','currentMenuVertical','currentMenuVertical','currentmenuvertical','3','7','12',NULL,0,1,0,0,0,539,NULL,0,1,0,1124395696),('PBnav00000000000000016',1124395696,'3','pbversion0000000000001','approved','currentMenuHorizontal','currentMenuHorizontal','currentmenuhorizontal','3','7','12',NULL,0,1,0,0,0,545,NULL,0,1,0,1124395696),('PBnav00000000000000017',1124395696,'3','pbversion0000000000001','approved','PreviousDropMenu','PreviousDropMenu','previousdropmenu','3','7','12',NULL,0,1,0,0,0,533,NULL,0,1,0,1124395696),('PBnav00000000000000018',1124395696,'3','pbversion0000000000001','approved','previousMenuVertical','previousMenuVertical','previousmenuvertical','3','7','12',NULL,0,1,0,0,0,543,NULL,0,1,0,1124395696),('PBnav00000000000000019',1124395696,'3','pbversion0000000000001','approved','previousMenuHorizontal','previousMenuHorizontal','previousmenuhorizontal','3','7','12',NULL,0,1,0,0,0,549,NULL,0,1,0,1124395696),('PBnav00000000000000020',1124395696,'3','pbversion0000000000001','approved','rootmenu','rootmenu','rootmenu','3','7','12',NULL,0,1,0,0,0,500,NULL,0,1,0,1124395696),('PBnav00000000000000021',1124395696,'3','pbversion0000000000001','approved','SpecificDropMenu','SpecificDropMenu','specificdropmenu','3','7','12',NULL,0,1,0,0,0,524,NULL,0,1,0,1124395696),('PBnav00000000000000002',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuVertical','SpecificSubMenuVertical','specificsubmenuvertical','3','7','12',NULL,0,1,0,0,0,545,NULL,0,1,0,1124395696),('PBnav00000000000000006',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal','specificsubmenuhorizontal','3','7','12',NULL,0,1,0,0,0,551,NULL,0,1,0,1124395696),('PBnav00000000000000007',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuVertical','TopLevelMenuVertical','toplevelmenuvertical','3','7','12',NULL,0,1,0,0,0,536,NULL,0,1,0,1124395696),('PBnav00000000000000008',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuHorizontal','TopLevelMenuHorizontal','toplevelmenuhorizontal','3','7','12',NULL,0,1,0,0,0,542,NULL,0,1,0,1124395696),('PBnav00000000000000009',1124395696,'3','pbversion0000000000001','approved','RootTab','RootTab','roottab','3','7','12',NULL,0,1,0,0,0,497,NULL,0,1,0,1124395696),('PBnav00000000000000010',1124395696,'3','pbversion0000000000001','approved','TopDropMenu','TopDropMenu','topdropmenu','3','7','12',NULL,0,1,0,0,0,483,NULL,0,1,0,1124395696),('PBnav00000000000000011',1124395696,'3','pbversion0000000000001','approved','dtree','dtree','dtree','3','7','12',NULL,0,1,0,0,0,497,NULL,0,1,0,1124395696),('PBnav00000000000000012',1124395696,'3','pbversion0000000000001','approved','coolmenu','coolmenu','coolmenu','3','7','12',NULL,0,1,0,0,0,501,NULL,0,1,0,1124395696),('PBnav00000000000000013',1124395696,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis','3','7','12',NULL,0,1,0,0,0,512,NULL,0,1,0,1124395696),('7-0-style0000000000006',1147642493,'3','pbversion0000000000001','approved','main_bg.gif','main_bg.gif','style1/main_bg.gif','3','7','12',NULL,0,0,0,0,0,1990,NULL,0,1,0,1147642493),('PBrichedit000000000002',1124395696,'3','pbversion0000000000001','approved','Forum Rich Edit','Forum Rich Edit','forum_rich_edit','3','7','12',NULL,0,0,0,0,0,246,NULL,0,1,0,1124395696),('7-0-style0000000000068',1147642510,'3','pbversion0000000000001','approved','spacer.gif','spacer.gif','style3/spacer.gif','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1147642510),('7-0-style0000000000066',1147642509,'3','pbversion0000000000001','approved','nav_bg_on.jpg','nav_bg_on.jpg','style3/nav_bg_on.jpg','3','7','12',NULL,0,0,0,0,0,647,NULL,0,1,0,1147642509),('7-0-style0000000000067',1147642509,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style3/pb.jpg','3','7','12',NULL,0,0,0,0,0,24970,NULL,0,1,0,1147642509),('7-0-style0000000000062',1147642508,'3','pbversion0000000000001','approved','nav_bg1.jpg','nav_bg1.jpg','style3/nav_bg1.jpg','3','7','12',NULL,0,0,0,0,0,661,NULL,0,1,0,1147642508),('7-0-style0000000000063',1147642508,'3','pbversion0000000000001','approved','nav_bg1_on.jpg','nav_bg1_on.jpg','style3/nav_bg1_on.jpg','3','7','12',NULL,0,0,0,0,0,672,NULL,0,1,0,1147642508),('7-0-style0000000000064',1147642509,'3','pbversion0000000000001','approved','nav_bg2.jpg','nav_bg2.jpg','style3/nav_bg2.jpg','3','7','12',NULL,0,0,0,0,0,664,NULL,0,1,0,1147642509),('7-0-style0000000000065',1147642509,'3','pbversion0000000000001','approved','nav_bg2_on.jpg','nav_bg2_on.jpg','style3/nav_bg2_on.jpg','3','7','12',NULL,0,0,0,0,0,677,NULL,0,1,0,1147642509),('7-0-style0000000000061',1147642508,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style3/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,658,NULL,0,1,0,1147642508),('7-0-style0000000000057',1147642507,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style3/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,628,NULL,0,1,0,1147642507),('7-0-style0000000000058',1147642507,'3','pbversion0000000000001','approved','main_bottom.jpg','main_bottom.jpg','style3/main_bottom.jpg','3','7','12',NULL,0,0,0,0,0,2619,NULL,0,1,0,1147642507),('7-0-style0000000000060',1147642508,'3','pbversion0000000000001','approved','main_top_bg.jpg','main_top_bg.jpg','style3/main_top_bg.jpg','3','7','12',NULL,0,0,0,0,0,676,NULL,0,1,0,1147642508),('7-0-style0000000000054',1147642506,'3','pbversion0000000000001','approved','header_bg.jpg','header_bg.jpg','style3/header_bg.jpg','3','7','12',NULL,0,0,0,0,0,704,NULL,0,1,0,1147642506),('7-0-style0000000000055',1147642506,'3','pbversion0000000000001','approved','header_left.jpg','header_left.jpg','style3/header_left.jpg','3','7','12',NULL,0,0,0,0,0,23972,NULL,0,1,0,1147642506),('7-0-style0000000000056',1147642506,'3','pbversion0000000000001','approved','header_right.jpg','header_right.jpg','style3/header_right.jpg','3','7','12',NULL,0,0,0,0,0,24746,NULL,0,1,0,1147642506),('7-0-style0000000000053',1147642505,'3','pbversion0000000000001','approved','footer_right.jpg','footer_right.jpg','style3/footer_right.jpg','3','7','12',NULL,0,0,0,0,0,2875,NULL,0,1,0,1147642505),('7-0-style0000000000052',1147642505,'3','pbversion0000000000001','approved','footer_bg.jpg','footer_bg.jpg','style3/footer_bg.jpg','3','7','12',NULL,0,0,0,0,0,669,NULL,0,1,0,1147642505),('7-0-style0000000000048',1147642504,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style2/wg.jpg','3','7','12',NULL,0,0,0,0,0,41300,NULL,0,1,0,1147642504),('7-0-style0000000000046',1147642504,'3','pbversion0000000000001','approved','rightCol_bg.jpg','rightCol_bg.jpg','style2/rightcol_bg.jpg','3','7','12',NULL,0,0,0,0,0,1118,NULL,0,1,0,1147642504),('7-0-style0000000000043',1147642503,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style2/pb.jpg','3','7','12',NULL,0,0,0,0,0,45606,NULL,0,1,0,1147642503),('7-0-style0000000000044',1147642503,'3','pbversion0000000000001','approved','pb_wg.jpg','pb_wg.jpg','style2/pb_wg.jpg','3','7','12',NULL,0,0,0,0,0,5140,NULL,0,1,0,1147642503),('7-0-style0000000000040',1147642502,'3','pbversion0000000000001','approved','navbar_right.jpg','navbar_right.jpg','style2/navbar_right.jpg','3','7','12',NULL,0,0,0,0,0,1594,NULL,0,1,0,1147642502),('7-0-style0000000000041',1147642502,'3','pbversion0000000000001','approved','page_title.jpg','page_title.jpg','style2/page_title.jpg','3','7','12',NULL,0,0,0,0,0,49390,NULL,0,1,0,1147642502),('7-0-style0000000000042',1147642502,'3','pbversion0000000000001','approved','page_title_bg.jpg','page_title_bg.jpg','style2/page_title_bg.jpg','3','7','12',NULL,0,0,0,0,0,1110,NULL,0,1,0,1147642502),('7-0-style0000000000038',1147642501,'3','pbversion0000000000001','approved','navbar_bg.jpg','navbar_bg.jpg','style2/navbar_bg.jpg','3','7','12',NULL,0,0,0,0,0,936,NULL,0,1,0,1147642501),('7-0-style0000000000039',1147642502,'3','pbversion0000000000001','approved','navbar_left.jpg','navbar_left.jpg','style2/navbar_left.jpg','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1147642502),('7-0-style0000000000036',1147642501,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style2/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1222,NULL,0,1,0,1147642501),('7-0-style0000000000037',1147642501,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style2/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,902,NULL,0,1,0,1147642501),('7-0-style0000000000033',1147642500,'3','pbversion0000000000001','approved','css02.css','css02.css','style2/css02.css','3','7','12',NULL,0,0,0,0,0,3061,NULL,0,1,0,1147642500),('7-0-style0000000000034',1147642500,'3','pbversion0000000000001','approved','leftCol_header.jpg','leftCol_header.jpg','style2/leftcol_header.jpg','3','7','12',NULL,0,0,0,0,0,21636,NULL,0,1,0,1147642500),('7-0-style0000000000035',1147642501,'3','pbversion0000000000001','approved','leftCol_header02.jpg','leftCol_header02.jpg','style2/leftcol_header02.jpg','3','7','12',NULL,0,0,0,0,0,8868,NULL,0,1,0,1147642501),('7-0-style0000000000030',1147642499,'3','pbversion0000000000001','approved','webgui_btn.jpg','webgui_btn.jpg','style1/webgui_btn.jpg','3','7','12',NULL,0,0,0,0,0,10040,NULL,0,1,0,1147642499),('7-0-style0000000000031',1147642500,'3','pbversion0000000000001','approved','WebGUI 7 Style 2','WebGUI 7 Style 2','root/import/webgui-7-style-2','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1147642500),('7-0-style0000000000032',1147642500,'3','pbversion0000000000001','approved','context_bg.jpg','context_bg.jpg','style2/context_bg.jpg','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1147642500),('PBnav000000style01lvl2',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav lvl2','untitled','style1_nav_lvl2','3','7','12',NULL,0,0,0,0,0,1015,NULL,0,1,0,1228264382),('7-0-style0000000000026',1147642499,'3','pbversion0000000000001','approved','RootTab Level 1','RootTab Level 1','roottab_level1','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1147642499),('stevenav00000000000001',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav','Style 01 Nav','style1_nav','3','7','12',NULL,0,0,0,0,0,994,NULL,0,1,0,1228264382),('7-0-style0000000000025',1147642498,'3','pbversion0000000000001','approved','RootTab Level 0','RootTab Level 0','roottab_level0','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1147642498),('7-0-style0000000000022',1147642497,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style1/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,1914,NULL,0,1,0,1147642497),('7-0-style0000000000023',1147642498,'3','pbversion0000000000001','approved','nav_on.jpg','nav_on.jpg','style1/nav_on.jpg','3','7','12',NULL,0,0,0,0,0,1536,NULL,0,1,0,1147642498),('7-0-style0000000000024',1147642498,'3','pbversion0000000000001','approved','orange_left01.jpg','orange_left01.jpg','style1/orange_left01.jpg','3','7','12',NULL,0,0,0,0,0,5810,NULL,0,1,0,1147642498),('7-0-style0000000000018',1147642496,'3','pbversion0000000000001','approved','nav2_off_left.jpg','nav2_off_left.jpg','style1/nav2_off_left.jpg','3','7','12',NULL,0,0,0,0,0,1174,NULL,0,1,0,1147642496),('7-0-style0000000000019',1147642497,'3','pbversion0000000000001','approved','nav2_off_right.jpg','nav2_off_right.jpg','style1/nav2_off_right.jpg','3','7','12',NULL,0,0,0,0,0,1162,NULL,0,1,0,1147642497),('7-0-style0000000000017',1147642496,'3','pbversion0000000000001','approved','nav2_off_center.jpg','nav2_off_center.jpg','style1/nav2_off_center.jpg','3','7','12',NULL,0,0,0,0,0,1336,NULL,0,1,0,1147642496),('7-0-style0000000000015',1147642496,'3','pbversion0000000000001','approved','nav1_on_right.jpg','nav1_on_right.jpg','style1/nav1_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1936,NULL,0,1,0,1147642496),('7-0-style0000000000014',1147642495,'3','pbversion0000000000001','approved','nav1_on_left.jpg','nav1_on_left.jpg','style1/nav1_on_left.jpg','3','7','12',NULL,0,0,0,0,0,2062,NULL,0,1,0,1147642495),('7-0-style0000000000013',1147642495,'3','pbversion0000000000001','approved','nav1_on.jpg','nav1_on.jpg','style1/nav1_on.jpg','3','7','12',NULL,0,0,0,0,0,4544,NULL,0,1,0,1147642495),('7-0-style0000000000011',1147642495,'3','pbversion0000000000001','approved','nav1_off_left.jpg','nav1_off_left.jpg','style1/nav1_off_left.jpg','3','7','12',NULL,0,0,0,0,0,2128,NULL,0,1,0,1147642495),('7-0-style0000000000012',1147642495,'3','pbversion0000000000001','approved','nav1_off_right.jpg','nav1_off_right.jpg','style1/nav1_off_right.jpg','3','7','12',NULL,0,0,0,0,0,2020,NULL,0,1,0,1147642495),('7-0-style0000000000010',1147642494,'3','pbversion0000000000001','approved','nav1_off_center.jpg','nav1_off_center.jpg','style1/nav1_off_center.jpg','3','7','12',NULL,0,0,0,0,0,2596,NULL,0,1,0,1147642494),('7-0-style0000000000009',1147642494,'3','pbversion0000000000001','approved','nav1_off.jpg','nav1_off.jpg','style1/nav1_off.jpg','3','7','12',NULL,0,0,0,0,0,4870,NULL,0,1,0,1147642494),('7-0-style0000000000007',1147642493,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style1/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1752,NULL,0,1,0,1147642493),('7-0-style0000000000001',1147642492,'3','pbversion0000000000001','approved','WebGUI 7 Style 1','WebGUI 7 Style 1','root/import/webgui-7-style-1','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1147642492),('SynConXSLT000000000001',1124395707,'3','pbversion0000000000001','approved','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT','xslt/rss0.9.xsl','3','7','12',NULL,0,0,0,0,0,2646,NULL,0,1,0,1124395707),('SynConXSLT000000000002',1124395707,'3','pbversion0000000000001','approved','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT','xslt/rss0.91.xsl','3','7','12',NULL,0,0,0,0,0,2485,NULL,0,1,0,1124395707),('SynConXSLT000000000003',1124395707,'3','pbversion0000000000001','approved','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT','xslt/rss1.0.xsl','3','7','12',NULL,0,0,0,0,0,2718,NULL,0,1,0,1124395707),('SynConXSLT000000000004',1124395707,'3','pbversion0000000000001','approved','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT','xslt/rss2.0.xsl','3','7','12',NULL,0,0,0,0,0,2551,NULL,0,1,0,1124395707),('PBtmpl0000000000000036',1129049186,'3','pbversion0000000000001','approved','Default Admin Toggle Macro','Default Admin Toggle Macro','default_admin_toggle_macro','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1228264382),('PBtmpl0000000000000037',1129049186,'3','pbversion0000000000001','approved','Default Account Macro','Default Account Macro','default_account_macro','3','7','12',NULL,0,1,0,0,0,395,NULL,0,1,0,1228264382),('PBtmpl0000000000000038',1129049186,'3','pbversion0000000000001','approved','Default Editable Toggle Macro','Default Editable Toggle Macro','default_editable_toggle_macro','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1228264382),('PBtmpl0000000000000040',1129049186,'3','pbversion0000000000001','approved','Default Group Add Macro','Default Group Add Macro','default_group_add_macro','3','7','12',NULL,0,1,0,0,0,374,NULL,0,1,0,1228264382),('PBtmpl0000000000000041',1129049186,'3','pbversion0000000000001','approved','Default Group Delete Macro','Default Group Delete Macro','default_group_delete_macro','3','7','12',NULL,0,1,0,0,0,386,NULL,0,1,0,1228264382),('PBtmpl0000000000000042',1129049186,'3','pbversion0000000000001','approved','Default Homelink','Default Homelink','default_homelink','3','7','12',NULL,0,1,0,0,0,378,NULL,0,1,0,1228264382),('PBtmpl0000000000000043',1129049186,'3','pbversion0000000000001','approved','Default LoginToggle','Default LoginToggle','default_logintoggle','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1228264382),('PBtmpl0000000000000045',1129049186,'3','pbversion0000000000001','approved','Default Make Printable','Default Make Printable','default_make_printable','3','7','12',NULL,0,1,0,0,0,408,NULL,0,1,0,1228264382),('PBtmpl0000000000000208',1147642410,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template','3','7','12',NULL,0,0,0,0,0,3992,'\n\n\n\n\n',0,1,0,1228264382),('PBtmpl0000000000000091',1129049189,'3','pbversion0000000000001','approved','File no icon','File no icon','file_no_icon','3','7','12',NULL,0,1,0,0,0,335,NULL,0,1,0,1228264382),('PBtmpl0000000000000132',1129049190,'3','pbversion0000000000001','approved','Empty','Empty','empty','3','7','12',NULL,0,1,0,0,0,271,NULL,0,1,0,1228264382),('PBtmpl0000000000000140',1129573244,'3','pbversion0000000000001','approved','Default Shortcut','Default Shortcut','pbtmpl0000000000000140','3','7','12',NULL,0,1,0,0,0,1020,NULL,0,1,0,1228264382),('PBtmplHelp000000000001',1147642410,'3','pbversion0000000000001','approved','Help','Help','help','3','7','12',NULL,0,0,0,0,0,1388,'\n\n',0,1,0,1228264382),('ProjectManagerTMPL0004',1222574693,'3','pbversion0000000000001','approved','Default Project Manager Edit Task','Default Project Manager Edit Task','default-pm-template-edit-task','3','7','12',NULL,0,0,0,0,0,5258,'\r\n',0,1,0,1228264384),('7-0-style0000000000071',1147642511,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style3/wg.jpg','3','7','12',NULL,0,0,0,0,0,27488,NULL,0,1,0,1147642511),('7-0-style0000000000070',1147642510,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','style3_coolmenu','3','7','12',NULL,0,0,0,0,0,344,NULL,0,1,0,1147642510),('7-0-style0000000000004',1147642493,'3','pbversion0000000000001','approved','gui_bottom.jpg','gui_bottom.jpg','style1/gui_bottom.jpg','3','7','12',NULL,0,0,0,0,0,21700,NULL,0,1,0,1147642493),('7-0-style0000000000002',1147642492,'3','pbversion0000000000001','approved','body_bg.jpg','body_bg.jpg','style1/body_bg.jpg','3','7','12',NULL,0,0,0,0,0,890,NULL,0,1,0,1147642492),('PBtmpl0000000000000128',1147642411,'3','pbversion0000000000001','approved','Classifieds','Classifieds','classifieds','3','7','12',NULL,0,1,0,0,0,2007,'\n\n',0,1,0,1228264382),('PBtmpl0000000000000093',1147642412,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail2','3','7','12',NULL,0,1,0,0,0,767,NULL,0,1,0,1228264382),('PBtmpl0000000000000104',1147642412,'3','pbversion0000000000001','approved','Default Acknowledgement','Default Acknowledgement','default_acknowledgement','3','7','12',NULL,0,1,0,0,0,1207,'',0,1,0,1228264382),('PBtmpl0000000000000031',1147642413,'3','pbversion0000000000001','approved','Default Forum Search','Default Forum Search','default_forum_search','3','7','12',NULL,0,1,0,0,0,2682,'',0,1,0,1228264382),('PBtmpl0000000000000006',1147642414,'3','pbversion0000000000001','approved','Default LDAP Login Template','Default LDAP Login Template','default_ldap_login_template','3','7','12',NULL,0,1,0,0,0,1180,NULL,0,1,0,1228264382),('PBtmpl0000000000000047',1147642414,'3','pbversion0000000000001','approved','Default Message Board','Default Message Board','default_message_board','3','7','12',NULL,0,1,0,0,0,3535,'',0,1,0,1228264382),('TimeTrackingTMPL000002',1147642417,'3','pbversion0000000000001','approved','Default Time Tracking Manager View','Default Time Tracking Manager View','default-tt-template-manager','3','7','12',NULL,0,0,0,0,0,381,' ',0,1,0,1228264382),('PBtmpl0000000000000066',1147642417,'3','pbversion0000000000001','approved','Default USS','Default USS','default_uss','3','7','12',NULL,0,1,0,0,0,3063,'\n\n\n',0,1,0,1228264382),('PBtmpl0000000000000013',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Login Template','Default WebGUI Login Template','default_webgui_login_template','3','7','12',NULL,0,1,0,0,0,1334,NULL,0,1,0,1228264382),('PBtmpl0000000000000012',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template','default_webgui_password_reset_template','3','7','12',NULL,0,1,0,0,0,1274,NULL,0,1,0,1228264382),('PBtmpl0000000000000057',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt','default_webgui_yes/no_prompt','3','7','12',NULL,0,1,0,0,0,561,NULL,0,1,0,1228264382),('PBtmpl0000000000000060',1147642419,'3','pbversion0000000000001','approved','Fail Safe','Fail Safe','fail_safe','3','7','12',NULL,0,1,0,0,0,1246,NULL,0,1,0,1228264382),('PBtmpl0000000000000024',1147642420,'3','pbversion0000000000001','approved','File','File','file','3','7','12',NULL,0,1,0,0,0,477,NULL,0,1,0,1228264382),('PBtmpl0000000000000078',1147642420,'3','pbversion0000000000001','approved','File Folder','File Folder','file_folder','3','7','12','',0,1,0,0,0,1954,NULL,0,1,0,1228264382),('PBtmpl0000000000000107',1147642420,'3','pbversion0000000000001','approved','File with size','File with size','file_with_size','3','7','12',NULL,0,1,0,0,0,473,NULL,0,1,0,1228264382),('PBtmpl0000000000000108',1147642421,'3','pbversion0000000000001','approved','horizontalMenu','horizontalMenu','horizontalmenu','3','7','12',NULL,0,1,0,0,0,785,NULL,0,1,0,1228264382),('PBtmpl0000000000000088',1147642421,'3','pbversion0000000000001','approved','Image','Image','image','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1228264382),('PBtmpl0000000000000123',1147642421,'3','pbversion0000000000001','approved','Item','Item','item','3','7','12',NULL,0,1,0,0,0,897,NULL,0,1,0,1228264382),('PBtmpl0000000000000129',1147642422,'3','pbversion0000000000001','approved','Item w/pop-up Links','Item w/pop-up Links','item_w/pop-up_links','3','7','12',NULL,0,1,0,0,0,970,NULL,0,1,0,1228264382),('PBtmpl0000000000000077',1147642422,'3','pbversion0000000000001','approved','Job Listing','Job Listing','job_listing','3','7','12',NULL,0,1,0,0,0,2925,'\n\n\n',0,1,0,1228264382),('WVtmpl0000000000000001',1147642426,'3','pbversion0000000000001','approved','Random Thread Macro Default Template','Random Thread Macro Default Template','randomthread-template','3','7','12',NULL,0,0,0,0,0,4783,NULL,0,1,0,1228264382),('PBtmpl0000000000000136',1147642428,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis2','3','7','12',NULL,0,1,0,0,0,852,NULL,0,1,0,1228264382),('PBtmpl0000000000000124',1147642429,'3','pbversion0000000000001','approved','Tabs','Tabs','tabs','3','7','12',NULL,0,1,0,0,0,777,NULL,0,1,0,1228264382),('PBtmpl0000000000000048',1147642431,'3','pbversion0000000000001','approved','verticalMenu','verticalMenu','verticalmenu','3','7','12',NULL,0,1,0,0,0,789,NULL,0,1,0,1228264382),('PBtmplBlankStyle000001',1147642431,'3','pbversion0000000000001','approved','WebGUI 6 Blank Style','WebGUI 6 Blank Style','pbtmplblankstyle000001','3','7','12',NULL,0,1,0,0,0,860,NULL,0,1,0,1228264382),('5A8Hd9zXvByTDy4x-H28qw',1227566395,'3','pbversion0000000000001','approved','Default Invitation Confirmation Template','Default Invitation Confirmation Template','root/import/account/inbox/default-invitation-confirmation-template','3','7','12',NULL,0,1,0,0,0,1000,NULL,0,1,0,1234301430),('7-0-style0000000000005',1147642493,'3','pbversion0000000000001','approved','header.jpg','header.jpg','style1/header.jpg','3','7','12',NULL,0,0,0,0,0,89722,NULL,0,1,0,1147642493),('7-0-style0000000000008',1147642494,'3','pbversion0000000000001','approved','nav1_center_on.jpg','nav1_center_on.jpg','style1/nav1_center_on.jpg','3','7','12',NULL,0,0,0,0,0,2428,NULL,0,1,0,1147642494),('pbrobot000000000000001',1147642511,'3','pbversion0000000000001','approved','robots.txt','robots.txt','robots.txt','3','7','12',NULL,0,0,0,0,0,292,NULL,0,1,0,1147642511),('bX5rYxb6tZ9docY6sUhBlw',1147642514,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started/getting-started','3','7','4',NULL,0,1,0,0,0,646,NULL,0,1,0,1147642514),('IWFxZDyGhQ3-SLZhELa3qw',1147642514,'3','pbversion0000000000001','approved','Key Benefits','Key Benefits','home/key-benefits','3','7','4',NULL,0,1,0,0,0,2019,NULL,0,1,0,1147642514),('m4YJFaqzultnB_sj1Uq0aw',1147642514,'3','pbversion0000000000001','approved','Ad','Ad','home/ad','3','7','4',NULL,0,1,0,0,0,92365,NULL,0,1,0,1147642514),('7-0-style0000000000045',1147642503,'3','pbversion0000000000001','approved','pb_wg_bg.jpg','pb_wg_bg.jpg','style2/pb_wg_bg.jpg','3','7','12',NULL,0,0,0,0,0,43126,NULL,0,1,0,1147642503),('7-0-style0000000000021',1147642497,'3','pbversion0000000000001','approved','nav2_on_right.jpg','nav2_on_right.jpg','style1/nav2_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1110,NULL,0,1,0,1147642497),('7-0-style0000000000020',1147642497,'3','pbversion0000000000001','approved','nav2_on_left.jpg','nav2_on_left.jpg','style1/nav2_on_left.jpg','3','7','12',NULL,0,0,0,0,0,1138,NULL,0,1,0,1147642497),('7-0-style0000000000016',1147642496,'3','pbversion0000000000001','approved','nav2_center_on.jpg','nav2_center_on.jpg','style1/nav2_center_on.jpg','3','7','12',NULL,0,0,0,0,0,1280,NULL,0,1,0,1147642496),('PBasset000000000000003',1147642437,'3','pbversion0000000000001','approved','Media','Media','media','3','7','12',NULL,0,0,0,0,0,258,NULL,0,1,0,1147642437),('OhdaFLE7sXOzo_SIP2ZUgA',1147642513,'3','pbversion0000000000001','approved','Welcome','Welcome','home/welcome','3','7','4',NULL,0,1,0,0,0,1830,NULL,0,1,0,1147642513),('pbtmpl0000000000000221',1147642465,'3','pbversion0000000000001','approved','Flash Tutorial Template','Flash Tutorial Template','flash-tutorial-template','3','7','12',NULL,0,0,0,0,0,975,NULL,0,1,0,1228264382),('nbSrhXZQuxIjhWFaFPSuVA',1147642465,'3','pbversion0000000000001','approved','AdminConsole','AdminConsole','root/import/adminconsole','3','7','12',NULL,0,0,0,0,0,275,NULL,0,1,0,1147642465),('TvOZs8U1kRXLtwtmyW75pg',1147642465,'3','pbversion0000000000001','approved','Article','Article','root/import/article','3','7','12',NULL,0,0,0,0,0,260,NULL,0,1,0,1147642465),('GNOAsX98vCsl0JRwfwL-gg',1147642466,'3','pbversion0000000000001','approved','Collaboration','Collaboration','root/import/collaboration','3','7','12',NULL,0,0,0,0,0,302,NULL,0,1,0,1147642466),('S1A9iAwKcQQ6P20uTqw-Ew',1147642468,'3','pbversion0000000000001','approved','Dashboard','Dashboard','root/import/dashboard','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642468),('71e17KeduiXgODLMlUxiow',1222803352,'3','pbversion0000000000001','approved','project','project','root/import/projectmanager/project','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803352),('tXwf1zaOXTvsqPn6yu-GSw',1147642469,'3','pbversion0000000000001','approved','FileAsset','FileAsset','root/import/fileasset','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642469),('GYaFxnMu9UsEG8oanwB6TA',1147642470,'3','pbversion0000000000001','approved','Folder','Folder','root/import/folder','3','7','12',NULL,0,0,0,0,0,257,NULL,0,1,0,1147642470),('N13SD1Fpqk00UgBt1Z8ivQ',1147642470,'3','pbversion0000000000001','approved','HttpProxy','HttpProxy','root/import/httpproxy','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642470),('tPagC0AQErZXjLFZQ6OI1g',1147642470,'3','pbversion0000000000001','approved','ImageAsset','ImageAsset','root/import/imageasset','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642470),('3uuBf8cYuj1sew2OJXl9tg',1147642470,'3','pbversion0000000000001','approved','InOutBoard','InOutBoard','root/import/inoutboard','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642470),('ProjectManagerTMPL0002',1222574693,'3','pbversion0000000000001','approved','Default Project Display','Default Project Display','default-pm-template-project-display','3','7','12',NULL,0,0,0,0,0,10531,'\r\n\r\n\r\n',0,1,0,1228264384),('cj2y4papTVGZRFdwTI-_fw',1147642475,'3','pbversion0000000000001','approved','MessageBoard','MessageBoard','root/import/messageboard','3','7','12',NULL,0,0,0,0,0,275,NULL,0,1,0,1147642475),('bBzO4CWjqU_ile3gf5Iypw',1147642475,'3','pbversion0000000000001','approved','MultiSearch','MultiSearch','root/import/multisearch','3','7','12',NULL,0,0,0,0,0,272,NULL,0,1,0,1147642475),('BFfNj5wA9bDw8H3cnr8pTw',1147642475,'3','pbversion0000000000001','approved','Navigation','Navigation','root/import/navigation','3','7','12',NULL,0,0,0,0,0,269,NULL,0,1,0,1147642475),('jEz8iTGNWEt2I05IhVV19Q',1147642477,'3','pbversion0000000000001','approved','Operation/RedeemSubscription','Operation/RedeemSubscription','root/import/operation/redeemsubscription','3','7','12',NULL,0,0,0,0,0,323,NULL,0,1,0,1147642477),('VZK3CRgiMb8r4dBjUmCTgQ',1147642477,'3','pbversion0000000000001','approved','Poll','Poll','root/import/poll','3','7','12',NULL,0,0,0,0,0,251,NULL,0,1,0,1147642477),('f_tn9FfoSfKWX43F83v_3w',1147642479,'3','pbversion0000000000001','approved','Search','Search','root/import/search','3','7','12',NULL,0,0,0,0,0,257,NULL,0,1,0,1147642479),('Da6KWn805L4B5e4HFgQRQA',1147642479,'3','pbversion0000000000001','approved','Shortcut','Shortcut','root/import/shortcut','3','7','12',NULL,0,0,0,0,0,263,NULL,0,1,0,1147642479),('bbiA9Zq5Gy2oCFBlILO3QA',1147642480,'3','pbversion0000000000001','approved','SQLReport','SQLReport','root/import/sqlreport','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642480),('Efe2W0UgrSRDltNJ87jlfg',1147642480,'3','pbversion0000000000001','approved','StockData','StockData','root/import/stockdata','3','7','12',NULL,0,0,0,0,0,266,NULL,0,1,0,1147642480),('RrV4aAPnn4dM0ZcU3OXnlw',1147642480,'3','pbversion0000000000001','approved','style','style','root/import/style','3','7','12',NULL,0,0,0,0,0,254,NULL,0,1,0,1147642480),('oGfxez5sksyB_PcaAsEm_Q',1147642482,'3','pbversion0000000000001','approved','SyndicatedContent','SyndicatedContent','root/import/syndicatedcontent','3','7','12',NULL,0,0,0,0,0,290,NULL,0,1,0,1147642482),('9wKWdum0_8z-OhhquWLtSQ',1147642483,'3','pbversion0000000000001','approved','WeatherData','WeatherData','root/import/weatherdata','3','7','12',NULL,0,0,0,0,0,272,NULL,0,1,0,1147642483),('ErEzulFiEKDkaCDVmxUavw',1227566394,'3','pbversion0000000000001','approved','Default Inbox Error Template','Default Inbox Error Template','root/import/account/inbox/default-inbox-error-template','3','7','12',NULL,0,1,0,0,0,549,NULL,0,1,0,1234301430),('CSN-ZON7Uwv8kxf3F1fh5Q',1147642484,'3','pbversion0000000000001','approved','ZipArchiveAsset','ZipArchiveAsset','root/import/ziparchiveasset','3','7','12',NULL,0,0,0,0,0,284,NULL,0,1,0,1147642484),('TCtybxdqmdwdvRn555zpCQ',1147642484,'3','pbversion0000000000001','approved','RichEdit','RichEdit','root/import/richedit','3','7','12',NULL,0,0,0,0,0,263,NULL,0,1,0,1147642484),('PBtmpl0000000000000044',1148579524,'3','pbversion0000000000001','approved','Default Login Box','Default Login Box','default_login_box','3','7','12',NULL,0,1,0,0,0,1157,NULL,0,1,0,1228264382),('PBtmpl0000000000000092',1148579524,'3','pbversion0000000000001','approved','Horizontal Login Box','Horizontal Login Box','horizontal_login_box','3','7','12',NULL,0,1,0,0,0,1243,NULL,0,1,0,1228264382),('PBnav00000000000bullet',1148579524,'3','pbversion0000000000001','approved','Bulleted List','Bulleted List','bulleted_list','3','7','12',NULL,0,0,0,0,0,1488,'\n\n',0,1,0,1228264382),('pbtmpl0000000000000220',1148579525,'3','pbversion0000000000001','approved','Flash Template','Flash Template','flash-template','3','7','12',NULL,0,0,0,0,0,596,NULL,0,1,0,1228264382),('PBtmpl0000000000000133',1149286278,'3','pbversion0000000000001','approved','Guest Book','Guest Book','guest_book','3','7','12',NULL,0,1,0,0,0,1599,NULL,0,1,0,1228264382),('PBtmpl0000000000000083',1149286278,'3','pbversion0000000000001','approved','Link List','Link List','link_list','3','7','12',NULL,0,1,0,0,0,2046,NULL,0,1,0,1228264383),('PBtmpl0000000000000101',1149286278,'3','pbversion0000000000001','approved','Ordered List','Ordered List','ordered_list','3','7','12',NULL,0,1,0,0,0,2094,NULL,0,1,0,1228264383),('PBtmpl0000000000000121',1149286279,'3','pbversion0000000000001','approved','Photo Gallery','Photo Gallery','photo_gallery','3','7','12',NULL,0,1,0,0,0,2029,'\n\n',0,1,0,1228264383),('PBtmpl0000000000000081',1149286279,'3','pbversion0000000000001','approved','Q and A','Q and A','q_and_a','3','7','12',NULL,0,1,0,0,0,2952,'\n',0,1,0,1228264383),('PBtmpl0000000000000079',1149286279,'3','pbversion0000000000001','approved','Topics','Topics','topics','3','7','12',NULL,0,1,0,0,0,3517,'\n',0,1,0,1228264383),('PBtmpl0000000000000082',1149286279,'3','pbversion0000000000001','approved','Unordered List','Unordered List','unordered_list','3','7','12',NULL,0,1,0,0,0,2985,'\n',0,1,0,1228264383),('PBtmpl0000000000000112',1149286279,'3','pbversion0000000000001','approved','Weblog','Weblog','weblog','3','7','12',NULL,0,1,0,0,0,3490,'',0,1,0,1228264383),('PBtmpl0000000000000039',1154535073,'3','pbversion0000000000001','approved','Default File Macro','Default File Macro','default_file_macro','3','7','12',NULL,0,1,0,0,0,464,NULL,0,1,0,1228264383),('PBtmpl0000000000000055',1154535073,'3','pbversion0000000000001','approved','Default Poll','Default Poll','default_poll','3','7','12',NULL,0,1,0,0,0,2001,'\n',0,1,0,1228264383),('Szs5eev3OMssmnsyLRZmWA',1213317790,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend/tell_a_friend','3','7','3',NULL,0,1,0,0,0,2029,NULL,0,1,0,1213317790),('PBtmpl0000000000000111',1154535074,'3','pbversion0000000000001','approved','Make Page Printable','Make Page Printable','make_page_printable','3','7','12',NULL,0,1,0,0,0,2027,NULL,0,1,0,1228264383),('PBtmpl0000000000000053',1154535074,'3','pbversion0000000000001','approved','Subscription code redemption','Subscription code redemption','subscription_code_redemption','3','7','12',NULL,0,1,0,0,0,460,NULL,0,1,0,1228264383),('WikiPageEditTmpl000001',1221692341,'3','pbversion0000000000001','approved','Default Wiki Page Edit','Default Wiki Page Edit','default-wiki-page-edit','3','7','12',NULL,0,0,0,0,0,1316,'\n',0,1,0,1228264384),('PBtmpl0000000000000097',1154535074,'3','pbversion0000000000001','approved','Traditional with Thumbnails','Traditional with Thumbnails','traditional_with_thumbnails','3','7','12',NULL,0,1,0,0,0,4463,'\n',0,1,0,1228264383),('PBnav00000000indentnav',1154535074,'3','pbversion0000000000001','approved','Indent Nav','Indent Nav','indent_nav','3','7','12',NULL,0,0,0,0,0,1560,'\n',0,1,0,1228264383),('PBtmpl0000000000000001',1157679164,'3','pbversion0000000000001','approved','Admin Console','Admin Console','admin_console2','3','7','12',NULL,0,1,0,0,0,3232,'\n\n',0,1,0,1228264383),('ProjectManagerTMPL0006',1157679165,'3','pbversion0000000000001','approved','Default Resource List','Default Resource List','default-pm-resource-list','3','7','12',NULL,0,0,0,0,0,1100,NULL,0,1,0,1228264383),('PBtmpl0000000000000002',1159989349,'3','pbversion0000000000001','approved','Default Article','Default Article','default_article','3','7','12',NULL,0,1,0,0,0,1507,NULL,0,1,0,1228264383),('ProjectManagerTMPL0003',1159989349,'3','pbversion0000000000001','approved','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart','default-pm-template-gantt-chart','3','7','12',NULL,0,0,0,0,0,2137,NULL,0,1,0,1228264383),('pbproto000000000000002',1163019036,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-prototype','3','7','12',NULL,0,0,0,1,0,488,NULL,0,1,0,1163019036),('WikiPHTmpl000000000001',1165460175,'3','pbversion0000000000001','approved','Default Page History','Default Page History','default-wiki-page-history','3','7','12',NULL,0,0,0,0,0,486,NULL,0,1,0,1228264383),('WikiMPTmpl000000000001',1165460175,'3','pbversion0000000000001','approved','Default Most Popular','Default Most Popular','default-wiki-most-popular','3','7','12',NULL,0,0,0,0,0,675,NULL,0,1,0,1228264383),('IOB0000000000000000002',1166019641,'3','pbversion0000000000001','approved','Default InOutBoard Report Template','Default InOutBoard Report Template','iob-report-template','3','7','12',NULL,0,0,0,0,0,2116,'',0,1,0,1228264383),('WikiSearchTmpl00000001',1168480840,'3','pbversion0000000000001','approved','Default Wiki Search','Default Wiki Search','default-wiki-search','3','7','12',NULL,0,0,0,0,0,1393,'\n\n',0,1,0,1228264383),('WikiRCTmpl000000000001',1169092823,'3','pbversion0000000000001','approved','Default Recent Changes','Default Recent Changes','default-wiki-recent-changes','3','7','12',NULL,0,0,0,0,0,1004,NULL,0,1,0,1228264383),('ZipArchiveTMPL00000001',1169738426,'3','pbversion0000000000001','approved','Default Zip Archive Template','Default Zip Archive Template','zip-archive-template','3','7','12',NULL,0,0,0,0,0,706,NULL,0,1,0,1228264383),('IOB0000000000000000001',1169795123,'3','pbversion0000000000001','approved','Default InOutBoard Template','Default InOutBoard Template','iob-template','3','7','12',NULL,0,0,0,0,0,2715,'',0,1,0,1228264383),('PBtmpl0000000000000142',1171466654,'3','pbversion0000000000001','approved','Default RSS','Default RSS','pbtmpl0000000000000142','3','7','12',NULL,0,1,0,0,0,731,NULL,0,1,0,1228264383),('PBtmpl0000000000000080',1171466654,'3','pbversion0000000000001','approved','FAQ','FAQ','faqtemplate','3','7','12',NULL,0,1,0,0,0,2167,NULL,0,1,0,1228264383),('SQLReportDownload00001',1171466654,'3','pbversion0000000000001','approved','SQLReport Download Default Template','untitled','SQLReportDownload0001','3','7','12',NULL,0,0,0,0,0,3664,NULL,0,1,0,1228264383),('newsletter000000000001',1185754569,'3','pbversion0000000000001','approved',' Summary Newsletter (default)',' Summary Newsletter','newsletterdefaulttemplate','3','7','3',NULL,0,0,0,0,0,498,NULL,0,1,0,1228264383),('PBtmpl0000000000000026',1185754569,'3','pbversion0000000000001','approved','Default Forum','Default Forum','default_forum','3','7','12',NULL,0,1,0,0,0,4871,'\n\n\n',0,1,0,1228264383),('PBtmpl0000000000000010',1227026287,'3','pbversion0000000000001','approved','Default WebGUI Account Display Template','Default WebGUI Account Display Template','default_webgui_account_display_template','3','7','12',NULL,0,1,0,0,0,1616,NULL,0,1,0,1228264385),('PBtmpl0000000000000014',1227218041,'3','pbversion0000000000001','approved','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template','default_webgui_password_recovery_template','3','7','12',NULL,0,1,0,0,0,1741,NULL,0,1,0,1228264385),('PBtmpl0000000000000004',1227026214,'3','pbversion0000000000001','approved','Default LDAP Account Display Template','Default LDAP Account Display Template','default_ldap_account_display_template','3','7','12',NULL,0,1,0,0,0,898,NULL,0,1,0,1228264383),('WikiKeyword00000000001',1185754571,'3','pbversion0000000000001','approved',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword','wiki-master-by-keyword-template.tmpl','3','7','3',NULL,0,0,0,0,0,474,NULL,0,1,0,1228264383),('WikiFrontTmpl000000001',1185754572,'3','pbversion0000000000001','approved','Default Wiki Front Page','Default Wiki Front Page','default-wiki-front-page','3','7','12',NULL,0,0,0,0,0,1322,NULL,0,1,0,1228264383),('tempspace0000000000000',1185754574,'3','pbversion0000000000001','approved','Tempspace','Tempspace','tempspace','3','7','3',NULL,0,0,0,0,0,270,NULL,0,1,0,1185754574),('MBZK_LPVzqhb4TV4mMRTJg',1197330678,'3','pbversion0000000000001','approved','admin_ie7.css','admin_ie7.css','root/import/gallery-templates/admin_ie7.css','3','7','3',NULL,0,1,0,0,0,320,NULL,0,1,0,1197330678),('kaPRSaf8UKiskiGEgJgLAw',1197330678,'3','pbversion0000000000001','approved','images','images','root/import/gallery-templates/images','3','7','3',NULL,0,0,0,0,0,304,NULL,0,1,0,1197330678),('bANo8aiAPA7aY_oQZKxIWw',1197330678,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss.gif','3','7','3',NULL,0,1,0,0,0,1378,NULL,0,1,0,1197330678),('fdd8tGExyVwHyrB8RBbKXg',1197330839,'3','pbversion0000000000001','approved','next.gif','next.gif','root/import/gallery-templates/images/next.gif','3','7','3',NULL,0,1,0,0,0,1665,NULL,0,1,0,1197330839),('BpisgHl4ZDcSECJp6oib1w',1197330840,'3','pbversion0000000000001','approved','play.gif','play.gif','root/import/gallery-templates/images/play.gif','3','7','3',NULL,0,1,0,0,0,2102,NULL,0,1,0,1197330840),('zshreRgPAXtnF0DtVbQ1Yg',1197330840,'3','pbversion0000000000001','approved','previous.gif','previous.gif','root/import/gallery-templates/images/previous.gif','3','7','3',NULL,0,1,0,0,0,1671,NULL,0,1,0,1197330840),('TimeTrackingTMPL000001',1201205738,'3','pbversion0000000000001','approved','Default Time Tracking User View','Default Time Tracking User View','default-tt-template-user','3','7','12',NULL,0,0,0,0,0,10402,'\n \n',0,1,0,1228264383),('PBtmpl0000000000000085',1202884864,'3','pbversion0000000000001','approved','Default Email','Default Email','default_email','3','7','12',NULL,0,1,0,0,0,1175,NULL,0,1,0,1228264383),('CalendarPrintMonth0001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Month','Default Calendar Print Month','root/import/calendar-templates/default-calendar-print-month','3','7','12',NULL,0,0,0,0,0,2151,' \r\n',0,1,0,1228264383),('CalendarPrintWeek00001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Week','Default Calendar Print Week','root/import/calendar-templates/default-calendar-print-week','3','7','12',NULL,0,0,0,0,0,2249,' \r\n',0,1,0,1228264383),('CalendarPrintDay000001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Day','Default Calendar Print Day','root/import/calendar-templates/default-calendar-print-day','3','7','12',NULL,0,0,0,0,0,2117,' \r\n',0,1,0,1228264383),('PBtmpl0000000000000067',1206998733,'3','pbversion0000000000001','approved','Default Submission','Default Submission','default_submission','3','7','12',NULL,0,1,0,0,0,14012,'\r\n',0,1,0,1228264383),('PBtmpl0000000000000032',1206998756,'3','pbversion0000000000001','approved','Default Thread','Default Thread','default_thread','3','7','12',NULL,0,1,0,0,0,7847,'\r\n',0,1,0,1228264383),('PBtmpl0000000000000209',1206998862,'3','pbversion0000000000001','approved','Request Tracker Thread','Request Tracker Thread','request-tracker-post-template','3','7','12',NULL,0,0,0,0,0,14030,'\r\n',0,1,0,1228264383),('FOvmwGC0GtZo5VTxJIL3OA',1207068851,'3','pbversion0000000000001','approved','Get Documentation','Get Documentation','yns/docs','3','7','4',NULL,0,1,0,0,0,595,NULL,0,1,0,1207068851),('PBrichedit000000000001',1207240829,'3','pbversion0000000000001','approved','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit','content_managers_rich_edit','3','7','12',NULL,0,0,0,0,0,538,NULL,0,1,0,1207240829),('3qiVYhNTXMVC5hfsumVHgg',1206743306,'3','pbversion0000000000001','approved','browserdetect.js','browserdetect.js','root/import/gallery-templates/browserdetect.js','3','7','3',NULL,0,1,0,0,0,2681,NULL,0,1,0,1206743306),('F7MAQ-cpuvQ1KuC7J4P5zQ',1222803673,'3','pbversion0000000000001','approved','View','View','root/import/profile/view','3','7','12',NULL,0,0,0,0,0,294,NULL,0,1,0,1222803673),('Tsg7xmPYv782j6IVz7yHFg',1213244777,'3','pbversion0000000000001','approved','Calendar Templates','Calendar Templates','root/import/calendar-templates','3','7','12',NULL,0,1,0,0,0,317,NULL,0,1,0,1213244777),('-K8Hj45mbelljN9-0CXZxg',1209325764,'3','pbversion0000000000001','approved','DataForm','DataForm','root/import/dataform','3','7','12',NULL,0,0,0,0,0,300,NULL,0,1,0,1209325764),('Q4uX_C557arTp6D_jwB1jQ',1222803760,'3','pbversion0000000000001','approved','Wiki','Wiki','root/import/wiki','3','12','12',NULL,0,0,0,0,0,280,NULL,0,1,0,1222803760),('4qh0kIsFUdd4Ox-Iu1JZgg',1208725439,'3','pbversion0000000000001','approved','EMS','EMS','root/import/ems','3','7','12',NULL,0,1,0,0,0,285,NULL,0,1,0,1208725439),('PsFn7dJt4wMwBa8hiE3hOA',1208558071,'3','pbversion0000000000001','approved','Print Badge (Default)','Print Badge (Default)','root/import/ems/print-badge-default','3','7','12',NULL,0,1,0,0,0,1417,NULL,0,1,0,1228264384),('yBwydfooiLvhEFawJb0VTQ',1208629936,'3','pbversion0000000000001','approved','Print Ticket (Default)','Print Ticket (Default)','root/import/ems/print-ticket-default','3','7','12',NULL,0,1,0,0,0,1449,NULL,0,1,0,1228264384),('aNNC62qLAS6TB-0_MCYjsw',1213283425,'3','pbversion0000000000001','approved','Layout','Layout','root/import/layout','3','7','12',NULL,0,0,0,0,0,281,NULL,0,1,0,1213283425),('NywJYmGWe1f6EBXJnWg9Xg',1222803638,'3','pbversion0000000000001','approved','Profile','Profile','root/import/profile','3','7','12',NULL,0,1,0,0,0,288,NULL,0,1,0,1222803638),('AgyFhx3eXlfZXNp2MkrsiQ',1222803665,'3','pbversion0000000000001','approved','Edit','Edit','root/import/profile/edit','3','7','12',NULL,0,0,0,0,0,294,NULL,0,1,0,1222803665),('_hELmIJfgbAyXFNqPyApxQ',1213309523,'3','pbversion0000000000001','approved','admin.css','admin.css','root/import/gallery-templates/admin.css','3','7','3',NULL,0,1,0,0,0,2031,NULL,0,1,0,1213309523),('2ci_v2d4x4uvyjTRlC49OA',1209499188,'3','pbversion0000000000001','approved','moveDown.gif','moveDown.gif','root/import/gallery-templates/images/movedown.gif','3','7','3',NULL,0,1,0,0,0,363,NULL,0,1,0,1209499188),('O-EsSzKgAk1KolFT-x_KsA',1209499188,'3','pbversion0000000000001','approved','moveUp.gif','moveUp.gif','root/import/gallery-templates/images/moveup.gif','3','7','3',NULL,0,1,0,0,0,353,NULL,0,1,0,1209499188),('POVcY79vIqAHR8OfGt36aw',1209499189,'3','pbversion0000000000001','approved','pagination_button.jpg','pagination_button.jpg','root/import/gallery-templates/images/pagination_button.jpg','3','7','12',NULL,0,1,0,0,0,1039,NULL,0,0,0,1209499189),('hIB-z34r8Xl-vYVYCkKr-w',1209499189,'3','pbversion0000000000001','approved','bar-btn-r.jpg','bar-btn-r.jpg','root/import/gallery-templates/images/bar-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,819,NULL,0,0,0,1209499189),('-mPUoFlYcjqjPUPRLAlxNQ',1209499189,'3','pbversion0000000000001','approved','search-field-r.jpg','search-field-r.jpg','root/import/gallery-templates/images/search-field-r.jpg','3','7','12',NULL,0,1,0,0,0,837,NULL,0,0,0,1209499189),('MDpUOR-N8KMyt1J7Hh_h4w',1209499189,'3','pbversion0000000000001','approved','bar-btn.jpg','bar-btn.jpg','root/import/gallery-templates/images/bar-btn.jpg','3','7','12',NULL,0,1,0,0,0,697,NULL,0,0,0,1209499189),('YfXKByTwDZVituMc4h13Dg',1209499189,'3','pbversion0000000000001','approved','pagination_bg.jpg','pagination_bg.jpg','root/import/gallery-templates/images/pagination_bg.jpg','3','7','12',NULL,0,1,0,0,0,1120,NULL,0,0,0,1209499189),('esko_HSU0Gh-uJZ1h3xRmQ',1209499189,'3','pbversion0000000000001','approved','search-field-l.jpg','search-field-l.jpg','root/import/gallery-templates/images/search-field-l.jpg','3','7','12',NULL,0,1,0,0,0,863,NULL,0,0,0,1209499189),('oSqpGswzpBG_ErdfYwIO8A',1209499189,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg.jpg','3','7','12',NULL,0,1,0,0,0,681,NULL,0,0,0,1209499189),('MXJklShZvLLB_DSnZQmXrQ',1209499189,'3','pbversion0000000000001','approved','title_bg.jpg','title_bg.jpg','root/import/gallery-templates/images/title_bg.jpg','3','7','12',NULL,0,1,0,0,0,1647,NULL,0,0,0,1209499189),('BthxD5oJ0idmsyI3ioA2FA',1209499189,'3','pbversion0000000000001','approved','bar-btn-l.jpg','bar-btn-l.jpg','root/import/gallery-templates/images/bar-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,834,NULL,0,0,0,1209499189),('aZ-1HYQamkRHYXvzAra8WQ',1209499189,'3','pbversion0000000000001','approved','search-field.jpg','search-field.jpg','root/import/gallery-templates/images/search-field.jpg','3','7','12',NULL,0,1,0,0,0,739,NULL,0,0,0,1209499189),('eRkb94OYcS5AdcrrerOP5Q',1209499189,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss2.gif','3','7','12',NULL,0,1,0,0,0,1380,NULL,0,0,0,1209499189),('TbnkjAJQEASORXIpYqDkcA',1209499189,'3','pbversion0000000000001','approved','blank-image.jpg','blank-image.jpg','root/import/gallery-templates/images/blank-image.jpg','3','7','12',NULL,0,1,0,0,0,3073,NULL,0,0,0,1209499189),('er-3faBjY-hhlDcc5aKqdQ',1209499189,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg2.jpg','3','7','12',NULL,0,1,0,0,0,682,NULL,0,0,0,1209499189),('8bFsu2FJUqHRUiHcozcVFw',1209499189,'3','pbversion0000000000001','approved','sub-btn-l.jpg','sub-btn-l.jpg','root/import/gallery-templates/images/sub-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,833,NULL,0,0,0,1209499189),('34Aayx5eA320D8VfhdfDBw',1209499189,'3','pbversion0000000000001','approved','sub-btn-r.jpg','sub-btn-r.jpg','root/import/gallery-templates/images/sub-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,813,NULL,0,0,0,1209499189),('TlhKOVmWblZOsAdqmhEpeg',1209499189,'3','pbversion0000000000001','approved','sub-btn.jpg','sub-btn.jpg','root/import/gallery-templates/images/sub-btn.jpg','3','7','12',NULL,0,1,0,0,0,691,NULL,0,0,0,1209499189),('Nx0ypjO3cN6QdZUBUEE0lA',1209499189,'3','pbversion0000000000001','approved','pic-title-bg.jpg','pic-title-bg.jpg','root/import/gallery-templates/images/pic-title-bg.jpg','3','7','12',NULL,0,1,0,0,0,854,NULL,0,0,0,1209499189),('CmFZLN7iPS7XXvUEsxKPKA',1209499190,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/gallery-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,795,NULL,0,0,0,1209499190),('v_XBgwwZqgW1D5s4y05qfg',1209499190,'3','pbversion0000000000001','approved','addtl-info.gif','addtl-info.gif','root/import/gallery-templates/images/addtl-info.gif','3','7','12',NULL,0,1,0,0,0,903,NULL,0,0,0,1209499190),('4TdAkKoQbSCvI7QWcW889A',1209499190,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/gallery-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,780,NULL,0,0,0,1209499190),('SAgK6eDPCG1cgkJ59WapHQ',1209499190,'3','pbversion0000000000001','approved','prev-btn.gif','prev-btn.gif','root/import/gallery-templates/images/prev-btn.gif','3','7','12',NULL,0,1,0,0,0,2004,NULL,0,0,0,1209499190),('XJYLuvGy9ubF7JNKyINtpA',1209499190,'3','pbversion0000000000001','approved','play-btn.gif','play-btn.gif','root/import/gallery-templates/images/play-btn.gif','3','7','12',NULL,0,1,0,0,0,2532,NULL,0,0,0,1209499190),('RWj7hyv2SpZuXxwj1Wocug',1209499190,'3','pbversion0000000000001','approved','next-btn.gif','next-btn.gif','root/import/gallery-templates/images/next-btn.gif','3','7','12',NULL,0,1,0,0,0,2034,NULL,0,0,0,1209499190),('aq8QElnlm3YufAoxRz9Pcg',1209499190,'3','pbversion0000000000001','approved','data-bg.jpg','data-bg.jpg','root/import/gallery-templates/images/data-bg.jpg','3','7','12',NULL,0,1,0,0,0,810,NULL,0,0,0,1209499190),('7fE8md51vTCcuJFOvxNaGA',1209503742,'3','pbversion0000000000001','approved','thumbnails.js','thumbnails.js','root/import/gallery-templates/thumbnails.js','3','7','3',NULL,0,1,0,0,0,3933,NULL,0,1,0,1209503742),('mTOiwwk3q4k9g5-XykXhPA',1218149728,'3','pbversion0000000000001','approved','Documentation','Documentation','documentation','3','7','3',NULL,0,0,0,0,0,506,NULL,0,1,0,1218149728),('TYo2Bwl7aafzTtdHlS-arQ',1211664878,'3','pbversion0000000000001','approved','Product','Product','root/import/product','3','7','12',NULL,0,0,0,0,0,284,NULL,0,1,0,1211664878),('gbnRhcWNk1iQe32LFEB5eQ',1212086102,'3','pbversion0000000000001','approved','Shelf','Shelf','root/import/shelf2','3','7','12',NULL,0,1,0,0,0,279,NULL,0,1,0,1212086102),('6tK47xsaIH-ELw0IBo0uRQ',1210777115,'3','pbversion0000000000001','approved','images','images','root/import/shelf2/images','3','7','12',NULL,0,1,0,0,0,294,NULL,0,1,0,1210777115),('_bZJ9LA_KNekZiFPaP2SeQ',1210777868,'3','pbversion0000000000001','approved','shelf-titles.jpg','shelf-titles.jpg','root/import/shelf2/images/shelf-titles.jpg','3','7','12',NULL,0,1,0,0,0,1027,NULL,0,0,0,1210777868),('4e-_rNs6mSWedZhQ_V5kJA',1210779672,'3','pbversion0000000000001','approved','shelf-ie.css','shelf-ie.css','root/import/shelf2/shelf-ie.css','3','7','12',NULL,0,1,0,0,0,693,NULL,0,1,0,1210779672),('6D4Z-oruXPS6OlH_Kx8pBg',1209509389,'3','pbversion0000000000001','approved','images','images','root/import/thingy-templates/images','3','7','12',NULL,0,1,0,0,0,304,NULL,0,1,0,1209509389),('hQ7z33_jOYkQ8WNX5xy9Sw',1209509455,'3','pbversion0000000000001','approved','style-button.gif','style-button.gif','root/import/thingy-templates/images/style-button.gif','3','7','12',NULL,0,1,0,0,0,912,NULL,0,0,0,1209509455),('vWW_DcHiYSrKZOkkIfEfcQ',1209509433,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/thingy-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,794,NULL,0,0,0,1209509433),('_bPYzRA87NTAUIKlfrJMHg',1209509433,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/thingy-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,779,NULL,0,0,0,1209509433),('nJjZHRwdDs5MAZYsAyioHw',1209509433,'3','pbversion0000000000001','approved','title-bg.jpg','title-bg.jpg','root/import/thingy-templates/images/title-bg.jpg','3','7','12',NULL,0,1,0,0,0,1094,NULL,0,0,0,1209509433),('8hxfkrJPeFVRWF5piCNJ1A',1209509433,'3','pbversion0000000000001','approved','field-bg.jpg','field-bg.jpg','root/import/thingy-templates/images/field-bg.jpg','3','7','12',NULL,0,1,0,0,0,710,NULL,0,0,0,1209509433),('Osx7WN52iIKHZFT4vqUBHQ',1209509433,'3','pbversion0000000000001','approved','search-btn.gif','search-btn.gif','root/import/thingy-templates/images/search-btn.gif','3','7','12',NULL,0,1,0,0,0,1252,NULL,0,0,0,1209509433),('oWff8fGzRdHPyq5VNREe9Q',1209509433,'3','pbversion0000000000001','approved','top-bg.jpg','top-bg.jpg','root/import/thingy-templates/images/top-bg.jpg','3','7','12',NULL,0,1,0,0,0,680,NULL,0,0,0,1209509433),('uqbkvb1b9443VvfkyRz95w',1209509433,'3','pbversion0000000000001','approved','save-button.gif','save-button.gif','root/import/thingy-templates/images/save-button.gif','3','7','12',NULL,0,1,0,0,0,1260,NULL,0,0,0,1209509433),('8YiMkcz32xalkAn3WBLpag',1210181860,'3','pbversion0000000000001','approved','go-btn.gif','go-btn.gif','root/import/thingy-templates/images/go-btn.gif','3','7','12',NULL,0,1,0,0,0,419,NULL,0,0,0,1210181860),('C5fPz-Wg85vkYRvCdl-Xqw',1212160830,'3','pbversion0000000000001','approved','UserList','UserList','root/import/userlist','3','7','12',NULL,0,1,0,0,0,287,NULL,0,1,0,1212160830),('usuxw9V3jN4d4pujRiEYxg',1209494150,'3','pbversion0000000000001','approved','css03-ie.css','css03-ie.css','style3/css03-ie.css','3','7','12',NULL,0,0,0,0,0,287,NULL,0,1,0,1209494150),('aNmgn0cd6tldmC1FpW4KbA',1213122695,'3','pbversion0000000000001','approved','Shop','Shop','shopping-cart-collateral-items','3','7','3',NULL,0,1,0,0,0,288,NULL,0,0,0,1213122695),('2q5fxatSFLgIhXaUX-oSvg',1204149033,'3','pbversion0000000000001','approved','bottom-left.jpg','bottom-left.jpg','shopping-cart-collateral-items/bottom-left.jpg','3','7','3',NULL,0,1,0,0,0,32243,NULL,0,0,0,1204149033),('_d5WTkKjnwct-_Dk7gZHvQ',1204149033,'3','pbversion0000000000001','approved','bottom-right.jpg','bottom-right.jpg','shopping-cart-collateral-items/bottom-right.jpg','3','7','3',NULL,0,1,0,0,0,32247,NULL,0,0,0,1204149033),('Iz2mUR3jCPKyemwAea4b2g',1204149033,'3','pbversion0000000000001','approved','input_bg.jpg','input_bg.jpg','shopping-cart-collateral-items/input_bg.jpg','3','7','3',NULL,0,1,0,0,0,30065,NULL,0,0,0,1204149033),('JU9bjsLRoWj7GVHs__prig',1204149033,'3','pbversion0000000000001','approved','top-left.jpg','top-left.jpg','shopping-cart-collateral-items/top-left.jpg','3','7','3',NULL,0,1,0,0,0,32196,NULL,0,0,0,1204149033),('noOlnjQGexHg8c4bGVUo9g',1204149033,'3','pbversion0000000000001','approved','top-right.jpg','top-right.jpg','shopping-cart-collateral-items/top-right.jpg','3','7','3',NULL,0,1,0,0,0,32234,NULL,0,0,0,1204149033),('bPz1yk6Y9uwMDMBcmMsSCg',1211829604,'3','pbversion0000000000001','approved','Email Receipt (Default)','Email Receipt (Default)','shopping-cart-collateral-items/email-receipt-default','3','7','3',NULL,0,1,0,0,0,2895,NULL,0,1,0,1228264384),('EBlxJpZQ9o-8VBOaGQbChA',1212093746,'3','pbversion0000000000001','approved','MiniCart','MiniCart','shopping-cart-collateral-items/minicart','3','7','3',NULL,0,1,0,0,0,2295,'',0,1,0,1228264384),('WeatherDataTmpl0000001',1210711353,'3','pbversion0000000000001','approved','WeatherData Default View','WeatherData Default View','weatherdatatmpl0000001','3','7','12',NULL,0,1,0,0,0,5190,'\r\n\r\n\r\n',0,1,0,1228264384),('Ik9HHky10DIyFTKehUD1dw',1222803478,'3','pbversion0000000000001','approved','Prompt','Prompt','root/import/prompt','3','7','12',NULL,0,0,0,0,0,285,NULL,0,1,0,1222803478),('gI_TxK-5S4DNuv42wpImmw',1213734379,'3','pbversion0000000000001','approved','Gallery Templates','Gallery Templates','root/import/gallery-templates','3','7','3',NULL,0,0,0,0,0,326,NULL,0,1,0,1213734379),('BmLaN4rmAANkCglXUViEbg',1222803871,'3','pbversion0000000000001','approved','Resource','Resource','root/import/projectmanager/resource','3','12','12',NULL,0,0,0,0,0,314,NULL,0,1,0,1222803871),('X7DrzUcj8pOKFa_6k9D5iw',1222804045,'3','pbversion0000000000001','approved','Newsletter','Newsletter','root/import/newsletter','3','12','3',NULL,0,0,0,0,0,297,NULL,0,1,0,1222804045),('7-0-style0000000000059',1213386091,'3','pbversion0000000000001','approved','main_top.jpg','main_top.jpg','style3/main_top.jpg','3','7','12',NULL,0,0,0,0,0,3583,NULL,0,1,0,1213386091),('CalendarPrintEvent0001',1215396964,'3','pbversion0000000000001','approved','Default Calendar Print Event','Default Calendar Print Event','root/import/calendar-templates/default-calendar-print-event','3','7','12',NULL,0,0,0,0,0,3079,' \r\n',0,1,0,1228264384),('_gBYAdTcbkiyamnqi2Xskg',1222803409,'3','pbversion0000000000001','approved','WebGUI/Recovery','WebGUI/Recovery','root/import/auth/webgui/recovery','3','7','12',NULL,0,0,0,0,0,324,NULL,0,1,0,1222803409),('j_1qEqM6iLfQLiR6VKy0aA',1215718151,'3','pbversion0000000000001','approved','Free Documentation','Free Documentation','documentation/free-documentation','3','7','3',NULL,0,1,0,0,0,1382,NULL,0,1,0,1215718151),('o_pq_e4vRyhMOKFzs61eag',1215714957,'3','pbversion0000000000001','approved','book-covers.jpg','book-covers.jpg','documentation/book-covers.jpg','3','7','3',NULL,0,1,0,0,0,106067,NULL,0,0,0,1215714957),('diZvW4bSgZWwyyGP3qXi1g',1215717972,'3','pbversion0000000000001','approved','Commercial Documentation','Commercial Documentation','documentation/commercial-documentation','3','7','3',NULL,0,1,0,0,0,1077,NULL,0,1,0,1215717972),('oHk7fAFhEEkB7dHzi0QOQA',1222803399,'3','pbversion0000000000001','approved','WebGUI/Expired','WebGUI/Expired','root/import/auth/webgui/expired','3','7','12',NULL,0,0,0,0,0,321,NULL,0,1,0,1222803399),('fq1ZkYhH24R5tb96kuT10Q',1222803395,'3','pbversion0000000000001','approved','WebGUI/Create','WebGUI/Create','root/import/auth/webgui/create','3','7','12',NULL,0,0,0,0,0,318,NULL,0,1,0,1222803395),('63ix2-hU0FchXGIWkG3tow',1216169693,'3','pbversion0000000000001','approved','Flat Discount (Default)','Flat Discount (Default)','root/import/flat-discount-default','3','7','12',NULL,0,1,0,0,0,811,NULL,0,1,0,1228264384),('K0q_N885Httqev1VCqUWxg',1222803391,'3','pbversion0000000000001','approved','WebGUI/Account','WebGUI/Account','root/import/auth/webgui/account','3','7','12',NULL,0,0,0,0,0,321,NULL,0,1,0,1222803391),('jnYdqDkUR8x7Pv2eGR1qTA',1216250666,'3','pbversion0000000000001','approved','Thingy Templates','Thingy Templates','root/import/thingy-templates','3','7','12',NULL,0,1,0,0,0,312,NULL,0,1,0,1216250666),('taX2UYkFF21ALpFZY2rhMw',1222803387,'3','pbversion0000000000001','approved','LDAP/Login','LDAP/Login','root/import/auth/ldap/login','3','7','12',NULL,0,0,0,0,0,309,NULL,0,1,0,1222803387),('3n3H85BsdeRQ0I08WmvlOg',1216227244,'3','pbversion0000000000001','approved','thingy.css','thingy.css','root/import/thingy-templates/thingy.css','3','7','12',NULL,0,1,0,0,0,2768,NULL,0,1,0,1216227244),('5m5I7__l40C4hhv4ydqAHQ',1216227786,'3','pbversion0000000000001','approved','thingy-ie.css','thingy-ie.css','root/import/thingy-templates/thingy-ie.css','3','7','12',NULL,0,1,0,0,0,830,NULL,0,1,0,1216227786),('9M-lrlPQWeeNWfvnDnK_Xg',1222803405,'3','pbversion0000000000001','approved','WebGUI/Login','WebGUI/Login','root/import/auth/webgui/login','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1222803405),('xSmREZO3GNzK3M5PaueOOQ',1222803378,'3','pbversion0000000000001','approved','LDAP/Account','LDAP/Account','root/import/auth/ldap/account','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1222803378),('0bx-xoL8TSXXubFuqKAoVQ',1222803383,'3','pbversion0000000000001','approved','LDAP/Create','LDAP/Create','root/import/auth/ldap/create','3','7','12',NULL,0,0,0,0,0,312,NULL,0,1,0,1222803383),('1oGhfj00KkCzP1ez01AfKA',1218582812,'3','pbversion0000000000001','approved','slideshow.js','slideshow.js','root/import/gallery-templates/slideshow.js','3','7','3',NULL,0,1,0,0,0,8708,NULL,0,1,0,1218582812),('PBtmpl0000000000000130',1219072470,'3','pbversion0000000000001','approved','Tree Navigation','Tree Navigation','root/import/navigation/tree-navigation','3','7','12',NULL,0,1,0,0,0,2512,'\r\n\r\n\r\n',0,1,0,1228264384),('pV7GnZdpjR3XpZaSINIoeg',1222803347,'3','pbversion0000000000001','approved','gantt','gantt','root/import/projectmanager/gantt','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1222803347),('9A-mg2gwWmaYi9o_1C7ArQ',1222803338,'3','pbversion0000000000001','approved','dashboard','dashboard','root/import/projectmanager/dashboard','3','7','12',NULL,0,0,0,0,0,316,NULL,0,1,0,1222803338),('PBtmpl0000000000000054',1220655703,'3','pbversion0000000000001','approved','Default Page','Default Page','default_page','3','7','12',NULL,0,1,0,0,0,1193,NULL,0,1,0,1228264384),('PBtmpl000000000table54',1220655704,'3','pbversion0000000000001','approved','Default Page (Table)','Default Page (Table)','default_page_table','3','7','12',NULL,0,0,0,0,0,1258,NULL,0,1,0,1228264384),('yD1SMHelczihzjEmx6eXBA',1222803342,'3','pbversion0000000000001','approved','editTask','editTask','root/import/projectmanager/edittask','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803342),('PBtmpl0000000000000125',1220655703,'3','pbversion0000000000001','approved','Left Column','Left Column','left_column','3','7','12',NULL,0,1,0,0,0,2407,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table125',1220655705,'3','pbversion0000000000001','approved','Left Column (Table)','Left Column (Table)','left_column_table','3','7','12',NULL,0,0,0,0,0,2419,'\n',0,1,0,1228264384),('PBtmpl00000000table094',1220655704,'3','pbversion0000000000001','approved','News (Table)','News (Table)','news_table','3','7','12',NULL,0,0,0,0,0,3604,'\r\n',0,1,0,1228264384),('PBtmpl0000000000000109',1220655703,'3','pbversion0000000000001','approved','One Over Three','One Over Three','one_over_three','3','7','12',NULL,0,1,0,0,0,3851,'\n\n',0,1,0,1228264384),('PBtmpl00000000table109',1220655705,'3','pbversion0000000000001','approved','One Over Three (Table)','One Over Three (Table)','one_over_three_table','3','7','12',NULL,0,0,0,0,0,3921,'\n\n',0,1,0,1228264384),('PBtmpl0000000000000094',1220655703,'3','pbversion0000000000001','approved','News','News','plainblacknews','3','7','12',NULL,0,1,0,0,0,3564,'\r\n\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000131',1220655704,'3','pbversion0000000000001','approved','Right Column','Right Column','right_column','3','7','12',NULL,0,1,0,0,0,2421,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table131',1220655705,'3','pbversion0000000000001','approved','Right Column (Table)','Right Column (Table)','right_column_table','3','7','12',NULL,0,0,0,0,0,2415,'\n',0,1,0,1228264384),('1XOJDcg_ITRYwVM-QnIcPw',1219175575,'3','pbversion0000000000001','approved','shelf.css','shelf.css','root/import/shelf2/shelf.css','3','7','12',NULL,0,1,0,0,0,1486,NULL,0,1,0,1219175575),('PBtmpl0000000000000135',1220655704,'3','pbversion0000000000001','approved','Side By Side','Side By Side','side_by_side','3','7','12',NULL,0,1,0,0,0,2256,'\n\n',0,1,0,1228264384),('PBtmpl00000000table135',1220655706,'3','pbversion0000000000001','approved','Side By Side (Table)','Side By Side (Table)','side_by_side_table','3','7','12',NULL,0,0,0,0,0,2277,'\r\n',0,1,0,1228264384),('PBtmpl0000000000000118',1220655703,'3','pbversion0000000000001','approved','Three Over One','Three Over One','three_over_one','3','7','12',NULL,0,1,0,0,0,3814,'\n\n\n',0,1,0,1228264384),('PBtmpl00000000table118',1220655705,'3','pbversion0000000000001','approved','Three Over One (Table)','Three Over One (Table)','three_over_one_table','3','7','12',NULL,0,0,0,0,0,3936,'\r\n',0,1,0,1228264384),('huASapWvFDzqwOSbcN-JFQ',1222803313,'3','pbversion0000000000001','approved','user','user','root/import/timetracking/user','3','7','12',NULL,0,0,0,0,0,299,NULL,0,1,0,1222803313),('lo1ac3BsoJx3ijGQ3gR-bQ',1222803309,'3','pbversion0000000000001','approved','row','row','root/import/timetracking/row','3','7','12',NULL,0,0,0,0,0,296,NULL,0,1,0,1222803309),('1z9J1O08n_7gVVlBwSRBJQ',1222803099,'3','pbversion0000000000001','approved','Auth','Auth','root/import/auth','3','7','12',NULL,0,1,0,0,0,279,NULL,0,1,0,1222803099),('zyWi26q9na-iiZqL4yedog',1222803114,'3','pbversion0000000000001','approved','Macro','Macro','root/import/macro','3','7','12',NULL,0,1,0,0,0,282,NULL,0,1,0,1222803114),('tBL7BWiQRZFed2Y-Zjo9tQ',1222803200,'3','pbversion0000000000001','approved','AdminToggle','AdminToggle','root/import/macro/admintoggle','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803200),('GdkQpvjRtJqtzOUbwIIQRA',1222803205,'3','pbversion0000000000001','approved','a_account','a_account','root/import/macro/a_account','3','7','12',NULL,0,0,0,0,0,307,NULL,0,1,0,1222803205),('tnc5iYyynX2hfdEs9D3P8w',1222803213,'3','pbversion0000000000001','approved','EditableToggle','EditableToggle','root/import/macro/editabletoggle','3','7','12',NULL,0,0,0,0,0,322,NULL,0,1,0,1222803213),('vgXdBcFTqU7h4wBG1ewdBw',1222803217,'3','pbversion0000000000001','approved','File','File','root/import/macro/file','3','7','12',NULL,0,0,0,0,0,292,NULL,0,1,0,1222803217),('hcFlqnXlsmC1ujN6Id0F0A',1222803234,'3','pbversion0000000000001','approved','GroupAdd','GroupAdd','root/import/macro/groupadd','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1222803234),('eRJR52fvlaxfetv3DQkQYw',1222803238,'3','pbversion0000000000001','approved','GroupDelete','GroupDelete','root/import/macro/groupdelete','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803238),('5HIDHq5lAWHV5gpYGS0zLg',1222803244,'3','pbversion0000000000001','approved','H_homeLink','H_homeLink','root/import/macro/h_homelink','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803244),('rYEFwXXo0tkGhQTcbDibvg',1222803249,'3','pbversion0000000000001','approved','LoginToggle','LoginToggle','root/import/macro/logintoggle','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803249),('-WM2dt0ZGpDasuL2wWocxg',1222803056,'3','pbversion0000000000001','approved','ProjectManager','ProjectManager','root/import/projectmanager','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1222803056),('2OcUWHVsu_L1sDFzIMWYqw',1222803070,'3','pbversion0000000000001','approved','TimeTracking','TimeTracking','root/import/timetracking','3','7','12',NULL,0,1,0,0,0,303,NULL,0,1,0,1222803070),('vTymIDYL2YqEh6PV50F7ew',1222803302,'3','pbversion0000000000001','approved','manager','manager','root/import/timetracking/manager','3','7','12',NULL,0,0,0,0,0,308,NULL,0,1,0,1222803302),('nqNbSUAhk9Vd1zda2SCz9A',1222803258,'3','pbversion0000000000001','approved','RandomThread','RandomThread','root/import/macro/randomthread','3','7','12',NULL,0,0,0,0,0,316,NULL,0,1,0,1222803258),('y8XkRdxIperLKkJ3bL5sSQ',1222803264,'3','pbversion0000000000001','approved','r_printable','r_printable','root/import/macro/r_printable','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1222803264),('V3l5S5TtI7wMm1WpIMhvOA',1222803253,'3','pbversion0000000000001','approved','L_loginBox','L_loginBox','root/import/macro/l_loginbox','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1222803253),('aIpCmr9Hi__vgdZnDTz1jw',1227539574,'3','pbversion0000000000001','approved','Cart (Default)','Cart (Default)','default-shopping-cart-template','3','7','3',NULL,0,1,0,0,0,8125,' ',0,1,0,1228264384),('PBEmsBadgeTemplate0000',1221692339,'3','pbversion0000000000001','approved','Default EMS Badge Template','Default EMS Badge Template','default_emsbadge','3','7','4',NULL,0,0,0,0,0,1456,NULL,0,1,0,1228264384),('PBtmpl0000000000000005',1221612327,'3','pbversion0000000000001','approved','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template','default_ldap_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,5808,'\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000200',1222383245,'3','pbversion0000000000001','approved','Default Search','Default Search','default_search2','3','7','12',NULL,0,0,0,0,0,1042,NULL,0,1,0,1228264384),('PBtmpl0000000000000011',1221612288,'3','pbversion0000000000001','approved','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template','default_webgui_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,6179,'\r\n\r\n',0,1,0,1228264384),('PBtmpl0000000000000134',1222574692,'3','pbversion0000000000001','approved','Hierarchical Top Nav','Hierarchical Top Nav','import/hierarchical-top-nav','3','7','12',NULL,0,1,0,0,0,2993,'\r\n\r\n\r\n\r\n\r\n\n',0,1,0,1228264384),('PBtmpl0000000000000020',1221692340,'3','pbversion0000000000001','approved','Mail Form','Mail Form','mail_form','3','7','12',NULL,0,1,0,0,0,3147,'\n',0,1,0,1228264384),('newslettersubscrip0001',1221692339,'3','pbversion0000000000001','approved','My Subscriptions (default)',' My Subscriptions','newslettermysubscriptionstemplate','3','7','3',NULL,0,0,0,0,0,778,NULL,0,1,0,1228264384),('PBtmpl0000000000000141',1221692340,'3','pbversion0000000000001','approved','Default DataForm','Default DataForm','pbtmpl0000000000000141','3','7','12',NULL,0,1,0,0,0,4343,'\r\n',0,1,0,1228264384),('kj3b-X3i6zRKnhLb4ZiCLw',1222574694,'3','pbversion0000000000001','approved','Default Calendar List View','Default Calendar List View','root/import/calendar-templates/default-calendar-list-view','3','7','3',NULL,0,1,0,0,0,4212,'\n',0,1,0,1228264384),('eqb9sWjFEVq0yHunGV8IGw',1222574693,'3','pbversion0000000000001','approved','Subscription (Default)','Subscription (Default)','root/import/subscription-default','3','7','12',NULL,0,1,0,0,0,2113,'\n',0,1,0,1228264384),('2gtFt7c0qAFNU3BG_uvNvg',1222574694,'3','pbversion0000000000001','approved','My Purchases (Default)','My Purchases (Default)','shopping-cart-collateral-items/my-purchases-default','3','7','3',NULL,0,1,0,0,0,2535,'\n',0,1,0,1228264384),('g8W53Pd71uHB9pxaXhWf_A',1222574693,'3','pbversion0000000000001','approved','My Purchases Detail (Default)','My Purchases Detail (Default)','shopping-cart-collateral-items/my-purchases-detail-default','3','7','3',NULL,0,1,0,0,0,6039,'\n',0,1,0,1228264384),('stevestyle000000000001',1222383245,'3','pbversion0000000000001','approved','Style 01','Style 01','style_01','3','7','12',NULL,0,0,0,0,0,1618,NULL,0,1,0,1228264384),('stevestyle000000000002',1222383245,'3','pbversion0000000000001','approved','Style 02','Style 02','style_02','3','7','12',NULL,0,0,0,0,0,2603,NULL,0,1,0,1228264384),('PBtmpl0000000000000116',1221692340,'3','pbversion0000000000001','approved','Tab Form','Tab Form','tab_form','3','7','12',NULL,0,1,0,0,0,3847,'\n',0,1,0,1228264384),('ThingyTmpl000000000002',1222574693,'3','pbversion0000000000001','approved','Default Thingy View Thing','Default Thingy View Thing','templates/thingy-default-view-thing','3','7','12',NULL,0,0,0,0,0,2859,'\n',0,1,0,1228264384),('UL-ItI4L1Z6-WSuhuXVvsQ',1225139673,'3','pbversion0000000000001','approved','DataTable','DataTable','root/import/datatable','3','7','3',NULL,0,0,0,0,0,293,NULL,0,1,0,1225139673),('BMybD3cEnmXVk2wQ_qEsRQ',1224723361,'3','pbversion0000000000001','approved','Badge Builder (Default)','Badge Builder (Default)','root/import/ems/badge-builder-default','3','7','12',NULL,0,1,0,0,0,22629,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('2rC4ErZ3c77OJzJm7O5s3w',1224723218,'3','pbversion0000000000001','approved','EMS Badge Listing (default)','EMS Badge Listing (default)','root/import/ems/ems-badge-listing-default','3','7','12',NULL,0,1,0,0,0,7157,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n',0,1,0,1228264385),('OOyMH33plAy6oCj_QWrxtg',1224724790,'3','pbversion0000000000001','approved','Lookup Registrant (Default)','Lookup Registrant (Default)','root/import/ems/lookup-registrant-default','3','7','12',NULL,0,1,0,0,0,5159,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('THQhn1C-ooj-TLlEP7aIJQ',1225313951,'3','pbversion0000000000001','approved','gallery-ie.css','gallery-ie.css','root/import/gallery-templates/gallery-ie.css','3','7','3',NULL,0,1,0,0,0,441,NULL,0,1,0,1225313951),('7-0-style0000000000049',1224117144,'3','pbversion0000000000001','approved','WebGUI 7 Style 3','WebGUI 7 Style 3','root/import/webgui-7-style-3','3','7','12',NULL,0,0,0,0,0,315,NULL,0,1,0,1224117144),('stevecoolmenu000000001',1224116942,'3','pbversion0000000000001','approved','Site Nav','Site Nav','webgui7/style3/hierarchical-top-nav','3','7','12',NULL,0,0,0,0,0,2566,'\r\n\r\n\r\n\r\n',0,1,0,1228264385),('7-0-style0000000000051',1224117026,'3','pbversion0000000000001','approved','css03.css','css03.css','style3/css03.css','3','7','12',NULL,0,0,0,0,0,3683,NULL,0,1,0,1224117026),('jVKLVakT_iA2010_oEuAwg',1224116526,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','department_nav','3','7','12',NULL,0,0,0,0,0,354,NULL,0,1,0,1224116526),('XNd7a_g_cTvJVYrVHcx2Mw',1224606020,'3','pbversion0000000000001','approved','Address (Default)','Address (Default)','shopping-cart-collateral-items/address-default','3','7','3',NULL,0,1,0,0,0,3231,'\r\n',0,1,0,1228264385),('stevestyle000000000003',1224795533,'3','pbversion0000000000001','approved','Style 03','Style 03','style_03','3','7','12',NULL,0,0,0,0,0,1716,NULL,0,1,0,1228264385),('ThingyTmpl000000000003',1224518002,'3','pbversion0000000000001','approved','Default Thingy Edit Thing','Default Thingy Edit Thing','templates/thingy-default-edit-thing','3','7','12',NULL,0,0,0,0,0,3883,'\r\n\r\n\r\n',0,1,0,1228264385),('QpmlAiYZz6VsKBM-_0wXaw',1224616691,'3','pbversion0000000000001','approved','UsersOnline Macro','UsersOnline Macro','users-online-macro-templates','3','7','3',NULL,0,0,0,0,0,329,NULL,0,1,0,1224616691),('h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'3','pbversion0000000000001','approved','UsersOnline Default View','UsersOnline Default View','users-online-macro-templates/usersonline-default-view','3','7','3',NULL,0,1,0,0,0,1728,'\r\n\r\n',0,1,0,1228264385),('4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'3','pbversion0000000000001','approved','UsersOnline Detailed View','UsersOnline Detailed View','users-online-macro-templates/usersonline-detailed-view','3','7','3',NULL,0,1,0,0,0,2706,'\r\n\r\n',0,1,0,1228264385),('PBtmpl0000000000000065',1226457084,'3','pbversion0000000000001','approved','Default Syndicated Content','Default Syndicated Content','default_syndicated_content','3','7','12',NULL,0,1,0,0,0,1041,NULL,0,1,0,1228264385),('newslettercs0000000001',1226896423,'3','pbversion0000000000001','approved','Newsletter Manager (default)',' Newsletter Manager','newslettercstemplate','3','7','3',NULL,0,0,0,0,0,1886,'\n',0,1,0,1228264385),('HPDOcsj4gBme8D4svHodBw',1225404573,'3','pbversion0000000000001','approved','Profile','Profile','root/import/account/profile','3','7','12',NULL,0,1,0,0,0,311,NULL,0,1,0,1234301429),('IZkrow_zwvbf4FCH-taVTQ',1226011853,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/account/inbox','3','7','12',NULL,0,1,0,0,0,305,NULL,0,1,0,1234301429),('DUoxlTBXhVS-Zl3CFDpt9g',1226896802,'3','pbversion0000000000001','approved','Default Message Confirm Template','Default Message Confirm Template','root/import/account/inbox/default-message-confirm-template','3','7','12',NULL,0,1,0,0,0,582,NULL,0,1,0,1234301430),('SVIhz68689hwUGgcDM-gWw',1226973314,'3','pbversion0000000000001','approved','Default Invite User Confirm Template','Default Invite User Confirm Template','root/import/account/inbox/default-invite-user-confirm-template','3','7','12',NULL,0,1,0,0,0,610,NULL,0,1,0,1234301430),('K0YjxqOqr7RupSo6sIdcAg',1227074310,'3','pbversion0000000000001','approved','Friends','Friends','root/import/account/friends','3','7','12',NULL,0,1,0,0,0,311,NULL,0,1,0,1234301429),('7Ijdd8SW32lVgg2H8R-Aqw',1226995714,'3','pbversion0000000000001','approved','Default Friends Error Template','Default Friends Error Template','root/import/account/friends/default-friends-error-template','3','7','12',NULL,0,1,0,0,0,585,NULL,0,1,0,1234301430),('K8F0j_cq_jgo8dvWY_26Ag',1226995643,'3','pbversion0000000000001','approved','Default Friends Confirmation Template','Default Friends Confirmation Template','root/import/account/friends/default-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,678,NULL,0,1,0,1234301430),('G5V6neXIDiFXN05oL-U3AQ',1226995768,'3','pbversion0000000000001','approved','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template','root/import/account/friends/default-remove-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,813,NULL,0,1,0,1234301430),('_ilRXNR3s8F2vGJ_k9ePcg',1226643205,'3','pbversion0000000000001','approved','User','User','root/import/account/user','3','7','12',NULL,0,1,0,0,0,302,NULL,0,1,0,1234301429),('AOjPG2NHgfL9Cq6dDJ7mew',1226659753,'3','pbversion0000000000001','approved','Shop','Shop','root/import/account/shop','3','7','12',NULL,0,1,0,0,0,302,NULL,0,1,0,1234301429),('qaVcU0FFzzraMX_bzELqzw',1227074362,'3','pbversion0000000000001','approved','Contributions','Contributions','root/import/account/contributions','3','7','12',NULL,0,1,0,0,0,329,NULL,0,1,0,1234301429),('vrKXEtluIhbmAS9xmPukDA',1226698051,'3','pbversion0000000000001','approved','Donation (Default)','Donation (Default)','root/import/default-donation-template','3','7','12',NULL,0,1,0,0,0,1876,'\r\n',0,0,0,1228264385),('5bnNzteN7w3NnK9mF4XiCg',1227540002,'3','pbversion0000000000001','approved','Survey','Survey','root/import/survey','3','7','12',NULL,0,0,0,0,0,295,NULL,0,1,0,1227556681),('PBtmpl0000000000000061',1227252733,'3','pbversion0000000000001','approved','Default Survey','Default Survey','default_survey','3','7','12',NULL,0,1,0,0,0,1340,NULL,0,1,0,1228264385),('PBtmpl0000000000000064',1226009610,'3','pbversion0000000000001','approved','Default Response','Default Response','default_response','3','7','12',NULL,0,1,0,0,0,1981,NULL,0,1,0,1228264385),('3womoo7Teyy2YKFa25-MZg',1226703362,'3','pbversion0000000000001','approved','Address Book (Default)','Address Book (Default)','shopping-cart-collateral-items/address-book-default','3','7','3',NULL,0,1,0,0,0,2603,'\r\n',0,1,0,1228264385),('ThingyTmpl000000000004',1227044214,'3','pbversion0000000000001','approved','Default Thingy Search Thing','Default Thingy Search Thing','templates/thingy-default-search-thing','3','7','12',NULL,0,0,0,0,0,6455,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1228264385),('XgcsoDrbC0duVla7N7JAdw',1227566394,'3','pbversion0000000000001','approved','Default Invite User Email Template','Default Invite User Email Template','root/import/account/inbox/default-invite-user-email-template','3','7','12',NULL,0,1,0,0,0,442,NULL,0,1,0,1234301430),('UserListTmpl0000000001',1228125743,'3','pbversion0000000000001','approved','Default UserList','Default UserList','root/import/userlist/default-userlist','3','7','12',NULL,0,1,0,0,0,2817,NULL,0,1,0,1228264387),('UserListTmpl0000000003',1228125758,'3','pbversion0000000000001','approved','UserList with multiple search keywords','UserList with multiple search keywords','root/import/userlist/userlist-with-multiple-search-keywords','3','7','12',NULL,0,1,0,0,0,2998,NULL,0,1,0,1228264387),('UserListTmpl0000000002',1228125752,'3','pbversion0000000000001','approved','UserList with search field selection','UserList with search field selection','root/import/userlist/userlist-with-search-field-selection','3','7','12',NULL,0,1,0,0,0,2804,NULL,0,1,0,1228264387),('ThingyTmpl000000000001',1227753116,'3','pbversion0000000000001','approved','Default Thingy','Default Thingy','templates/thingy-default','3','7','12',NULL,0,0,0,0,0,1442,'',0,1,0,1228264387),('matrixtmpl000000000004',1228834590,'3','pbversion0000000000001','approved','Matrix Default Edit Listing','Matrix Default Edit Listing','default-matrix-edit-listing-template','3','7','12',NULL,0,0,0,0,0,430,NULL,0,1,0,1233158077),('PBtmpl0000000000000207',1229100306,'3','pbversion0000000000001','approved','Article with Files','Article with Files','article-with-files','3','7','12',NULL,0,0,0,0,0,1232,NULL,0,1,0,1229459611),('PBtmpl0000000000000084',1229100305,'3','pbversion0000000000001','approved','Center Image','Center Image','center_image','3','7','12',NULL,0,1,0,0,0,1329,NULL,0,1,0,1229459611),('TimeTrackingTMPL000003',1229311434,'3','pbversion0000000000001','approved','Default Time Tracking Row Template','Default Time Tracking Row Template','default-tt-template-row','3','7','12',NULL,0,0,0,0,0,3170,NULL,0,1,0,1229459611),('PBtmpl0000000000000056',1228934532,'3','pbversion0000000000001','approved','Default Product','Default Product','default_product','3','7','12',NULL,0,1,0,0,0,7505,'\r\n\r\n',0,1,0,1229459611),('PBtmpl0000000000000103',1229100306,'3','pbversion0000000000001','approved','Left Align Image','Left Align Image','left_align_image','3','7','12',NULL,0,1,0,0,0,1514,NULL,0,1,0,1229459611),('PBtmpl0000000000000115',1229100306,'3','pbversion0000000000001','approved','Linked Image with Caption','Linked Image with Caption','linked_image_with_caption','3','7','12',NULL,0,1,0,0,0,1700,NULL,0,1,0,1229459611),('uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'3','pbversion0000000000001','approved','Default Calendar Print List View','Default Calendar Print List View','root/import/calendar-templates/default-calendar-print-list-view','3','7','3',NULL,0,1,0,0,0,1080,NULL,0,1,0,1229459611),('nFen0xjkZn8WkpM93C9ceQ',1229117831,'3','pbversion0000000000001','approved','Shelf (Default)','Shelf (Default)','root/import/shelf-default','3','7','12',NULL,0,1,0,0,0,2282,'\r\n',0,1,0,1229459611),('StockDataTMPL000000001',1229453697,'3','pbversion0000000000001','approved','StockData Default View','StockData Default View','stockdatatmpl000000001','3','7','12',NULL,0,1,0,0,0,5126,'\n',0,1,0,1229459611),('PBtmpl0000000000000137',1229581394,'3','pbversion0000000000001','approved','Admin Console Style','Admin Console','admin_console','3','7','12',NULL,0,1,0,0,0,806,NULL,0,1,0,1231494253),('DashboardViewTmpl00001',1230358389,'3','pbversion0000000000001','approved','Dashboard Default View','Dashboard Default View','dashboard-default-view-template','3','7','12',NULL,0,0,0,0,0,7665,'\r\n\r\n\r\n',0,1,0,1231494252),('PBtmpl0000000000000021',1230269962,'3','pbversion0000000000001','approved','Data List','Data List','data_list','3','7','12',NULL,0,1,0,0,0,2218,'',0,1,0,1231494252),('ProjectManagerTMPL0005',1229579830,'3','pbversion0000000000001','approved','Default Resource Popup','Default Resource Popup','default-pm-resource-popup','3','7','12',NULL,0,0,0,0,0,1989,NULL,0,1,0,1231494253),('ProjectManagerTMPL0001',1229579830,'3','pbversion0000000000001','approved','Default Project Management System Dashboard','Default Project Management System Dashboard','default-pm-template-dashboard','3','7','12',NULL,0,0,0,0,0,3820,'',0,1,0,1231494253),('WikiPageTmpl0000000001',1229706257,'3','pbversion0000000000001','approved','Default Wiki Page','Default Wiki Page','default-wiki-page','3','7','12',NULL,0,0,0,0,0,3566,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1231494253),('PBtmpl0000000000000027',1230159257,'3','pbversion0000000000001','approved','Default Forum Notification','Default Forum Notification','default_forum_notification','3','7','12',NULL,0,1,0,0,0,1743,NULL,0,1,0,1231494252),('PBtmpl0000000000000033',1230159454,'3','pbversion0000000000001','approved','Default HTTP Proxy','Default HTTP Proxy','default_http_proxy','3','7','12',NULL,0,1,0,0,0,1269,NULL,0,1,0,1231494253),('default_post_received1',1230356300,'3','pbversion0000000000001','approved','Default Post Received','Default Post Received','default_post_received','3','7','4',NULL,0,0,0,0,0,429,NULL,0,1,0,1231494252),('PBtmpl0000000000000059',1229907401,'3','pbversion0000000000001','approved','Default SQL Report','Default SQL Report','default_sql_report','3','7','12',NULL,0,1,0,0,0,4341,NULL,0,1,0,1231494253),('PBtmpl0000000000000117',1229581394,'3','pbversion0000000000001','approved','DropMenu','DropMenu','dropmenu','3','7','12',NULL,0,1,0,0,0,1076,NULL,0,1,0,1231494253),('PBtmpl0000000000000098',1229907401,'3','pbversion0000000000001','approved','Job','Job','job','3','7','12',NULL,0,1,0,0,0,11222,'',0,1,0,1231494252),('PBtmpl0000000000000113',1229581394,'3','pbversion0000000000001','approved','Link','Link','link','3','7','12',NULL,0,1,0,0,0,10612,'',0,1,0,1231494252),('MultiSearchTmpl0000001',1230269962,'3','pbversion0000000000001','approved','MultiSearch Default Display','MultiSearch Default Display','multisearchtmpl0000001','3','7','12',NULL,0,1,0,0,0,1963,'',0,1,0,1231494253),('CalendarDay00000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Day','Default Calendar Day','root/import/calendar-templates/default-calendar-day','3','7','12',NULL,0,0,0,0,0,8702,' ',0,1,0,1231494252),('CalendarEvent000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Event','Default Calendar Event','root/import/calendar-templates/default-calendar-event','3','7','12',NULL,0,0,0,0,0,7436,' ',0,1,0,1231494252),('CalendarMonth000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Month','Default Calendar Month','root/import/calendar-templates/default-calendar-month','3','7','12',NULL,0,0,0,0,0,10690,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1231494252),('CalendarSearch00000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Search','Default Calendar Search','root/import/calendar-templates/default-calendar-search','3','7','12',NULL,0,0,0,0,0,9346,' ',0,1,0,1231494252),('CalendarWeek0000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Week','Default Calendar Week','root/import/calendar-templates/default-calendar-week','3','7','12',NULL,0,0,0,0,0,7189,'',0,1,0,1231494252),('0X4Q3tBWUb_thsVbsYz9xQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery Add Archive','Default Gallery Add Archive','root/import/gallery-templates/default-gallery-add-archive','3','7','3',NULL,0,1,0,0,0,1858,' \r\n\r\n ',0,1,0,1231494252),('mM3bjP_iG9sv5nQb4S17tQ',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album RSS','Default Gallery View Album RSS','root/import/gallery-templates/default-gallery-album-rss','3','7','3',NULL,0,1,0,0,0,819,NULL,0,1,0,1231494253),('ilu5BrM-VGaOsec9Lm7M6Q',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Albums RSS','Default Gallery List Albums RSS','root/import/gallery-templates/default-gallery-list-albums-rss','3','7','3',NULL,0,1,0,0,0,828,NULL,0,1,0,1231494253),('-ANLpoTEP-n4POAdRxCzRw',1230581176,'3','pbversion0000000000001','approved','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS','root/import/gallery-templates/default-gallery-list-files-for-user-rss','3','7','3',NULL,0,1,0,0,0,859,NULL,0,1,0,1231494253),('KAMdiUdJykjN02CPHpyZOw',1230581176,'3','pbversion0000000000001','approved','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow','root/import/gallery-templates/default-gallery-view-album-slideshow','3','7','3',NULL,0,1,0,0,0,4311,'\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n',0,1,0,1231494252),('_9_eiaPgxzF_x_upt6-PNQ',1230702602,'3','pbversion0000000000001','approved','gallery.css','gallery.css','root/import/gallery-templates/gallery.css','3','7','3',NULL,0,1,0,0,0,10869,NULL,0,1,0,1231494252),('itransact_credentials1',1228953856,'3','pbversion0000000000001','approved','ITransact Credentials (Default)','ITransact Credentials (Default)','shopping-cart-collateral-items/itransact-credentials','3','7','4',NULL,0,0,0,0,0,3037,'\n',0,1,0,1231494253),('StockDataTMPL000000002',1229494994,'3','pbversion0000000000001','approved','StockData Default Display','StockData Default Display','stockdatatmpl000000002','3','7','12',NULL,0,1,0,0,0,11239,NULL,0,1,0,1231494253),('GNvjCFQWjY2AF2uf0aCM8Q',1230356300,'3','pbversion0000000000001','approved','Syndicated Articles','Syndicated Articles','syndicated_articles','3','7','12',NULL,0,1,0,0,0,1063,NULL,0,1,0,1231494253),('LdiozcIUciWuvt3Z-na5Ww',1232673968,'3','pbversion0000000000001','approved','Matrix','Matrix','root/import/matrix','3','7','12',NULL,0,0,0,0,0,295,NULL,0,1,0,1233158078),('kJf77eCr9GAMiEzWrzsBTA',1229639255,'3','pbversion0000000000001','approved','matrix-ie.css','matrix-ie.css','new-matrix/matrix-ie.css','3','7','12',NULL,0,1,0,0,0,527,NULL,0,1,0,1233158079),('4LQT4-bGW4FkiEQLSY5gvQ',1232400287,'3','pbversion0000000000001','approved','show-hide.js','show-hide.js','new-matrix/show-hide.js','3','7','12',NULL,0,1,0,0,0,659,NULL,0,1,0,1233158079),('1oBRscNIcFOI-pETrCOspA',1232648656,'3','pbversion0000000000001','approved','Default Section Edit','Default Section Edit','root/import/survey/default-section-edit','3','7','12',NULL,0,1,0,0,0,5675,NULL,0,1,0,1233158079),('PBtmpl0000000000000062',1232981641,'3','pbversion0000000000001','approved','Default Gradebook Report','Default Gradebook Report','root/import/survey/default_gradebook_report','3','7','12',NULL,0,1,0,0,0,1932,NULL,0,1,0,1233158079),('PBtmpl0000000000000063',1233156264,'3','pbversion0000000000001','approved','Default Overview Report','Default Overview Report','root/import/survey/default_overview_report','3','7','12',NULL,0,1,0,0,0,3268,NULL,0,1,0,1233158079),('QHn6T9rU7KsnS3Y70KCNTg',1233173545,'3','pbversion0000000000001','approved','Account','Account','root/import/account','3','7','12',NULL,0,1,0,0,0,298,NULL,0,1,0,1234301433),('FJbUTvZ2nUTn65LpW6gjsA',1232735095,'3','pbversion0000000000001','approved','Profile Account Layout','Profile Account Layout','root/import/account/profile/profile-account-layout','3','7','12',NULL,0,1,0,0,0,2441,'',0,1,0,1234301433),('75CmQgpcCSkdsL-oawdn3Q',1232561177,'3','pbversion0000000000001','approved','Default Edit Profile Template','Default Edit Profile Template','root/import/account/profile/default-edit-profile-template','3','7','12',NULL,0,1,0,0,0,2079,'\r\n\r\n\r\n\r\n',0,1,0,1234301433),('2CS-BErrjMmESOtGT90qOg',1232955105,'3','pbversion0000000000001','approved','Default View Profile Template','Default View Profile Template','root/import/account/profile/default-view-profile-template','3','7','12',NULL,0,1,0,0,0,4419,NULL,0,1,0,1234301433),('MBmWlA_YEA2I6D29OMGtRg',1228753307,'3','pbversion0000000000001','approved','Default Profile Error Template','Default Profile Error Template','root/import/account/profile/default-profile-error-template','3','7','12',NULL,0,1,0,0,0,858,NULL,0,1,0,1234301433),('gfZOwaTWYjbSoVaQtHBBEw',1232735116,'3','pbversion0000000000001','approved','Inbox Account Layout','Inbox Account Layout','root/import/account/inbox-account-layout','3','7','12',NULL,0,1,0,0,0,1906,'',0,1,0,1234301433),('0n4HtbXaWa_XJHkFjetnLQ',1233168324,'3','pbversion0000000000001','approved','Default Inbox View Message Template','Default Inbox View Message Template','root/import/account/inbox/default-inbox-view-message-template','3','7','12',NULL,0,1,0,0,0,3193,NULL,0,1,0,1234301433),('1Q4Je3hKCJzeo0ZBB5YB8g',1232753312,'3','pbversion0000000000001','approved','Default Manage Invitations Template','Default Manage Invitations Template','root/import/account/inbox/default-manage-invitations-template','3','7','12',NULL,0,1,0,0,0,6052,'\r\n\r\n',0,1,0,1234301434),('VBkY05f-E3WJS50WpdKd1Q',1233168685,'3','pbversion0000000000001','approved','Default View Invitation Template','Default View Invitation Template','root/import/account/inbox/default-view-invitation-template','3','7','12',NULL,0,1,0,0,0,2473,NULL,0,1,0,1234301434),('cR0UFm7I1qUI2Wbpj--08Q',1232464762,'3','pbversion0000000000001','approved','Default Invite User Form Template','Default Invite User Form Template','root/import/account/inbox/default-invite-user-form-template','3','7','12',NULL,0,1,0,0,0,2642,NULL,0,1,0,1234301434),('zrNpGbT3odfIkg6nFSUy8Q',1232735138,'3','pbversion0000000000001','approved','Friends Layout Template','Friends Layout Template','root/import/account/friends/friends-layout-template','3','7','12',NULL,0,1,0,0,0,1584,'\r\n',0,1,0,1234301434),('1Yn_zE_dSiNuaBGNLPbxtw',1232952380,'3','pbversion0000000000001','approved','Default Friends View Template','Default Friends View Template','root/import/account/friends/default-friends-view-template','3','7','12',NULL,0,1,0,0,0,5030,NULL,0,1,0,1234301434),('AZFU33p0jpPJ-E6qLSWZng',1232951869,'3','pbversion0000000000001','approved','Default Friends Edit Template','Default Friends Edit Template','root/import/account/friends/default-friends-edit-template','3','7','12',NULL,0,1,0,0,0,6036,NULL,0,1,0,1234301434),('AGJBGviWGAwjnwziiPjvDg',1232569232,'3','pbversion0000000000001','approved','Default Send Request Template','Default Send Request Template','root/import/account/friends/default-send-request-template','3','7','12',NULL,0,1,0,0,0,1908,NULL,0,1,0,1234301434),('9ThW278DWLV0-Svf68ljFQ',1232735163,'3','pbversion0000000000001','approved','Account Layout','Account Layout','root/import/account/user/account-layout','3','7','12',NULL,0,1,0,0,0,1101,'\r\n',0,1,0,1234301434),('aUDsJ-vB9RgP-AYvPOy8FQ',1232735191,'3','pbversion0000000000001','approved','Shop Account Layout','Shop Account Layout','root/import/account/shop/shop-account-layout','3','7','12',NULL,0,1,0,0,0,1459,'\r\n',0,1,0,1234301434),('b4n3VyUIsAHyIvT-W-jziA',1232735307,'3','pbversion0000000000001','approved','Contributions Layout','Contributions Layout','root/import/account/contributions/contributions-layout','3','7','12',NULL,0,1,0,0,0,1127,'\r\n',0,1,0,1234301434),('N716tpSna0iIQTKxS4gTWA',1232734726,'3','pbversion0000000000001','approved','Default Account Layout','Default Account Layout','root/import/account/default-account-layout2','3','7','12',NULL,0,1,0,0,0,1008,'\r\n\r\n',0,1,0,1234301434),('HW-sPoDDZR8wBZ0YgFgPtg',1227634350,'3','pbversion0000000000001','approved','images','images','root/import/account/images','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1234301434),('hBpisL-_URyZnh9clR5ohA',1227634417,'3','pbversion0000000000001','approved','no_photo.gif','no_photo.gif','root/import/account/images/no_photo.gif','3','7','12',NULL,0,1,0,0,0,2564,NULL,0,1,0,1234301434),('FOBV6KkifreXa4GmEAUU4A',1227634447,'3','pbversion0000000000001','approved','no_photo_sm.gif','no_photo_sm.gif','root/import/account/images/no_photo_sm.gif','3','7','12',NULL,0,1,0,0,0,1580,NULL,0,1,0,1234301434),('6uQEULvXFgCYlRWnYzZsuA',1233874321,'3','pbversion0000000000001','approved','Default Inbox Send Message Template','Default Inbox Send Message Template','root/import/account/inbox/default-inbox-send-message-template','3','7','12',NULL,0,1,0,0,0,5533,'\n\n\n\n\n',0,1,0,1234301433),('CalendarEventEdit00001',1233698348,'3','pbversion0000000000001','approved','Default Calendar Event Edit','Default Calendar Event Edit','root/import/calendar-templates/default-calendar-event-edit','3','7','12',NULL,0,0,0,0,0,10149,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n',0,1,0,1234301433),('TuYPpHx7TUyk08639Pc8Bg',1233861621,'3','pbversion0000000000001','approved','Default DataTable Template (HTML)','Default DataTable Template (HTML)','root/import/datatable/default-datatable-template-html','3','7','3',NULL,0,1,0,0,0,919,NULL,0,1,0,1234301433),('3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'3','pbversion0000000000001','approved','Default DataTable Template (YUI)','Default DataTable Template (YUI)','root/import/datatable/default-datatable-template-yui','3','7','3',NULL,0,1,0,0,0,732,NULL,0,1,0,1234301433),('6X-7Twabn5KKO_AbgK3PEw',1233872216,'3','pbversion0000000000001','approved','Default Gallery Edit Album','Default Gallery Edit Album','root/import/gallery-templates/default-gallery-edit-album','3','7','3',NULL,0,1,0,0,0,3435,'\n\n',0,1,0,1234301433),('7JCTAiu1U_bT9ldr655Blw',1233872075,'3','pbversion0000000000001','approved','Default Gallery Edit Photo','Default Gallery Edit Photo','root/import/gallery-templates/default-gallery-edit-photo','3','7','3',NULL,0,1,0,0,0,3994,'\n\n\n\n',0,1,0,1234301433),('m3IbBavqzuKDd2PGGhKPlA',1233871747,'3','pbversion0000000000001','approved','Default Gallery Make Shortcut','Default Gallery Make Shortcut','root/import/gallery-templates/default-gallery-make-shortcut','3','7','3',NULL,0,1,0,0,0,2799,'\n\n\n\n',0,1,0,1234301433),('AjhlNO3wZvN5k4i4qioWcg',1233874172,'3','pbversion0000000000001','approved','Default Answer Edit','Default Answer Edit','root/import/survey/default-answer-edit','3','7','12',NULL,0,1,0,0,0,3860,NULL,0,1,0,1234301433),('wAc4azJViVTpo-2NYOXWvg',1233872588,'3','pbversion0000000000001','approved','Default Question Edit','Default Question Edit','root/import/survey/default-question-edit','3','7','12',NULL,0,1,0,0,0,5043,NULL,0,1,0,1234301433),('CxMpE_UPauZA3p8jdrOABw',1233698297,'3','pbversion0000000000001','approved','Default Questions','Default Questions','root/import/survey/default-questions','3','7','12',NULL,0,1,0,0,0,8638,NULL,0,1,0,1234301433),('GRUNFctldUgop-qRLuo_DA',1233698093,'3','pbversion0000000000001','approved','Default Survey Edit','Default Survey Edit','root/import/survey/default-survey-edit','3','7','12',NULL,0,1,0,0,0,2586,NULL,0,1,0,1234301433),('d8jMMMRddSQ7twP4l1ZSIw',1234040817,'3','pbversion0000000000001','approved','Default Survey Take','Default Survey Take','root/import/survey/default-survey-take','3','7','12',NULL,0,1,0,0,0,1041,'\r\n\r\n\r\n\r\n',0,1,0,1234301433),('qsG6B24a0SC5KrhQjmdZBw',1233860274,'3','pbversion0000000000001','approved','survey.css','survey.css','survey.css','3','7','12',NULL,0,1,0,0,0,3074,NULL,0,1,0,1234301434),('PBtmpl0000000000000029',1234392043,'3','pbversion0000000000001','approved','Default Post Form','Default Post Form','default_post_form','3','7','12',NULL,0,1,0,0,0,2293,'\n',0,1,0,1234926437),('PBtmpl0000000000000068',1234393332,'3','pbversion0000000000001','approved','Default Submission Form','Default Submission Form','default_submission_form','3','7','12',NULL,0,1,0,0,0,2787,'\n',0,1,0,1234926437),('PBtmpl0000000000000099',1234393376,'3','pbversion0000000000001','approved','FAQ Submission Form','FAQ Submission Form','faq_submission_form','3','7','12',NULL,0,1,0,0,0,2392,'\n',0,1,0,1234926437),('PBtmpl0000000000000122',1234393411,'3','pbversion0000000000001','approved','Job Submission Form','Job Submission Form','job_submission_form','3','7','12',NULL,0,1,0,0,0,3321,'\n',0,1,0,1234926437),('PBtmpl0000000000000114',1234393441,'3','pbversion0000000000001','approved','Link List Submission Form','Link List Submission Form','link_list_submission_form','3','7','12',NULL,0,1,0,0,0,3000,'\n',0,1,0,1234926437),('PBtmpl0000000000000210',1234393614,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template2','3','7','12',NULL,0,0,0,0,0,3204,'\n\n\n',0,1,0,1234926437),('_XfvgNH__bY1ykMiKYSobQ',1234924781,'3','pbversion0000000000001','approved','account.css','account.css','root/import/account/account.css','3','7','12',NULL,0,1,0,0,0,23272,NULL,0,1,0,1234926436),('1IzRpX0tgW7iuCfaU2Kk0A',1234924646,'3','pbversion0000000000001','approved','Default Contributions View','Default Contributions View','root/import/account/contributions/default-contributions-view','3','7','12',NULL,0,1,0,0,0,4697,'\n',0,1,0,1234926436),('UTNFeV7B_aSCRmmaFCq4Vw',1234568788,'3','pbversion0000000000001','approved','Default Gallery Delete Album','Default Gallery Delete Album','root/import/gallery-templates/default-gallery-delete-album','3','7','3',NULL,0,1,0,0,0,2611,'\n \n\n\n',0,1,0,1234926437),('zcX-wIUct0S_np14xxOA-A',1234568742,'3','pbversion0000000000001','approved','Default Gallery Delete File','Default Gallery Delete File','root/import/gallery-templates/default-gallery-delete-file','3','7','3',NULL,0,1,0,0,0,2626,'\n \n\n\n',0,1,0,1234926437),('OxJWQgnGsgyGohP2L3zJPQ',1234564647,'3','pbversion0000000000001','approved','Default Gallery Edit Comment','Default Gallery Edit Comment','root/import/gallery-templates/default-gallery-edit-comment','3','7','3',NULL,0,1,0,0,0,2978,'',0,1,0,1234926437),('azCqD0IjdQSlM3ar29k5Sg',1234561066,'3','pbversion0000000000001','approved','Default Gallery List Albums View','Default Gallery List Albums View','root/import/gallery-templates/default-gallery-list-albums-view','3','7','3',NULL,0,1,0,0,0,3309,' \r\n \r\n ',0,1,0,1234926437),('OkphOEdaSGTXnFGhK4GT5A',1234560760,'3','pbversion0000000000001','approved','Default Gallery List Files For User','Default Gallery List Files For User','root/import/gallery-templates/default-gallery-list-files-for-user','3','7','3',NULL,0,1,0,0,0,4249,'\n \n',0,1,0,1234926437),('jME5BEDYVDlBZ8jIQA9-jQ',1234565056,'3','pbversion0000000000001','approved','Default Gallery Search','Default Gallery Search','root/import/gallery-templates/default-gallery-search','3','7','3',NULL,0,1,0,0,0,5947,'\n\n \n',0,1,0,1234926437),('q5O62aH4pjUXsrQR3Pq4lw',1234568087,'3','pbversion0000000000001','approved','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails','root/import/gallery-templates/default-gallery-view-album-thumbnails','3','7','3',NULL,0,1,0,0,0,4317,'\n\n\n\n\n\n\n',0,1,0,1234926437),('05FpjceLYhq4csF1Kww1KQ',1234568028,'3','pbversion0000000000001','approved','Default Gallery View Album','Default Gallery View Album','root/import/gallery-templates/default-gallery-view-album','3','7','3',NULL,0,1,0,0,0,4235,' \n \n ',0,1,0,1234926437),('TEId5V-jEvUULsZA0wuRuA',1234568469,'3','pbversion0000000000001','approved','Default Gallery View Photo','Default Gallery View Photo','root/import/gallery-templates/default-gallery-view-photo','3','7','3',NULL,0,1,0,0,0,6761,'\n\n\n\n',0,1,0,1234926437),('c8xrwVuu5QE0XtF9DiVzLw',1235331153,'3','pbversion0000000000001','approved','Default Inbox View Template','Default Inbox View Template','root/import/account/inbox/default-inbox-view-template','3','7','12',NULL,0,1,0,0,0,6181,'\n\n',0,1,0,1235596581),('matrixtmpl000000000002',1235704003,'3','pbversion0000000000001','approved','Matrix Default Compare','Matrix Default Compare','matrix-default-compare-template','3','7','12',NULL,0,0,0,0,0,2385,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1236110744),('matrixtmpl000000000003',1235987792,'3','pbversion0000000000001','approved','Matrix Default Detailed Listing','Matrix Default Detailed Listing','matrix-default-detailed-listing','3','7','12',NULL,0,0,0,0,0,4809,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1236110744),('matrixtmpl000000000001',1235706149,'3','pbversion0000000000001','approved','Matrix Default View','Matrix Default View','matrix-default-view-template','3','7','12',NULL,0,0,0,0,0,6045,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1236110744),('matrixtmpl000000000005',1235704755,'3','pbversion0000000000001','approved','Matrix Default Search','Matrix Default Search','matrix-search-template','3','7','12',NULL,0,0,0,0,0,2344,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1236110744),('wrq7hMxb1ewQqZ46xmd8Gg',1235706620,'3','pbversion0000000000001','approved','equal-cols.js','equal-cols.js','matrix/equal-cols.js','3','7','12',NULL,0,1,0,0,0,582,NULL,0,1,0,1236110744),('alraubvBu-YJJ614jAHD5w',1235706026,'3','pbversion0000000000001','approved','matrix-nav-tmpl','matrix-nav-tmpl','new-matrix/matrix-nav-tmpl','3','7','12',NULL,0,1,0,0,0,480,NULL,0,1,0,1236110744),('Vch1Ww7G_JpBhOhXX07RDg',1235705952,'3','pbversion0000000000001','approved','matrx-nav','matrix-nav','new-matrix/matrix-nav','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1236110744),('hkj6WeChxFyqfP85UlRP8w',1235708941,'3','pbversion0000000000001','approved','matrix.css','matrix.css','new-matrix/matrix.css','3','7','12',NULL,0,1,0,0,0,9105,NULL,0,1,0,1236110744); +INSERT INTO `assetIndex` VALUES ('PBasset000000000000003','Media','Media Media media ','media',1147642437,1147642437,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Media\'\'Media\'\'media','000001000003'),('PBtmpl0000000000000112','Weblog','Weblog Weblog weblog ','weblog',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Weblog\'\'Weblog\'\'weblog Collaboration','000001000001000006000004'),('PBtmplBlankStyle000001','WebGUI 6 Blank Style','WebGUI 6 Blank Style WebGUI 6 Blank Style pbtmplblankstyle000001 ','pbtmplblankstyle000001',1133743239,1147642431,'3','7','12','WebGUI::Asset::Template',1,'WebGUI\'\'6\'\'Blank\'\'Style\'\'WebGUI\'\'6\'\'Blank\'\'Style\'\'pbtmplblankstyle000001 style','000001000001000038000005'),('PBtmpl0000000000000048','verticalMenu','verticalMenu verticalMenu verticalmenu ','verticalmenu',1124395696,1147642431,'3','7','12','WebGUI::Asset::Template',1,'verticalMenu\'\'verticalMenu\'\'verticalmenu Navigation','000001000001000022000002'),('PBtmpl0000000000000079','Topics','Topics Topics topics ','topics',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Topics\'\'Topics\'\'topics Collaboration','000001000001000006000009'),('PBtmpl0000000000000097','Traditional with Thumbnails','Traditional with Thumbnails Traditional with Thumbnails traditional with thumbnails ','traditional_with_thumbnails',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Traditional\'\'with\'\'Thumbnails\'\'Traditional\'\'with\'\'Thumbnails\'\'traditional\'\'with\'\'thumbnails Collaboration','000001000001000006000003'),('PBtmpl0000000000000082','Unordered List','Unordered List Unordered List unordered list ','unordered_list',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Unordered\'\'List\'\'Unordered\'\'List\'\'unordered\'\'list Collaboration','000001000001000006000011'),('PBtmpl0000000000000118','Three Over One','Three Over One Three Over One three over one ','three_over_one',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Three\'\'Over\'\'One\'\'Three\'\'Over\'\'One\'\'three\'\'over\'\'one Layout','000001000001000017000005'),('PBtmpl0000000000000124','Tabs','Tabs Tabs tabs ','tabs',1124395696,1147642429,'3','7','12','WebGUI::Asset::Template',1,'Tabs\'\'Tabs\'\'tabs Navigation','000001000001000022000005'),('GNvjCFQWjY2AF2uf0aCM8Q','Syndicated Articles','Syndicated Articles Syndicated Articles syndicated articles ','syndicated_articles',1124395696,1230356300,'3','7','12','WebGUI::Asset::Template',1,'Syndicated\'\'Articles\'\'Syndicated\'\'Articles\'\'syndicated\'\'articles SyndicatedContent','000001000001000040000002'),('PBtmpl0000000000000136','Synopsis','Synopsis Synopsis synopsis2 ','synopsis2',1124395696,1147642428,'3','7','12','WebGUI::Asset::Template',1,'Synopsis\'\'Synopsis\'\'synopsis2 Navigation','000001000001000022000008'),('PBtmpl0000000000000116','Tab Form','Tab Form Tab Form tab form ','tab_form',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Tab\'\'Form\'\'Tab\'\'Form\'\'tab\'\'form DataForm','000001000001000008000005'),('GRUNFctldUgop-qRLuo_DA','Default Survey Edit','Default Survey Edit Default Survey Edit root import survey default survey edit ','root/import/survey/default-survey-edit',1227254010,1233698093,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Edit\'\'Default\'\'Survey\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'survey\'\'edit Survey\'\'/\'\'Edit','000001000001000039000005'),('ProjectManagerTMPL0004','Default Project Manager Edit Task','Default Project Manager Edit Task Default Project Manager Edit Task default pm template edit task ','default-pm-template-edit-task',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Manager\'\'Edit\'\'Task\'\'Default\'\'Project\'\'Manager\'\'Edit\'\'Task\'\'default\'\'pm\'\'template\'\'edit\'\'task ProjectManager_editTask','000001000001000027000002000001'),('ProjectManagerTMPL0002','Default Project Display','Default Project Display Default Project Display default pm template project display ','default-pm-template-project-display',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Display\'\'Default\'\'Project\'\'Display\'\'default\'\'pm\'\'template\'\'project\'\'display ProjectManager_project','000001000001000027000004000001'),('PBtmpl0000000000000137','Admin Console Style','Admin Console Style Admin Console admin console ','admin_console',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'Admin\'\'Console\'\'Style\'\'Admin\'\'Console\'\'admin\'\'console style','000001000001000038000003'),('StockDataTMPL000000001','StockData Default View','StockData Default View StockData Default View stockdatatmpl000000001 ','stockdatatmpl000000001',1133743239,1229453697,'3','7','12','WebGUI::Asset::Template',1,'StockData\'\'Default\'\'View\'\'StockData\'\'Default\'\'View\'\'stockdatatmpl000000001 StockData','000001000001000037000002'),('PBtmpl0000000000000135','Side By Side','Side By Side Side By Side side by side ','side_by_side',1124395696,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Side\'\'By\'\'Side\'\'Side\'\'By\'\'Side\'\'side\'\'by\'\'side Layout','000001000001000017000001'),('PBtmpl0000000000000200','Default Search','Default Search Default Search default search2 ','default_search2',1147642427,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Search\'\'Default\'\'Search\'\'default\'\'search2 Search','000001000001000032000001'),('PBtmpl0000000000000101','Ordered List','Ordered List Ordered List ordered list ','ordered_list',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Ordered\'\'List\'\'Ordered\'\'List\'\'ordered\'\'list Collaboration','000001000001000006000024'),('PBtmpl0000000000000121','Photo Gallery','Photo Gallery Photo Gallery photo gallery ','photo_gallery',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Photo\'\'Gallery\'\'Photo\'\'Gallery\'\'photo\'\'gallery Collaboration','000001000001000006000005'),('PBtmpl0000000000000081','Q and A','Q and A Q and A q and a ','q_and_a',1124395696,1149286279,'3','7','12','WebGUI::Asset::Template',1,'Q\'\'and\'\'A\'\'Q\'\'and\'\'A\'\'q\'\'and\'\'a Collaboration','000001000001000006000023'),('WVtmpl0000000000000001','Random Thread Macro Default Template','Random Thread Macro Default Template Random Thread Macro Default Template randomthread template ','randomthread-template',1133743240,1147642426,'3','7','12','WebGUI::Asset::Template',1,'Random\'\'Thread\'\'Macro\'\'Default\'\'Template\'\'Random\'\'Thread\'\'Macro\'\'Default\'\'Template\'\'randomthread\'\'template Macro\'\'/\'\'RandomThread','000001000001000018000010000001'),('PBtmpl0000000000000131','Right Column','Right Column Right Column right column ','right_column',1124395696,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Right\'\'Column\'\'Right\'\'Column\'\'right\'\'column Layout','000001000001000017000002'),('PBtmpl0000000000000094','News','News News plainblacknews ','plainblacknews',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'News\'\'News\'\'plainblacknews Layout','000001000001000017000007'),('matrixtmpl000000000005','Matrix Default Search','Matrix Default Search Matrix Default Search matrix search template ','matrix-search-template',1133743239,1235704755,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Search\'\'Matrix\'\'Default\'\'Search\'\'matrix\'\'search\'\'template Matrix\'\'/\'\'Search','000001000001000019000005'),('MultiSearchTmpl0000001','MultiSearch Default Display','MultiSearch Default Display MultiSearch Default Display multisearchtmpl0000001 ','multisearchtmpl0000001',1133743239,1230269962,'3','7','12','WebGUI::Asset::Template',1,'MultiSearch\'\'Default\'\'Display\'\'MultiSearch\'\'Default\'\'Display\'\'multisearchtmpl0000001 MultiSearch','000001000001000021000001'),('matrixtmpl000000000001','Matrix Default View','Matrix Default View Matrix Default View matrix default view template ','matrix-default-view-template',1133743238,1235706149,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'View\'\'Matrix\'\'Default\'\'View\'\'matrix\'\'default\'\'view\'\'template Matrix','000001000001000019000002'),('matrixtmpl000000000003','Matrix Default Detailed Listing','Matrix Default Detailed Listing Matrix Default Detailed Listing matrix default detailed listing ','matrix-default-detailed-listing',1133743238,1235987792,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Detailed\'\'Listing\'\'Matrix\'\'Default\'\'Detailed\'\'Listing\'\'matrix\'\'default\'\'detailed\'\'listing Matrix\'\'/\'\'Detail','000001000001000019000003'),('matrixtmpl000000000002','Matrix Default Compare','Matrix Default Compare Matrix Default Compare matrix default compare template ','matrix-default-compare-template',1133743238,1235704003,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Compare\'\'Matrix\'\'Default\'\'Compare\'\'matrix\'\'default\'\'compare\'\'template Matrix\'\'/\'\'Compare','000001000001000019000001'),('PBtmpl0000000000000111','Make Page Printable','Make Page Printable Make Page Printable make page printable ','make_page_printable',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Make\'\'Page\'\'Printable\'\'Make\'\'Page\'\'Printable\'\'make\'\'page\'\'printable style','000001000001000038000002'),('PBtmpl0000000000000020','Mail Form','Mail Form Mail Form mail form ','mail_form',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Mail\'\'Form\'\'Mail\'\'Form\'\'mail\'\'form DataForm','000001000001000008000001'),('PBtmpl0000000000000113','Link','Link Link link ','link',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'Link\'\'link Collaboration\'\'/\'\'Thread','000001000001000006000025'),('PBtmpl0000000000000083','Link List','Link List Link List link list ','link_list',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'List\'\'Link\'\'List\'\'link\'\'list Collaboration','000001000001000006000010'),('PBtmpl0000000000000114','Link List Submission Form','Link List Submission Form Link List Submission Form link list submission form ','link_list_submission_form',1124395696,1234393441,'3','7','12','WebGUI::Asset::Template',1,'Link\'\'List\'\'Submission\'\'Form\'\'Link\'\'List\'\'Submission\'\'Form\'\'link\'\'list\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000019'),('PBtmpl0000000000000115','Linked Image with Caption','Linked Image with Caption Linked Image with Caption linked image with caption ','linked_image_with_caption',1124395696,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Linked\'\'Image\'\'with\'\'Caption\'\'Linked\'\'Image\'\'with\'\'Caption\'\'linked\'\'image\'\'with\'\'caption Article','000001000001000003000004'),('PBtmpl0000000000000129','Item w/pop-up Links','Item w/pop-up Links Item w/pop-up Links item w pop up links ','item_w/pop-up_links',1124395696,1147642422,'3','7','12','WebGUI::Asset::Template',1,'Item\'\'w\'\'/\'\'pop\'\'-\'\'up\'\'Links\'\'Item\'\'w\'\'/\'\'pop\'\'-\'\'up\'\'Links\'\'item\'\'w\'\'pop\'\'up\'\'links Article','000001000001000003000006'),('PBtmpl0000000000000098','Job','Job Job job ','job',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Job\'\'job Collaboration\'\'/\'\'Thread','000001000001000006000021'),('PBtmpl0000000000000077','Job Listing','Job Listing Job Listing job listing ','job_listing',1124395696,1147642422,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Listing\'\'Job\'\'Listing\'\'job\'\'listing Collaboration','000001000001000006000020'),('PBtmpl0000000000000122','Job Submission Form','Job Submission Form Job Submission Form job submission form ','job_submission_form',1124395696,1234393411,'3','7','12','WebGUI::Asset::Template',1,'Job\'\'Submission\'\'Form\'\'Job\'\'Submission\'\'Form\'\'job\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000022'),('PBtmpl0000000000000103','Left Align Image','Left Align Image Left Align Image left align image ','left_align_image',1124395696,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Align\'\'Image\'\'Left\'\'Align\'\'Image\'\'left\'\'align\'\'image Article','000001000001000003000001'),('PBtmpl0000000000000092','Horizontal Login Box','Horizontal Login Box Horizontal Login Box horizontal login box ','horizontal_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Horizontal\'\'Login\'\'Box\'\'Horizontal\'\'Login\'\'Box\'\'horizontal\'\'login\'\'box Macro\'\'/\'\'L_loginBox','000001000001000018000009000001'),('PBtmpl0000000000000108','horizontalMenu','horizontalMenu horizontalMenu horizontalmenu ','horizontalmenu',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'horizontalMenu\'\'horizontalMenu\'\'horizontalmenu Navigation','000001000001000022000003'),('PBtmpl0000000000000088','Image','Image Image image ','image',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'Image\'\'Image\'\'image ImageAsset','000001000001000015000001'),('IOB0000000000000000002','Default InOutBoard Report Template','Default InOutBoard Report Template Default InOutBoard Report Template iob report template ','iob-report-template',1133743239,1166019641,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'InOutBoard\'\'Report\'\'Template\'\'Default\'\'InOutBoard\'\'Report\'\'Template\'\'iob\'\'report\'\'template InOutBoard\'\'/\'\'Report','000001000001000016000001'),('IOB0000000000000000001','Default InOutBoard Template','Default InOutBoard Template Default InOutBoard Template iob template ','iob-template',1133743239,1169795123,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'InOutBoard\'\'Template\'\'Default\'\'InOutBoard\'\'Template\'\'iob\'\'template InOutBoard','000001000001000016000002'),('PBtmpl0000000000000123','Item','Item Item item ','item',1124395696,1147642421,'3','7','12','WebGUI::Asset::Template',1,'Item\'\'Item\'\'item Article','000001000001000003000005'),('PBtmpl0000000000000024','File','File File file ','file',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'File\'\'file FileAsset','000001000001000011000001'),('PBtmpl0000000000000078','File Folder','File Folder File Folder file folder ','file_folder',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'Folder\'\'File\'\'Folder\'\'file\'\'folder Folder','000001000001000012000001'),('PBtmpl0000000000000107','File with size','File with size File with size file with size ','file_with_size',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',1,'File\'\'with\'\'size\'\'File\'\'with\'\'size\'\'file\'\'with\'\'size Macro\'\'/\'\'File','000001000001000018000004000003'),('PBtmpl0000000000000133','Guest Book','Guest Book Guest Book guest book ','guest_book',1124395696,1149286278,'3','7','12','WebGUI::Asset::Template',1,'Guest\'\'Book\'\'Guest\'\'Book\'\'guest\'\'book Collaboration','000001000001000006000012'),('PBtmpl0000000000000117','DropMenu','DropMenu DropMenu dropmenu ','dropmenu',1124395696,1229581394,'3','7','12','WebGUI::Asset::Template',1,'DropMenu\'\'DropMenu\'\'dropmenu Navigation','000001000001000022000004'),('PBtmpl0000000000000130','Tree Navigation','Tree Navigation Tree Navigation root import navigation tree navigation ','root/import/navigation/tree-navigation',1124395696,1219072470,'3','7','12','WebGUI::Asset::Template',1,'Tree\'\'Navigation\'\'Tree\'\'Navigation\'\'root\'\'import\'\'navigation\'\'tree\'\'navigation Navigation','000001000001000022000006'),('PBtmpl0000000000000060','Fail Safe','Fail Safe Fail Safe fail safe ','fail_safe',1124395696,1147642419,'3','7','12','WebGUI::Asset::Template',1,'Fail\'\'Safe\'\'Fail\'\'Safe\'\'fail\'\'safe style','000001000001000038000001'),('PBtmpl0000000000000080','FAQ','FAQ FAQ faqtemplate ','faqtemplate',1124395696,1171466654,'3','7','12','WebGUI::Asset::Template',1,'FAQ\'\'FAQ\'\'faqtemplate Collaboration','000001000001000006000002'),('PBtmpl0000000000000099','FAQ Submission Form','FAQ Submission Form FAQ Submission Form faq submission form ','faq_submission_form',1124395696,1234393376,'3','7','12','WebGUI::Asset::Template',1,'FAQ\'\'Submission\'\'Form\'\'FAQ\'\'Submission\'\'Form\'\'faq\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000018'),('PBtmpl0000000000000010','Default WebGUI Account Display Template','Default WebGUI Account Display Template Default WebGUI Account Display Template default webgui account display template ','default_webgui_account_display_template',1124395696,1227026287,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Account\'\'Display\'\'Template\'\'Default\'\'WebGUI\'\'Account\'\'Display\'\'Template\'\'default\'\'webgui\'\'account\'\'display\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Account','000001000001000004000004000001'),('PBtmpl0000000000000013','Default WebGUI Login Template','Default WebGUI Login Template Default WebGUI Login Template default webgui login template ','default_webgui_login_template',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Login\'\'Template\'\'Default\'\'WebGUI\'\'Login\'\'Template\'\'default\'\'webgui\'\'login\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Login','000001000001000004000007000001'),('PBtmpl0000000000000012','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template Default WebGUI Password Reset Template default webgui password reset template ','default_webgui_password_reset_template',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Password\'\'Reset\'\'Template\'\'Default\'\'WebGUI\'\'Password\'\'Reset\'\'Template\'\'default\'\'webgui\'\'password\'\'reset\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Expired','000001000001000004000006000001'),('PBtmpl0000000000000057','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt Default WebGUI Yes/No Prompt default webgui yes no prompt ','default_webgui_yes/no_prompt',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Yes\'\'/\'\'No\'\'Prompt\'\'Default\'\'WebGUI\'\'Yes\'\'/\'\'No\'\'Prompt\'\'default\'\'webgui\'\'yes\'\'no\'\'prompt prompt','000001000001000028000001'),('PBtmpl0000000000000066','Default USS','Default USS Default USS default uss ','default_uss',1124395696,1147642417,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'USS\'\'Default\'\'USS\'\'default\'\'uss Collaboration','000001000001000006000001'),('TimeTrackingTMPL000001','Default Time Tracking User View','Default Time Tracking User View Default Time Tracking User View default tt template user ','default-tt-template-user',1147642417,1201205738,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'User\'\'View\'\'Default\'\'Time\'\'Tracking\'\'User\'\'View\'\'default\'\'tt\'\'template\'\'user TimeTracking_user','000001000001000042000003000001'),('TimeTrackingTMPL000003','Default Time Tracking Row Template','Default Time Tracking Row Template Default Time Tracking Row Template default tt template row ','default-tt-template-row',1147642417,1229311434,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'Row\'\'Template\'\'Default\'\'Time\'\'Tracking\'\'Row\'\'Template\'\'default\'\'tt\'\'template\'\'row TimeTracking_row','000001000001000042000002000001'),('TimeTrackingTMPL000002','Default Time Tracking Manager View','Default Time Tracking Manager View Default Time Tracking Manager View default tt template manager ','default-tt-template-manager',1147642417,1147642417,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Time\'\'Tracking\'\'Manager\'\'View\'\'Default\'\'Time\'\'Tracking\'\'Manager\'\'View\'\'default\'\'tt\'\'template\'\'manager TimeTracking_manager','000001000001000042000001000001'),('X7DrzUcj8pOKFa_6k9D5iw','Newsletter','Newsletter Newsletter root import newsletter ','root/import/newsletter',1185754569,1222804045,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Newsletter\'\'Newsletter\'\'root\'\'import\'\'newsletter','000001000001000023'),('PBtmpl0000000000000065','Default Syndicated Content','Default Syndicated Content Default Syndicated Content default syndicated content ','default_syndicated_content',1124395696,1226457084,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Syndicated\'\'Content\'\'Default\'\'Syndicated\'\'Content\'\'default\'\'syndicated\'\'content SyndicatedContent','000001000001000040000001'),('CxMpE_UPauZA3p8jdrOABw','Default Questions','Default Questions Default Questions root import survey default questions ','root/import/survey/default-questions',1227556536,1233698297,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Questions\'\'Default\'\'Questions\'\'root\'\'import\'\'survey\'\'default\'\'questions Survey\'\'/\'\'Take','000001000001000039000007'),('PBtmpl0000000000000064','Default Response','Default Response Default Response default response ','default_response',1124395696,1226009610,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Response\'\'Default\'\'Response\'\'default\'\'response Survey\'\'/\'\'Response','000001000001000039000004'),('PBtmpl0000000000000059','Default SQL Report','Default SQL Report Default SQL Report default sql report ','default_sql_report',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'SQL\'\'Report\'\'Default\'\'SQL\'\'Report\'\'default\'\'sql\'\'report SQLReport','000001000001000036000001'),('PBtmpl0000000000000067','Default Submission','Default Submission Default Submission default submission ','default_submission',1124395696,1206998733,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Submission\'\'Default\'\'Submission\'\'default\'\'submission Collaboration\'\'/\'\'Thread','000001000001000006000006'),('PBtmpl0000000000000068','Default Submission Form','Default Submission Form Default Submission Form default submission form ','default_submission_form',1124395696,1234393332,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Submission\'\'Form\'\'Default\'\'Submission\'\'Form\'\'default\'\'submission\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000017'),('PBtmpl0000000000000061','Default Survey','Default Survey Default Survey default survey ','default_survey',1124395696,1227252733,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Default\'\'Survey\'\'default\'\'survey Survey','000001000001000039000003'),('ProjectManagerTMPL0003','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart Default Project Manager Gantt Chart default pm template gantt chart ','default-pm-template-gantt-chart',1147642415,1159989349,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Manager\'\'Gantt\'\'Chart\'\'Default\'\'Project\'\'Manager\'\'Gantt\'\'Chart\'\'default\'\'pm\'\'template\'\'gantt\'\'chart ProjectManager_gantt','000001000001000027000003000001'),('ProjectManagerTMPL0001','Default Project Management System Dashboard','Default Project Management System Dashboard Default Project Management System Dashboard default pm template dashboard ','default-pm-template-dashboard',1147642415,1229579830,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Project\'\'Management\'\'System\'\'Dashboard\'\'Default\'\'Project\'\'Management\'\'System\'\'Dashboard\'\'default\'\'pm\'\'template\'\'dashboard ProjectManager_dashboard','000001000001000027000001000001'),('PBtmpl0000000000000055','Default Poll','Default Poll Default Poll default poll ','default_poll',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Poll\'\'Default\'\'Poll\'\'default\'\'poll Poll','000001000001000024000001'),('PBtmpl0000000000000029','Default Post Form','Default Post Form Default Post Form default post form ','default_post_form',1124395696,1234392043,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Post\'\'Form\'\'Default\'\'Post\'\'Form\'\'default\'\'post\'\'form Collaboration\'\'/\'\'PostForm','000001000001000006000013'),('PBtmpl0000000000000056','Default Product','Default Product Default Product default product ','default_product',1124395696,1228934532,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Product\'\'Default\'\'Product\'\'default\'\'product Product','000001000001000025000001'),('PBtmpl0000000000000033','Default HTTP Proxy','Default HTTP Proxy Default HTTP Proxy default http proxy ','default_http_proxy',1124395696,1230159454,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'HTTP\'\'Proxy\'\'Default\'\'HTTP\'\'Proxy\'\'default\'\'http\'\'proxy HttpProxy','000001000001000014000001'),('PBtmpl0000000000000004','Default LDAP Account Display Template','Default LDAP Account Display Template Default LDAP Account Display Template default ldap account display template ','default_ldap_account_display_template',1124395696,1227026214,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Account\'\'Display\'\'Template\'\'Default\'\'LDAP\'\'Account\'\'Display\'\'Template\'\'default\'\'ldap\'\'account\'\'display\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Account','000001000001000004000001000001'),('PBtmpl0000000000000006','Default LDAP Login Template','Default LDAP Login Template Default LDAP Login Template default ldap login template ','default_ldap_login_template',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Login\'\'Template\'\'Default\'\'LDAP\'\'Login\'\'Template\'\'default\'\'ldap\'\'login\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Login','000001000001000004000003000001'),('PBtmpl0000000000000044','Default Login Box','Default Login Box Default Login Box default login box ','default_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Login\'\'Box\'\'Default\'\'Login\'\'Box\'\'default\'\'login\'\'box Macro\'\'/\'\'L_loginBox','000001000001000018000009000002'),('PBtmpl0000000000000047','Default Message Board','Default Message Board Default Message Board default message board ','default_message_board',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Message\'\'Board\'\'Default\'\'Message\'\'Board\'\'default\'\'message\'\'board MessageBoard','000001000001000020000001'),('PBtmpl0000000000000054','Default Page','Default Page Default Page default page ','default_page',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'Default\'\'Page\'\'default\'\'page Layout','000001000001000017000003'),('Q4uX_C557arTp6D_jwB1jQ','Wiki','Wiki Wiki root import wiki ','root/import/wiki',1165460175,1222803760,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Wiki\'\'Wiki\'\'root\'\'import\'\'wiki','000001000001000048'),('BmLaN4rmAANkCglXUViEbg','Resource','Resource Resource root import projectmanager resource ','root/import/projectmanager/resource',1157679165,1222803871,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Resource\'\'Resource\'\'root\'\'import\'\'projectmanager\'\'resource','000001000001000027000005'),('PBtmpl0000000000000039','Default File Macro','Default File Macro Default File Macro default file macro ','default_file_macro',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'File\'\'Macro\'\'Default\'\'File\'\'Macro\'\'default\'\'file\'\'macro Macro\'\'/\'\'File','000001000001000018000004000001'),('PBtmpl0000000000000026','Default Forum','Default Forum Default Forum default forum ','default_forum',1124395696,1185754569,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Default\'\'Forum\'\'default\'\'forum Collaboration','000001000001000006000007'),('PBtmpl0000000000000031','Default Forum Search','Default Forum Search Default Forum Search default forum search ','default_forum_search',1124395696,1147642413,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Search\'\'Default\'\'Forum\'\'Search\'\'default\'\'forum\'\'search Collaboration\'\'/\'\'Search','000001000001000006000016'),('PBtmpl0000000000000093','crumbTrail','crumbTrail crumbTrail crumbtrail2 ','crumbtrail2',1124395696,1147642412,'3','7','12','WebGUI::Asset::Template',1,'crumbTrail\'\'crumbTrail\'\'crumbtrail2 Navigation','000001000001000022000001'),('DashboardViewTmpl00001','Dashboard Default View','Dashboard Default View Dashboard Default View dashboard default view template ','dashboard-default-view-template',1133743239,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Dashboard\'\'Default\'\'View\'\'Dashboard\'\'Default\'\'View\'\'dashboard\'\'default\'\'view\'\'template Dashboard','000001000001000007000001'),('PBtmpl0000000000000021','Data List','Data List Data List data list ','data_list',1124395696,1230269962,'3','7','12','WebGUI::Asset::Template',1,'Data\'\'List\'\'Data\'\'List\'\'data\'\'list DataForm\'\'/\'\'List','000001000001000008000004'),('PBtmpl0000000000000104','Default Acknowledgement','Default Acknowledgement Default Acknowledgement default acknowledgement ','default_acknowledgement',1124395696,1147642412,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Acknowledgement\'\'Default\'\'Acknowledgement\'\'default\'\'acknowledgement DataForm','000001000001000008000003'),('PBtmpl0000000000000002','Default Article','Default Article Default Article default article ','default_article',1124395696,1159989349,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Article\'\'Default\'\'Article\'\'default\'\'article Article','000001000001000003000003'),('PBtmpl0000000000000141','Default DataForm','Default DataForm Default DataForm pbtmpl0000000000000141 ','pbtmpl0000000000000141',1124395696,1221692340,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'DataForm\'\'Default\'\'DataForm\'\'pbtmpl0000000000000141 DataForm','000001000001000008000006'),('WikiRCTmpl000000000001','Default Recent Changes','Default Recent Changes Default Recent Changes default wiki recent changes ','default-wiki-recent-changes',1165460175,1169092823,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Recent\'\'Changes\'\'Default\'\'Recent\'\'Changes\'\'default\'\'wiki\'\'recent\'\'changes WikiMaster_recentChanges','000001000001000048000001'),('PBtmpl0000000000000084','Center Image','Center Image Center Image center image ','center_image',1124395696,1229100305,'3','7','12','WebGUI::Asset::Template',1,'Center\'\'Image\'\'Center\'\'Image\'\'center\'\'image Article','000001000001000003000002'),('PBtmpl0000000000000128','Classifieds','Classifieds Classifieds classifieds ','classifieds',1124395696,1147642411,'3','7','12','WebGUI::Asset::Template',1,'Classifieds\'\'Classifieds\'\'classifieds Collaboration','000001000001000006000008'),('PBtmpl0000000000000134','Hierarchical Top Nav','Hierarchical Top Nav Hierarchical Top Nav import hierarchical top nav ','import/hierarchical-top-nav',1124395696,1222574692,'3','7','12','WebGUI::Asset::Template',1,'Hierarchical\'\'Top\'\'Nav\'\'Hierarchical\'\'Top\'\'Nav\'\'import\'\'hierarchical\'\'top\'\'nav Navigation','000001000001000022000007'),('PBtmplHelp000000000001','Help','Help Help help ','help',1124395706,1147642410,'3','7','12','WebGUI::Asset::Template',1,'Help\'\'Help\'\'help AdminConsole','000001000001000002000002'),('PBtmpl0000000000000208','Request Tracker','Request Tracker Request Tracker request tracker template ','request-tracker-template',1147642410,1147642410,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'template Collaboration','000001000001000006000027'),('wAc4azJViVTpo-2NYOXWvg','Default Question Edit','Default Question Edit Default Question Edit root import survey default question edit ','root/import/survey/default-question-edit',1226009650,1233872588,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Question\'\'Edit\'\'Default\'\'Question\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'question\'\'edit Survey\'\'/\'\'Edit','000001000001000039000009'),('1z9J1O08n_7gVVlBwSRBJQ','Auth','Auth Auth root import auth ','root/import/auth',1222803099,1222803099,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Auth\'\'Auth\'\'root\'\'import\'\'auth','000001000001000004'),('zyWi26q9na-iiZqL4yedog','Macro','Macro Macro root import macro ','root/import/macro',1222803114,1222803114,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Macro\'\'Macro\'\'root\'\'import\'\'macro','000001000001000018'),('PBtmpl0000000000000207','Article with Files','Article with Files Article with Files article with files ','article-with-files',1147642410,1229100306,'3','7','12','WebGUI::Asset::Template',1,'Article\'\'with\'\'Files\'\'Article\'\'with\'\'Files\'\'article\'\'with\'\'files Article','000001000001000003000007'),('PBtmpl0000000000000209','Request Tracker Thread','Request Tracker Thread Request Tracker Thread request tracker post template ','request-tracker-post-template',1147642410,1206998862,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Thread\'\'Request\'\'Tracker\'\'Thread\'\'request\'\'tracker\'\'post\'\'template Collaboration\'\'/\'\'Thread','000001000001000006000028'),('PBtmpl0000000000000210','Request Tracker','Request Tracker Request Tracker request tracker template2 ','request-tracker-template2',1147642410,1234393614,'3','7','12','WebGUI::Asset::Template',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'template2 Collaboration\'\'/\'\'PostForm','000001000001000006000029'),('PBtmpl0000000000000109','One Over Three','One Over Three One Over Three one over three ','one_over_three',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'One\'\'Over\'\'Three\'\'One\'\'Over\'\'Three\'\'one\'\'over\'\'three Layout','000001000001000017000006'),('PBtmpl0000000000000001','Admin Console','Admin Console Admin Console admin console2 ','admin_console2',1124395696,1157679164,'3','7','12','WebGUI::Asset::Template',1,'Admin\'\'Console\'\'Admin\'\'Console\'\'admin\'\'console2 AdminConsole','000001000001000002000001'),('LBuiKzg2mWwmOPS9AgV3bg','Get Translated','Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of exper','yns/translated',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Translated\'\'Get\'\'Translated\'\'yns\'\'translated\'\'Let\'\'our\'\'team\'\'of\'\'professional\'\'translators\'\'bring\'\'your\'\'site\'\'to\'\'new\'\'customers\'\'by\'\'translating\'\'your\'\'content\'\'into\'\'additional\'\'languages\'\'.\'\'Our\'\'translation\'\'services\'\'are\'\'never\'\'machine\'\'automated\'\'.\'\'They\'\'\'\'\'re\'\'always\'\'done\'\'by\'\'professional\'\'translators\'\'that\'\'have\'\'years\'\'of\'\'experience\'\'reading\'\',\'\'writing\'\',\'\'and\'\'speaking\'\'many\'\'languages\'\'. ','000001000002000002000007'),('jTNggl7AoVSUc_ZzrvuCmw','Get Promoted','Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate pro','yns/promotion',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Promoted\'\'Get\'\'Promoted\'\'yns\'\'promotion\'\'Now\'\'that\'\'you\'\'have\'\'a\'\'brilliant\'\'WebGUI\'\'site\'\',\'\'you\'\'need\'\'to\'\'get\'\'people\'\'to\'\'visit\'\'it\'\'.\'\'We\'\'can\'\'help\'\'there\'\'too\'\'.\'\'Our\'\'marketing\'\'specialists\'\'can\'\'work\'\'with\'\'you\'\'to\'\'develop\'\'and\'\'execute\'\'the\'\'right\'\'combination\'\'of\'\'search\'\'engine\'\'placement\'\',\'\'advertising\'\'buys\'\',\'\'and\'\'affilliate\'\'programs\'\'to\'\'ensure\'\'your\'\'site\'\'gets\'\'the\'\'traffic\'\'it\'\'needs\'\'. ','000001000002000002000008'),('Wl8WZ43g2rK5AYr9o4zY7w','Get Style','Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site. ','yns/style',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Style\'\'Get\'\'Style\'\'yns\'\'style\'\'Not\'\'a\'\'designer\'\'?\'\'No\'\'problem\'\'!\'\'Plain\'\'Black\'\'\'\'\'s\'\'professional\'\'design\'\'team\'\'can\'\'make\'\'your\'\'site\'\'look\'\'great\'\'.\'\'Our\'\'team\'\'is\'\'fast\'\',\'\'easy\'\'to\'\'work\'\'with\'\',\'\'and\'\'can\'\'even\'\'migrate\'\'your\'\'existing\'\'content\'\'into\'\'your\'\'new\'\'WebGUI\'\'site\'\'. ','000001000002000002000006'),('ix1p0AbwKAz8QWB-T-HHfg','Get Support','Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of s','yns/support',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Support\'\'Get\'\'Support\'\'yns\'\'support\'\'Plain\'\'Black\'\'provides\'\'support\'\'packages\'\'to\'\'fit\'\'any\'\'budget\'\'or\'\'need\'\'.\'\'Start\'\'out\'\'with\'\'online\'\'support\'\'which\'\'costs\'\'only\'\'$\'\'500\'\'per\'\'year\'\'!\'\'And\'\'grow\'\'support\'\'as\'\'your\'\'needs\'\'grow\'\'.\'\'We\'\'build\'\'custom\'\'support\'\'packages\'\'to\'\'match\'\'our\'\'client\'\'\'\'\'s\'\'needs\'\'.\'\'And\'\'no\'\'matter\'\'what\'\'level\'\'of\'\'support\'\'you\'\'purchase\'\',\'\'you\'\'get\'\'WebGUI\'\'Documentation\'\'included\'\'in\'\'your\'\'purchase\'\'. ','000001000002000002000003'),('iCYOjohB9SKvAPr6bXElKA','Get Hosting','Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with host','yns/hosting',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Hosting\'\'Get\'\'Hosting\'\'yns\'\'hosting\'\'Who\'\'better\'\'to\'\'host\'\'your\'\'WebGUI\'\'sites\'\'than\'\'Plain\'\'Black\'\'.\'\'Let\'\'us\'\'deal\'\'with\'\'upgrades\'\',\'\'security\'\',\'\'and\'\'server\'\'management\'\'.\'\'Doing\'\'so\'\'lets\'\'you\'\'focus\'\'on\'\'building\'\'your\'\'WebGUI\'\'site\'\',\'\'which\'\'is\'\'where\'\'your\'\'time\'\'and\'\'expertise\'\'should\'\'be\'\'spent\'\'.\'\'And\'\'when\'\'you\'\'sign\'\'up\'\'with\'\'hosting\'\',\'\'online\'\'support\'\'is\'\'included\'\'! ','000001000002000002000004'),('4Yfz9hqBqM8OYMGuQK8oLw','Get Features','What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to cu','yns/features',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Features\'\'Get\'\'Features\'\'yns\'\'features\'\'What\'\'\'\'\'s\'\'that\'\'you\'\'say\'\'?\'\'WebGUI\'\'\'\'\'s\'\'thousands\'\'of\'\'features\'\'are\'\'still\'\'missing\'\'some\'\'important\'\'ones\'\'?\'\'No\'\'problem\'\',\'\'our\'\'professional\'\'development\'\'team\'\'can\'\'add\'\'any\'\'features\'\'you\'\'need\'\'for\'\'your\'\'site\'\'.\'\'We\'\'\'\'\'ve\'\'built\'\'hundreds\'\'of\'\'custom\'\'apps\'\'for\'\'people\'\'.\'\'From\'\'simple\'\'macros\'\',\'\'to\'\'custom\'\'single\'\'sign\'\'on\'\'systems\'\',\'\'to\'\'applications\'\'that\'\'will\'\'manage\'\'your\'\'entire\'\'company\'\',\'\'our\'\'team\'\'can\'\'do\'\'it\'\'. ','000001000002000002000005'),('Vzv1pWpg_w6R_o-b0rM2qQ','Ad','Ad Ad home ad2 ','home/ad2',1147642515,1147642515,'3','7','4','WebGUI::Asset::File',1,'Ad\'\'Ad\'\'home\'\'ad2','000001000002000001000002'),('FOvmwGC0GtZo5VTxJIL3OA','Get Documentation','WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization. ','yns/docs',1147642515,1207068851,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get\'\'Documentation\'\'Get\'\'Documentation\'\'yns\'\'docs\'\'WebGUI\'\'Documentation\'\'is\'\'the\'\'ultimate\'\'compendium\'\'to\'\'WebGUI\'\'.\'\'This\'\'is\'\'a\'\'must\'\'for\'\'anyone\'\'working\'\'in\'\'WebGUI\'\',\'\'and\'\'Plain\'\'Black\'\'offers\'\'vast\'\'bulk\'\'discounts\'\'so\'\'you\'\'can\'\'give\'\'it\'\'to\'\'everyone\'\'in\'\'your\'\'organization\'\'. ','000001000002000002000002'),('6QuS-0rosuZTdTv11fobig','Talk to the Experts','Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us tod','yns/experts',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Talk\'\'to\'\'the\'\'Experts\'\'Talk\'\'to\'\'the\'\'Experts\'\'yns\'\'experts\'\'Plain\'\'Black\'\'&\'\'reg\'\';\'\'created\'\'the\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'and\'\'is\'\'here\'\'to\'\'answer\'\'your\'\'questions\'\'and\'\'provide\'\'you\'\'with\'\'services\'\'to\'\'make\'\'sure\'\'your\'\'WebGUI\'\'implementation\'\'is\'\'entirely\'\'successful\'\'.\'\'We\'\'bend\'\'over\'\'backwards\'\'to\'\'make\'\'sure\'\'you\'\'\'\'\'re\'\'a\'\'success\'\'.\'\'Contact\'\'us\'\'today\'\'to\'\'see\'\'how\'\'we\'\'can\'\'help\'\'you\'\'. ','000001000002000002000001'),('NK8bqlwVRILJknqeCDPBHg','Getting Started (part 2)','\n\nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n \n\nNow that you\'re logged in, we recommend ','getting_started/getting-started-part2',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting\'\'Started\'\'(\'\'part\'\'2\'\')\'\'Getting\'\'Started\'\'(\'\'part\'\'2\'\')\'\'getting\'\'started\'\'getting\'\'started\'\'part2\'\'Now\'\'you\'\'should\'\'log\'\'in\'\'and\'\'go\'\'into\'\'admin\'\'mode\'\'.\'\'The\'\'default\'\'username\'\'is\'\'\"\'\'admin\'\'\"\'\'and\'\'the\'\'default\'\'password\'\'is\'\'\"\'\'123qwe\'\'\"\'\',\'\'but\'\'you\'\'probably\'\'customized\'\'both\'\'of\'\'those\'\'when\'\'you\'\'visited\'\'this\'\'site\'\'for\'\'the\'\'very\'\'first\'\'time\'\'.\'\'Now\'\'that\'\'you\'\'\'\'\'re\'\'logged\'\'in\'\',\'\'we\'\'recommend\'\'that\'\'you\'\'add\'\'a\'\'new\'\'user\'\'for\'\'yourself\'\'with\'\'admin\'\'privileges\'\'just\'\'in\'\'case\'\'you\'\'forget\'\'the\'\'login\'\'information\'\'for\'\'your\'\'primary\'\'admin\'\'account\'\'.\'\'Don\'\'\'\'\'t\'\'worry\'\'if\'\'you\'\'lock\'\'yourself\'\'out\'\',\'\'you\'\'can\'\'always\'\'contact\'\'Plain\'\'Black\'\'&\'\'reg\'\';\'\'support\'\'to\'\'get\'\'instructions\'\'to\'\'get\'\'back\'\'in\'\'.\'\'NOTE\'\':\'\'If\'\'you\'\'appear\'\'to\'\'be\'\'get\'\'logged\'\'out\'\'while\'\'moving\'\'between\'\'pages\'\',\'\'this\'\'is\'\'most\'\'likely\'\'your\'\'browser\'\'displaying\'\'a\'\'cached\'\'version\'\'of\'\'the\'\'page\'\'.\'\'Click\'\'on\'\'your\'\'browser\'\'\'\'\'s\'\'refresh\'\'button\'\'to\'\'correct\'\'the\'\'problem\'\'.\'\'No\'\'doubt\'\'after\'\'you\'\'enabled\'\'admin\'\'mode\'\'you\'\'saw\'\'a\'\'menu\'\'along\'\'the\'\'left\'\'side\'\'of\'\'the\'\'screen\'\',\'\'that\'\'\'\'\'s\'\'called\'\'the\'\'Admin\'\'Bar\'\'.\'\'Use\'\'that\'\'to\'\'add\'\'content\'\'and\'\'access\'\'administrative\'\'functions\'\'.\'\'You\'\'\'\'\'re\'\'now\'\'ready\'\'to\'\'begin\'\'exploring\'\'your\'\'new\'\'WebGUI\'\'site\'\'.\'\'For\'\'more\'\'information\'\'about\'\'services\'\'related\'\'to\'\'WebGUI\'\'click\'\'here\'\'.\'\'Enjoy\'\'your\'\'new\'\'WebGUI\'\'site\'\'! ','000001000002000001000003'),('m4YJFaqzultnB_sj1Uq0aw','Ad','Ad Ad home ad ','home/ad',1147642514,1147642514,'3','7','4','WebGUI::Asset::File',1,'Ad\'\'Ad\'\'home\'\'ad','000001000002000008'),('IWFxZDyGhQ3-SLZhELa3qw','Key Benefits','\n\nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n \n\nWorkflow &','home/key-benefits',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Key\'\'Benefits\'\'Key\'\'Benefits\'\'home\'\'key\'\'benefits\'\'Easy\'\'To\'\'Use\'\'-\'\'WebGUI\'\'is\'\'absolutely\'\'easy\'\'to\'\'use\'\'.\'\'WebGUI\'\'7\'\'has\'\'a\'\'completely\'\'revamped\'\'user\'\'interface\'\'to\'\'make\'\'it\'\'even\'\'easier\'\'to\'\'use\'\'.\'\'There\'\'are\'\'lots\'\'of\'\'visual\'\'cues\'\',\'\'consistent\'\'icons\'\',\'\'helper\'\'apps\'\',\'\'and\'\'a\'\'huge\'\'repository\'\'of\'\'built\'\'-\'\'in\'\'help\'\'files\'\'.\'\'Workflow\'\'&\'\'amp\'\';\'\'Versioning\'\'-\'\'Never\'\'again\'\'worry\'\'about\'\'content\'\'getting\'\'put\'\'on\'\'your\'\'site\'\'that\'\'you\'\'don\'\'\'\'\'t\'\'want\'\'there\'\'.\'\'Never\'\'again\'\'lose\'\'your\'\'old\'\'content\'\'after\'\'making\'\'an\'\'edit\'\'.\'\'And\'\'never\'\'again\'\'push\'\'out\'\'new\'\'changes\'\'until\'\'you\'\'\'\'\'re\'\'absolutely\'\'ready\'\'to\'\'release\'\'them\'\'.\'\'WebGUI\'\'\'\'\'s\'\'workflow\'\'and\'\'versioning\'\'system\'\'is\'\'fast\'\',\'\'flexible\'\',\'\'powerful\'\',\'\'and\'\'easy\'\'to\'\'use\'\'.\'\'Everything\'\'\'\'\'s\'\'a\'\'Template\'\'-\'\'Worry\'\'nevermore\'\'about\'\'your\'\'CMS\'\'forcing\'\'you\'\'into\'\'a\'\'mould\'\'that\'\'doesn\'\'\'\'\'t\'\'suit\'\'you\'\'.\'\'With\'\'WebGUI\'\'everything\'\'a\'\'site\'\'visitor\'\'can\'\'see\'\'is\'\'a\'\'customizable\'\'template\'\',\'\'so\'\'you\'\'can\'\'make\'\'it\'\'look\'\'exactly\'\'how\'\'you\'\'want\'\'.\'\'Moreover\'\'if\'\'you\'\'\'\'\'re\'\'the\'\'type\'\'that\'\'strives\'\'for\'\'excellence\'\'rest\'\'in\'\'the\'\'knowledge\'\'that\'\'all\'\'the\'\'templates\'\'that\'\'come\'\'with\'\'WebGUI\'\'are\'\'XHTML\'\'1\'\'.\'\'0\'\'strict\'\'compliant\'\'.\'\'Localization\'\'-\'\'WebGUI\'\'\'\'\'s\'\'entire\'\'user\'\'interface\'\'is\'\'set\'\'up\'\'to\'\'be\'\'internationalized\'\'.\'\'Visit\'\'one\'\'of\'\'the\'\'WebGUI\'\'Worldwide\'\'member\'\'sites\'\'to\'\'get\'\'translations\'\'for\'\'your\'\'language\'\'.\'\'Stay\'\'there\'\'to\'\'get\'\'support\'\'and\'\'services\'\'in\'\'your\'\'native\'\'language\'\'.\'\'Feel\'\'confident\'\'in\'\'the\'\'knowledge\'\'that\'\'WebGUI\'\'will\'\'work\'\'with\'\'your\'\'native\'\'characters\'\'because\'\'it\'\'\'\'\'s\'\'UTF\'\'-\'\'8\'\'compliant\'\'.\'\'On\'\'top\'\'of\'\'that\'\'WebGUI\'\'allows\'\'you\'\'to\'\'customize\'\'dates\'\',\'\'currency\'\',\'\'and\'\'weights\'\'to\'\'match\'\'your\'\'locale\'\'.\'\'Pluggable\'\'By\'\'Design\'\'-\'\'With\'\'WebGUI\'\'7\'\'you\'\'have\'\'many\'\'plug\'\'-\'\'in\'\'points\'\'to\'\'add\'\'your\'\'own\'\'functionality\'\'.\'\'And\'\'best\'\'of\'\'all\'\',\'\'the\'\'API\'\'is\'\'stable\'\'and\'\'standardized\'\'.\'\'Write\'\'it\'\'today\'\'and\'\'it\'\'will\'\'still\'\'work\'\'years\'\'from\'\'now\'\'and\'\'survive\'\'all\'\'upgrades\'\'. ','000001000002000009'),('bX5rYxb6tZ9docY6sUhBlw','Getting Started','\n\nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n \nNOTE: Click on the green start icon on t','getting_started/getting-started',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting\'\'Started\'\'Getting\'\'Started\'\'getting\'\'started\'\'getting\'\'started\'\'If\'\'you\'\'\'\'\'re\'\'reading\'\'this\'\'message\'\'that\'\'means\'\'you\'\'\'\'\'ve\'\'successfully\'\'installed\'\'and\'\'configured\'\'the\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'.\'\'Great\'\'job\'\'!\'\'To\'\'get\'\'started\'\'with\'\'managing\'\'content\'\',\'\'watch\'\'the\'\'short\'\'instructional\'\'video\'\'below\'\'.\'\'NOTE\'\':\'\'Click\'\'on\'\'the\'\'green\'\'start\'\'icon\'\'on\'\'the\'\'video\'\'to\'\'begin\'\'your\'\'tutorial\'\'. ','000001000002000001000001'),('Szs5eev3OMssmnsyLRZmWA','Tell A Friend','Tell a friend about WebGUI.','tell_a_friend/tell_a_friend',1124395696,1213317790,'3','7','3','WebGUI::Asset::Wobject::DataForm',1,'Tell\'\'A\'\'Friend\'\'Tell\'\'A\'\'Friend\'\'tell\'\'a\'\'friend\'\'tell\'\'a\'\'friend\'\'Tell\'\'a\'\'friend\'\'about\'\'WebGUI\'\'.','000001000002000004000001'),('OhdaFLE7sXOzo_SIP2ZUgA','Welcome','The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy eno','home/welcome',1147642513,1147642513,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Welcome\'\'Welcome\'\'home\'\'welcome\'\'The\'\'WebGUI\'\'Content\'\'Engine\'\'&\'\'reg\'\';\'\'is\'\'a\'\'powerful\'\'and\'\'easy\'\'to\'\'use\'\'system\'\'for\'\'managing\'\'web\'\'sites\'\',\'\'and\'\'building\'\'web\'\'applications\'\'.\'\'It\'\'provides\'\'thousands\'\'of\'\'features\'\'out\'\'of\'\'the\'\'box\'\',\'\'and\'\'lots\'\'of\'\'plug\'\'-\'\'in\'\'points\'\'so\'\'you\'\'can\'\'extend\'\'it\'\'to\'\'match\'\'your\'\'needs\'\'.\'\'It\'\'\'\'\'s\'\'easy\'\'enough\'\'for\'\'the\'\'average\'\'business\'\'user\'\',\'\'but\'\'powerful\'\'enough\'\'for\'\'any\'\'large\'\'enterprise\'\'.\'\'There\'\'are\'\'thousands\'\'of\'\'small\'\'and\'\'large\'\'businesses\'\',\'\'schools\'\',\'\'universities\'\',\'\'governments\'\',\'\'associations\'\',\'\'clubs\'\',\'\'churches\'\',\'\'projects\'\',\'\'and\'\'communities\'\'using\'\'WebGUI\'\'all\'\'over\'\'the\'\'world\'\'today\'\'.\'\'A\'\'brief\'\'list\'\'of\'\'some\'\'of\'\'them\'\'can\'\'be\'\'found\'\'here\'\'.\'\'Your\'\'site\'\'should\'\'be\'\'on\'\'that\'\'list\'\'.\'\'If\'\'you\'\'\'\'\'re\'\'new\'\'to\'\'WebGUI\'\',\'\'click\'\'here\'\'to\'\'learn\'\'how\'\'to\'\'get\'\'started\'\'.\'\'If\'\'you\'\'\'\'\'re\'\'getting\'\'up\'\'to\'\'speed\'\',\'\'check\'\'out\'\'some\'\'ways\'\'you\'\'can\'\'do\'\'more\'\'faster\'\'.\'\'If\'\'this\'\'is\'\'all\'\'old\'\'hat\'\'to\'\'you\'\',\'\'then\'\'check\'\'out\'\'the\'\'latest\'\'news\'\'.\'\'No\'\'matter\'\'what\'\'level\'\'you\'\'\'\'\'re\'\'at\'\'tell\'\'your\'\'friends\'\'about\'\'WebGUI\'\'. ','000001000002000007'),('pbrobot000000000000001','robots.txt','robots.txt robots.txt robots.txt ','robots.txt',1147642511,1147642511,'3','7','12','WebGUI::Asset::Snippet',1,'robots\'\'.\'\'txt\'\'robots\'\'.\'\'txt\'\'robots\'\'.\'\'txt User\'\'-\'\'agent\'\':\'\'googlebot\'\'Disallow\'\':\'\'*\'\'?\'\'op\'\'=\'\'displayLogin\'\'Disallow\'\':\'\'*\'\'?\'\'op\'\'=\'\'makePrintable','000001000001000031'),('7-0-style0000000000071','wg.jpg','wg.jpg wg.jpg style3 wg.jpg ','style3/wg.jpg',1147642511,1147642511,'3','7','12','WebGUI::Asset::File::Image',1,'wg\'\'.\'\'jpg\'\'wg\'\'.\'\'jpg\'\'style3\'\'wg\'\'.\'\'jpg','000001000001000047000022'),('7-0-style0000000000068','spacer.gif','spacer.gif spacer.gif style3 spacer.gif ','style3/spacer.gif',1147642510,1147642510,'3','7','12','WebGUI::Asset::File::Image',1,'spacer\'\'.\'\'gif\'\'spacer\'\'.\'\'gif\'\'style3\'\'spacer\'\'.\'\'gif','000001000001000047000019'),('7-0-style0000000000070','Style3 Coolmenu','Style3 Coolmenu Style3 Coolmenu style3 coolmenu ','style3_coolmenu',1147642510,1147642510,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3\'\'Coolmenu\'\'Style3\'\'Coolmenu\'\'style3\'\'coolmenu','000001000001000047000021'),('7-0-style0000000000066','nav_bg_on.jpg','nav_bg_on.jpg nav_bg_on.jpg style3 nav bg on.jpg ','style3/nav_bg_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg_on\'\'.\'\'jpg\'\'nav_bg_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg\'\'on\'\'.\'\'jpg','000001000001000047000017'),('7-0-style0000000000064','nav_bg2.jpg','nav_bg2.jpg nav_bg2.jpg style3 nav bg2.jpg ','style3/nav_bg2.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2\'\'.\'\'jpg\'\'nav_bg2\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg2\'\'.\'\'jpg','000001000001000047000015'),('7-0-style0000000000065','nav_bg2_on.jpg','nav_bg2_on.jpg nav_bg2_on.jpg style3 nav bg2 on.jpg ','style3/nav_bg2_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2_on\'\'.\'\'jpg\'\'nav_bg2_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg2\'\'on\'\'.\'\'jpg','000001000001000047000016'),('7-0-style0000000000067','pb.jpg','pb.jpg pb.jpg style3 pb.jpg ','style3/pb.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'pb\'\'.\'\'jpg\'\'pb\'\'.\'\'jpg\'\'style3\'\'pb\'\'.\'\'jpg','000001000001000047000018'),('7-0-style0000000000063','nav_bg1_on.jpg','nav_bg1_on.jpg nav_bg1_on.jpg style3 nav bg1 on.jpg ','style3/nav_bg1_on.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1_on\'\'.\'\'jpg\'\'nav_bg1_on\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg1\'\'on\'\'.\'\'jpg','000001000001000047000014'),('7-0-style0000000000060','main_top_bg.jpg','main_top_bg.jpg main_top_bg.jpg style3 main top bg.jpg ','style3/main_top_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'main_top_bg\'\'.\'\'jpg\'\'main_top_bg\'\'.\'\'jpg\'\'style3\'\'main\'\'top\'\'bg\'\'.\'\'jpg','000001000001000047000011'),('7-0-style0000000000062','nav_bg1.jpg','nav_bg1.jpg nav_bg1.jpg style3 nav bg1.jpg ','style3/nav_bg1.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1\'\'.\'\'jpg\'\'nav_bg1\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg1\'\'.\'\'jpg','000001000001000047000013'),('7-0-style0000000000061','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style3 nav bg.jpg ','style3/nav_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style3\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000047000012'),('7-0-style0000000000059','main_top.jpg','main_top.jpg main_top.jpg style3 main top.jpg ','style3/main_top.jpg',1147642507,1213386091,'3','7','12','WebGUI::Asset::File::Image',1,'main_top\'\'.\'\'jpg\'\'main_top\'\'.\'\'jpg\'\'style3\'\'main\'\'top\'\'.\'\'jpg','000001000001000047000010'),('7-0-style0000000000057','main_bg.jpg','main_bg.jpg main_bg.jpg style3 main bg.jpg ','style3/main_bg.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style3\'\'main\'\'bg\'\'.\'\'jpg','000001000001000047000008'),('7-0-style0000000000058','main_bottom.jpg','main_bottom.jpg main_bottom.jpg style3 main bottom.jpg ','style3/main_bottom.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bottom\'\'.\'\'jpg\'\'main_bottom\'\'.\'\'jpg\'\'style3\'\'main\'\'bottom\'\'.\'\'jpg','000001000001000047000009'),('7-0-style0000000000055','header_left.jpg','header_left.jpg header_left.jpg style3 header left.jpg ','style3/header_left.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_left\'\'.\'\'jpg\'\'header_left\'\'.\'\'jpg\'\'style3\'\'header\'\'left\'\'.\'\'jpg','000001000001000047000006'),('7-0-style0000000000056','header_right.jpg','header_right.jpg header_right.jpg style3 header right.jpg ','style3/header_right.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_right\'\'.\'\'jpg\'\'header_right\'\'.\'\'jpg\'\'style3\'\'header\'\'right\'\'.\'\'jpg','000001000001000047000007'),('7-0-style0000000000054','header_bg.jpg','header_bg.jpg header_bg.jpg style3 header bg.jpg ','style3/header_bg.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_bg\'\'.\'\'jpg\'\'header_bg\'\'.\'\'jpg\'\'style3\'\'header\'\'bg\'\'.\'\'jpg','000001000001000047000005'),('7-0-style0000000000052','footer_bg.jpg','footer_bg.jpg footer_bg.jpg style3 footer bg.jpg ','style3/footer_bg.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_bg\'\'.\'\'jpg\'\'footer_bg\'\'.\'\'jpg\'\'style3\'\'footer\'\'bg\'\'.\'\'jpg','000001000001000047000003'),('7-0-style0000000000053','footer_right.jpg','footer_right.jpg footer_right.jpg style3 footer right.jpg ','style3/footer_right.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_right\'\'.\'\'jpg\'\'footer_right\'\'.\'\'jpg\'\'style3\'\'footer\'\'right\'\'.\'\'jpg','000001000001000047000004'),('7-0-style0000000000046','rightCol_bg.jpg','rightCol_bg.jpg rightCol_bg.jpg style2 rightcol bg.jpg ','style2/rightcol_bg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'rightCol_bg\'\'.\'\'jpg\'\'rightCol_bg\'\'.\'\'jpg\'\'style2\'\'rightcol\'\'bg\'\'.\'\'jpg','000001000001000046000015'),('stevestyle000000000002','Style 02','Style 02 Style 02 style 02 ','style_02',1147642504,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'02\'\'Style\'\'02\'\'style\'\'02 style','000001000001000046000016'),('7-0-style0000000000049','WebGUI 7 Style 3','WebGUI 7 Style 3 WebGUI 7 Style 3 root import webgui 7 style 3 ','root/import/webgui-7-style-3',1147642504,1224117144,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'3\'\'WebGUI\'\'7\'\'Style\'\'3\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'3','000001000001000047'),('7-0-style0000000000048','wg.jpg','wg.jpg wg.jpg style2 wg.jpg ','style2/wg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'wg\'\'.\'\'jpg\'\'wg\'\'.\'\'jpg\'\'style2\'\'wg\'\'.\'\'jpg','000001000001000046000017'),('7-0-style0000000000045','pb_wg_bg.jpg','pb_wg_bg.jpg pb_wg_bg.jpg style2 pb wg bg.jpg ','style2/pb_wg_bg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg_bg\'\'.\'\'jpg\'\'pb_wg_bg\'\'.\'\'jpg\'\'style2\'\'pb\'\'wg\'\'bg\'\'.\'\'jpg','000001000001000046000014'),('7-0-style0000000000044','pb_wg.jpg','pb_wg.jpg pb_wg.jpg style2 pb wg.jpg ','style2/pb_wg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg\'\'.\'\'jpg\'\'pb_wg\'\'.\'\'jpg\'\'style2\'\'pb\'\'wg\'\'.\'\'jpg','000001000001000046000013'),('7-0-style0000000000043','pb.jpg','pb.jpg pb.jpg style2 pb.jpg ','style2/pb.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb\'\'.\'\'jpg\'\'pb\'\'.\'\'jpg\'\'style2\'\'pb\'\'.\'\'jpg','000001000001000046000012'),('7-0-style0000000000042','page_title_bg.jpg','page_title_bg.jpg page_title_bg.jpg style2 page title bg.jpg ','style2/page_title_bg.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title_bg\'\'.\'\'jpg\'\'page_title_bg\'\'.\'\'jpg\'\'style2\'\'page\'\'title\'\'bg\'\'.\'\'jpg','000001000001000046000011'),('7-0-style0000000000041','page_title.jpg','page_title.jpg page_title.jpg style2 page title.jpg ','style2/page_title.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title\'\'.\'\'jpg\'\'page_title\'\'.\'\'jpg\'\'style2\'\'page\'\'title\'\'.\'\'jpg','000001000001000046000010'),('7-0-style0000000000040','navbar_right.jpg','navbar_right.jpg navbar_right.jpg style2 navbar right.jpg ','style2/navbar_right.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_right\'\'.\'\'jpg\'\'navbar_right\'\'.\'\'jpg\'\'style2\'\'navbar\'\'right\'\'.\'\'jpg','000001000001000046000009'),('7-0-style0000000000039','navbar_left.jpg','navbar_left.jpg navbar_left.jpg style2 navbar left.jpg ','style2/navbar_left.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_left\'\'.\'\'jpg\'\'navbar_left\'\'.\'\'jpg\'\'style2\'\'navbar\'\'left\'\'.\'\'jpg','000001000001000046000008'),('7-0-style0000000000036','main_bg.jpg','main_bg.jpg main_bg.jpg style2 main bg.jpg ','style2/main_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style2\'\'main\'\'bg\'\'.\'\'jpg','000001000001000046000005'),('7-0-style0000000000038','navbar_bg.jpg','navbar_bg.jpg navbar_bg.jpg style2 navbar bg.jpg ','style2/navbar_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_bg\'\'.\'\'jpg\'\'navbar_bg\'\'.\'\'jpg\'\'style2\'\'navbar\'\'bg\'\'.\'\'jpg','000001000001000046000007'),('7-0-style0000000000035','leftCol_header02.jpg','leftCol_header02.jpg leftCol_header02.jpg style2 leftcol header02.jpg ','style2/leftcol_header02.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header02\'\'.\'\'jpg\'\'leftCol_header02\'\'.\'\'jpg\'\'style2\'\'leftcol\'\'header02\'\'.\'\'jpg','000001000001000046000004'),('7-0-style0000000000037','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style2 nav bg.jpg ','style2/nav_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style2\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000046000006'),('7-0-style0000000000032','context_bg.jpg','context_bg.jpg context_bg.jpg style2 context bg.jpg ','style2/context_bg.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'context_bg\'\'.\'\'jpg\'\'context_bg\'\'.\'\'jpg\'\'style2\'\'context\'\'bg\'\'.\'\'jpg','000001000001000046000001'),('7-0-style0000000000031','WebGUI 7 Style 2','WebGUI 7 Style 2 WebGUI 7 Style 2 root import webgui 7 style 2 ','root/import/webgui-7-style-2',1147642500,1147642500,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'2\'\'WebGUI\'\'7\'\'Style\'\'2\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'2','000001000001000046'),('7-0-style0000000000033','css02.css','css02.css css02.css style2 css02.css ','style2/css02.css',1147642500,1147642500,'3','7','12','WebGUI::Asset::Snippet',1,'css02\'\'.\'\'css\'\'css02\'\'.\'\'css\'\'style2\'\'css02\'\'.\'\'css body\'\',\'\'html\'\'{\'\'height\'\':\'\'100\'\'%\'\';\'\'}\'\'body\'\'{\'\'background\'\':\'\'#\'\'7c9ab0\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'main_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'rightColumn\'\'{\'\'width\'\':\'\'20\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'background\'\':\'\'#\'\'eeeeee\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'rightCol_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'pb_wg_bg\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'pb_wg_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'pb_wg\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'pb_wg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'left\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'53px\'\';\'\'}\'\'.\'\'leftColumn\'\'{\'\'width\'\':\'\'80\'\'%\'\';\'\'background\'\':\'\'white\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'context_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'background\'\':\'\'#\'\'7c9ab0\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'leftCol_header\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'right\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'86px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title\'\',\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title_bg\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'36pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'variant\'\':\'\'small\'\'-\'\'caps\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'12px\'\';\'\'top\'\':\'\'15px\'\';\'\'left\'\':\'\'5px\'\';\'\'position\'\':\'\'absolute\'\';\'\'z\'\'-\'\'index\'\':\'\'10\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'header\'\'#\'\'title_bg\'\'{\'\'color\'\':\'\'black\'\';\'\'z\'\'-\'\'index\'\':\'\'5\'\';\'\'top\'\':\'\'17px\'\';\'\'left\'\':\'\'7px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'{\'\'/\'\'*\'\'background\'\':\'\'#\'\'fff\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'context_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\'right\'\';\'\'*\'\'/\'\'width\'\':\'\'95\'\'%\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'color\'\':\'\'#\'\'242424\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\'-\'\'left\'\':\'\'1\'\'%\'\';\'\'padding\'\'-\'\'right\'\':\'\'1\'\'%\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'a\'\'{\'\'color\'\':\'\'#\'\'7C9AB0\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'context\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'page_title_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'#\'\'pageTitle\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'page_title\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'right\'\'no\'\'-\'\'repeat\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'50px\'\';\'\'}\'\'.\'\'leftColumn\'\'#\'\'pageTitleBG\'\'#\'\'pageTitle\'\'h2\'\'{\'\'font\'\'-\'\'size\'\':\'\'14pt\'\';\'\'color\'\':\'\'#\'\'696969\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'2px\'\';\'\'padding\'\'-\'\'left\'\':\'\'25px\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'3px\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'{\'\'width\'\':\'\'85\'\'%\'\';\'\'background\'\':\'\'#\'\'b5b5b5\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style2\'\'/\'\'nav_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'#\'\'848484\'\'1px\'\';\'\'margin\'\'-\'\'left\'\':\'\'auto\'\';\'\'margin\'\'-\'\'right\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'padding\'\'-\'\'left\'\':\'\'3px\'\';\'\'padding\'\'-\'\'top\'\':\'\'7px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'7px\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'line\'\'-\'\'height\'\':\'\'8pt\'\';\'\'}\'\'.\'\'rightColumn\'\'#\'\'nav\'\'.\'\'selectedMenuItem\'\'{\'\'color\'\':\'\'yellow\'\';\'\'}\'\'#\'\'loginStyles\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'25px\'\';\'\'}\'\'#\'\'loginStyles\'\'a\'\'{\'\'color\'\':\'\'#\'\'89ACCF\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'transparent\'\'2px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'loginStyles\'\'a\'\':\'\'hover\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dotted\'\'#\'\'B2C9D9\'\'2px\'\';\'\'}\'\'.\'\'copyright\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'3px\'\';\'\'background\'\'-\'\'color\'\':\'\'gray\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'color\'\':\'\'silver\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}','000001000001000046000002'),('7-0-style0000000000034','leftCol_header.jpg','leftCol_header.jpg leftCol_header.jpg style2 leftcol header.jpg ','style2/leftcol_header.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header\'\'.\'\'jpg\'\'leftCol_header\'\'.\'\'jpg\'\'style2\'\'leftcol\'\'header\'\'.\'\'jpg','000001000001000046000003'),('stevenav00000000000001','Style 01 Nav','Style 01 Nav Style 01 Nav style1 nav ','style1_nav',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Nav\'\'Style\'\'01\'\'Nav\'\'style1\'\'nav Navigation','000001000001000045000027'),('PBnav000000style01lvl2','Style 01 Nav lvl2','Style 01 Nav lvl2 untitled style1 nav lvl2 ','style1_nav_lvl2',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Nav\'\'lvl2\'\'untitled\'\'style1\'\'nav\'\'lvl2 Navigation','000001000001000045000028'),('7-0-style0000000000030','webgui_btn.jpg','webgui_btn.jpg webgui_btn.jpg style1 webgui btn.jpg ','style1/webgui_btn.jpg',1147642499,1147642499,'3','7','12','WebGUI::Asset::File::Image',1,'webgui_btn\'\'.\'\'jpg\'\'webgui_btn\'\'.\'\'jpg\'\'style1\'\'webgui\'\'btn\'\'.\'\'jpg','000001000001000045000029'),('stevestyle000000000001','Style 01','Style 01 Style 01 style 01 ','style_01',1147642499,1222383245,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'01\'\'Style\'\'01\'\'style\'\'01 style','000001000001000045000026'),('7-0-style0000000000026','RootTab Level 1','RootTab Level 1 RootTab Level 1 roottab level1 ','roottab_level1',1147642499,1147642499,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'Level\'\'1\'\'RootTab\'\'Level\'\'1\'\'roottab\'\'level1','000001000001000045000025'),('7-0-style0000000000024','orange_left01.jpg','orange_left01.jpg orange_left01.jpg style1 orange left01.jpg ','style1/orange_left01.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'orange_left01\'\'.\'\'jpg\'\'orange_left01\'\'.\'\'jpg\'\'style1\'\'orange\'\'left01\'\'.\'\'jpg','000001000001000045000023'),('7-0-style0000000000023','nav_on.jpg','nav_on.jpg nav_on.jpg style1 nav on.jpg ','style1/nav_on.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'nav_on\'\'.\'\'jpg\'\'nav_on\'\'.\'\'jpg\'\'style1\'\'nav\'\'on\'\'.\'\'jpg','000001000001000045000022'),('7-0-style0000000000025','RootTab Level 0','RootTab Level 0 RootTab Level 0 roottab level0 ','roottab_level0',1147642498,1147642498,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'Level\'\'0\'\'RootTab\'\'Level\'\'0\'\'roottab\'\'level0','000001000001000045000024'),('7-0-style0000000000019','nav2_off_right.jpg','nav2_off_right.jpg nav2_off_right.jpg style1 nav2 off right.jpg ','style1/nav2_off_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_right\'\'.\'\'jpg\'\'nav2_off_right\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'right\'\'.\'\'jpg','000001000001000045000018'),('7-0-style0000000000020','nav2_on_left.jpg','nav2_on_left.jpg nav2_on_left.jpg style1 nav2 on left.jpg ','style1/nav2_on_left.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_left\'\'.\'\'jpg\'\'nav2_on_left\'\'.\'\'jpg\'\'style1\'\'nav2\'\'on\'\'left\'\'.\'\'jpg','000001000001000045000019'),('7-0-style0000000000022','nav_bg.jpg','nav_bg.jpg nav_bg.jpg style1 nav bg.jpg ','style1/nav_bg.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg\'\'.\'\'jpg\'\'nav_bg\'\'.\'\'jpg\'\'style1\'\'nav\'\'bg\'\'.\'\'jpg','000001000001000045000021'),('7-0-style0000000000021','nav2_on_right.jpg','nav2_on_right.jpg nav2_on_right.jpg style1 nav2 on right.jpg ','style1/nav2_on_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_right\'\'.\'\'jpg\'\'nav2_on_right\'\'.\'\'jpg\'\'style1\'\'nav2\'\'on\'\'right\'\'.\'\'jpg','000001000001000045000020'),('7-0-style0000000000017','nav2_off_center.jpg','nav2_off_center.jpg nav2_off_center.jpg style1 nav2 off center.jpg ','style1/nav2_off_center.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_center\'\'.\'\'jpg\'\'nav2_off_center\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'center\'\'.\'\'jpg','000001000001000045000016'),('7-0-style0000000000016','nav2_center_on.jpg','nav2_center_on.jpg nav2_center_on.jpg style1 nav2 center on.jpg ','style1/nav2_center_on.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_center_on\'\'.\'\'jpg\'\'nav2_center_on\'\'.\'\'jpg\'\'style1\'\'nav2\'\'center\'\'on\'\'.\'\'jpg','000001000001000045000015'),('7-0-style0000000000018','nav2_off_left.jpg','nav2_off_left.jpg nav2_off_left.jpg style1 nav2 off left.jpg ','style1/nav2_off_left.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_left\'\'.\'\'jpg\'\'nav2_off_left\'\'.\'\'jpg\'\'style1\'\'nav2\'\'off\'\'left\'\'.\'\'jpg','000001000001000045000017'),('7-0-style0000000000015','nav1_on_right.jpg','nav1_on_right.jpg nav1_on_right.jpg style1 nav1 on right.jpg ','style1/nav1_on_right.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_right\'\'.\'\'jpg\'\'nav1_on_right\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'right\'\'.\'\'jpg','000001000001000045000014'),('7-0-style0000000000014','nav1_on_left.jpg','nav1_on_left.jpg nav1_on_left.jpg style1 nav1 on left.jpg ','style1/nav1_on_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_left\'\'.\'\'jpg\'\'nav1_on_left\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'left\'\'.\'\'jpg','000001000001000045000013'),('7-0-style0000000000013','nav1_on.jpg','nav1_on.jpg nav1_on.jpg style1 nav1 on.jpg ','style1/nav1_on.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on\'\'.\'\'jpg\'\'nav1_on\'\'.\'\'jpg\'\'style1\'\'nav1\'\'on\'\'.\'\'jpg','000001000001000045000012'),('7-0-style0000000000011','nav1_off_left.jpg','nav1_off_left.jpg nav1_off_left.jpg style1 nav1 off left.jpg ','style1/nav1_off_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_left\'\'.\'\'jpg\'\'nav1_off_left\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'left\'\'.\'\'jpg','000001000001000045000010'),('7-0-style0000000000012','nav1_off_right.jpg','nav1_off_right.jpg nav1_off_right.jpg style1 nav1 off right.jpg ','style1/nav1_off_right.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_right\'\'.\'\'jpg\'\'nav1_off_right\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'right\'\'.\'\'jpg','000001000001000045000011'),('7-0-style0000000000009','nav1_off.jpg','nav1_off.jpg nav1_off.jpg style1 nav1 off.jpg ','style1/nav1_off.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off\'\'.\'\'jpg\'\'nav1_off\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'.\'\'jpg','000001000001000045000008'),('7-0-style0000000000010','nav1_off_center.jpg','nav1_off_center.jpg nav1_off_center.jpg style1 nav1 off center.jpg ','style1/nav1_off_center.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_center\'\'.\'\'jpg\'\'nav1_off_center\'\'.\'\'jpg\'\'style1\'\'nav1\'\'off\'\'center\'\'.\'\'jpg','000001000001000045000009'),('7-0-style0000000000008','nav1_center_on.jpg','nav1_center_on.jpg nav1_center_on.jpg style1 nav1 center on.jpg ','style1/nav1_center_on.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_center_on\'\'.\'\'jpg\'\'nav1_center_on\'\'.\'\'jpg\'\'style1\'\'nav1\'\'center\'\'on\'\'.\'\'jpg','000001000001000045000007'),('7-0-style0000000000006','main_bg.gif','main_bg.gif main_bg.gif style1 main bg.gif ','style1/main_bg.gif',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'gif\'\'main_bg\'\'.\'\'gif\'\'style1\'\'main\'\'bg\'\'.\'\'gif','000001000001000045000005'),('7-0-style0000000000007','main_bg.jpg','main_bg.jpg main_bg.jpg style1 main bg.jpg ','style1/main_bg.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg\'\'.\'\'jpg\'\'main_bg\'\'.\'\'jpg\'\'style1\'\'main\'\'bg\'\'.\'\'jpg','000001000001000045000006'),('7-0-style0000000000004','gui_bottom.jpg','gui_bottom.jpg gui_bottom.jpg style1 gui bottom.jpg ','style1/gui_bottom.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'gui_bottom\'\'.\'\'jpg\'\'gui_bottom\'\'.\'\'jpg\'\'style1\'\'gui\'\'bottom\'\'.\'\'jpg','000001000001000045000003'),('7-0-style0000000000005','header.jpg','header.jpg header.jpg style1 header.jpg ','style1/header.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'header\'\'.\'\'jpg\'\'header\'\'.\'\'jpg\'\'style1\'\'header\'\'.\'\'jpg','000001000001000045000004'),('7-0-style0000000000001','WebGUI 7 Style 1','WebGUI 7 Style 1 WebGUI 7 Style 1 root import webgui 7 style 1 ','root/import/webgui-7-style-1',1147642492,1147642492,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'7\'\'Style\'\'1\'\'WebGUI\'\'7\'\'Style\'\'1\'\'root\'\'import\'\'webgui\'\'7\'\'style\'\'1','000001000001000045'),('7-0-style0000000000002','body_bg.jpg','body_bg.jpg body_bg.jpg style1 body bg.jpg ','style1/body_bg.jpg',1147642492,1147642492,'3','7','12','WebGUI::Asset::File::Image',1,'body_bg\'\'.\'\'jpg\'\'body_bg\'\'.\'\'jpg\'\'style1\'\'body\'\'bg\'\'.\'\'jpg','000001000001000045000001'),('7-0-style0000000000003','css01.css','css01.css css01.css style1 css01.css ','style1/css01.css',1147642492,1147642492,'3','7','12','WebGUI::Asset::Snippet',1,'css01\'\'.\'\'css\'\'css01\'\'.\'\'css\'\'style1\'\'css01\'\'.\'\'css body\'\',\'\'html\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'494949\'\';\'\'}\'\'#\'\'main\'\'{\'\'width\'\':\'\'800px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'main_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'y\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'margin\'\'-\'\'left\'\':\'\'auto\'\';\'\'margin\'\'-\'\'right\'\':\'\'auto\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'body\'\'>\'\'#\'\'main\'\'{\'\'height\'\':\'\'auto\'\';\'\'min\'\'-\'\'height\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'{\'\'width\'\':\'\'800px\'\';\'\'height\'\':\'\'133px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'header\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'top\'\'left\'\'no\'\'-\'\'repeat\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'#\'\'title\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'23px\'\';\'\'left\'\':\'\'145px\'\';\'\'font\'\'-\'\'size\'\':\'\'32pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainHeader\'\'#\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'orange_left01\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'left\'\'top\'\'no\'\'-\'\'repeat\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'red\'\'0px\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainContent\'\'{\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainContent\'\'>\'\'p\'\'{\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'#\'\'mainText\'\'a\'\':\'\'link\'\'{\'\'color\'\':\'\'#\'\'FF7F23\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainContent\'\'#\'\'mainText\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'D25900\'\';\'\'}\'\'/\'\'*\'\'LEVEL\'\'1\'\'AND\'\'2\'\'NAVIGATION\'\'*\'\'/\'\'#\'\'main\'\'.\'\'mainNav_1\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dashed\'\'#\'\'DADADA\'\'1px\'\';\'\'width\'\':\'\'621px\'\';\'\'height\'\':\'\'25px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'position\'\':\'\'relative\'\';\'\'margin\'\'-\'\'left\'\':\'\'137px\'\';\'\'clear\'\':\'\'both\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'visited\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'top\'\':\'\'5px\'\';\'\'position\'\':\'\'relative\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'a\'\':\'\'hover\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'a\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'left\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'left\'\'{\'\'width\'\':\'\'12px\'\';\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'center\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'center\'\'{\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_center\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\',\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_center\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'right\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'right\'\'{\'\'width\'\':\'\'10px\'\';\'\'height\'\':\'\'25px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_off_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_off_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_on_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_center_on\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav1_on_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'left\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_on_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'center\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_center_on\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'.\'\'right\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style1\'\'/\'\'nav2_on_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'left\'\';\'\'}\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_1\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'visited\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'link\'\',\'\'#\'\'main\'\'.\'\'mainNav_2\'\'div\'\'.\'\'navOn\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'/\'\'*\'\'ENDOF\'\'LEVEL\'\'1\'\'AND\'\'2\'\'NAVIGATION\'\'*\'\'/\'\'#\'\'main\'\'#\'\'crumbTrail\'\'{\'\'margin\'\'-\'\'left\'\':\'\'177px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'color\'\':\'\'gray\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'visited\'\',\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'link\'\'{\'\'color\'\':\'\'silver\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}\'\'#\'\'main\'\'#\'\'crumbTrail\'\'a\'\'.\'\'crumbTrail\'\':\'\'hover\'\'{\'\'color\'\':\'\'gray\'\';\'\'}\'\'#\'\'main\'\'#\'\'mainText\'\'{\'\'padding\'\'-\'\'left\'\':\'\'150px\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'width\'\':\'\'600px\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'{\'\'bottom\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'position\'\':\'\'absolute\'\';\'\'width\'\':\'\'135px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'{\'\'padding\'\'-\'\'right\'\':\'\'12px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'width\'\':\'\'100px\'\';\'\'float\'\':\'\'right\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'.\'\'loginBoxField\'\'{\'\'width\'\':\'\'75px\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'.\'\'loginBox\'\'.\'\'loginBoxButton\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'D65501\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'white\'\'2px\'\';\'\'margin\'\'-\'\'top\'\':\'\'4px\'\';\'\'font\'\'-\'\'variant\'\':\'\'small\'\'-\'\'caps\'\';\'\'}\'\'#\'\'main\'\'#\'\'gui\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'copyright\'\'{\'\'color\'\':\'\'#\'\'fff\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'110px\'\';\'\'right\'\':\'\'40px\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'2D2D2D\'\';\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'-\'\'moz\'\'-\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'-\'\'khtml\'\'-\'\'opacity\'\':\'\'0\'\'.\'\'4\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'*\'\'html\'\'#\'\'copyright\'\'{\'\'background\'\':\'\'transparent\'\';\'\'}','000001000001000045000002'),('CSN-ZON7Uwv8kxf3F1fh5Q','ZipArchiveAsset','ZipArchiveAsset ZipArchiveAsset root import ziparchiveasset ','root/import/ziparchiveasset',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ZipArchiveAsset\'\'ZipArchiveAsset\'\'root\'\'import\'\'ziparchiveasset','000001000001000049'),('TCtybxdqmdwdvRn555zpCQ','RichEdit','RichEdit RichEdit root import richedit ','root/import/richedit',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RichEdit\'\'RichEdit\'\'root\'\'import\'\'richedit','000001000001000030'),('NywJYmGWe1f6EBXJnWg9Xg','Profile','Profile Profile root import profile ','root/import/profile',1222803606,1222803638,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile\'\'Profile\'\'root\'\'import\'\'profile','000001000001000026'),('9wKWdum0_8z-OhhquWLtSQ','WeatherData','WeatherData WeatherData root import weatherdata ','root/import/weatherdata',1147642483,1147642483,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WeatherData\'\'WeatherData\'\'root\'\'import\'\'weatherdata','000001000001000044'),('AgyFhx3eXlfZXNp2MkrsiQ','Edit','Edit Edit root import profile edit ','root/import/profile/edit',1147642477,1222803665,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Edit\'\'Edit\'\'root\'\'import\'\'profile\'\'edit','000001000001000026000001'),('F7MAQ-cpuvQ1KuC7J4P5zQ','View','View View root import profile view ','root/import/profile/view',1147642477,1222803673,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'View\'\'View\'\'root\'\'import\'\'profile\'\'view','000001000001000026000002'),('oGfxez5sksyB_PcaAsEm_Q','SyndicatedContent','SyndicatedContent SyndicatedContent root import syndicatedcontent ','root/import/syndicatedcontent',1147642482,1147642482,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SyndicatedContent\'\'SyndicatedContent\'\'root\'\'import\'\'syndicatedcontent','000001000001000040'),('5bnNzteN7w3NnK9mF4XiCg','Survey','Survey Survey root import survey ','root/import/survey',1147642481,1227540002,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Survey\'\'Survey\'\'root\'\'import\'\'survey','000001000001000039'),('Efe2W0UgrSRDltNJ87jlfg','StockData','StockData StockData root import stockdata ','root/import/stockdata',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'StockData\'\'StockData\'\'root\'\'import\'\'stockdata','000001000001000037'),('bbiA9Zq5Gy2oCFBlILO3QA','SQLReport','SQLReport SQLReport root import sqlreport ','root/import/sqlreport',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SQLReport\'\'SQLReport\'\'root\'\'import\'\'sqlreport','000001000001000036'),('RrV4aAPnn4dM0ZcU3OXnlw','style','style style root import style ','root/import/style',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'style\'\'style\'\'root\'\'import\'\'style','000001000001000038'),('Ik9HHky10DIyFTKehUD1dw','Prompt','Prompt Prompt root import prompt ','root/import/prompt',1147642479,1222803478,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Prompt\'\'Prompt\'\'root\'\'import\'\'prompt','000001000001000028'),('f_tn9FfoSfKWX43F83v_3w','Search','Search Search root import search ','root/import/search',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Search\'\'Search\'\'root\'\'import\'\'search','000001000001000032'),('Da6KWn805L4B5e4HFgQRQA','Shortcut','Shortcut Shortcut root import shortcut ','root/import/shortcut',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shortcut\'\'Shortcut\'\'root\'\'import\'\'shortcut','000001000001000035'),('TYo2Bwl7aafzTtdHlS-arQ','Product','Product Product root import product ','root/import/product',1147642478,1211664878,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Product\'\'Product\'\'root\'\'import\'\'product','000001000001000025'),('VZK3CRgiMb8r4dBjUmCTgQ','Poll','Poll Poll root import poll ','root/import/poll',1147642477,1147642477,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Poll\'\'Poll\'\'root\'\'import\'\'poll','000001000001000024'),('jEz8iTGNWEt2I05IhVV19Q','Operation/RedeemSubscription','Operation/RedeemSubscription Operation/RedeemSubscription root import operation redeemsubscription ','root/import/operation/redeemsubscription',1147642477,1147642477,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Operation\'\'/\'\'RedeemSubscription\'\'Operation\'\'/\'\'RedeemSubscription\'\'root\'\'import\'\'operation\'\'redeemsubscription','000001000001000034000016'),('BFfNj5wA9bDw8H3cnr8pTw','Navigation','Navigation Navigation root import navigation ','root/import/navigation',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Navigation\'\'Navigation\'\'root\'\'import\'\'navigation','000001000001000022'),('bBzO4CWjqU_ile3gf5Iypw','MultiSearch','MultiSearch MultiSearch root import multisearch ','root/import/multisearch',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MultiSearch\'\'MultiSearch\'\'root\'\'import\'\'multisearch','000001000001000021'),('cj2y4papTVGZRFdwTI-_fw','MessageBoard','MessageBoard MessageBoard root import messageboard ','root/import/messageboard',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MessageBoard\'\'MessageBoard\'\'root\'\'import\'\'messageboard','000001000001000020'),('3womoo7Teyy2YKFa25-MZg','Address Book (Default)','Address Book (Default) Address Book (Default) shopping cart collateral items address book default ','shopping-cart-collateral-items/address-book-default',1212098997,1226703362,'3','7','3','WebGUI::Asset::Template',1,'Address\'\'Book\'\'(\'\'Default\'\')\'\'Address\'\'Book\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'address\'\'book\'\'default Shop\'\'/\'\'AddressBook','000001000001000034000013'),('g8W53Pd71uHB9pxaXhWf_A','My Purchases Detail (Default)','My Purchases Detail (Default) My Purchases Detail (Default) shopping cart collateral items my purchases detail default ','shopping-cart-collateral-items/my-purchases-detail-default',1213184121,1222574693,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Purchases\'\'Detail\'\'(\'\'Default\'\')\'\'My\'\'Purchases\'\'Detail\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'my\'\'purchases\'\'detail\'\'default Shop\'\'/\'\'MyPurchasesDetail','000001000001000034000015'),('-WM2dt0ZGpDasuL2wWocxg','ProjectManager','ProjectManager ProjectManager root import projectmanager ','root/import/projectmanager',1222803056,1222803056,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ProjectManager\'\'ProjectManager\'\'root\'\'import\'\'projectmanager','000001000001000027'),('LdiozcIUciWuvt3Z-na5Ww','Matrix','Matrix Matrix root import matrix ','root/import/matrix',1147642474,1232673968,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Matrix\'\'Matrix\'\'root\'\'import\'\'matrix','000001000001000019'),('default_post_received1','Default Post Received','Default Post Received Default Post Received default post received ','default_post_received',1222708029,1230356300,'3','7','4','WebGUI::Asset::Template',1,'Default\'\'Post\'\'Received\'\'Default\'\'Post\'\'Received\'\'default\'\'post\'\'received Collaboration\'\'/\'\'PostReceived','000001000001000006000030'),('aNNC62qLAS6TB-0_MCYjsw','Layout','Layout Layout root import layout ','root/import/layout',1147642471,1213283425,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Layout\'\'Layout\'\'root\'\'import\'\'layout','000001000001000017'),('GYaFxnMu9UsEG8oanwB6TA','Folder','Folder Folder root import folder ','root/import/folder',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Folder\'\'Folder\'\'root\'\'import\'\'folder','000001000001000012'),('N13SD1Fpqk00UgBt1Z8ivQ','HttpProxy','HttpProxy HttpProxy root import httpproxy ','root/import/httpproxy',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'HttpProxy\'\'HttpProxy\'\'root\'\'import\'\'httpproxy','000001000001000014'),('tPagC0AQErZXjLFZQ6OI1g','ImageAsset','ImageAsset ImageAsset root import imageasset ','root/import/imageasset',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ImageAsset\'\'ImageAsset\'\'root\'\'import\'\'imageasset','000001000001000015'),('3uuBf8cYuj1sew2OJXl9tg','InOutBoard','InOutBoard InOutBoard root import inoutboard ','root/import/inoutboard',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'InOutBoard\'\'InOutBoard\'\'root\'\'import\'\'inoutboard','000001000001000016'),('PBtmpl0000000000000005','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template Default LDAP Anonymous Registration Template default ldap anonymous registration template ','default_ldap_anonymous_registration_template',1124395696,1221612327,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LDAP\'\'Anonymous\'\'Registration\'\'Template\'\'Default\'\'LDAP\'\'Anonymous\'\'Registration\'\'Template\'\'default\'\'ldap\'\'anonymous\'\'registration\'\'template Auth\'\'/\'\'LDAP\'\'/\'\'Create','000001000001000004000002000001'),('PBtmpl0000000000000011','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template Default WebGUI Anonymous Registration Template default webgui anonymous registration template ','default_webgui_anonymous_registration_template',1124395696,1221612288,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Anonymous\'\'Registration\'\'Template\'\'Default\'\'WebGUI\'\'Anonymous\'\'Registration\'\'Template\'\'default\'\'webgui\'\'anonymous\'\'registration\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Create','000001000001000004000005000001'),('tXwf1zaOXTvsqPn6yu-GSw','FileAsset','FileAsset FileAsset root import fileasset ','root/import/fileasset',1147642469,1147642469,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'FileAsset\'\'FileAsset\'\'root\'\'import\'\'fileasset','000001000001000011'),('S1A9iAwKcQQ6P20uTqw-Ew','Dashboard','Dashboard Dashboard root import dashboard ','root/import/dashboard',1147642468,1147642468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Dashboard\'\'Dashboard\'\'root\'\'import\'\'dashboard','000001000001000007'),('-K8Hj45mbelljN9-0CXZxg','DataForm',' ','root/import/dataform',1147642468,1209325764,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'DataForm\'\'DataForm\'\'root\'\'import\'\'dataform','000001000001000008'),('GNOAsX98vCsl0JRwfwL-gg','Collaboration','Collaboration Collaboration root import collaboration ','root/import/collaboration',1147642466,1147642466,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Collaboration\'\'Collaboration\'\'root\'\'import\'\'collaboration','000001000001000006'),('pbproto000000000000002','Request Tracker','Request Tracker Request Tracker request tracker prototype ','request-tracker-prototype',1147642465,1163019036,'3','7','12','WebGUI::Asset::Wobject::Collaboration',1,'Request\'\'Tracker\'\'Request\'\'Tracker\'\'request\'\'tracker\'\'prototype','000001000001000029'),('pbtmpl0000000000000220','Flash Template','Flash Template Flash Template flash template ','flash-template',1147642465,1148579525,'3','7','12','WebGUI::Asset::Template',1,'Flash\'\'Template\'\'Flash\'\'Template\'\'flash\'\'template FileAsset','000001000001000011000002'),('pbtmpl0000000000000221','Flash Tutorial Template','Flash Tutorial Template Flash Tutorial Template flash tutorial template ','flash-tutorial-template',1147642465,1147642465,'3','7','12','WebGUI::Asset::Template',1,'Flash\'\'Tutorial\'\'Template\'\'Flash\'\'Tutorial\'\'Template\'\'flash\'\'tutorial\'\'template FileAsset','000001000001000011000003'),('nbSrhXZQuxIjhWFaFPSuVA','AdminConsole','AdminConsole AdminConsole root import adminconsole ','root/import/adminconsole',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminConsole\'\'AdminConsole\'\'root\'\'import\'\'adminconsole','000001000001000002'),('TvOZs8U1kRXLtwtmyW75pg','Article','Article Article root import article ','root/import/article',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Article\'\'Article\'\'root\'\'import\'\'article','000001000001000003'),('PBtmpl0000000000000027','Default Forum Notification','Default Forum Notification Default Forum Notification default forum notification ','default_forum_notification',1124395696,1230159257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Forum\'\'Notification\'\'Default\'\'Forum\'\'Notification\'\'default\'\'forum\'\'notification Collaboration\'\'/\'\'Notification','000001000001000006000015'),('PBtmpl00000000table118','Three Over One (Table)','Three Over One (Table) Three Over One (Table) three over one table ','three_over_one_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Three\'\'Over\'\'One\'\'(\'\'Table\'\')\'\'Three\'\'Over\'\'One\'\'(\'\'Table\'\')\'\'three\'\'over\'\'one\'\'table Layout','000001000001000017000012'),('PBtmpl00000000table135','Side By Side (Table)','Side By Side (Table) Side By Side (Table) side by side table ','side_by_side_table',1148579525,1220655706,'3','7','12','WebGUI::Asset::Template',1,'Side\'\'By\'\'Side\'\'(\'\'Table\'\')\'\'Side\'\'By\'\'Side\'\'(\'\'Table\'\')\'\'side\'\'by\'\'side\'\'table Layout','000001000001000017000011'),('PBtmpl00000000table131','Right Column (Table)','Right Column (Table) Right Column (Table) right column table ','right_column_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Right\'\'Column\'\'(\'\'Table\'\')\'\'Right\'\'Column\'\'(\'\'Table\'\')\'\'right\'\'column\'\'table Layout','000001000001000017000010'),('PBtmpl00000000table094','News (Table)','News (Table) News (Table) news table ','news_table',1148579525,1220655704,'3','7','12','WebGUI::Asset::Template',1,'News\'\'(\'\'Table\'\')\'\'News\'\'(\'\'Table\'\')\'\'news\'\'table Layout','000001000001000017000009'),('PBtmpl00000000table125','Left Column (Table)','Left Column (Table) Left Column (Table) left column table ','left_column_table',1148579525,1220655705,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Column\'\'(\'\'Table\'\')\'\'Left\'\'Column\'\'(\'\'Table\'\')\'\'left\'\'column\'\'table Layout','000001000001000017000008'),('PBnav00000000indentnav','Indent Nav','Indent Nav Indent Nav indent nav ','indent_nav',1148579525,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Indent\'\'Nav\'\'Indent\'\'Nav\'\'indent\'\'nav Navigation','000001000001000022000028'),('PBtmpl0000000000000085','Default Email','Default Email Default Email default email ','default_email',1124395696,1202884864,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Email\'\'Default\'\'Email\'\'default\'\'email DataForm','000001000001000008000002'),('PBnav00000000000bullet','Bulleted List','Bulleted List Bulleted List bulleted list ','bulleted_list',1148579524,1148579524,'3','7','12','WebGUI::Asset::Template',1,'Bulleted\'\'List\'\'Bulleted\'\'List\'\'bulleted\'\'list Navigation','000001000001000022000027'),('StockDataTMPL000000002','StockData Default Display','StockData Default Display StockData Default Display stockdatatmpl000000002 ','stockdatatmpl000000002',1133743239,1229494994,'3','7','12','WebGUI::Asset::Template',1,'StockData\'\'Default\'\'Display\'\'StockData\'\'Default\'\'Display\'\'stockdatatmpl000000002 StockData\'\'/\'\'Display','000001000001000037000001'),('2OcUWHVsu_L1sDFzIMWYqw','TimeTracking','TimeTracking TimeTracking root import timetracking ','root/import/timetracking',1222803070,1222803070,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'TimeTracking\'\'TimeTracking\'\'root\'\'import\'\'timetracking','000001000001000042'),('PBtmpl000000000table54','Default Page (Table)','Default Page (Table) Default Page (Table) default page table ','default_page_table',1154535074,1220655704,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'(\'\'Table\'\')\'\'Default\'\'Page\'\'(\'\'Table\'\')\'\'default\'\'page\'\'table Layout','000001000001000017000013'),('PBtmpl00000000table109','One Over Three (Table)','One Over Three (Table) One Over Three (Table) one over three table ','one_over_three_table',1154535074,1220655705,'3','7','12','WebGUI::Asset::Template',1,'One\'\'Over\'\'Three\'\'(\'\'Table\'\')\'\'One\'\'Over\'\'Three\'\'(\'\'Table\'\')\'\'one\'\'over\'\'three\'\'table Layout','000001000001000017000014'),('PBtmpl0000000000000014','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template Default WebGUI Password Recovery Template default webgui password recovery template ','default_webgui_password_recovery_template',1124395696,1227218041,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'WebGUI\'\'Password\'\'Recovery\'\'Template\'\'Default\'\'WebGUI\'\'Password\'\'Recovery\'\'Template\'\'default\'\'webgui\'\'password\'\'recovery\'\'template Auth\'\'/\'\'WebGUI\'\'/\'\'Recovery2','000001000001000004000008000001'),('ProjectManagerTMPL0006','Default Resource List','Default Resource List Default Resource List default pm resource list ','default-pm-resource-list',1157679165,1157679165,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Resource\'\'List\'\'Default\'\'Resource\'\'List\'\'default\'\'pm\'\'resource\'\'list ProjectManager_resourceList','000001000001000027000005000001'),('ProjectManagerTMPL0005','Default Resource Popup','Default Resource Popup Default Resource Popup default pm resource popup ','default-pm-resource-popup',1157679165,1229579830,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Resource\'\'Popup\'\'Default\'\'Resource\'\'Popup\'\'default\'\'pm\'\'resource\'\'popup ProjectManager_resourcePopup','000001000001000027000005000002'),('PBtmpl0000000000000032','Default Thread','Default Thread Default Thread default thread ','default_thread',1124395696,1206998756,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thread\'\'Default\'\'Thread\'\'default\'\'thread Collaboration\'\'/\'\'Thread','000001000001000006000014'),('WeatherDataTmpl0000001','WeatherData Default View','WeatherData Default View WeatherData Default View weatherdatatmpl0000001 ','weatherdatatmpl0000001',1133743239,1210711353,'3','7','12','WebGUI::Asset::Template',1,'WeatherData\'\'Default\'\'View\'\'WeatherData\'\'Default\'\'View\'\'weatherdatatmpl0000001 WeatherData','000001000001000044000001'),('PBasset000000000000001','Root','Root Root root ','root',1124395696,1124395696,'3','7','3','WebGUI::Asset',1,'Root\'\'Root\'\'root','000001'),('PBrichedit000000000001','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit Content Manager\'s Rich Edit content managers rich edit ','content_managers_rich_edit',1124395696,1207240829,'3','7','12','WebGUI::Asset::RichEdit',1,'Content\'\'Manager\'\'\'\'\'s\'\'Rich\'\'Edit\'\'Content\'\'Manager\'\'\'\'\'s\'\'Rich\'\'Edit\'\'content\'\'managers\'\'rich\'\'edit','000001000001000030000001'),('PBrichedit000000000002','Forum Rich Edit','Forum Rich Edit Forum Rich Edit forum rich edit ','forum_rich_edit',1124395696,1124395696,'3','7','12','WebGUI::Asset::RichEdit',1,'Forum\'\'Rich\'\'Edit\'\'Forum\'\'Rich\'\'Edit\'\'forum\'\'rich\'\'edit','000001000001000030000002'),('SynConXSLT000000000001','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT Stylesheet RSS 0.9 XSLT xslt rss0.9.xsl ','xslt/rss0.9.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'0\'\'.\'\'9\'\'XSLT\'\'Stylesheet\'\'RSS\'\'0\'\'.\'\'9\'\'XSLT\'\'xslt\'\'rss0\'\'.\'\'9\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'0\'\'.\'\'9\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.','000001000001000040000003'),('SynConXSLT000000000002','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT Stylesheet RSS 0.91 XSLT xslt rss0.91.xsl ','xslt/rss0.91.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'0\'\'.\'\'91\'\'XSLT\'\'Stylesheet\'\'RSS\'\'0\'\'.\'\'91\'\'XSLT\'\'xslt\'\'rss0\'\'.\'\'91\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'0\'\'.\'\'91\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.','000001000001000040000004'),('SynConXSLT000000000003','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT Stylesheet RSS 1.0 XSLT xslt rss1.0.xsl ','xslt/rss1.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'1\'\'.\'\'0\'\'XSLT\'\'Stylesheet\'\'RSS\'\'1\'\'.\'\'0\'\'XSLT\'\'xslt\'\'rss1\'\'.\'\'0\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'1\'\'.\'\'0\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.\'\'(\'\')','000001000001000040000005'),('SynConXSLT000000000004','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT Stylesheet RSS 2.0 XSLT xslt rss2.0.xsl ','xslt/rss2.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',1,'RSS\'\'2\'\'.\'\'0\'\'XSLT\'\'Stylesheet\'\'RSS\'\'2\'\'.\'\'0\'\'XSLT\'\'xslt\'\'rss2\'\'.\'\'0\'\'.\'\'xsl You\'\'\'\'\'re\'\'viewing\'\'an\'\'RSS\'\'version\'\'2\'\'.\'\'0\'\'feed\'\'.\'\'Please\'\'use\'\'an\'\'RSS\'\'feed\'\'reader\'\'to\'\'view\'\'this\'\'content\'\'as\'\'intended\'\'.\'\'(\'\')','000001000001000040000006'),('vrKXEtluIhbmAS9xmPukDA','Donation (Default)','Donation (Default) Donation (Default) root import default donation template ','root/import/default-donation-template',1212092352,1226698051,'3','7','12','WebGUI::Asset::Template',1,'Donation\'\'(\'\'Default\'\')\'\'Donation\'\'(\'\'Default\'\')\'\'root\'\'import\'\'default\'\'donation\'\'template Donation','000001000001000034000010'),('eqb9sWjFEVq0yHunGV8IGw','Subscription (Default)','Subscription (Default) Subscription (Default) root import subscription default ','root/import/subscription-default',1213182595,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Subscription\'\'(\'\'Default\'\')\'\'Subscription\'\'(\'\'Default\'\')\'\'root\'\'import\'\'subscription\'\'default Subscription','000001000001000034000012'),('PBtmpl0000000000000036','Default Admin Toggle Macro','Default Admin Toggle Macro Default Admin Toggle Macro default admin toggle macro ','default_admin_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Admin\'\'Toggle\'\'Macro\'\'Default\'\'Admin\'\'Toggle\'\'Macro\'\'default\'\'admin\'\'toggle\'\'macro Macro\'\'/\'\'AdminToggle','000001000001000018000001000001'),('PBtmpl0000000000000037','Default Account Macro','Default Account Macro Default Account Macro default account macro ','default_account_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Account\'\'Macro\'\'Default\'\'Account\'\'Macro\'\'default\'\'account\'\'macro Macro\'\'/\'\'a_account','000001000001000018000002000001'),('PBtmpl0000000000000038','Default Editable Toggle Macro','Default Editable Toggle Macro Default Editable Toggle Macro default editable toggle macro ','default_editable_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Editable\'\'Toggle\'\'Macro\'\'Default\'\'Editable\'\'Toggle\'\'Macro\'\'default\'\'editable\'\'toggle\'\'macro Macro\'\'/\'\'EditableToggle','000001000001000018000003000001'),('PBtmpl0000000000000040','Default Group Add Macro','Default Group Add Macro Default Group Add Macro default group add macro ','default_group_add_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Group\'\'Add\'\'Macro\'\'Default\'\'Group\'\'Add\'\'Macro\'\'default\'\'group\'\'add\'\'macro Macro\'\'/\'\'GroupAdd','000001000001000018000005000001'),('PBtmpl0000000000000041','Default Group Delete Macro','Default Group Delete Macro Default Group Delete Macro default group delete macro ','default_group_delete_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Group\'\'Delete\'\'Macro\'\'Default\'\'Group\'\'Delete\'\'Macro\'\'default\'\'group\'\'delete\'\'macro Macro\'\'/\'\'GroupDelete','000001000001000018000006000001'),('PBtmpl0000000000000042','Default Homelink','Default Homelink Default Homelink default homelink ','default_homelink',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Homelink\'\'Default\'\'Homelink\'\'default\'\'homelink Macro\'\'/\'\'H_homeLink','000001000001000018000007000001'),('PBtmpl0000000000000043','Default LoginToggle','Default LoginToggle Default LoginToggle default logintoggle ','default_logintoggle',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'LoginToggle\'\'Default\'\'LoginToggle\'\'default\'\'logintoggle Macro\'\'/\'\'LoginToggle','000001000001000018000008000001'),('PBtmpl0000000000000045','Default Make Printable','Default Make Printable Default Make Printable default make printable ','default_make_printable',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Make\'\'Printable\'\'Default\'\'Make\'\'Printable\'\'default\'\'make\'\'printable Macro\'\'/\'\'r_printable','000001000001000018000011000001'),('PBtmpl0000000000000091','File no icon','File no icon File no icon file no icon ','file_no_icon',1124395696,1129049189,'3','7','12','WebGUI::Asset::Template',1,'File\'\'no\'\'icon\'\'File\'\'no\'\'icon\'\'file\'\'no\'\'icon Macro\'\'/\'\'File','000001000001000018000004000002'),('PBtmpl0000000000000125','Left Column','Left Column Left Column left column ','left_column',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',1,'Left\'\'Column\'\'Left\'\'Column\'\'left\'\'column Layout','000001000001000017000004'),('PBtmpl0000000000000132','Empty','Empty Empty empty ','empty',1124395696,1129049190,'3','7','12','WebGUI::Asset::Template',1,'Empty\'\'Empty\'\'empty style','000001000001000038000004'),('PBtmpl0000000000000140','Default Shortcut','Default Shortcut Default Shortcut pbtmpl0000000000000140 ','pbtmpl0000000000000140',1124395696,1129573244,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Shortcut\'\'Default\'\'Shortcut\'\'pbtmpl0000000000000140 Shortcut','000001000001000035000001'),('PBtmpl0000000000000142','Default RSS','Default RSS Default RSS pbtmpl0000000000000142 ','pbtmpl0000000000000142',1133743238,1171466654,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'RSS\'\'Default\'\'RSS\'\'pbtmpl0000000000000142 RSSCapable\'\'/\'\'RSS','000001000001000006000026'),('ZipArchiveTMPL00000001','Default Zip Archive Template','Default Zip Archive Template Default Zip Archive Template zip archive template ','zip-archive-template',1133743240,1169738426,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Zip\'\'Archive\'\'Template\'\'Default\'\'Zip\'\'Archive\'\'Template\'\'zip\'\'archive\'\'template ZipArchiveAsset','000001000001000049000001'),('PBasset000000000000002','Import Node','Import Node Import root import ','root/import',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Import\'\'Node\'\'Import\'\'root\'\'import','000001000001'),('2TqQc4OISddWCZmRY1_m8A','The Latest News','The Latest News The Latest News the latest news ','the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'The\'\'Latest\'\'News\'\'The\'\'Latest\'\'News\'\'the\'\'latest\'\'news','000001000002000003'),('68sKwDgf9cGH58-NZcU4lg','Home','Home Home home ','home',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Home\'\'Home\'\'home','000001000002'),('8Bb8gu-me2mhL3ljFyiWLg','What should you do next?','What should you do next? Your Next Step your next step ','your_next_step',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'What\'\'should\'\'you\'\'do\'\'next\'\'?\'\'Your\'\'Next\'\'Step\'\'your\'\'next\'\'step','000001000002000002'),('Swf6L8poXKc7hUaNPkBevw','Tell A Friend','Tell A Friend Tell A Friend tell a friend ','tell_a_friend',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Tell\'\'A\'\'Friend\'\'Tell\'\'A\'\'Friend\'\'tell\'\'a\'\'friend','000001000002000004'),('_iHetEvMQUOoxS-T2CM0sQ','Getting Started','Getting Started Getting Started getting started ','getting_started',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Getting\'\'Started\'\'Getting\'\'Started\'\'getting\'\'started','000001000002000001'),('x3OFY6OJh_qsXkZfPwug4A','Site Map','Site Map Site Map site map ','site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Site\'\'Map\'\'Site\'\'Map\'\'site\'\'map','000001000002000006'),('PBnav00000000000000001','crumbTrail','crumbTrail crumbTrail crumbtrail ','crumbtrail',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crumbTrail\'\'crumbTrail\'\'crumbtrail','000001000001000022000009'),('PBnav00000000000000002','SpecificSubMenuVertical','SpecificSubMenuVertical SpecificSubMenuVertical specificsubmenuvertical ','specificsubmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuVertical\'\'SpecificSubMenuVertical\'\'specificsubmenuvertical','000001000001000022000018'),('PBnav00000000000000006','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal SpecificSubMenuHorizontal specificsubmenuhorizontal ','specificsubmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuHorizontal\'\'SpecificSubMenuHorizontal\'\'specificsubmenuhorizontal','000001000001000022000019'),('PBnav00000000000000007','TopLevelMenuVertical','TopLevelMenuVertical TopLevelMenuVertical toplevelmenuvertical ','toplevelmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuVertical\'\'TopLevelMenuVertical\'\'toplevelmenuvertical','000001000001000022000020'),('PBnav00000000000000008','TopLevelMenuHorizontal','TopLevelMenuHorizontal TopLevelMenuHorizontal toplevelmenuhorizontal ','toplevelmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuHorizontal\'\'TopLevelMenuHorizontal\'\'toplevelmenuhorizontal','000001000001000022000021'),('PBnav00000000000000009','RootTab','RootTab RootTab roottab ','roottab',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab\'\'RootTab\'\'roottab','000001000001000022000022'),('PBnav00000000000000010','TopDropMenu','TopDropMenu TopDropMenu topdropmenu ','topdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopDropMenu\'\'TopDropMenu\'\'topdropmenu','000001000001000022000023'),('PBnav00000000000000011','dtree','dtree dtree dtree ','dtree',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'dtree\'\'dtree\'\'dtree','000001000001000022000024'),('PBnav00000000000000012','coolmenu','coolmenu coolmenu coolmenu ','coolmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'coolmenu\'\'coolmenu\'\'coolmenu','000001000001000022000025'),('PBnav00000000000000013','Synopsis','Synopsis Synopsis synopsis ','synopsis',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Synopsis\'\'Synopsis\'\'synopsis','000001000001000022000026'),('PBnav00000000000000014','FlexMenu','FlexMenu FlexMenu flexmenu ','flexmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'FlexMenu\'\'FlexMenu\'\'flexmenu','000001000001000022000010'),('PBnav00000000000000015','currentMenuVertical','currentMenuVertical currentMenuVertical currentmenuvertical ','currentmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuVertical\'\'currentMenuVertical\'\'currentmenuvertical','000001000001000022000011'),('PBnav00000000000000016','currentMenuHorizontal','currentMenuHorizontal currentMenuHorizontal currentmenuhorizontal ','currentmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuHorizontal\'\'currentMenuHorizontal\'\'currentmenuhorizontal','000001000001000022000012'),('PBnav00000000000000017','PreviousDropMenu','PreviousDropMenu PreviousDropMenu previousdropmenu ','previousdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'PreviousDropMenu\'\'PreviousDropMenu\'\'previousdropmenu','000001000001000022000013'),('PBnav00000000000000018','previousMenuVertical','previousMenuVertical previousMenuVertical previousmenuvertical ','previousmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuVertical\'\'previousMenuVertical\'\'previousmenuvertical','000001000001000022000014'),('PBnav00000000000000019','previousMenuHorizontal','previousMenuHorizontal previousMenuHorizontal previousmenuhorizontal ','previousmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuHorizontal\'\'previousMenuHorizontal\'\'previousmenuhorizontal','000001000001000022000015'),('PBnav00000000000000020','rootmenu','rootmenu rootmenu rootmenu ','rootmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'rootmenu\'\'rootmenu\'\'rootmenu','000001000001000022000016'),('PBnav00000000000000021','SpecificDropMenu','SpecificDropMenu SpecificDropMenu specificdropmenu ','specificdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificDropMenu\'\'SpecificDropMenu\'\'specificdropmenu','000001000001000022000017'),('pJd5TLAjfWMVXD6sCRLwUg','Site Map','Site Map Site Map site map site map ','site_map/site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Site\'\'Map\'\'Site\'\'Map\'\'site\'\'map\'\'site\'\'map','000001000002000006000001'),('fK-HMSboA3uu0c1KYkYspA','The Latest News','This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','the_latest_news/the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::SyndicatedContent',1,'The\'\'Latest\'\'News\'\'The\'\'Latest\'\'News\'\'the\'\'latest\'\'news\'\'the\'\'latest\'\'news\'\'This\'\'is\'\'the\'\'latest\'\'news\'\'from\'\'Plain\'\'Black\'\'and\'\'WebGUI\'\'pulled\'\'directly\'\'from\'\'the\'\'site\'\'every\'\'hour\'\'.','000001000002000003000001'),('WikiFrontTmpl000000001','Default Wiki Front Page','Default Wiki Front Page Default Wiki Front Page default wiki front page ','default-wiki-front-page',1165460175,1185754572,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Front\'\'Page\'\'Default\'\'Wiki\'\'Front\'\'Page\'\'default\'\'wiki\'\'front\'\'page WikiMaster_front','000001000001000048000002'),('WikiSearchTmpl00000001','Default Wiki Search','Default Wiki Search Default Wiki Search default wiki search ','default-wiki-search',1165460175,1168480840,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Search\'\'Default\'\'Wiki\'\'Search\'\'default\'\'wiki\'\'search WikiMaster_search','000001000001000048000003'),('WikiPHTmpl000000000001','Default Page History','Default Page History Default Page History default wiki page history ','default-wiki-page-history',1165460175,1165460175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Page\'\'History\'\'Default\'\'Page\'\'History\'\'default\'\'wiki\'\'page\'\'history WikiPage_pageHistory','000001000001000048000004'),('WikiPageTmpl0000000001','Default Wiki Page','Default Wiki Page Default Wiki Page default wiki page ','default-wiki-page',1165460175,1229706257,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Page\'\'Default\'\'Wiki\'\'Page\'\'default\'\'wiki\'\'page WikiPage','000001000001000048000005'),('WikiPageEditTmpl000001','Default Wiki Page Edit','Default Wiki Page Edit Default Wiki Page Edit default wiki page edit ','default-wiki-page-edit',1165460175,1221692341,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Wiki\'\'Page\'\'Edit\'\'Default\'\'Wiki\'\'Page\'\'Edit\'\'default\'\'wiki\'\'page\'\'edit WikiPage_edit','000001000001000048000006'),('WikiMPTmpl000000000001','Default Most Popular','Default Most Popular Default Most Popular default wiki most popular ','default-wiki-most-popular',1165460175,1165460175,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Most\'\'Popular\'\'Default\'\'Most\'\'Popular\'\'default\'\'wiki\'\'most\'\'popular WikiMaster_mostPopular','000001000001000048000007'),('SQLReportDownload00001','SQLReport Download Default Template','SQLReport Download Default Template untitled SQLReportDownload0001 ','SQLReportDownload0001',1171466654,1171466654,'3','7','12','WebGUI::Asset::Template',1,'SQLReport\'\'Download\'\'Default\'\'Template\'\'untitled\'\'SQLReportDownload0001 SQLReport\'\'/\'\'Download','000001000001000036000002'),('newsletter000000000001',' Summary Newsletter (default)',' Summary Newsletter (default) Summary Newsletter newsletterdefaulttemplate ','newsletterdefaulttemplate',1185754569,1185754569,'3','7','3','WebGUI::Asset::Template',1,'Summary\'\'Newsletter\'\'(\'\'default\'\')\'\'Summary\'\'Newsletter\'\'newsletterdefaulttemplate newsletter','000001000001000023000001'),('newslettercs0000000001','Newsletter Manager (default)','Newsletter Manager (default) Newsletter Manager newslettercstemplate ','newslettercstemplate',1185754569,1226896423,'3','7','3','WebGUI::Asset::Template',1,'Newsletter\'\'Manager\'\'(\'\'default\'\')\'\'Newsletter\'\'Manager\'\'newslettercstemplate newsletter','000001000001000023000002'),('newslettersubscrip0001','My Subscriptions (default)','My Subscriptions (default) My Subscriptions newslettermysubscriptionstemplate ','newslettermysubscriptionstemplate',1185754569,1221692339,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Subscriptions\'\'(\'\'default\'\')\'\'My\'\'Subscriptions\'\'newslettermysubscriptionstemplate newsletter\'\'/\'\'mysubscriptions','000001000001000023000003'),('AjhlNO3wZvN5k4i4qioWcg','Default Answer Edit','Default Answer Edit Default Answer Edit root import survey default answer edit ','root/import/survey/default-answer-edit',1226009658,1233874172,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Answer\'\'Edit\'\'Default\'\'Answer\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'answer\'\'edit Survey\'\'/\'\'Edit','000001000001000039000010'),('QHn6T9rU7KsnS3Y70KCNTg','Account','Account Account root import account ','root/import/account',1227080251,1233173545,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Account\'\'Account\'\'root\'\'import\'\'account','000001000001000001'),('HPDOcsj4gBme8D4svHodBw','Profile','Profile Profile root import account profile ','root/import/account/profile',1225404573,1225404573,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile\'\'Profile\'\'root\'\'import\'\'account\'\'profile','000001000001000001000001'),('d8jMMMRddSQ7twP4l1ZSIw','Default Survey Take','Default Survey Take Default Survey Take root import survey default survey take ','root/import/survey/default-survey-take',1227248175,1234040817,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Survey\'\'Take\'\'Default\'\'Survey\'\'Take\'\'root\'\'import\'\'survey\'\'default\'\'survey\'\'take Survey\'\'/\'\'Take','000001000001000039000006'),('WikiKeyword00000000001',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword (default) Wiki Pages By Keyword wiki master by keyword template.tmpl ','wiki-master-by-keyword-template.tmpl',1185754571,1185754571,'3','7','3','WebGUI::Asset::Template',1,'Wiki\'\'Pages\'\'By\'\'Keyword\'\'(\'\'default\'\')\'\'Wiki\'\'Pages\'\'By\'\'Keyword\'\'wiki\'\'master\'\'by\'\'keyword\'\'template\'\'.\'\'tmpl WikiMaster_byKeyword','000001000001000048000008'),('tempspace0000000000000','Tempspace','Tempspace Tempspace tempspace ','tempspace',1185754574,1185754574,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Tempspace\'\'Tempspace\'\'tempspace','000001000004'),('QpmlAiYZz6VsKBM-_0wXaw','UsersOnline Macro',' ','users-online-macro-templates',1224616691,1224616691,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'UsersOnline\'\'Macro\'\'UsersOnline\'\'Macro\'\'users\'\'online\'\'macro\'\'templates','000001000001000018000012'),('h_T2xtOxGRQ9QJOR6ebLpQ','UsersOnline Default View','UsersOnline Default View UsersOnline Default View users online macro templates usersonline default view ','users-online-macro-templates/usersonline-default-view',1224616545,1224616545,'3','7','3','WebGUI::Asset::Template',1,'UsersOnline\'\'Default\'\'View\'\'UsersOnline\'\'Default\'\'View\'\'users\'\'online\'\'macro\'\'templates\'\'usersonline\'\'default\'\'view Macro\'\'/\'\'UsersOnline','000001000001000018000012000001'),('4Ekp0kJoJllRRRo_J1Rj6w','UsersOnline Detailed View','UsersOnline Detailed View UsersOnline Detailed View users online macro templates usersonline detailed view ','users-online-macro-templates/usersonline-detailed-view',1224616672,1224616672,'3','7','3','WebGUI::Asset::Template',1,'UsersOnline\'\'Detailed\'\'View\'\'UsersOnline\'\'Detailed\'\'View\'\'users\'\'online\'\'macro\'\'templates\'\'usersonline\'\'detailed\'\'view Macro\'\'/\'\'UsersOnline','000001000001000018000012000002'),('THQhn1C-ooj-TLlEP7aIJQ','gallery-ie.css','gallery-ie.css gallery-ie.css root import gallery templates gallery ie.css ','root/import/gallery-templates/gallery-ie.css',1225313951,1225313951,'3','7','3','WebGUI::Asset::Snippet',1,'gallery\'\'-\'\'ie\'\'.\'\'css\'\'gallery\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'gallery\'\'ie\'\'.\'\'css .\'\'wgPicture\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgAlbum\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'li\'\',\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'a\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'container\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'}','000001000001000013000025'),('qsG6B24a0SC5KrhQjmdZBw','survey.css','survey.css survey.css survey.css ','survey.css',1233860274,1233860274,'3','7','12','WebGUI::Asset::Snippet',1,'survey\'\'.\'\'css\'\'survey\'\'.\'\'css\'\'survey\'\'.\'\'css body\'\'{\'\'margin\'\':\'\'0\'\';\'\'background\'\'-\'\'repeat\'\':\'\'repeat\'\'-\'\'y\'\';\'\'background\'\'-\'\'position\'\':\'\'0px\'\'0px\'\';\'\'}\'\'.\'\'survey\'\'-\'\'header\'\'{\'\'width\'\':\'\'80\'\'%\'\';\'\'height\'\':\'\'20px\'\';\'\'margin\'\'-\'\'left\'\':\'\'80px\'\';\'\'}\'\'#\'\'survey\'\'{\'\'margin\'\'-\'\'left\'\':\'\'80px\'\';\'\'width\'\':\'\'85\'\'%\'\';\'\'}\'\'div\'\'.\'\'dateanswer\'\'{\'\'min\'\'-\'\'height\'\':\'\'250px\'\';\'\'}\'\'div\'\'.\'\'slider\'\'-\'\'bg\'\'{\'\'position\'\':\'\'relative\'\';\'\'background\'\':\'\'url\'\'(\'\'/\'\'extras\'\'/\'\'wobject\'\'/\'\'Survey\'\'/\'\'bg\'\'-\'\'fader\'\'-\'\'500\'\'.\'\'gif\'\')\'\'5px\'\'0\'\'no\'\'-\'\'repeat\'\';\'\'height\'\':\'\'68px\'\';\'\'width\'\':\'\'529px\'\';\'\'}\'\'div\'\'.\'\'slider\'\'-\'\'thumb\'\'{\'\'cursor\'\':\'\'default\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'30px\'\';\'\'left\'\':\'\'4px\'\';\'\'}\'\'div\'\'.\'\'slider\'\'-\'\'min\'\'-\'\'thumb\'\'{\'\'cursor\'\':\'\'default\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'4px\'\';\'\'}\'\'div\'\'.\'\'slider\'\'-\'\'max\'\'-\'\'thumb\'\'{\'\'cursor\'\':\'\'default\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'4px\'\';\'\'}\'\'#\'\'headertitle\'\'{\'\'display\'\':\'\'none\'\';\'\'}\'\'#\'\'headertext\'\'{\'\'display\'\':\'\'none\'\';\'\'}\'\'#\'\'questions\'\'{\'\'display\'\':\'\'none\'\';\'\'}\'\'input\'\'.\'\'mcbutton\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'CCCCCC\'\';\'\'background\'\'-\'\'repeat\'\':\'\'repeat\'\'-\'\'x\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'0\'\'.\'\'5em\'\';\'\'padding\'\':\'\'.\'\'8em\'\';\'\'width\'\':\'\'60px\'\';\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'color\'\':\'\'#\'\'000000\'\';\'\'background\'\'-\'\'image\'\':\'\'url\'\'(\'\'/\'\'extras\'\'/\'\'wobject\'\'/\'\'Survey\'\'/\'\'gradient\'\'-\'\'glossy\'\'.\'\'png\'\')\'\';\'\'}\'\'input\'\'.\'\'mcbutton\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'B6D2F1\'\';\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'000000\'\';\'\'}\'\'input\'\'.\'\'mcbutton\'\'-\'\'selected\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'172D9D\'\';\'\'background\'\'-\'\'repeat\'\':\'\'repeat\'\'-\'\'x\'\';\'\'color\'\':\'\'#\'\'FFFFFF\'\';\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\':\'\'0\'\'.\'\'5em\'\';\'\'padding\'\':\'\'.\'\'8em\'\';\'\'width\'\':\'\'60px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'display\'\':\'\'block\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'image\'\':\'\'url\'\'(\'\'/\'\'extras\'\'/\'\'wobject\'\'/\'\'Survey\'\'/\'\'gradient\'\'-\'\'glossy\'\'.\'\'png\'\')\'\';\'\'background\'\'-\'\'position\'\':\'\'0px\'\'0px\'\';\'\'}\'\'/\'\'*\'\'By\'\'default\'\'the\'\'marker\'\'for\'\'invalid\'\'(\'\'required\'\')\'\'fields\'\'is\'\'a\'\'red\'\'\'\'\'*\'\'\'\'\'*\'\'/\'\'.\'\'survey\'\'-\'\'invalid\'\'-\'\'marker\'\'{\'\'color\'\':\'\'#\'\'FF0000\'\';\'\'}\'\'#\'\'survey\'\'{\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'border\'\':\'\'3px\'\'solid\'\'#\'\'1e1e1e\'\';\'\'}\'\'#\'\'survey\'\'#\'\'survey\'\'-\'\'header\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'cfcfcf\'\';\'\'padding\'\'-\'\'top\'\':\'\'1px\'\';\'\'}\'\'#\'\'survey\'\'#\'\'headertitle\'\'{\'\'padding\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'#\'\'survey\'\'#\'\'progress\'\'{\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'26px\'\';\'\'right\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'}\'\'#\'\'survey\'\'#\'\'progress\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'Progress\'\':\'\'\"\'\';\'\'}\'\'#\'\'survey\'\'#\'\'headertext\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'2px\'\'solid\'\'#\'\'1e1e1e\'\';\'\'padding\'\':\'\'5px\'\';\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'20px\'\';\'\'}\'\'#\'\'survey\'\'#\'\'questions\'\'{\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'20px\'\';\'\'}\'\'#\'\'survey\'\'.\'\'question\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'dfdfdf\'\';\'\'padding\'\':\'\'10px\'\'5px\'\'10px\'\'5px\'\';\'\'}\'\'#\'\'survey\'\'.\'\'question\'\'p\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'Q\'\':\'\'\"\'\';\'\'}\'\'#\'\'survey\'\'.\'\'scale\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'A\'\':\'\'\"\'\';\'\'}\'\'#\'\'survey\'\'#\'\'submitbutton\'\'{\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'}','000001000001000039000011'),('itransact_credentials1','ITransact Credentials (Default)','ITransact Credentials (Default) ITransact Credentials (Default) shopping cart collateral items itransact credentials ','shopping-cart-collateral-items/itransact-credentials',1228953856,1228953856,'3','7','4','WebGUI::Asset::Template',1,'ITransact\'\'Credentials\'\'(\'\'Default\'\')\'\'ITransact\'\'Credentials\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'itransact\'\'credentials Shop\'\'/\'\'Credentials','000001000001000034000018'),('1oBRscNIcFOI-pETrCOspA','Default Section Edit','Default Section Edit Default Section Edit root import survey default section edit ','root/import/survey/default-section-edit',1226009642,1232648656,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Section\'\'Edit\'\'Default\'\'Section\'\'Edit\'\'root\'\'import\'\'survey\'\'default\'\'section\'\'edit Survey\'\'/\'\'Edit','000001000001000039000008'),('gI_TxK-5S4DNuv42wpImmw','Gallery Templates',' ','root/import/gallery-templates',1197330678,1213734379,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Gallery\'\'Templates\'\'Gallery\'\'Templates\'\'root\'\'import\'\'gallery\'\'templates','000001000001000013'),('jME5BEDYVDlBZ8jIQA9-jQ','Default Gallery Search','Default Gallery Search Default Gallery Search root import gallery templates default gallery search ','root/import/gallery-templates/default-gallery-search',1197927169,1234565056,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Search\'\'Default\'\'Gallery\'\'Search\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'search Gallery\'\'/\'\'Search','000001000001000013000001'),('azCqD0IjdQSlM3ar29k5Sg','Default Gallery List Albums View','Default Gallery List Albums View Default Gallery List Albums View root import gallery templates default gallery list albums view ','root/import/gallery-templates/default-gallery-list-albums-view',1197881748,1234561066,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Albums\'\'View\'\'Default\'\'Gallery\'\'List\'\'Albums\'\'View\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'albums\'\'view Gallery\'\'/\'\'ListAlbums','000001000001000013000002'),('05FpjceLYhq4csF1Kww1KQ','Default Gallery View Album','Default Gallery View Album Default Gallery View Album root import gallery templates default gallery view album ','root/import/gallery-templates/default-gallery-view-album',1197879361,1234568028,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Default\'\'Gallery\'\'View\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album GalleryAlbum\'\'/\'\'View','000001000001000013000003'),('q5O62aH4pjUXsrQR3Pq4lw','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails Default Gallery View Album Thumbnails root import gallery templates default gallery view album thumbnails ','root/import/gallery-templates/default-gallery-view-album-thumbnails',1197825772,1234568087,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Thumbnails\'\'Default\'\'Gallery\'\'View\'\'Album\'\'Thumbnails\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album\'\'thumbnails GalleryAlbum\'\'/\'\'ViewThumbnails','000001000001000013000004'),('KAMdiUdJykjN02CPHpyZOw','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow Default Gallery View Album Slideshow root import gallery templates default gallery view album slideshow ','root/import/gallery-templates/default-gallery-view-album-slideshow',1197825787,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'Slideshow\'\'Default\'\'Gallery\'\'View\'\'Album\'\'Slideshow\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'album\'\'slideshow GalleryAlbum\'\'/\'\'ViewSlideshow','000001000001000013000005'),('OkphOEdaSGTXnFGhK4GT5A','Default Gallery List Files For User','Default Gallery List Files For User Default Gallery List Files For User root import gallery templates default gallery list files for user ','root/import/gallery-templates/default-gallery-list-files-for-user',1197825794,1234560760,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'files\'\'for\'\'user Gallery\'\'/\'\'ListFilesForUser','000001000001000013000006'),('TEId5V-jEvUULsZA0wuRuA','Default Gallery View Photo','Default Gallery View Photo Default Gallery View Photo root import gallery templates default gallery view photo ','root/import/gallery-templates/default-gallery-view-photo',1197989443,1234568469,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Photo\'\'Default\'\'Gallery\'\'View\'\'Photo\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'view\'\'photo GalleryFile\'\'/\'\'View','000001000001000013000007'),('6X-7Twabn5KKO_AbgK3PEw','Default Gallery Edit Album','Default Gallery Edit Album Default Gallery Edit Album root import gallery templates default gallery edit album ','root/import/gallery-templates/default-gallery-edit-album',1197987780,1233872216,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Album\'\'Default\'\'Gallery\'\'Edit\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'album GalleryAlbum\'\'/\'\'Edit','000001000001000013000008'),('7JCTAiu1U_bT9ldr655Blw','Default Gallery Edit Photo','Default Gallery Edit Photo Default Gallery Edit Photo root import gallery templates default gallery edit photo ','root/import/gallery-templates/default-gallery-edit-photo',1197825824,1233872075,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Photo\'\'Default\'\'Gallery\'\'Edit\'\'Photo\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'photo GalleryFile\'\'/\'\'Edit','000001000001000013000009'),('0X4Q3tBWUb_thsVbsYz9xQ','Default Gallery Add Archive','Default Gallery Add Archive Default Gallery Add Archive root import gallery templates default gallery add archive ','root/import/gallery-templates/default-gallery-add-archive',1197987372,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Add\'\'Archive\'\'Default\'\'Gallery\'\'Add\'\'Archive\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'add\'\'archive GalleryAlbum\'\'/\'\'AddArchive','000001000001000013000010'),('m3IbBavqzuKDd2PGGhKPlA','Default Gallery Make Shortcut','Default Gallery Make Shortcut Default Gallery Make Shortcut root import gallery templates default gallery make shortcut ','root/import/gallery-templates/default-gallery-make-shortcut',1197825845,1233871747,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Make\'\'Shortcut\'\'Default\'\'Gallery\'\'Make\'\'Shortcut\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'make\'\'shortcut GalleryFile\'\'/\'\'MakeShortcut','000001000001000013000011'),('UTNFeV7B_aSCRmmaFCq4Vw','Default Gallery Delete Album','Default Gallery Delete Album Default Gallery Delete Album root import gallery templates default gallery delete album ','root/import/gallery-templates/default-gallery-delete-album',1197825856,1234568788,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Delete\'\'Album\'\'Default\'\'Gallery\'\'Delete\'\'Album\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'delete\'\'album GalleryAlbum\'\'/\'\'Delete','000001000001000013000012'),('zcX-wIUct0S_np14xxOA-A','Default Gallery Delete File','Default Gallery Delete File Default Gallery Delete File root import gallery templates default gallery delete file ','root/import/gallery-templates/default-gallery-delete-file',1197825866,1234568742,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Delete\'\'File\'\'Default\'\'Gallery\'\'Delete\'\'File\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'delete\'\'file GalleryFile\'\'/\'\'Delete','000001000001000013000013'),('MBZK_LPVzqhb4TV4mMRTJg','admin_ie7.css','admin_ie7.css admin_ie7.css root import gallery templates admin ie7.css ','root/import/gallery-templates/admin_ie7.css',1197330678,1197330678,'3','7','3','WebGUI::Asset::Snippet',1,'admin_ie7\'\'.\'\'css\'\'admin_ie7\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'admin\'\'ie7\'\'.\'\'css input\'\'.\'\'captionEnter\'\'{\'\'margin\'\'-\'\'left\'\':\'\'-\'\'5px\'\';\'\'width\'\':\'\'92px\'\';\'\'}','000001000001000013000014'),('_hELmIJfgbAyXFNqPyApxQ','admin.css','admin.css admin.css root import gallery templates admin.css ','root/import/gallery-templates/admin.css',1197330678,1213309523,'3','7','3','WebGUI::Asset::Snippet',1,'admin\'\'.\'\'css\'\'admin\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'admin\'\'.\'\'css #\'\'adminWrapper\'\'{\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'2\'\';\'\'}\'\'h2\'\'{\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'}\'\'.\'\'messageStyle\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'8px\'\';\'\'}\'\'.\'\'adminButton\'\'{\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'e0e0e0\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'padding\'\':\'\'0\'\'.\'\'5em\'\'1em\'\';\'\'}\'\'.\'\'adminTable\'\'{\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'F0F0F0\'\';\'\'color\'\':\'\'black\'\';\'\'width\'\':\'\'320px\'\';\'\'padding\'\':\'\'5px\'\';\'\'}\'\'.\'\'adminTable\'\'select\'\',\'\'.\'\'adminTable\'\'input\'\',\'\'.\'\'adminTable\'\'textarea\'\'{\'\'border\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'.\'\'label\'\'{\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'1px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'galleryOrg\'\'{\'\'position\'\':\'\'relative\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'border\'\':\'\'gray\'\'solid\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\'-\'\'top\'\':\'\'3px\'\';\'\'width\'\':\'\'95\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'DEDEDE\'\'}\'\'.\'\'galleryOrg\'\'.\'\'left\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'36\'\'%\'\';\'\'}\'\'.\'\'galleryOrg\'\'.\'\'right\'\'{\'\'width\'\':\'\'63\'\'%\'\';\'\'}\'\'.\'\'galleryOrg\'\'img\'\'{\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'150px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'}\'\'.\'\'promote\'\'{\'\'margin\'\'-\'\'left\'\':\'\'3px\'\';\'\'}\'\'.\'\'promote\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'width\'\':\'\'16px\'\';\'\'}\'\'.\'\'demote\'\'{\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'}\'\'.\'\'demote\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'width\'\':\'\'16px\'\';\'\'}\'\'.\'\'delete\'\'img\'\'{\'\'height\'\':\'\'14px\'\';\'\'}\'\'.\'\'numbering\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'padding\'\':\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomRight\'\':\'\'5px\'\'}\'\'input\'\'.\'\'captionEnter\'\'{\'\'width\'\':\'\'93px\'\';\'\'clear\'\':\'\'both\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'3px\'\'}\'\'.\'\'galleryOrg\'\'button\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\':\'\'none\'\';\'\'}\'\'.\'\'galleryOrg\'\'button\'\'img\'\'{\'\'width\'\':\'\'16px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'galleryOrg\'\'.\'\'synopsis\'\'input\'\'{\'\'width\'\':\'\'80px\'\';\'\'}','000001000001000013000015'),('kaPRSaf8UKiskiGEgJgLAw','images','images images root import gallery templates images ','root/import/gallery-templates/images',1197330678,1197330678,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'gallery\'\'templates\'\'images','000001000001000013000017'),('bANo8aiAPA7aY_oQZKxIWw','rss.gif','rss.gif rss.gif root import gallery templates images rss.gif ','root/import/gallery-templates/images/rss.gif',1197330678,1197330678,'3','7','3','WebGUI::Asset::File::Image',1,'rss\'\'.\'\'gif\'\'rss\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'rss\'\'.\'\'gif','000001000001000013000017000001'),('2ci_v2d4x4uvyjTRlC49OA','moveDown.gif','moveDown.gif moveDown.gif root import gallery templates images movedown.gif ','root/import/gallery-templates/images/movedown.gif',1197330678,1209499188,'3','7','3','WebGUI::Asset::File::Image',1,'moveDown\'\'.\'\'gif\'\'moveDown\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'movedown\'\'.\'\'gif','000001000001000013000017000002'),('O-EsSzKgAk1KolFT-x_KsA','moveUp.gif','moveUp.gif moveUp.gif root import gallery templates images moveup.gif ','root/import/gallery-templates/images/moveup.gif',1197330678,1209499188,'3','7','3','WebGUI::Asset::File::Image',1,'moveUp\'\'.\'\'gif\'\'moveUp\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'moveup\'\'.\'\'gif','000001000001000013000017000003'),('fdd8tGExyVwHyrB8RBbKXg','next.gif','next.gif next.gif root import gallery templates images next.gif ','root/import/gallery-templates/images/next.gif',1197330839,1197330839,'3','7','3','WebGUI::Asset::File::Image',1,'next\'\'.\'\'gif\'\'next\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'next\'\'.\'\'gif','000001000001000013000017000004'),('BpisgHl4ZDcSECJp6oib1w','play.gif','play.gif play.gif root import gallery templates images play.gif ','root/import/gallery-templates/images/play.gif',1197330840,1197330840,'3','7','3','WebGUI::Asset::File::Image',1,'play\'\'.\'\'gif\'\'play\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'play\'\'.\'\'gif','000001000001000013000017000005'),('zshreRgPAXtnF0DtVbQ1Yg','previous.gif','previous.gif previous.gif root import gallery templates images previous.gif ','root/import/gallery-templates/images/previous.gif',1197330840,1197330840,'3','7','3','WebGUI::Asset::File::Image',1,'previous\'\'.\'\'gif\'\'previous\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'previous\'\'.\'\'gif','000001000001000013000017000006'),('mM3bjP_iG9sv5nQb4S17tQ','Default Gallery View Album RSS','Default Gallery View Album RSS Default Gallery View Album RSS root import gallery templates default gallery album rss ','root/import/gallery-templates/default-gallery-album-rss',1197879662,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'View\'\'Album\'\'RSS\'\'Default\'\'Gallery\'\'View\'\'Album\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'album\'\'rss GalleryAlbum\'\'/\'\'ViewRss','000001000001000013000018'),('ilu5BrM-VGaOsec9Lm7M6Q','Default Gallery List Albums RSS','Default Gallery List Albums RSS Default Gallery List Albums RSS root import gallery templates default gallery list albums rss ','root/import/gallery-templates/default-gallery-list-albums-rss',1197878780,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Albums\'\'RSS\'\'Default\'\'Gallery\'\'List\'\'Albums\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'albums\'\'rss Gallery\'\'/\'\'ListAlbumsRss','000001000001000013000019'),('-ANLpoTEP-n4POAdRxCzRw','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS Default Gallery List Files For User RSS root import gallery templates default gallery list files for user rss ','root/import/gallery-templates/default-gallery-list-files-for-user-rss',1197880641,1230581176,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'RSS\'\'Default\'\'Gallery\'\'List\'\'Files\'\'For\'\'User\'\'RSS\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'list\'\'files\'\'for\'\'user\'\'rss Gallery\'\'/\'\'ListFilesForUserRss','000001000001000013000020'),('OxJWQgnGsgyGohP2L3zJPQ','Default Gallery Edit Comment','Default Gallery Edit Comment Default Gallery Edit Comment root import gallery templates default gallery edit comment ','root/import/gallery-templates/default-gallery-edit-comment',1204663962,1234564647,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Gallery\'\'Edit\'\'Comment\'\'Default\'\'Gallery\'\'Edit\'\'Comment\'\'root\'\'import\'\'gallery\'\'templates\'\'default\'\'gallery\'\'edit\'\'comment GalleryFile\'\'/\'\'EditComment','000001000001000013000021'),('Tsg7xmPYv782j6IVz7yHFg','Calendar Templates','Calendar Templates Calendar Templates root import calendar templates ','root/import/calendar-templates',1204890713,1213244777,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Calendar\'\'Templates\'\'Calendar\'\'Templates\'\'root\'\'import\'\'calendar\'\'templates','000001000001000005'),('kj3b-X3i6zRKnhLb4ZiCLw','Default Calendar List View','Default Calendar List View Default Calendar List View root import calendar templates default calendar list view ','root/import/calendar-templates/default-calendar-list-view',1204890713,1222574694,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'List\'\'View\'\'Default\'\'Calendar\'\'List\'\'View\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'list\'\'view Calendar\'\'/\'\'List','000001000001000005000001'),('uRL9qtk7Rb0YRJ41LmHOJw','Default Calendar Print List View','Default Calendar Print List View Default Calendar Print List View root import calendar templates default calendar print list view ','root/import/calendar-templates/default-calendar-print-list-view',1204890713,1229311072,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'List\'\'View\'\'Default\'\'Calendar\'\'Print\'\'List\'\'View\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'list\'\'view Calendar\'\'/\'\'Print\'\'/\'\'List','000001000001000005000002'),('CalendarWeek0000000001','Default Calendar Week','Default Calendar Week Default Calendar Week root import calendar templates default calendar week ','root/import/calendar-templates/default-calendar-week',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Week\'\'Default\'\'Calendar\'\'Week\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'week Calendar\'\'/\'\'Week','000001000001000005000003'),('CalendarDay00000000001','Default Calendar Day','Default Calendar Day Default Calendar Day root import calendar templates default calendar day ','root/import/calendar-templates/default-calendar-day',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Day\'\'Default\'\'Calendar\'\'Day\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'day Calendar\'\'/\'\'Day','000001000001000005000004'),('CalendarEvent000000001','Default Calendar Event','Default Calendar Event Default Calendar Event root import calendar templates default calendar event ','root/import/calendar-templates/default-calendar-event',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Event\'\'Default\'\'Calendar\'\'Event\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'event Calendar\'\'/\'\'Event','000001000001000005000005'),('CalendarEventEdit00001','Default Calendar Event Edit','Default Calendar Event Edit Default Calendar Event Edit root import calendar templates default calendar event edit ','root/import/calendar-templates/default-calendar-event-edit',1205160982,1233698348,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Event\'\'Edit\'\'Default\'\'Calendar\'\'Event\'\'Edit\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'event\'\'edit Calendar\'\'/\'\'EventEdit','000001000001000005000006'),('CalendarMonth000000001','Default Calendar Month','Default Calendar Month Default Calendar Month root import calendar templates default calendar month ','root/import/calendar-templates/default-calendar-month',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Month\'\'Default\'\'Calendar\'\'Month\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'month Calendar\'\'/\'\'Month','000001000001000005000007'),('CalendarSearch00000001','Default Calendar Search','Default Calendar Search Default Calendar Search root import calendar templates default calendar search ','root/import/calendar-templates/default-calendar-search',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Search\'\'Default\'\'Calendar\'\'Search\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'search Calendar\'\'/\'\'Search','000001000001000005000008'),('CalendarPrintEvent0001','Default Calendar Print Event','Default Calendar Print Event Default Calendar Print Event root import calendar templates default calendar print event ','root/import/calendar-templates/default-calendar-print-event',1204890714,1215396964,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Event\'\'Default\'\'Calendar\'\'Print\'\'Event\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'event Calendar\'\'/\'\'Print\'\'/\'\'Event','000001000001000005000009'),('CalendarPrintMonth0001','Default Calendar Print Month','Default Calendar Print Month Default Calendar Print Month root import calendar templates default calendar print month ','root/import/calendar-templates/default-calendar-print-month',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Month\'\'Default\'\'Calendar\'\'Print\'\'Month\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'month Calendar\'\'/\'\'Print\'\'/\'\'Month','000001000001000005000010'),('CalendarPrintWeek00001','Default Calendar Print Week','Default Calendar Print Week Default Calendar Print Week root import calendar templates default calendar print week ','root/import/calendar-templates/default-calendar-print-week',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Week\'\'Default\'\'Calendar\'\'Print\'\'Week\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'week Calendar\'\'/\'\'Print\'\'/\'\'Week','000001000001000005000011'),('CalendarPrintDay000001','Default Calendar Print Day','Default Calendar Print Day Default Calendar Print Day root import calendar templates default calendar print day ','root/import/calendar-templates/default-calendar-print-day',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Calendar\'\'Print\'\'Day\'\'Default\'\'Calendar\'\'Print\'\'Day\'\'root\'\'import\'\'calendar\'\'templates\'\'default\'\'calendar\'\'print\'\'day Calendar\'\'/\'\'Print\'\'/\'\'Day','000001000001000005000012'),('jnYdqDkUR8x7Pv2eGR1qTA','Thingy Templates','Thingy Templates Thingy Templates root import thingy templates ','root/import/thingy-templates',1205431513,1216250666,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Thingy\'\'Templates\'\'Thingy\'\'Templates\'\'root\'\'import\'\'thingy\'\'templates','000001000001000041'),('ThingyTmpl000000000001','Default Thingy','Default Thingy Default Thingy templates thingy default ','templates/thingy-default',1205003608,1227753116,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Default\'\'Thingy\'\'templates\'\'thingy\'\'default Thingy','000001000001000041000001'),('ThingyTmpl000000000002','Default Thingy View Thing','Default Thingy View Thing Default Thingy View Thing templates thingy default view thing ','templates/thingy-default-view-thing',1205003676,1222574693,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'View\'\'Thing\'\'Default\'\'Thingy\'\'View\'\'Thing\'\'templates\'\'thingy\'\'default\'\'view\'\'thing Thingy\'\'/\'\'ViewThing','000001000001000041000002'),('ThingyTmpl000000000003','Default Thingy Edit Thing','Default Thingy Edit Thing Default Thingy Edit Thing templates thingy default edit thing ','templates/thingy-default-edit-thing',1205003711,1224518002,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Edit\'\'Thing\'\'Default\'\'Thingy\'\'Edit\'\'Thing\'\'templates\'\'thingy\'\'default\'\'edit\'\'thing Thingy\'\'/\'\'EditThing','000001000001000041000003'),('ThingyTmpl000000000004','Default Thingy Search Thing','Default Thingy Search Thing Default Thingy Search Thing templates thingy default search thing ','templates/thingy-default-search-thing',1205158717,1227044214,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Thingy\'\'Search\'\'Thing\'\'Default\'\'Thingy\'\'Search\'\'Thing\'\'templates\'\'thingy\'\'default\'\'search\'\'thing Thingy\'\'/\'\'SearchThing','000001000001000041000004'),('7fE8md51vTCcuJFOvxNaGA','thumbnails.js','thumbnails.js thumbnails.js root import gallery templates thumbnails.js ','root/import/gallery-templates/thumbnails.js',1205443600,1209503742,'3','7','3','WebGUI::Asset::Snippet',1,'thumbnails\'\'.\'\'js\'\'thumbnails\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'thumbnails\'\'.\'\'js /\'\'/\'\'Depends\'\'on\'\'BrowserDetect\'\'.\'\'js\'\'/\'\'/\'\'Make\'\'the\'\'thumbnails\'\'a\'\'little\'\'bigger\'\'while\'\'the\'\'mouse\'\'is\'\'over\'\'them\'\'function\'\'scaleThumbUp\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'/\'\'/\'\'IE6\'\'doesn\'\'\'\'\'t\'\'like\'\'to\'\'do\'\'the\'\'right\'\'thing\'\'with\'\'the\'\'CSS\'\'stuff\'\'below\'\',\'\'exclude\'\'it\'\'if\'\'(\'\'BrowserDetect\'\')\'\'{\'\'if\'\'(\'\'BrowserDetect\'\'.\'\'browser\'\'=\'\'=\'\'\"\'\'Explorer\'\'\"\'\'&\'\'&\'\'BrowserDetect\'\'.\'\'version\'\'<\'\'7\'\')\'\'{\'\'return\'\';\'\'}\'\'}\'\'/\'\'/\'\'Make\'\'a\'\'new\'\'image\'\'with\'\'the\'\'same\'\'image\'\'src\'\'as\'\'the\'\'anchor\'\'var\'\'oldImage\'\'=\'\'anchor\'\'.\'\'getElementsByTagName\'\'(\'\'\"\'\'img\'\'\"\'\')\'\'[0]\'\';\'\'var\'\'newContainer\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'div\'\'\"\'\')\'\';\'\'newContainer\'\'.\'\'className\'\'=\'\'\"\'\'thumb\'\'-\'\'popup\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'position\'\'=\'\'\"\'\'absolute\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'zIndex\'\'=\'\'\"\'\'1\'\'\"\'\';\'\'var\'\'newWidth\'\'=\'\'oldImage\'\'.\'\'offsetWidth\'\'*\'\'3\'\';\'\'var\'\'newHeight\'\'=\'\'oldImage\'\'.\'\'offsetHeight\'\'*\'\'3\'\';\'\'var\'\'newLeft\'\'=\'\'(\'\'(\'\'anchor\'\'.\'\'offsetLeft\'\'+\'\'(\'\'anchor\'\'.\'\'offsetWidth\'\'/\'\'2\'\')\'\')\'\'-\'\'(\'\'newWidth\'\'/\'\'2\'\')\'\')\'\';\'\'var\'\'newTop\'\'=\'\'(\'\'(\'\'anchor\'\'.\'\'offsetTop\'\'+\'\'(\'\'anchor\'\'.\'\'offsetHeight\'\'/\'\'2\'\')\'\')\'\'-\'\'(\'\'newHeight\'\'/\'\'2\'\')\'\')\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'left\'\'=\'\'newLeft\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'top\'\'=\'\'newTop\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'width\'\'=\'\'newWidth\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newContainer\'\'.\'\'style\'\'.\'\'height\'\'=\'\'newHeight\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'var\'\'newImage\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'img\'\'\"\'\')\'\';\'\'newImage\'\'.\'\'src\'\'=\'\'oldImage\'\'.\'\'src\'\';\'\'newImage\'\'.\'\'style\'\'.\'\'width\'\'=\'\'\"\'\'100\'\'%\'\'\"\'\';\'\'newImage\'\'.\'\'style\'\'.\'\'height\'\'=\'\'\"\'\'100\'\'%\'\'\"\'\';\'\'newContainer\'\'.\'\'appendChild\'\'(\'\'newImage\'\')\'\';\'\'/\'\'/\'\'Make\'\'some\'\'text\'\'for\'\'the\'\'caption\'\'var\'\'caption\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'div\'\'\"\'\')\'\';\'\'caption\'\'.\'\'appendChild\'\'(\'\'document\'\'.\'\'createTextNode\'\'(\'\'anchor\'\'.\'\'title\'\')\'\')\'\';\'\'caption\'\'.\'\'className\'\'=\'\'\"\'\'caption\'\'\"\'\';\'\'newContainer\'\'.\'\'appendChild\'\'(\'\'caption\'\')\'\';\'\'var\'\'newBox\'\'=\'\'document\'\'.\'\'createElement\'\'(\'\'\"\'\'a\'\'\"\'\')\'\';\'\'newBox\'\'.\'\'href\'\'=\'\'anchor\'\'.\'\'href\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'position\'\'=\'\'\"\'\'absolute\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'zIndex\'\'=\'\'\"\'\'10\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'left\'\'=\'\'(\'\'anchor\'\'.\'\'offsetLeft\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'top\'\'=\'\'(\'\'anchor\'\'.\'\'offsetTop\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'height\'\'=\'\'(\'\'anchor\'\'.\'\'offsetHeight\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'width\'\'=\'\'(\'\'anchor\'\'.\'\'offsetWidth\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'newBox\'\'.\'\'style\'\'.\'\'border\'\'=\'\'\"\'\'1px\'\'solid\'\'transparent\'\'\"\'\';\'\'anchor\'\'.\'\'parentNode\'\'.\'\'appendChild\'\'(\'\'newContainer\'\')\'\';\'\'anchor\'\'.\'\'parentNode\'\'.\'\'appendChild\'\'(\'\'newBox\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newBox\'\',\'\'\"\'\'click\'\'\"\'\',\'\'function\'\'(\'\')\'\'{\'\'window\'\'.\'\'location\'\'.\'\'href\'\'=\'\'anchor\'\'.\'\'href\'\'}\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newContainer\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'scaleThumbDown\'\',\'\'[\'\'newBox\'\',\'\'newContainer\'\',\'\'caption\'\']\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'newBox\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'scaleThumbDown\'\',\'\'[\'\'newBox\'\',\'\'newContainer\'\',\'\'caption\'\']\'\')\'\';\'\'}\'\'function\'\'scaleThumbDown\'\'(\'\'e\'\',\'\'elements\'\')\'\'{\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'elements\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'elements[i]\'\'.\'\'parentNode\'\'.\'\'removeChild\'\'(\'\'elements[i]\'\')\'\';\'\'}\'\'}\'\'var\'\'anchorTimeout\'\';\'\'function\'\'enterAnchor\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'if\'\'(\'\'typeof\'\'anchorTimeout\'\'!\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'clearTimeout\'\'(\'\'anchorTimeout\'\')\'\';\'\'}\'\'anchorTimeout\'\'=\'\'setTimeout\'\'(\'\'function\'\'(\'\')\'\'{\'\'scaleThumbUp\'\'(\'\'e\'\',\'\'anchor\'\')\'\';\'\'}\'\',\'\'150\'\')\'\';\'\'}\'\'function\'\'leaveAnchor\'\'(\'\'e\'\',\'\'anchor\'\')\'\'{\'\'if\'\'(\'\'typeof\'\'anchorTimeout\'\'!\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'clearTimeout\'\'(\'\'anchorTimeout\'\')\'\';\'\'}\'\'}\'\'function\'\'initThumb\'\'(\'\')\'\'{\'\'var\'\'anchors\'\'=\'\'YAHOO\'\'.\'\'util\'\'.\'\'Dom\'\'.\'\'getElementsByClassName\'\'(\'\'\"\'\'thumb\'\'\"\'\')\'\';\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'anchors\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'anchors[i]\'\',\'\'\"\'\'mouseover\'\'\"\'\',\'\'enterAnchor\'\',\'\'anchors[i]\'\')\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'anchors[i]\'\',\'\'\"\'\'mouseout\'\'\"\'\',\'\'leaveAnchor\'\',\'\'anchors[i]\'\')\'\';\'\'}\'\'}\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'onDOMReady\'\'(\'\'initThumb\'\')\'\';','000001000001000013000022'),('1oGhfj00KkCzP1ez01AfKA','slideshow.js','slideshow.js slideshow.js root import gallery templates slideshow.js ','root/import/gallery-templates/slideshow.js',1205635970,1218582812,'3','7','3','WebGUI::Asset::Snippet',1,'slideshow\'\'.\'\'js\'\'slideshow\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'slideshow\'\'.\'\'js if\'\'(\'\'typeof\'\'WebGUI\'\'=\'\'=\'\'\"\'\'undefined\'\'\"\'\')\'\'{\'\'WebGUI\'\'=\'\'{\'\'}\'\';\'\'}\'\'/\'\'*\'\'*\'\'WebGUI\'\'.\'\'Slideshow\'\'(\'\'config\'\')\'\'Configure\'\'and\'\'return\'\'a\'\'new\'\'Slideshow\'\'object\'\'.\'\'config\'\'is\'\'an\'\'object\'\'with\'\'the\'\'following\'\'properties\'\':\'\'containerId\'\'-\'\'The\'\'ID\'\'of\'\'the\'\'element\'\'that\'\'contains\'\'the\'\'Slideshow\'\'items\'\'.\'\'Defaults\'\'to\'\'\"\'\'slideshow\'\'-\'\'container\'\'\"\'\'currentIndex\'\'-\'\'The\'\'index\'\'of\'\'the\'\'first\'\'item\'\'in\'\'the\'\'Slideshow\'\'.\'\'Defaults\'\'to\'\'0\'\'isPlaying\'\'-\'\'If\'\'true\'\',\'\'the\'\'slideshow\'\'will\'\'begin\'\'immediately\'\'itemClassName\'\'-\'\'The\'\'class\'\'name\'\'of\'\'the\'\'slideshow\'\'items\'\'.\'\'Defaults\'\'to\'\'\"\'\'slideshow\'\'-\'\'item\'\'\"\'\'nextButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'go\'\'to\'\'the\'\'next\'\'item\'\'pauseImageSrc\'\'-\'\'The\'\'URL\'\'to\'\'the\'\'pause\'\'button\'\'image\'\'playDelay\'\'-\'\'The\'\'delay\'\'(\'\'in\'\'milliseconds\'\')\'\'between\'\'slides\'\'.\'\'Defaults\'\'to\'\'5000\'\'playImageSrc\'\'-\'\'The\'\'URL\'\'to\'\'the\'\'play\'\'button\'\'image\'\'playPauseButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'toggle\'\'between\'\'play\'\'and\'\'pause\'\'previousButtonId\'\'-\'\'The\'\'id\'\'of\'\'the\'\'button\'\'to\'\'go\'\'to\'\'the\'\'previous\'\'item\'\'wrap\'\'-\'\'If\'\'true\'\',\'\'the\'\'slideshow\'\'will\'\'wrap\'\'around\'\'*\'\'*\'\'*\'\'Control\'\'the\'\'slideshow\'\'To\'\'control\'\'the\'\'slideshow\'\',\'\'you\'\'can\'\'use\'\'the\'\'following\'\'methods\'\':\'\'next\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'next\'\'slide\'\'previous\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'previous\'\'slide\'\'play\'\'(\'\')\'\'-\'\'Play\'\'the\'\'slideshow\'\'pause\'\'(\'\')\'\'-\'\'Pause\'\'the\'\'slideshow\'\'togglePlay\'\'(\'\')\'\'-\'\'If\'\'it\'\'\'\'\'s\'\'playing\'\',\'\'pause\'\'it\'\'.\'\'If\'\'it\'\'\'\'\'s\'\'paused\'\',\'\'play\'\'it\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'=\'\'function\'\'(\'\'config\'\')\'\'{\'\'this\'\'.\'\'containerId\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'containerId\'\'?\'\'config\'\'.\'\'containerId\'\':\'\'\"\'\'slideshow\'\'-\'\'container\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'currentIndex\'\'?\'\'config\'\'.\'\'currentIndex\'\':\'\'0\'\';\'\'this\'\'.\'\'isPlaying\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'isPlaying\'\'?\'\'config\'\'.\'\'isPlaying\'\':\'\'false\'\';\'\'this\'\'.\'\'itemClassName\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'itemClassName\'\'?\'\'config\'\'.\'\'itemClassName\'\':\'\'\"\'\'slideshow\'\'-\'\'item\'\'\"\'\';\'\'this\'\'.\'\'nextButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'nextButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'pauseImageSrc\'\'=\'\'config\'\'?\'\'config\'\'.\'\'pauseImageSrc\'\':\'\'undefined\'\';\'\'this\'\'.\'\'playDelay\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'playDelay\'\'?\'\'config\'\'.\'\'playDelay\'\':\'\'5000\'\';\'\'this\'\'.\'\'playImageSrc\'\'=\'\'config\'\'?\'\'config\'\'.\'\'playImageSrc\'\':\'\'undefined\'\';\'\'this\'\'.\'\'playPauseButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'playPauseButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'previousButtonId\'\'=\'\'config\'\'?\'\'config\'\'.\'\'previousButtonId\'\':\'\'undefined\'\';\'\'this\'\'.\'\'wrap\'\'=\'\'config\'\'&\'\'&\'\'config\'\'.\'\'wrap\'\'?\'\'config\'\'.\'\'wrap\'\':\'\'false\'\';\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'onDOMReady\'\'(\'\'this\'\'.\'\'init\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'clearPlayTimeout\'\'(\'\')\'\'Clears\'\'the\'\'timeout\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'clearPlayTimeout\'\'=\'\'function\'\'(\'\')\'\'{\'\'clearTimeout\'\'(\'\'this\'\'.\'\'playTimeout\'\')\'\';\'\'this\'\'.\'\'playTimeout\'\'=\'\'undefined\'\';\'\'}\'\'/\'\'*\'\'*\'\'doPlayTick\'\'(\'\'self\'\')\'\'Performs\'\'the\'\'action\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'and\'\'start\'\'a\'\'new\'\'timeout\'\'.\'\'self\'\'is\'\'a\'\'new\'\'reference\'\'to\'\'the\'\'object\'\'to\'\'get\'\'around\'\'the\'\'scoping\'\'issues\'\'with\'\'setTimeout\'\'(\'\')\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'doPlayTick\'\'=\'\'function\'\'(\'\'self\'\')\'\'{\'\'self\'\'.\'\'showNext\'\'(\'\')\'\';\'\'self\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'getSlideshowContainer\'\'(\'\')\'\'Returns\'\'the\'\'HTMLElement\'\'for\'\'the\'\'Slideshow\'\'container\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'getSlideshowContainer\'\'=\'\'function\'\'(\'\')\'\'{\'\'return\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'containerId\'\')\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'getSlideshowItems\'\'(\'\')\'\'Returns\'\'an\'\'array\'\'of\'\'HTMLElements\'\'for\'\'the\'\'Slideshow\'\'\'\'\'s\'\'items\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'getSlideshowItems\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'YAHOO\'\'.\'\'util\'\'.\'\'Dom\'\'.\'\'getElementsByClassName\'\'(\'\'this\'\'.\'\'itemClassName\'\',\'\'undefined\'\',\'\'this\'\'.\'\'getSlideshowContainer\'\'(\'\')\'\')\'\';\'\'return\'\'items\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'init\'\'(\'\')\'\'Initialize\'\'the\'\'slideshow\'\'.\'\'Performed\'\'after\'\'the\'\'DOM\'\'is\'\'ready\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'init\'\'=\'\'function\'\'(\'\')\'\'{\'\'/\'\'/\'\'Add\'\'handlers\'\'to\'\'buttons\'\'if\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'togglePlay\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'if\'\'(\'\'this\'\'.\'\'nextButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'nextButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'next\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'if\'\'(\'\'this\'\'.\'\'previousButtonId\'\')\'\'{\'\'YAHOO\'\'.\'\'util\'\'.\'\'Event\'\'.\'\'addListener\'\'(\'\'this\'\'.\'\'previousButtonId\'\',\'\'\"\'\'click\'\'\"\'\',\'\'this\'\'.\'\'previous\'\',\'\'this\'\',\'\'true\'\')\'\';\'\'}\'\'/\'\'/\'\'Hide\'\'all\'\'but\'\'the\'\'currentIndex\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i\'\'<\'\'items\'\'.\'\'length\'\';\'\'i\'\'+\'\'+\'\')\'\'{\'\'if\'\'(\'\'i\'\'!\'\'=\'\'this\'\'.\'\'currentIndex\'\')\'\'{\'\'items[\'\'i\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'}\'\'else\'\'{\'\'items[\'\'i\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'}\'\'}\'\'/\'\'/\'\'Start\'\'it\'\'off\'\'if\'\'necessary\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'next\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'and\'\'go\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'next\'\'=\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'this\'\'.\'\'showNext\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'play\'\'(\'\')\'\'Start\'\'the\'\'slideshow\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'play\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'!\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'isPlaying\'\'=\'\'true\'\';\'\'this\'\'.\'\'setPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\'/\'\'*\'\'*\'\'previous\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'and\'\'show\'\'the\'\'previous\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'previous\'\'=\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'this\'\'.\'\'showPrevious\'\'(\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'pause\'\'(\'\')\'\'Pause\'\'the\'\'slideshow\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'pause\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\')\'\'{\'\'this\'\'.\'\'isPlaying\'\'=\'\'false\'\';\'\'this\'\'.\'\'clearPlayTimeout\'\'(\'\')\'\';\'\'this\'\'.\'\'updatePlayPauseButton\'\'(\'\')\'\';\'\'}\'\'}\'\'/\'\'*\'\'*\'\'setPlayTimeout\'\'(\'\')\'\'Sets\'\'the\'\'timeout\'\'to\'\'move\'\'to\'\'the\'\'next\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'setPlayTimeout\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'self\'\'=\'\'this\'\';\'\'this\'\'.\'\'playTimeout\'\'=\'\'setTimeout\'\'(\'\'function\'\'(\'\')\'\'{\'\'self\'\'.\'\'doPlayTick\'\'(\'\'self\'\')\'\'}\'\',\'\'this\'\'.\'\'playDelay\'\')\'\';\'\'}\'\'/\'\'*\'\'*\'\'showNext\'\'(\'\')\'\'Show\'\'the\'\'next\'\'slide\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'showNext\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'var\'\'hideIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\';\'\'var\'\'showIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\'+\'\'1\'\';\'\'/\'\'/\'\'Wrap\'\'around\'\'if\'\'(\'\'this\'\'.\'\'wrap\'\'&\'\'&\'\'showIndex\'\'>\'\'=\'\'items\'\'.\'\'length\'\')\'\'{\'\'showIndex\'\'=\'\'0\'\';\'\'}\'\'/\'\'/\'\'Don\'\'\'\'\'t\'\'allow\'\'going\'\'past\'\'the\'\'last\'\'item\'\'else\'\'if\'\'(\'\'showIndex\'\'>\'\'=\'\'items\'\'.\'\'length\'\')\'\'{\'\'return\'\';\'\'}\'\'/\'\'/\'\'Do\'\'the\'\'switch\'\'if\'\'(\'\'items[\'\'hideIndex\'\']\'\')\'\'items[\'\'hideIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'if\'\'(\'\'items[\'\'showIndex\'\']\'\')\'\'{\'\'items[\'\'showIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'showIndex\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'showPrevious\'\'(\'\')\'\'Show\'\'the\'\'previous\'\'slide\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'showPrevious\'\'=\'\'function\'\'(\'\')\'\'{\'\'var\'\'items\'\'=\'\'this\'\'.\'\'getSlideshowItems\'\'(\'\')\'\';\'\'var\'\'hideIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\';\'\'var\'\'showIndex\'\'=\'\'this\'\'.\'\'currentIndex\'\'-\'\'1\'\';\'\'/\'\'/\'\'Wrap\'\'around\'\'if\'\'(\'\'this\'\'.\'\'wrap\'\'&\'\'&\'\'showIndex\'\'<\'\'0\'\')\'\'{\'\'showIndex\'\'=\'\'items\'\'.\'\'length\'\'-\'\'1\'\';\'\'}\'\'/\'\'/\'\'Don\'\'\'\'\'t\'\'allow\'\'going\'\'past\'\'the\'\'last\'\'item\'\'else\'\'if\'\'(\'\'showIndex\'\'<\'\'0\'\')\'\'{\'\'return\'\';\'\'}\'\'/\'\'/\'\'Do\'\'the\'\'switch\'\'items[\'\'hideIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'none\'\'\"\'\';\'\'items[\'\'showIndex\'\']\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\"\'\'block\'\'\"\'\';\'\'this\'\'.\'\'currentIndex\'\'=\'\'showIndex\'\';\'\'}\'\';\'\'/\'\'*\'\'*\'\'togglePlay\'\'(\'\')\'\'If\'\'it\'\'\'\'\'s\'\'paused\'\',\'\'play\'\'it\'\'.\'\'If\'\'it\'\'\'\'\'s\'\'playing\'\',\'\'pause\'\'it\'\'.\'\'Return\'\'true\'\'if\'\'the\'\'slideshow\'\'is\'\'now\'\'playing\'\'.\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'togglePlay\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\'=\'\'=\'\'false\'\')\'\'{\'\'this\'\'.\'\'play\'\'(\'\')\'\';\'\'return\'\'true\'\';\'\'}\'\'else\'\'{\'\'this\'\'.\'\'pause\'\'(\'\')\'\';\'\'}\'\'}\'\';\'\'/\'\'*\'\'*\'\'updatePlayPauseButton\'\'(\'\')\'\'Update\'\'the\'\'Play\'\'/\'\'Pause\'\'button\'\'to\'\'have\'\'the\'\'correct\'\'image\'\'*\'\'/\'\'WebGUI\'\'.\'\'Slideshow\'\'.\'\'prototype\'\'.\'\'updatePlayPauseButton\'\'=\'\'function\'\'(\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'{\'\'if\'\'(\'\'this\'\'.\'\'isPlaying\'\'&\'\'&\'\'this\'\'.\'\'playImageSrc\'\')\'\'{\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'.\'\'src\'\'=\'\'this\'\'.\'\'pauseImageSrc\'\';\'\'}\'\'else\'\'if\'\'(\'\'this\'\'.\'\'pauseImageSrc\'\')\'\'{\'\'document\'\'.\'\'getElementById\'\'(\'\'this\'\'.\'\'playPauseButtonId\'\')\'\'.\'\'src\'\'=\'\'this\'\'.\'\'playImageSrc\'\';\'\'}\'\'}\'\'}\'\';','000001000001000013000023'),('3qiVYhNTXMVC5hfsumVHgg','browserdetect.js','browserdetect.js browserdetect.js root import gallery templates browserdetect.js ','root/import/gallery-templates/browserdetect.js',1206743306,1206743306,'3','7','3','WebGUI::Asset::Snippet',1,'browserdetect\'\'.\'\'js\'\'browserdetect\'\'.\'\'js\'\'root\'\'import\'\'gallery\'\'templates\'\'browserdetect\'\'.\'\'js var\'\'BrowserDetect\'\'=\'\'{\'\'init\'\':\'\'function\'\'(\'\')\'\'{\'\'this\'\'.\'\'browser\'\'=\'\'this\'\'.\'\'searchString\'\'(\'\'this\'\'.\'\'dataBrowser\'\')\'\'||\'\'\"\'\'An\'\'unknown\'\'browser\'\'\"\'\';\'\'this\'\'.\'\'version\'\'=\'\'this\'\'.\'\'searchVersion\'\'(\'\'navigator\'\'.\'\'userAgent\'\')\'\'||\'\'this\'\'.\'\'searchVersion\'\'(\'\'navigator\'\'.\'\'appVersion\'\')\'\'||\'\'\"\'\'an\'\'unknown\'\'version\'\'\"\'\';\'\'this\'\'.\'\'OS\'\'=\'\'this\'\'.\'\'searchString\'\'(\'\'this\'\'.\'\'dataOS\'\')\'\'||\'\'\"\'\'an\'\'unknown\'\'OS\'\'\"\'\';\'\'}\'\',\'\'searchString\'\':\'\'function\'\'(\'\'data\'\')\'\'{\'\'for\'\'(\'\'var\'\'i\'\'=\'\'0\'\';\'\'i','000001000001000013000024'),('usuxw9V3jN4d4pujRiEYxg','css03-ie.css','css03-ie.css css03-ie.css style3 css03 ie.css ','style3/css03-ie.css',1209494150,1209494150,'3','7','12','WebGUI::Asset::Snippet',1,'css03\'\'-\'\'ie\'\'.\'\'css\'\'css03\'\'-\'\'ie\'\'.\'\'css\'\'style3\'\'css03\'\'ie\'\'.\'\'css #\'\'contentArea\'\'{\'\'height\'\':\'\'500px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'300px\'\';\'\'}','000001000001000047000023'),('POVcY79vIqAHR8OfGt36aw','pagination_button.jpg','pagination_button.jpg pagination_button.jpg root import gallery templates images pagination button.jpg ','root/import/gallery-templates/images/pagination_button.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_button\'\'.\'\'jpg\'\'pagination_button\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pagination\'\'button\'\'.\'\'jpg','000001000001000013000017000007'),('hIB-z34r8Xl-vYVYCkKr-w','bar-btn-r.jpg','bar-btn-r.jpg bar-btn-r.jpg root import gallery templates images bar btn r.jpg ','root/import/gallery-templates/images/bar-btn-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'r\'\'.\'\'jpg','000001000001000013000017000008'),('-mPUoFlYcjqjPUPRLAlxNQ','search-field-r.jpg','search-field-r.jpg search-field-r.jpg root import gallery templates images search field r.jpg ','root/import/gallery-templates/images/search-field-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'-\'\'r\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'r\'\'.\'\'jpg','000001000001000013000017000009'),('MDpUOR-N8KMyt1J7Hh_h4w','bar-btn.jpg','bar-btn.jpg bar-btn.jpg root import gallery templates images bar btn.jpg ','root/import/gallery-templates/images/bar-btn.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'.\'\'jpg','000001000001000013000017000010'),('YfXKByTwDZVituMc4h13Dg','pagination_bg.jpg','pagination_bg.jpg pagination_bg.jpg root import gallery templates images pagination bg.jpg ','root/import/gallery-templates/images/pagination_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_bg\'\'.\'\'jpg\'\'pagination_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pagination\'\'bg\'\'.\'\'jpg','000001000001000013000017000011'),('esko_HSU0Gh-uJZ1h3xRmQ','search-field-l.jpg','search-field-l.jpg search-field-l.jpg root import gallery templates images search field l.jpg ','root/import/gallery-templates/images/search-field-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'-\'\'l\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'l\'\'.\'\'jpg','000001000001000013000017000012'),('oSqpGswzpBG_ErdfYwIO8A','top_bg.jpg','top_bg.jpg top_bg.jpg root import gallery templates images top bg.jpg ','root/import/gallery-templates/images/top_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg\'\'.\'\'jpg\'\'top_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'top\'\'bg\'\'.\'\'jpg','000001000001000013000017000013'),('MXJklShZvLLB_DSnZQmXrQ','title_bg.jpg','title_bg.jpg title_bg.jpg root import gallery templates images title bg.jpg ','root/import/gallery-templates/images/title_bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'title_bg\'\'.\'\'jpg\'\'title_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'title\'\'bg\'\'.\'\'jpg','000001000001000013000017000014'),('BthxD5oJ0idmsyI3ioA2FA','bar-btn-l.jpg','bar-btn-l.jpg bar-btn-l.jpg root import gallery templates images bar btn l.jpg ','root/import/gallery-templates/images/bar-btn-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'bar\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'bar\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'bar\'\'btn\'\'l\'\'.\'\'jpg','000001000001000013000017000015'),('aZ-1HYQamkRHYXvzAra8WQ','search-field.jpg','search-field.jpg search-field.jpg root import gallery templates images search field.jpg ','root/import/gallery-templates/images/search-field.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'field\'\'.\'\'jpg\'\'search\'\'-\'\'field\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'search\'\'field\'\'.\'\'jpg','000001000001000013000017000016'),('eRkb94OYcS5AdcrrerOP5Q','rss.gif','rss.gif rss.gif root import gallery templates images rss2.gif ','root/import/gallery-templates/images/rss2.gif',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'rss\'\'.\'\'gif\'\'rss\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'rss2\'\'.\'\'gif','000001000001000013000017000017'),('TbnkjAJQEASORXIpYqDkcA','blank-image.jpg','blank-image.jpg blank-image.jpg root import gallery templates images blank image.jpg ','root/import/gallery-templates/images/blank-image.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'blank\'\'-\'\'image\'\'.\'\'jpg\'\'blank\'\'-\'\'image\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'blank\'\'image\'\'.\'\'jpg','000001000001000013000017000018'),('er-3faBjY-hhlDcc5aKqdQ','top_bg.jpg','top_bg.jpg top_bg.jpg root import gallery templates images top bg2.jpg ','root/import/gallery-templates/images/top_bg2.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg\'\'.\'\'jpg\'\'top_bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'top\'\'bg2\'\'.\'\'jpg','000001000001000013000017000019'),('8bFsu2FJUqHRUiHcozcVFw','sub-btn-l.jpg','sub-btn-l.jpg sub-btn-l.jpg root import gallery templates images sub btn l.jpg ','root/import/gallery-templates/images/sub-btn-l.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'-\'\'l\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'l\'\'.\'\'jpg','000001000001000013000017000020'),('34Aayx5eA320D8VfhdfDBw','sub-btn-r.jpg','sub-btn-r.jpg sub-btn-r.jpg root import gallery templates images sub btn r.jpg ','root/import/gallery-templates/images/sub-btn-r.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'-\'\'r\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'r\'\'.\'\'jpg','000001000001000013000017000021'),('TlhKOVmWblZOsAdqmhEpeg','sub-btn.jpg','sub-btn.jpg sub-btn.jpg root import gallery templates images sub btn.jpg ','root/import/gallery-templates/images/sub-btn.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'sub\'\'-\'\'btn\'\'.\'\'jpg\'\'sub\'\'-\'\'btn\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'sub\'\'btn\'\'.\'\'jpg','000001000001000013000017000022'),('Nx0ypjO3cN6QdZUBUEE0lA','pic-title-bg.jpg','pic-title-bg.jpg pic-title-bg.jpg root import gallery templates images pic title bg.jpg ','root/import/gallery-templates/images/pic-title-bg.jpg',1209499189,1209499189,'3','7','12','WebGUI::Asset::File::Image',1,'pic\'\'-\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'pic\'\'-\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'pic\'\'title\'\'bg\'\'.\'\'jpg','000001000001000013000017000023'),('CmFZLN7iPS7XXvUEsxKPKA','row-2.jpg','row-2.jpg row-2.jpg root import gallery templates images row 2.jpg ','root/import/gallery-templates/images/row-2.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'2\'\'.\'\'jpg\'\'row\'\'-\'\'2\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'row\'\'2\'\'.\'\'jpg','000001000001000013000017000024'),('v_XBgwwZqgW1D5s4y05qfg','addtl-info.gif','addtl-info.gif addtl-info.gif root import gallery templates images addtl info.gif ','root/import/gallery-templates/images/addtl-info.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'addtl\'\'-\'\'info\'\'.\'\'gif\'\'addtl\'\'-\'\'info\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'addtl\'\'info\'\'.\'\'gif','000001000001000013000017000025'),('4TdAkKoQbSCvI7QWcW889A','row-1.jpg','row-1.jpg row-1.jpg root import gallery templates images row 1.jpg ','root/import/gallery-templates/images/row-1.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'1\'\'.\'\'jpg\'\'row\'\'-\'\'1\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'row\'\'1\'\'.\'\'jpg','000001000001000013000017000026'),('SAgK6eDPCG1cgkJ59WapHQ','prev-btn.gif','prev-btn.gif prev-btn.gif root import gallery templates images prev btn.gif ','root/import/gallery-templates/images/prev-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'prev\'\'-\'\'btn\'\'.\'\'gif\'\'prev\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'prev\'\'btn\'\'.\'\'gif','000001000001000013000017000027'),('XJYLuvGy9ubF7JNKyINtpA','play-btn.gif','play-btn.gif play-btn.gif root import gallery templates images play btn.gif ','root/import/gallery-templates/images/play-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'play\'\'-\'\'btn\'\'.\'\'gif\'\'play\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'play\'\'btn\'\'.\'\'gif','000001000001000013000017000028'),('RWj7hyv2SpZuXxwj1Wocug','next-btn.gif','next-btn.gif next-btn.gif root import gallery templates images next btn.gif ','root/import/gallery-templates/images/next-btn.gif',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'next\'\'-\'\'btn\'\'.\'\'gif\'\'next\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'next\'\'btn\'\'.\'\'gif','000001000001000013000017000029'),('aq8QElnlm3YufAoxRz9Pcg','data-bg.jpg','data-bg.jpg data-bg.jpg root import gallery templates images data bg.jpg ','root/import/gallery-templates/images/data-bg.jpg',1209499190,1209499190,'3','7','12','WebGUI::Asset::File::Image',1,'data\'\'-\'\'bg\'\'.\'\'jpg\'\'data\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'gallery\'\'templates\'\'images\'\'data\'\'bg\'\'.\'\'jpg','000001000001000013000017000030'),('6D4Z-oruXPS6OlH_Kx8pBg','images','images images root import thingy templates images ','root/import/thingy-templates/images',1209509389,1209509389,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'thingy\'\'templates\'\'images','000001000001000041000005'),('hQ7z33_jOYkQ8WNX5xy9Sw','style-button.gif','style-button.gif style-button.gif root import thingy templates images style button.gif ','root/import/thingy-templates/images/style-button.gif',1209509455,1209509455,'3','7','12','WebGUI::Asset::File::Image',1,'style\'\'-\'\'button\'\'.\'\'gif\'\'style\'\'-\'\'button\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'style\'\'button\'\'.\'\'gif','000001000001000041000005000001'),('vWW_DcHiYSrKZOkkIfEfcQ','row-2.jpg','row-2.jpg row-2.jpg root import thingy templates images row 2.jpg ','root/import/thingy-templates/images/row-2.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'2\'\'.\'\'jpg\'\'row\'\'-\'\'2\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'row\'\'2\'\'.\'\'jpg','000001000001000041000005000002'),('_bPYzRA87NTAUIKlfrJMHg','row-1.jpg','row-1.jpg row-1.jpg root import thingy templates images row 1.jpg ','root/import/thingy-templates/images/row-1.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row\'\'-\'\'1\'\'.\'\'jpg\'\'row\'\'-\'\'1\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'row\'\'1\'\'.\'\'jpg','000001000001000041000005000003'),('nJjZHRwdDs5MAZYsAyioHw','title-bg.jpg','title-bg.jpg title-bg.jpg root import thingy templates images title bg.jpg ','root/import/thingy-templates/images/title-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'title\'\'-\'\'bg\'\'.\'\'jpg\'\'title\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'title\'\'bg\'\'.\'\'jpg','000001000001000041000005000004'),('8hxfkrJPeFVRWF5piCNJ1A','field-bg.jpg','field-bg.jpg field-bg.jpg root import thingy templates images field bg.jpg ','root/import/thingy-templates/images/field-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'field\'\'-\'\'bg\'\'.\'\'jpg\'\'field\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'field\'\'bg\'\'.\'\'jpg','000001000001000041000005000005'),('Osx7WN52iIKHZFT4vqUBHQ','search-btn.gif','search-btn.gif search-btn.gif root import thingy templates images search btn.gif ','root/import/thingy-templates/images/search-btn.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'search\'\'-\'\'btn\'\'.\'\'gif\'\'search\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'search\'\'btn\'\'.\'\'gif','000001000001000041000005000006'),('oWff8fGzRdHPyq5VNREe9Q','top-bg.jpg','top-bg.jpg top-bg.jpg root import thingy templates images top bg.jpg ','root/import/thingy-templates/images/top-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'top\'\'-\'\'bg\'\'.\'\'jpg\'\'top\'\'-\'\'bg\'\'.\'\'jpg\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'top\'\'bg\'\'.\'\'jpg','000001000001000041000005000007'),('uqbkvb1b9443VvfkyRz95w','save-button.gif','save-button.gif save-button.gif root import thingy templates images save button.gif ','root/import/thingy-templates/images/save-button.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'save\'\'-\'\'button\'\'.\'\'gif\'\'save\'\'-\'\'button\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'save\'\'button\'\'.\'\'gif','000001000001000041000005000008'),('8YiMkcz32xalkAn3WBLpag','go-btn.gif','go-btn.gif go-btn.gif root import thingy templates images go btn.gif ','root/import/thingy-templates/images/go-btn.gif',1210181860,1210181860,'3','7','12','WebGUI::Asset::File::Image',1,'go\'\'-\'\'btn\'\'.\'\'gif\'\'go\'\'-\'\'btn\'\'.\'\'gif\'\'root\'\'import\'\'thingy\'\'templates\'\'images\'\'go\'\'btn\'\'.\'\'gif','000001000001000041000005000009'),('3n3H85BsdeRQ0I08WmvlOg','thingy.css','thingy.css thingy.css root import thingy templates thingy.css ','root/import/thingy-templates/thingy.css',1212091492,1216227244,'3','7','12','WebGUI::Asset::Snippet',1,'thingy\'\'.\'\'css\'\'thingy\'\'.\'\'css\'\'root\'\'import\'\'thingy\'\'templates\'\'thingy\'\'.\'\'css .\'\'wgThingy\'\'{\'\'margin\'\':\'\'5px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'styleButton\'\'{\'\'color\'\':\'\'black\'\';\'\'margin\'\':\'\'0px\'\'5px\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'spacerOne\'\'{\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'rowOne\'\',\'\'.\'\'wgThingy\'\'*\'\'tr\'\'.\'\'rowOne\'\'td\'\'{\'\'background\'\':\'\'#\'\'EEEEEE\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'color\'\':\'\'#\'\'000\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'rowTwo\'\',\'\'.\'\'wgThingy\'\'*\'\'tr\'\'.\'\'rowTwo\'\'td\'\'{\'\'background\'\':\'\'#\'\'DBDBDB\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'DDDDDD\'\'1px\'\';\'\'color\'\':\'\'#\'\'000\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgThingsWrapper\'\'img\'\'{\'\'display\'\':\'\'block\'\';\'\'vertical\'\'-\'\'align\'\':\'\'center\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgThingsWrapper\'\'.\'\'label\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'}\'\'.\'\'wgThingy\'\'h2\'\'.\'\'title\'\'{\'\'background\'\':\'\'#\'\'000\'\';\'\'height\'\':\'\'42px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'span\'\'.\'\'smaller\'\'{\'\'font\'\'-\'\'size\'\':\'\'13px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'wgThingy\'\'.\'\'controls\'\'{\'\'line\'\'-\'\'height\'\':\'\'35px\'\';\'\'height\'\':\'\'35px\'\';\'\'background\'\':\'\'#\'\'f1f1f1\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgThingy\'\'*\'\'.\'\'label\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'.\'\'wgThingy\'\'.\'\'label\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'searchTable\'\'*\'\'input\'\',\'\'.\'\'editThing\'\'*\'\'input\'\'{\'\'background\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'}\'\'.\'\'editThing\'\'{\'\'margin\'\'-\'\'top\'\':\'\'15px\'\';\'\'}\'\'#\'\'thingyList\'\',\'\'#\'\'thingyList\'\'*\'\'{\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'#\'\'thingyList\'\'{\'\'position\'\':\'\'relative\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'visited\'\'{\'\'padding\'\':\'\'2px\'\'25px\'\'2px\'\'2px\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'thingy\'\'-\'\'templates\'\'/\'\'images\'\'/\'\'go\'\'-\'\'btn\'\'.\'\'gif\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\'right\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\',\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'0px\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'goButton\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'width\'\':\'\'300px\'\';\'\'z\'\'-\'\'index\'\':\'\'5000\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'27px\'\';\'\'left\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'727272\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'12px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'12px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}','000001000001000041000006'),('5m5I7__l40C4hhv4ydqAHQ','thingy-ie.css','thingy-ie.css thingy-ie.css root import thingy templates thingy ie.css ','root/import/thingy-templates/thingy-ie.css',1210181698,1216227786,'3','7','12','WebGUI::Asset::Snippet',1,'thingy\'\'-\'\'ie\'\'.\'\'css\'\'thingy\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'thingy\'\'templates\'\'thingy\'\'ie\'\'.\'\'css #\'\'thingyList\'\'.\'\'things\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'width\'\':\'\'200px\'\';\'\'z\'\'-\'\'index\'\':\'\'5000\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'27px\'\';\'\'left\'\':\'\'20px\'\';\'\'border\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'top\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'link\'\',\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'a2a2a2\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'727272\'\'1px\'\';\'\'line\'\'-\'\'height\'\':\'\'12px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'12px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'a2a2a2\'\';\'\'width\'\':\'\'190px\'\';\'\'}\'\'#\'\'thingyList\'\'.\'\'things\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'}','000001000001000041000007'),('4qh0kIsFUdd4Ox-Iu1JZgg','EMS',' ','root/import/ems',1208725439,1208725439,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EMS\'\'EMS\'\'root\'\'import\'\'ems','000001000001000010'),('2rC4ErZ3c77OJzJm7O5s3w','EMS Badge Listing (default)','EMS Badge Listing (default) EMS Badge Listing (default) root import ems ems badge listing default ','root/import/ems/ems-badge-listing-default',1208721232,1224723218,'3','7','12','WebGUI::Asset::Template',1,'EMS\'\'Badge\'\'Listing\'\'(\'\'default\'\')\'\'EMS\'\'Badge\'\'Listing\'\'(\'\'default\'\')\'\'root\'\'import\'\'ems\'\'ems\'\'badge\'\'listing\'\'default EMS','000001000001000010000003'),('PsFn7dJt4wMwBa8hiE3hOA','Print Badge (Default)','Print Badge (Default) Print Badge (Default) root import ems print badge default ','root/import/ems/print-badge-default',1208558071,1208558071,'3','7','12','WebGUI::Asset::Template',1,'Print\'\'Badge\'\'(\'\'Default\'\')\'\'Print\'\'Badge\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'print\'\'badge\'\'default EMS\'\'/\'\'PrintBadge','000001000001000010000004'),('yBwydfooiLvhEFawJb0VTQ','Print Ticket (Default)','Print Ticket (Default) Print Ticket (Default) root import ems print ticket default ','root/import/ems/print-ticket-default',1208629936,1208629936,'3','7','12','WebGUI::Asset::Template',1,'Print\'\'Ticket\'\'(\'\'Default\'\')\'\'Print\'\'Ticket\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'print\'\'ticket\'\'default EMS\'\'/\'\'PrintTicket','000001000001000010000005'),('63ix2-hU0FchXGIWkG3tow','Flat Discount (Default)','Flat Discount (Default) Flat Discount (Default) root import flat discount default ','root/import/flat-discount-default',1209588387,1216169693,'3','7','12','WebGUI::Asset::Template',1,'Flat\'\'Discount\'\'(\'\'Default\'\')\'\'Flat\'\'Discount\'\'(\'\'Default\'\')\'\'root\'\'import\'\'flat\'\'discount\'\'default FlatDiscount','000001000001000034000011'),('gbnRhcWNk1iQe32LFEB5eQ','Shelf','Shelf Shelf root import shelf2 ','root/import/shelf2',1210779723,1212086102,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shelf\'\'Shelf\'\'root\'\'import\'\'shelf2','000001000001000033'),('1XOJDcg_ITRYwVM-QnIcPw','shelf.css','shelf.css shelf.css root import shelf2 shelf.css ','root/import/shelf2/shelf.css',1210779441,1219175575,'3','7','12','WebGUI::Asset::Snippet',1,'shelf\'\'.\'\'css\'\'shelf\'\'.\'\'css\'\'root\'\'import\'\'shelf2\'\'shelf\'\'.\'\'css .\'\'wgShelf\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\',\'\'verdana\'\';\'\'margin\'\':\'\'15px\'\'0px\'\';\'\'}\'\'.\'\'wgShelf\'\'h2\'\'{\'\'background\'\':\'\'black\'\';\'\'padding\'\':\'\'5px\'\';\'\'padding\'\'-\'\'left\'\':\'\'15px\'\';\'\'line\'\'-\'\'height\'\':\'\'32px\'\';\'\'color\'\':\'\'white\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'32px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'wgShelves\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'height\'\':\'\'29px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'29px\'\';\'\'padding\'\'-\'\'left\'\':\'\'30px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'{\'\'margin\'\':\'\'15px\'\';\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'width\'\':\'\'200px\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'thumbnail\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'margin\'\':\'\'3px\'\';\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'{\'\'background\'\':\'\'#\'\'e1e1e1\'\';\'\'height\'\':\'\'30px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'24px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'link\'\',\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'000\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'price\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}','000001000001000033000003'),('C5fPz-Wg85vkYRvCdl-Xqw','UserList','UserList UserList root import userlist ','root/import/userlist',1212160830,1212160830,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'UserList\'\'UserList\'\'root\'\'import\'\'userlist','000001000001000043'),('aNmgn0cd6tldmC1FpW4KbA','Shop','Shop Shop shopping cart collateral items ','shopping-cart-collateral-items',1213122695,1213122695,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Shop\'\'Shop\'\'shopping\'\'cart\'\'collateral\'\'items','000001000001000034'),('2q5fxatSFLgIhXaUX-oSvg','bottom-left.jpg','bottom-left.jpg bottom-left.jpg shopping cart collateral items bottom left.jpg ','shopping-cart-collateral-items/bottom-left.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'bottom\'\'-\'\'left\'\'.\'\'jpg\'\'bottom\'\'-\'\'left\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'bottom\'\'left\'\'.\'\'jpg','000001000001000034000001'),('_d5WTkKjnwct-_Dk7gZHvQ','bottom-right.jpg','bottom-right.jpg bottom-right.jpg shopping cart collateral items bottom right.jpg ','shopping-cart-collateral-items/bottom-right.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'bottom\'\'-\'\'right\'\'.\'\'jpg\'\'bottom\'\'-\'\'right\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'bottom\'\'right\'\'.\'\'jpg','000001000001000034000002'),('Iz2mUR3jCPKyemwAea4b2g','input_bg.jpg','input_bg.jpg input_bg.jpg shopping cart collateral items input bg.jpg ','shopping-cart-collateral-items/input_bg.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'input_bg\'\'.\'\'jpg\'\'input_bg\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'input\'\'bg\'\'.\'\'jpg','000001000001000034000003'),('JU9bjsLRoWj7GVHs__prig','top-left.jpg','top-left.jpg top-left.jpg shopping cart collateral items top left.jpg ','shopping-cart-collateral-items/top-left.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'top\'\'-\'\'left\'\'.\'\'jpg\'\'top\'\'-\'\'left\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'top\'\'left\'\'.\'\'jpg','000001000001000034000004'),('noOlnjQGexHg8c4bGVUo9g','top-right.jpg','top-right.jpg top-right.jpg shopping cart collateral items top right.jpg ','shopping-cart-collateral-items/top-right.jpg',1204149033,1204149033,'3','7','3','WebGUI::Asset::File::Image',1,'top\'\'-\'\'right\'\'.\'\'jpg\'\'top\'\'-\'\'right\'\'.\'\'jpg\'\'shopping\'\'cart\'\'collateral\'\'items\'\'top\'\'right\'\'.\'\'jpg','000001000001000034000005'),('aIpCmr9Hi__vgdZnDTz1jw','Cart (Default)','Cart (Default) Cart (Default) default shopping cart template ','default-shopping-cart-template',1209921197,1227539574,'3','7','3','WebGUI::Asset::Template',1,'Cart\'\'(\'\'Default\'\')\'\'Cart\'\'(\'\'Default\'\')\'\'default\'\'shopping\'\'cart\'\'template Shop\'\'/\'\'Cart','000001000001000034000006'),('4e-_rNs6mSWedZhQ_V5kJA','shelf-ie.css','shelf-ie.css shelf-ie.css root import shelf2 shelf ie.css ','root/import/shelf2/shelf-ie.css',1210779672,1210779672,'3','7','12','WebGUI::Asset::Snippet',1,'shelf\'\'-\'\'ie\'\'.\'\'css\'\'shelf\'\'-\'\'ie\'\'.\'\'css\'\'root\'\'import\'\'shelf2\'\'shelf\'\'ie\'\'.\'\'css .\'\'wgShelf\'\'.\'\'product\'\'{\'\'margin\'\':\'\'15px\'\';\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'float\'\':\'\'left\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'min\'\'-\'\'height\'\':\'\'100px\'\';\'\'min\'\'-\'\'width\'\':\'\'200px\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'100px\'\';\'\'}\'\'.\'\'wgShelf\'\'.\'\'product\'\'.\'\'link\'\'{\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'shelf2\'\'/\'\'images\'\'/\'\'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\'top\'\'right\'\';\'\'height\'\':\'\'30px\'\';\'\'padding\'\':\'\'3px\'\';\'\'line\'\'-\'\'height\'\':\'\'24px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}','000001000001000033000004'),('2gtFt7c0qAFNU3BG_uvNvg','My Purchases (Default)','My Purchases (Default) My Purchases (Default) shopping cart collateral items my purchases default ','shopping-cart-collateral-items/my-purchases-default',1211824430,1222574694,'3','7','3','WebGUI::Asset::Template',1,'My\'\'Purchases\'\'(\'\'Default\'\')\'\'My\'\'Purchases\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'my\'\'purchases\'\'default Shop\'\'/\'\'MyPurchases','000001000001000034000008'),('bPz1yk6Y9uwMDMBcmMsSCg','Email Receipt (Default)','Email Receipt (Default) Email Receipt (Default) shopping cart collateral items email receipt default ','shopping-cart-collateral-items/email-receipt-default',1211829604,1211829604,'3','7','3','WebGUI::Asset::Template',1,'Email\'\'Receipt\'\'(\'\'Default\'\')\'\'Email\'\'Receipt\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'email\'\'receipt\'\'default Shop\'\'/\'\'EmailReceipt','000001000001000034000009'),('EBlxJpZQ9o-8VBOaGQbChA','MiniCart','MiniCart MiniCart shopping cart collateral items minicart ','shopping-cart-collateral-items/minicart',1212093746,1212093746,'3','7','3','WebGUI::Asset::Template',1,'MiniCart\'\'MiniCart\'\'shopping\'\'cart\'\'collateral\'\'items\'\'minicart Shop\'\'/\'\'MiniCart','000001000001000034000014'),('PBtmpl0000000000000053','Subscription code redemption','Subscription code redemption Subscription code redemption subscription code redemption ','subscription_code_redemption',1124395696,1154535074,'3','7','12','WebGUI::Asset::Template',1,'Subscription\'\'code\'\'redemption\'\'Subscription\'\'code\'\'redemption\'\'subscription\'\'code\'\'redemption Operation\'\'/\'\'RedeemSubscription','000001000001000034000017'),('6tK47xsaIH-ELw0IBo0uRQ','images','images images root import shelf2 images ','root/import/shelf2/images',1210777115,1210777115,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'shelf2\'\'images','000001000001000033000001'),('XNd7a_g_cTvJVYrVHcx2Mw','Address (Default)','Address (Default) Address (Default) shopping cart collateral items address default ','shopping-cart-collateral-items/address-default',1212099009,1224606020,'3','7','3','WebGUI::Asset::Template',1,'Address\'\'(\'\'Default\'\')\'\'Address\'\'(\'\'Default\'\')\'\'shopping\'\'cart\'\'collateral\'\'items\'\'address\'\'default Shop\'\'/\'\'Address','000001000001000034000007'),('_bZJ9LA_KNekZiFPaP2SeQ','shelf-titles.jpg','shelf-titles.jpg shelf-titles.jpg root import shelf2 images shelf titles.jpg ','root/import/shelf2/images/shelf-titles.jpg',1210777868,1210777868,'3','7','12','WebGUI::Asset::File::Image',1,'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\'shelf\'\'-\'\'titles\'\'.\'\'jpg\'\'root\'\'import\'\'shelf2\'\'images\'\'shelf\'\'titles\'\'.\'\'jpg','000001000001000033000001000001'),('nFen0xjkZn8WkpM93C9ceQ','Shelf (Default)','Shelf (Default) Shelf (Default) root import shelf default ','root/import/shelf-default',1210779326,1229117831,'3','7','12','WebGUI::Asset::Template',1,'Shelf\'\'(\'\'Default\'\')\'\'Shelf\'\'(\'\'Default\'\')\'\'root\'\'import\'\'shelf\'\'default Shelf','000001000001000033000002'),('mTOiwwk3q4k9g5-XykXhPA','Documentation','With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation. ','documentation',1215717999,1218149728,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Documentation\'\'Documentation\'\'documentation\'\'With\'\'any\'\'large\'\'system\'\',\'\'having\'\'the\'\'right\'\'documentation\'\'to\'\'get\'\'you\'\'started\'\'is\'\'mandatory\'\'.\'\'The\'\'good\'\'news\'\'is\'\'that\'\'WebGUI\'\'has\'\'abundant\'\'documentation\'\'.','000001000002000005'),('j_1qEqM6iLfQLiR6VKy0aA','Free Documentation','There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction. \n\n\n\nPrimer - A download','documentation/free-documentation',1215718151,1215718151,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Free\'\'Documentation\'\'Free\'\'Documentation\'\'documentation\'\'free\'\'documentation\'\'There\'\'are\'\'hundreds\'\'of\'\'pages\'\'of\'\'free\'\'documentation\'\'available\'\'for\'\'WebGUI\'\',\'\'provided\'\'by\'\'both\'\'Plain\'\'Black\'\'and\'\'the\'\'community\'\'at\'\'large\'\'.\'\'The\'\'following\'\'list\'\'is\'\'by\'\'no\'\'means\'\'comprehensive\'\',\'\'but\'\'it\'\'should\'\'get\'\'you\'\'started\'\'in\'\'the\'\'right\'\'direction\'\'.\'\'Primer\'\'-\'\'A\'\'downloadable\'\'PDF\'\'that\'\'shows\'\'you\'\'the\'\'basics\'\'of\'\'publishing\'\'content\'\'in\'\'WebGUI\'\'.\'\'Wiki\'\'-\'\'Hundreds\'\'of\'\'pages\'\'of\'\'WebGUI\'\'community\'\'contributed\'\'content\'\'featuring\'\'a\'\'variety\'\'of\'\'tutorials\'\'.\'\'Worldwide\'\'-\'\'A\'\'collection\'\'of\'\'WebGUI\'\'related\'\'web\'\'sites\'\'from\'\'all\'\'over\'\'the\'\'world\'\'that\'\'have\'\'documentation\'\'and\'\'other\'\'resources\'\'for\'\'WebGUI\'\'.\'\'API\'\'Docs\'\'-\'\'The\'\'documentation\'\'of\'\'all\'\'of\'\'the\'\'WebGUI\'\'source\'\'code\'\'.\'\'Template\'\'Help\'\'-\'\'The\'\'documentation\'\'of\'\'all\'\'of\'\'WebGUI\'\'\'\'\'s\'\'template\'\'variables\'\'. ','000001000002000005000001'),('o_pq_e4vRyhMOKFzs61eag','book-covers.jpg','book-covers.jpg book-covers.jpg documentation book covers.jpg ','documentation/book-covers.jpg',1215714957,1215714957,'3','7','3','WebGUI::Asset::File::Image',1,'book\'\'-\'\'covers\'\'.\'\'jpg\'\'book\'\'-\'\'covers\'\'.\'\'jpg\'\'documentation\'\'book\'\'covers\'\'.\'\'jpg','000001000002000005000002'),('diZvW4bSgZWwyyGP3qXi1g','Commercial Documentation','Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of t','documentation/commercial-documentation',1215717972,1215717972,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Commercial\'\'Documentation\'\'Commercial\'\'Documentation\'\'documentation\'\'commercial\'\'documentation\'\'Plain\'\'Black\'\'has\'\'created\'\'a\'\'whole\'\'line\'\'of\'\'commercial\'\'books\'\'which\'\'total\'\'over\'\'1500\'\'pages\'\'of\'\'detailed\'\'documentation\'\'about\'\'WebGUI\'\'.\'\'Both\'\'black\'\'and\'\'white\'\'and\'\'full\'\'color\'\'editions\'\'of\'\'these\'\'books\'\'are\'\'available\'\',\'\'and\'\'they\'\'are\'\'updated\'\'frequently\'\'to\'\'keep\'\'you\'\'on\'\'top\'\'of\'\'the\'\'latest\'\'WebGUI\'\'features\'\'.\'\'Visit\'\'the\'\'book\'\'store\'\'today\'\'to\'\'stock\'\'your\'\'WebGUI\'\'library\'\'.\'\'Other\'\'than\'\'hands\'\'on\'\'training\'\',\'\'there\'\'is\'\'no\'\'better\'\'way\'\'to\'\'hone\'\'your\'\'WebGUI\'\'skills\'\'.\'\'No\'\'matter\'\'what\'\'your\'\'need\'\',\'\'Plain\'\'Black\'\'has\'\'created\'\'a\'\'book\'\'that\'\'\'\'\'s\'\'right\'\'for\'\'you\'\'and\'\'is\'\'creating\'\'new\'\'books\'\'each\'\'year\'\'. ','000001000002000005000003'),('PBEmsBadgeTemplate0000','Default EMS Badge Template','Default EMS Badge Template Default EMS Badge Template default emsbadge ','default_emsbadge',1221077977,1221692339,'3','7','4','WebGUI::Asset::Template',1,'Default\'\'EMS\'\'Badge\'\'Template\'\'Default\'\'EMS\'\'Badge\'\'Template\'\'default\'\'emsbadge EMSBadge','000001000001000010000006'),('9A-mg2gwWmaYi9o_1C7ArQ','dashboard','dashboard dashboard root import projectmanager dashboard ','root/import/projectmanager/dashboard',1147642478,1222803338,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'dashboard\'\'dashboard\'\'root\'\'import\'\'projectmanager\'\'dashboard','000001000001000027000001'),('yD1SMHelczihzjEmx6eXBA','editTask','editTask editTask root import projectmanager edittask ','root/import/projectmanager/edittask',1147642478,1222803342,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'editTask\'\'editTask\'\'root\'\'import\'\'projectmanager\'\'edittask','000001000001000027000002'),('pV7GnZdpjR3XpZaSINIoeg','gantt','gantt gantt root import projectmanager gantt ','root/import/projectmanager/gantt',1147642478,1222803347,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'gantt\'\'gantt\'\'root\'\'import\'\'projectmanager\'\'gantt','000001000001000027000003'),('71e17KeduiXgODLMlUxiow','project','project project root import projectmanager project ','root/import/projectmanager/project',1147642479,1222803352,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'project\'\'project\'\'root\'\'import\'\'projectmanager\'\'project','000001000001000027000004'),('vTymIDYL2YqEh6PV50F7ew','manager','manager manager root import timetracking manager ','root/import/timetracking/manager',1147642482,1222803302,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'manager\'\'manager\'\'root\'\'import\'\'timetracking\'\'manager','000001000001000042000001'),('lo1ac3BsoJx3ijGQ3gR-bQ','row','row row root import timetracking row ','root/import/timetracking/row',1147642482,1222803309,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'row\'\'row\'\'root\'\'import\'\'timetracking\'\'row','000001000001000042000002'),('huASapWvFDzqwOSbcN-JFQ','user','user user root import timetracking user ','root/import/timetracking/user',1147642483,1222803313,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'user\'\'user\'\'root\'\'import\'\'timetracking\'\'user','000001000001000042000003'),('xSmREZO3GNzK3M5PaueOOQ','LDAP/Account','LDAP/Account LDAP/Account root import auth ldap account ','root/import/auth/ldap/account',1147642466,1222803378,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Account\'\'LDAP\'\'/\'\'Account\'\'root\'\'import\'\'auth\'\'ldap\'\'account','000001000001000004000001'),('0bx-xoL8TSXXubFuqKAoVQ','LDAP/Create','LDAP/Create LDAP/Create root import auth ldap create ','root/import/auth/ldap/create',1147642466,1222803383,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Create\'\'LDAP\'\'/\'\'Create\'\'root\'\'import\'\'auth\'\'ldap\'\'create','000001000001000004000002'),('taX2UYkFF21ALpFZY2rhMw','LDAP/Login','LDAP/Login LDAP/Login root import auth ldap login ','root/import/auth/ldap/login',1147642466,1222803387,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP\'\'/\'\'Login\'\'LDAP\'\'/\'\'Login\'\'root\'\'import\'\'auth\'\'ldap\'\'login','000001000001000004000003'),('K0q_N885Httqev1VCqUWxg','WebGUI/Account','WebGUI/Account WebGUI/Account root import auth webgui account ','root/import/auth/webgui/account',1147642466,1222803391,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Account\'\'WebGUI\'\'/\'\'Account\'\'root\'\'import\'\'auth\'\'webgui\'\'account','000001000001000004000004'),('fq1ZkYhH24R5tb96kuT10Q','WebGUI/Create','WebGUI/Create WebGUI/Create root import auth webgui create ','root/import/auth/webgui/create',1147642466,1222803395,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Create\'\'WebGUI\'\'/\'\'Create\'\'root\'\'import\'\'auth\'\'webgui\'\'create','000001000001000004000005'),('oHk7fAFhEEkB7dHzi0QOQA','WebGUI/Expired','WebGUI/Expired WebGUI/Expired root import auth webgui expired ','root/import/auth/webgui/expired',1147642466,1222803399,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Expired\'\'WebGUI\'\'/\'\'Expired\'\'root\'\'import\'\'auth\'\'webgui\'\'expired','000001000001000004000006'),('9M-lrlPQWeeNWfvnDnK_Xg','WebGUI/Login','WebGUI/Login WebGUI/Login root import auth webgui login ','root/import/auth/webgui/login',1147642466,1222803405,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Login\'\'WebGUI\'\'/\'\'Login\'\'root\'\'import\'\'auth\'\'webgui\'\'login','000001000001000004000007'),('_gBYAdTcbkiyamnqi2Xskg','WebGUI/Recovery','WebGUI/Recovery WebGUI/Recovery root import auth webgui recovery ','root/import/auth/webgui/recovery',1147642466,1222803409,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI\'\'/\'\'Recovery\'\'WebGUI\'\'/\'\'Recovery\'\'root\'\'import\'\'auth\'\'webgui\'\'recovery','000001000001000004000008'),('tBL7BWiQRZFed2Y-Zjo9tQ','AdminToggle','AdminToggle AdminToggle root import macro admintoggle ','root/import/macro/admintoggle',1147642471,1222803200,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminToggle\'\'AdminToggle\'\'root\'\'import\'\'macro\'\'admintoggle','000001000001000018000001'),('GdkQpvjRtJqtzOUbwIIQRA','a_account','a_account a_account root import macro a account ','root/import/macro/a_account',1147642471,1222803205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'a_account\'\'a_account\'\'root\'\'import\'\'macro\'\'a\'\'account','000001000001000018000002'),('tnc5iYyynX2hfdEs9D3P8w','EditableToggle','EditableToggle EditableToggle root import macro editabletoggle ','root/import/macro/editabletoggle',1147642472,1222803213,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EditableToggle\'\'EditableToggle\'\'root\'\'import\'\'macro\'\'editabletoggle','000001000001000018000003'),('vgXdBcFTqU7h4wBG1ewdBw','File','File File root import macro file ','root/import/macro/file',1147642472,1222803217,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'File\'\'File\'\'root\'\'import\'\'macro\'\'file','000001000001000018000004'),('hcFlqnXlsmC1ujN6Id0F0A','GroupAdd','GroupAdd GroupAdd root import macro groupadd ','root/import/macro/groupadd',1147642473,1222803234,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupAdd\'\'GroupAdd\'\'root\'\'import\'\'macro\'\'groupadd','000001000001000018000005'),('eRJR52fvlaxfetv3DQkQYw','GroupDelete','GroupDelete GroupDelete root import macro groupdelete ','root/import/macro/groupdelete',1147642473,1222803238,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupDelete\'\'GroupDelete\'\'root\'\'import\'\'macro\'\'groupdelete','000001000001000018000006'),('5HIDHq5lAWHV5gpYGS0zLg','H_homeLink','H_homeLink H_homeLink root import macro h homelink ','root/import/macro/h_homelink',1147642473,1222803244,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'H_homeLink\'\'H_homeLink\'\'root\'\'import\'\'macro\'\'h\'\'homelink','000001000001000018000007'),('rYEFwXXo0tkGhQTcbDibvg','LoginToggle','LoginToggle LoginToggle root import macro logintoggle ','root/import/macro/logintoggle',1147642473,1222803249,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LoginToggle\'\'LoginToggle\'\'root\'\'import\'\'macro\'\'logintoggle','000001000001000018000008'),('V3l5S5TtI7wMm1WpIMhvOA','L_loginBox','L_loginBox L_loginBox root import macro l loginbox ','root/import/macro/l_loginbox',1147642473,1222803253,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'L_loginBox\'\'L_loginBox\'\'root\'\'import\'\'macro\'\'l\'\'loginbox','000001000001000018000009'),('nqNbSUAhk9Vd1zda2SCz9A','RandomThread','RandomThread RandomThread root import macro randomthread ','root/import/macro/randomthread',1147642474,1222803258,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RandomThread\'\'RandomThread\'\'root\'\'import\'\'macro\'\'randomthread','000001000001000018000010'),('y8XkRdxIperLKkJ3bL5sSQ','r_printable','r_printable r_printable root import macro r printable ','root/import/macro/r_printable',1147642474,1222803264,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'r_printable\'\'r_printable\'\'root\'\'import\'\'macro\'\'r\'\'printable','000001000001000018000011'),('UserListTmpl0000000002','UserList with search field selection','UserList with search field selection UserList with search field selection root import userlist userlist with search field selection ','root/import/userlist/userlist-with-search-field-selection',1212000800,1228125752,'3','7','12','WebGUI::Asset::Template',1,'UserList\'\'with\'\'search\'\'field\'\'selection\'\'UserList\'\'with\'\'search\'\'field\'\'selection\'\'root\'\'import\'\'userlist\'\'userlist\'\'with\'\'search\'\'field\'\'selection UserList','000001000001000043000002'),('UserListTmpl0000000003','UserList with multiple search keywords','UserList with multiple search keywords UserList with multiple search keywords root import userlist userlist with multiple search keywords ','root/import/userlist/userlist-with-multiple-search-keywords',1212001437,1228125758,'3','7','12','WebGUI::Asset::Template',1,'UserList\'\'with\'\'multiple\'\'search\'\'keywords\'\'UserList\'\'with\'\'multiple\'\'search\'\'keywords\'\'root\'\'import\'\'userlist\'\'userlist\'\'with\'\'multiple\'\'search\'\'keywords UserList','000001000001000043000003'),('UserListTmpl0000000001','Default UserList','Default UserList Default UserList root import userlist default userlist ','root/import/userlist/default-userlist',1212159641,1228125743,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'UserList\'\'Default\'\'UserList\'\'root\'\'import\'\'userlist\'\'default\'\'userlist UserList','000001000001000043000001'),('BMybD3cEnmXVk2wQ_qEsRQ','Badge Builder (Default)','Badge Builder (Default) Badge Builder (Default) root import ems badge builder default ','root/import/ems/badge-builder-default',1208530113,1224723361,'3','7','12','WebGUI::Asset::Template',1,'Badge\'\'Builder\'\'(\'\'Default\'\')\'\'Badge\'\'Builder\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'badge\'\'builder\'\'default EMS\'\'/\'\'BadgeBuilder','000001000001000010000001'),('OOyMH33plAy6oCj_QWrxtg','Lookup Registrant (Default)','Lookup Registrant (Default) Lookup Registrant (Default) root import ems lookup registrant default ','root/import/ems/lookup-registrant-default',1207951375,1224724790,'3','7','12','WebGUI::Asset::Template',1,'Lookup\'\'Registrant\'\'(\'\'Default\'\')\'\'Lookup\'\'Registrant\'\'(\'\'Default\'\')\'\'root\'\'import\'\'ems\'\'lookup\'\'registrant\'\'default EMS\'\'/\'\'LookupRegistrant','000001000001000010000002'),('stevecoolmenu000000001','Site Nav','Site Nav Site Nav webgui7 style3 hierarchical top nav ','webgui7/style3/hierarchical-top-nav',1147642505,1224116942,'3','7','12','WebGUI::Asset::Template',1,'Site\'\'Nav\'\'Site\'\'Nav\'\'webgui7\'\'style3\'\'hierarchical\'\'top\'\'nav Navigation','000001000001000047000001'),('7-0-style0000000000051','css03.css','css03.css css03.css style3 css03.css ','style3/css03.css',1147642505,1224117026,'3','7','12','WebGUI::Asset::Snippet',1,'css03\'\'.\'\'css\'\'css03\'\'.\'\'css\'\'style3\'\'css03\'\'.\'\'css body\'\',\'\'html\'\'{\'\'margin\'\':\'\'0px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'b53018\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'body\'\'a\'\'{\'\'color\'\':\'\'#\'\'EE963E\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'{\'\'width\'\':\'\'98\'\'%\'\';\'\'/\'\'*\'\'min\'\'-\'\'width\'\':\'\'790px\'\';\'\'*\'\'/\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'padding\'\'-\'\'top\'\':\'\'20px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'header\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_bg\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'115px\'\';\'\'}\'\'#\'\'headerTitle\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_left\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'left\'\'top\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'headerRight\'\'{\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'header_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\'top\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'100\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'#\'\'headerRight\'\'#\'\'title\'\'{\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'25px\'\';\'\'left\'\':\'\'20px\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'#\'\'title\'\'h1\'\'{\'\'text\'\'-\'\'transform\'\':\'\'uppercase\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'font\'\'-\'\'size\'\':\'\'26pt\'\';\'\'margin\'\'-\'\'top\'\':\'\'0px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'title\'\'h1\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'26pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}\'\'#\'\'title\'\'h2\'\'{\'\'margin\'\':\'\'0px\'\';\'\'font\'\'-\'\'size\'\':\'\'12pt\'\';\'\'color\'\':\'\'#\'\'bebebe\'\';\'\'padding\'\'-\'\'left\'\':\'\'20px\'\';\'\'}\'\'#\'\'title\'\'img\'\'{\'\'z\'\'-\'\'index\'\':\'\'5\'\';\'\'}\'\'#\'\'login\'\'{\'\'position\'\':\'\'absolute\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'top\'\':\'\'45\'\'%\'\';\'\'right\'\':\'\'150px\'\';\'\'color\'\':\'\'white\'\';\'\'z\'\'-\'\'index\'\':\'\'6\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'}\'\'#\'\'login\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'letter\'\'-\'\'spacing\'\':\'\'0px\'\';\'\'}\'\'.\'\'loginBox\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'margin\'\':\'\'0px\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'.\'\'loginBox\'\'input\'\'{\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'mainBody\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'height\'\':\'\'500px\'\';\'\'background\'\':\'\'#\'\'fff\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'main\'\'>\'\'#\'\'mainBody\'\'{\'\'height\'\':\'\'auto\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'#\'\'contentArea\'\'{\'\'z\'\'-\'\'index\'\':\'\'2\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\'-\'\'top\'\':\'\'10px\'\';\'\'padding\'\'-\'\'left\'\':\'\'10px\'\';\'\'padding\'\'-\'\'right\'\':\'\'20px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'min\'\'-\'\'height\'\':\'\'500px\'\';\'\'}\'\'html\'\'#\'\'main\'\'#\'\'mainBody\'\'#\'\'contentArea\'\'{\'\'height\'\':\'\'1\'\'%\'\';\'\'}\'\'#\'\'topCorner\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'214px\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'0px\'\';\'\'left\'\':\'\'0px\'\';\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'/\'\'style3\'\'/\'\'main_top\'\'.\'\'jpg\'\')\'\';\'\')\'\'no\'\'-\'\'repeat\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'#\'\'bottomCorner\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'211px\'\';\'\'position\'\':\'\'absolute\'\';\'\'bottom\'\':\'\'59px\'\';\'\'right\'\':\'\'0px\'\';\'\'background\'\':\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'main_bottom\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'*\'\'html\'\'#\'\'bottomCorner\'\'{\'\'bottom\'\':\'\'58px\'\';\'\'}\'\'#\'\'footer\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'margin\'\':\'\'0px\'\';\'\'background\'\':\'\'#\'\'000\'\'url\'\'(\'\'\'\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'style3\'\'/\'\'footer_right\'\'.\'\'jpg\'\')\'\';\'\'\'\'\')\'\'no\'\'-\'\'repeat\'\'right\'\'top\'\';\'\'height\'\':\'\'57px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'B53018\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'footer\'\'#\'\'copyright\'\'{\'\'color\'\':\'\'#\'\'3b3b3b\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'20px\'\';\'\'left\'\':\'\'30px\'\';\'\'font\'\'-\'\'size\'\':\'\'8pt\'\';\'\'}\'\'#\'\'main\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'{\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'}','000001000001000047000002'),('stevestyle000000000003','Style 03','Style 03 Style 03 style 03 ','style_03',1147642510,1224795533,'3','7','12','WebGUI::Asset::Template',1,'Style\'\'03\'\'Style\'\'03\'\'style\'\'03 style','000001000001000047000020'),('jVKLVakT_iA2010_oEuAwg','Style3 Coolmenu','Style3 Coolmenu Style3 Coolmenu department nav ','department_nav',1224116526,1224116526,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3\'\'Coolmenu\'\'Style3\'\'Coolmenu\'\'department\'\'nav','000001000001000047000024'),('UL-ItI4L1Z6-WSuhuXVvsQ','DataTable','DataTable DataTable root import datatable ','root/import/datatable',1225139673,1225139673,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'DataTable\'\'DataTable\'\'root\'\'import\'\'datatable','000001000001000009'),('3rjnBVJRO6ZSkxlFkYh_ug','Default DataTable Template (YUI)','Default DataTable Template (YUI) Default DataTable Template (YUI) root import datatable default datatable template yui ','root/import/datatable/default-datatable-template-yui',1225139643,1233861835,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'DataTable\'\'Template\'\'(\'\'YUI\'\')\'\'Default\'\'DataTable\'\'Template\'\'(\'\'YUI\'\')\'\'root\'\'import\'\'datatable\'\'default\'\'datatable\'\'template\'\'yui DataTable','000001000001000009000001'),('TuYPpHx7TUyk08639Pc8Bg','Default DataTable Template (HTML)','Default DataTable Template (HTML) Default DataTable Template (HTML) root import datatable default datatable template html ','root/import/datatable/default-datatable-template-html',1225139643,1233861621,'3','7','3','WebGUI::Asset::Template',1,'Default\'\'DataTable\'\'Template\'\'(\'\'HTML\'\')\'\'Default\'\'DataTable\'\'Template\'\'(\'\'HTML\'\')\'\'root\'\'import\'\'datatable\'\'default\'\'datatable\'\'template\'\'html DataTable','000001000001000009000002'),('FJbUTvZ2nUTn65LpW6gjsA','Profile Account Layout','Profile Account Layout Profile Account Layout root import account profile profile account layout ','root/import/account/profile/profile-account-layout',1227070381,1232735095,'3','7','12','WebGUI::Asset::Template',1,'Profile\'\'Account\'\'Layout\'\'Profile\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'profile\'\'profile\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000001000001000001'),('75CmQgpcCSkdsL-oawdn3Q','Default Edit Profile Template','Default Edit Profile Template Default Edit Profile Template root import account profile default edit profile template ','root/import/account/profile/default-edit-profile-template',1227052575,1232561177,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Edit\'\'Profile\'\'Template\'\'Default\'\'Edit\'\'Profile\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'edit\'\'profile\'\'template Account\'\'/\'\'Profile\'\'/\'\'Edit','000001000001000001000001000002'),('2CS-BErrjMmESOtGT90qOg','Default View Profile Template','Default View Profile Template Default View Profile Template root import account profile default view profile template ','root/import/account/profile/default-view-profile-template',1227070888,1232955105,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'View\'\'Profile\'\'Template\'\'Default\'\'View\'\'Profile\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'view\'\'profile\'\'template Account\'\'/\'\'Profile\'\'/\'\'View','000001000001000001000001000003'),('MBmWlA_YEA2I6D29OMGtRg','Default Profile Error Template','Default Profile Error Template Default Profile Error Template root import account profile default profile error template ','root/import/account/profile/default-profile-error-template',1226542675,1228753307,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Profile\'\'Error\'\'Template\'\'Default\'\'Profile\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'profile\'\'default\'\'profile\'\'error\'\'template Account\'\'/\'\'Profile\'\'/\'\'Error','000001000001000001000001000004'),('IZkrow_zwvbf4FCH-taVTQ','Inbox','Inbox Inbox root import account inbox ','root/import/account/inbox',1226011853,1226011853,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox\'\'Inbox\'\'root\'\'import\'\'account\'\'inbox','000001000001000001000002'),('gfZOwaTWYjbSoVaQtHBBEw','Inbox Account Layout','Inbox Account Layout Inbox Account Layout root import account inbox account layout ','root/import/account/inbox-account-layout',1226974679,1232735116,'3','7','12','WebGUI::Asset::Template',1,'Inbox\'\'Account\'\'Layout\'\'Inbox\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'inbox\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000001000002000001'),('c8xrwVuu5QE0XtF9DiVzLw','Default Inbox View Template','Default Inbox View Template Default Inbox View Template root import account inbox default inbox view template ','root/import/account/inbox/default-inbox-view-template',1226894351,1235331153,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'View\'\'Template\'\'Default\'\'Inbox\'\'View\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'view\'\'template Account\'\'/\'\'Inbox\'\'/\'\'View','000001000001000001000002000002'),('0n4HtbXaWa_XJHkFjetnLQ','Default Inbox View Message Template','Default Inbox View Message Template Default Inbox View Message Template root import account inbox default inbox view message template ','root/import/account/inbox/default-inbox-view-message-template',1226894994,1233168324,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'View\'\'Message\'\'Template\'\'Default\'\'Inbox\'\'View\'\'Message\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'view\'\'message\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ViewMessage','000001000001000001000002000003'),('ErEzulFiEKDkaCDVmxUavw','Default Inbox Error Template','Default Inbox Error Template Default Inbox Error Template root import account inbox default inbox error template ','root/import/account/inbox/default-inbox-error-template',1226895484,1227566394,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'Error\'\'Template\'\'Default\'\'Inbox\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'error\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Error','000001000001000001000002000004'),('6uQEULvXFgCYlRWnYzZsuA','Default Inbox Send Message Template','Default Inbox Send Message Template Default Inbox Send Message Template root import account inbox default inbox send message template ','root/import/account/inbox/default-inbox-send-message-template',1226896682,1233874321,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Inbox\'\'Send\'\'Message\'\'Template\'\'Default\'\'Inbox\'\'Send\'\'Message\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'inbox\'\'send\'\'message\'\'template Account\'\'/\'\'Inbox\'\'/\'\'SendMessage','000001000001000001000002000005'),('DUoxlTBXhVS-Zl3CFDpt9g','Default Message Confirm Template','Default Message Confirm Template Default Message Confirm Template root import account inbox default message confirm template ','root/import/account/inbox/default-message-confirm-template',1226896802,1226896802,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Message\'\'Confirm\'\'Template\'\'Default\'\'Message\'\'Confirm\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'message\'\'confirm\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Confirm','000001000001000001000002000006'),('1Q4Je3hKCJzeo0ZBB5YB8g','Default Manage Invitations Template','Default Manage Invitations Template Default Manage Invitations Template root import account inbox default manage invitations template ','root/import/account/inbox/default-manage-invitations-template',1226898445,1232753312,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Manage\'\'Invitations\'\'Template\'\'Default\'\'Manage\'\'Invitations\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'manage\'\'invitations\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ManageInvitations','000001000001000001000002000007'),('5A8Hd9zXvByTDy4x-H28qw','Default Invitation Confirmation Template','Default Invitation Confirmation Template Default Invitation Confirmation Template root import account inbox default invitation confirmation template ','root/import/account/inbox/default-invitation-confirmation-template',1226899462,1227566395,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invitation\'\'Confirmation\'\'Template\'\'Default\'\'Invitation\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invitation\'\'confirmation\'\'template Account\'\'/\'\'Inbox\'\'/\'\'Confirm','000001000001000001000002000008'),('VBkY05f-E3WJS50WpdKd1Q','Default View Invitation Template','Default View Invitation Template Default View Invitation Template root import account inbox default view invitation template ','root/import/account/inbox/default-view-invitation-template',1226899241,1233168685,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'View\'\'Invitation\'\'Template\'\'Default\'\'View\'\'Invitation\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'view\'\'invitation\'\'template Account\'\'/\'\'Inbox\'\'/\'\'ViewInvitation','000001000001000001000002000009'),('XgcsoDrbC0duVla7N7JAdw','Default Invite User Email Template','Default Invite User Email Template Default Invite User Email Template root import account inbox default invite user email template ','root/import/account/inbox/default-invite-user-email-template',1226973330,1227566394,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Email\'\'Template\'\'Default\'\'Invite\'\'User\'\'Email\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'email\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUserMessage','000001000001000001000002000010'),('cR0UFm7I1qUI2Wbpj--08Q','Default Invite User Form Template','Default Invite User Form Template Default Invite User Form Template root import account inbox default invite user form template ','root/import/account/inbox/default-invite-user-form-template',1226964738,1232464762,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Form\'\'Template\'\'Default\'\'Invite\'\'User\'\'Form\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'form\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUser','000001000001000001000002000011'),('SVIhz68689hwUGgcDM-gWw','Default Invite User Confirm Template','Default Invite User Confirm Template Default Invite User Confirm Template root import account inbox default invite user confirm template ','root/import/account/inbox/default-invite-user-confirm-template',1226973314,1226973314,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Invite\'\'User\'\'Confirm\'\'Template\'\'Default\'\'Invite\'\'User\'\'Confirm\'\'Template\'\'root\'\'import\'\'account\'\'inbox\'\'default\'\'invite\'\'user\'\'confirm\'\'template Account\'\'/\'\'Inbox\'\'/\'\'InviteUserConfirm','000001000001000001000002000012'),('K0YjxqOqr7RupSo6sIdcAg','Friends','Friends Friends root import account friends ','root/import/account/friends',1227074310,1227074310,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friends\'\'Friends\'\'root\'\'import\'\'account\'\'friends','000001000001000001000003'),('zrNpGbT3odfIkg6nFSUy8Q','Friends Layout Template','Friends Layout Template Friends Layout Template root import account friends friends layout template ','root/import/account/friends/friends-layout-template',1226994016,1232735138,'3','7','12','WebGUI::Asset::Template',1,'Friends\'\'Layout\'\'Template\'\'Friends\'\'Layout\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'friends\'\'layout\'\'template Account\'\'/\'\'Layout','000001000001000001000003000001'),('1Yn_zE_dSiNuaBGNLPbxtw','Default Friends View Template','Default Friends View Template Default Friends View Template root import account friends default friends view template ','root/import/account/friends/default-friends-view-template',1226994422,1232952380,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'View\'\'Template\'\'Default\'\'Friends\'\'View\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'view\'\'template Account\'\'/\'\'Friends\'\'/\'\'View','000001000001000001000003000002'),('AZFU33p0jpPJ-E6qLSWZng','Default Friends Edit Template','Default Friends Edit Template Default Friends Edit Template root import account friends default friends edit template ','root/import/account/friends/default-friends-edit-template',1226994865,1232951869,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Edit\'\'Template\'\'Default\'\'Friends\'\'Edit\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'edit\'\'template Account\'\'/\'\'Friends\'\'/\'\'Edit','000001000001000001000003000003'),('AGJBGviWGAwjnwziiPjvDg','Default Send Request Template','Default Send Request Template Default Send Request Template root import account friends default send request template ','root/import/account/friends/default-send-request-template',1226995497,1232569232,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Send\'\'Request\'\'Template\'\'Default\'\'Send\'\'Request\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'send\'\'request\'\'template Account\'\'/\'\'Friends\'\'/\'\'SendRequest','000001000001000001000003000004'),('7Ijdd8SW32lVgg2H8R-Aqw','Default Friends Error Template','Default Friends Error Template Default Friends Error Template root import account friends default friends error template ','root/import/account/friends/default-friends-error-template',1226995714,1226995714,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Error\'\'Template\'\'Default\'\'Friends\'\'Error\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'error\'\'template Account\'\'/\'\'Friends\'\'/\'\'Error','000001000001000001000003000005'),('K8F0j_cq_jgo8dvWY_26Ag','Default Friends Confirmation Template','Default Friends Confirmation Template Default Friends Confirmation Template root import account friends default friends confirmation template ','root/import/account/friends/default-friends-confirmation-template',1226995643,1226995643,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Friends\'\'Confirmation\'\'Template\'\'Default\'\'Friends\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'friends\'\'confirmation\'\'template Account\'\'/\'\'Friends\'\'/\'\'Confirm','000001000001000001000003000006'),('G5V6neXIDiFXN05oL-U3AQ','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template Default Remove Friends Confirmation Template root import account friends default remove friends confirmation template ','root/import/account/friends/default-remove-friends-confirmation-template',1226995768,1226995768,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Remove\'\'Friends\'\'Confirmation\'\'Template\'\'Default\'\'Remove\'\'Friends\'\'Confirmation\'\'Template\'\'root\'\'import\'\'account\'\'friends\'\'default\'\'remove\'\'friends\'\'confirmation\'\'template Account\'\'/\'\'Friends\'\'/\'\'Confirm','000001000001000001000003000007'),('_ilRXNR3s8F2vGJ_k9ePcg','User','User User root import account user ','root/import/account/user',1226643205,1226643205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'User\'\'User\'\'root\'\'import\'\'account\'\'user','000001000001000001000004'),('9ThW278DWLV0-Svf68ljFQ','Account Layout','Account Layout Account Layout root import account user account layout ','root/import/account/user/account-layout',1226647187,1232735163,'3','7','12','WebGUI::Asset::Template',1,'Account\'\'Layout\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'user\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000001000004000001'),('AOjPG2NHgfL9Cq6dDJ7mew','Shop','Shop Shop root import account shop ','root/import/account/shop',1226659753,1226659753,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shop\'\'Shop\'\'root\'\'import\'\'account\'\'shop','000001000001000001000005'),('aUDsJ-vB9RgP-AYvPOy8FQ','Shop Account Layout','Shop Account Layout Shop Account Layout root import account shop shop account layout ','root/import/account/shop/shop-account-layout',1226660439,1232735191,'3','7','12','WebGUI::Asset::Template',1,'Shop\'\'Account\'\'Layout\'\'Shop\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'shop\'\'shop\'\'account\'\'layout Account\'\'/\'\'Layout','000001000001000001000005000001'),('qaVcU0FFzzraMX_bzELqzw','Contributions','Contributions Contributions root import account contributions ','root/import/account/contributions',1227074362,1227074362,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Contributions\'\'Contributions\'\'root\'\'import\'\'account\'\'contributions','000001000001000001000006'),('b4n3VyUIsAHyIvT-W-jziA','Contributions Layout','Contributions Layout Contributions Layout root import account contributions contributions layout ','root/import/account/contributions/contributions-layout',1227074747,1232735307,'3','7','12','WebGUI::Asset::Template',1,'Contributions\'\'Layout\'\'Contributions\'\'Layout\'\'root\'\'import\'\'account\'\'contributions\'\'contributions\'\'layout Account\'\'/\'\'Layout','000001000001000001000006000001'),('1IzRpX0tgW7iuCfaU2Kk0A','Default Contributions View','Default Contributions View Default Contributions View root import account contributions default contributions view ','root/import/account/contributions/default-contributions-view',1227079721,1234924646,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Contributions\'\'View\'\'Default\'\'Contributions\'\'View\'\'root\'\'import\'\'account\'\'contributions\'\'default\'\'contributions\'\'view Account\'\'/\'\'Contrib\'\'/\'\'View','000001000001000001000006000002'),('N716tpSna0iIQTKxS4gTWA','Default Account Layout','Default Account Layout Default Account Layout root import account default account layout2 ','root/import/account/default-account-layout2',1226604666,1232734726,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Account\'\'Layout\'\'Default\'\'Account\'\'Layout\'\'root\'\'import\'\'account\'\'default\'\'account\'\'layout2 Account\'\'/\'\'Layout','000001000001000001000007'),('matrixtmpl000000000004','Matrix Default Edit Listing','Matrix Default Edit Listing Matrix Default Edit Listing default matrix edit listing template ','default-matrix-edit-listing-template',1133743239,1228834590,'3','7','12','WebGUI::Asset::Template',1,'Matrix\'\'Default\'\'Edit\'\'Listing\'\'Matrix\'\'Default\'\'Edit\'\'Listing\'\'default\'\'matrix\'\'edit\'\'listing\'\'template Matrix\'\'/\'\'EditListing','000001000001000019000004'),('_9_eiaPgxzF_x_upt6-PNQ','gallery.css','gallery.css gallery.css root import gallery templates gallery.css ','root/import/gallery-templates/gallery.css',1197988920,1230702602,'3','7','3','WebGUI::Asset::Snippet',1,'gallery\'\'.\'\'css\'\'gallery\'\'.\'\'css\'\'root\'\'import\'\'gallery\'\'templates\'\'gallery\'\'.\'\'css /\'\'*\'\'FIXES\'\'FLOAT\'\'ISSUES\'\'.\'\'WITHOUT\'\'THIS\'\',\'\'FLOATS\'\'GET\'\'ALL\'\'NUTSY\'\'ESPECIALLY\'\'IN\'\'OPERA\'\'AND\'\'SAFARI\'\'*\'\'/\'\'.\'\'clearfix\'\':\'\'after\'\'{\'\'content\'\':\'\'\"\'\'.\'\'\"\'\';\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'0\'\';\'\'clear\'\':\'\'both\'\';\'\'visibility\'\':\'\'hidden\'\';\'\'}\'\'.\'\'clearfix\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'}\'\'/\'\'*\'\'END\'\'FLOAT\'\'FIX\'\'*\'\'/\'\'.\'\'wgGallery\'\'{\'\'font\'\'-\'\'family\'\':\'\'verdana\'\',\'\'arial\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'firstBar\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'title\'\'{\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'title\'\'a\'\'{\'\'font\'\'-\'\'size\'\':\'\'18px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'height\'\':\'\'42px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'0px\'\'5px\'\';\'\'}\'\'.\'\'firstBar\'\'.\'\'buttons\'\'.\'\'rss\'\'{\'\'display\'\':\'\'block\'\';\'\'height\'\':\'\'29px\'\';\'\'position\'\':\'\'relative\'\';\'\'background\'\':\'\'transparent\'\';\'\'padding\'\'-\'\'top\'\':\'\'13px\'\';\'\'}\'\'.\'\'secondBar\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'8B8B8B\'\'5px\'\';\'\'color\'\':\'\'black\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'}\'\'.\'\'secondBar\'\'.\'\'author\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'secondBar\'\'.\'\'desc\'\'p\'\'{\'\'margin\'\'-\'\'left\'\':\'\'20px\'\';\'\'margin\'\'-\'\'top\'\':\'\'0\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'pictures\'\'{\'\'}\'\'.\'\'searchArea\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'searchArea\'\'*\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'searchArea\'\'input\'\'.\'\'searchText\'\'{\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'width\'\':\'\'100px\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'2px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'15px\'\';\'\'margin\'\'-\'\'right\'\':\'\'10px\'\';\'\'}\'\'.\'\'searchArea\'\'input\'\'.\'\'searchBtn\'\'{\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'3px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'center\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'height\'\':\'\'21px\'\';\'\'}\'\'.\'\'searchArea\'\'a\'\':\'\'link\'\',\'\'.\'\'searchArea\'\'a\'\':\'\'visited\'\',\'\'.\'\'secondBar\'\'.\'\'author\'\'a\'\':\'\'link\'\',\'\'.\'\'secondBar\'\'.\'\'author\'\'a\'\':\'\'visited\'\'{\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'searchArea\'\'.\'\'current\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'transform\'\':\'\'uppercase\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgAlbum\'\'{\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'width\'\':\'\'250px\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumTitle\'\'{\'\'background\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'10px\'\';\'\'padding\'\'-\'\'right\'\':\'\'50px\'\';\'\'border\'\':\'\'solid\'\'#\'\'475f6f\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'8B8B8B\'\'5px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'padding\'\'-\'\'top\'\':\'\'15px\'\';\'\'height\'\':\'\'135px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'a\'\'{\'\'height\'\':\'\'135px\'\';\'\'width\'\':\'\'200px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'0px\'\'23px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumImage\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'albumDesc\'\'{\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'black\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'5px\'\'23px\'\';\'\'}\'\'.\'\'wgAlbum\'\'.\'\'description\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'height\'\':\'\'40px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'padding\'\':\'\'5px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'fff\'\';\'\'color\'\':\'\'#\'\'222\'\';\'\'}\'\'.\'\'albumDesc\'\'.\'\'description\'\'*\'\'{\'\'margin\'\':\'\'2px\'\'0px\'\';\'\'}\'\'/\'\'*\'\'PAGINATION\'\'STYLES\'\'*\'\'/\'\'.\'\'wgGallery\'\'.\'\'paginationContainer\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\':\'\'black\'\';\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'container\'\'{\'\'clear\'\':\'\'both\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'{\'\'margin\'\':\'\'0px\'\'auto\'\'20px\'\'auto\'\';\'\'display\'\':\'\'table\'\';\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'padding\'\':\'\'0px\'\';\'\'height\'\':\'\'42px\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'li\'\'{\'\'display\'\':\'\'table\'\'-\'\'cell\'\';\'\'}\'\'.\'\'wgGallery\'\'.\'\'pagination\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'50px\'\';\'\'line\'\'-\'\'height\'\':\'\'42px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgPicture\'\'a\'\':\'\'link\'\',\'\'.\'\'wgPicture\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'wgPicture\'\'{\'\'width\'\':\'\'250px\'\';\'\'margin\'\':\'\'10px\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'box\'\';\'\'/\'\'*\'\'Moz\'\'*\'\'/\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'/\'\'*\'\'Op\'\',\'\'Saf\'\',\'\'IE\'\'\\\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'/\'\'*\'\'IE\'\'Mac\'\'non\'\'capisce\'\'e\'\'a\'\'volte\'\'crea\'\'extra\'\'v\'\'space\'\'*\'\'/\'\'}\'\'.\'\'wgPicture\'\'.\'\'title\'\'{\'\'background\'\':\'\'#\'\'e0e0e0\'\';\'\'display\'\':\'\'block\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'8B8B8B\'\'4px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'padding\'\':\'\'15px\'\'23px\'\'15px\'\'23px\'\';\'\'margin\'\':\'\'0px\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'120px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'thumbnail\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'pictureDesc\'\'{\'\'padding\'\':\'\'0px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'e1e1e1\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'black\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'black\'\'1px\'\';\'\'background\'\':\'\'#\'\'F1F1F1\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'pictureDesc\'\'.\'\'description\'\'{\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'{\'\'background\'\':\'\'#\'\'e0e0e0\'\';\'\'border\'\':\'\'solid\'\'#\'\'999\'\'1px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'aaa\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'padding\'\':\'\'1px\'\'3px\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'.\'\'date\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'.\'\'comments\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'wgPicture\'\'.\'\'details\'\'a\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'PHOTO\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Photo\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'wgSnapshot\'\'{\'\'float\'\':\'\'left\'\';\'\'margin\'\':\'\'10px\'\';\'\'max\'\'-\'\'width\'\':\'\'250px\'\';\'\'width\'\':\'\'25\'\'%\'\';\'\'}\'\'.\'\'wgSnapshot\'\'fieldset\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'fefefe\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'padding\'\':\'\'10px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f9f9f9\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'wgSnapshot\'\'p\'\'{\'\'max\'\'-\'\'width\'\':\'\'230px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'legend\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'max\'\'-\'\'width\'\':\'\'250px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'a\'\'.\'\'thumbnail\'\'img\'\'{\'\'width\'\':\'\'200px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'}\'\'.\'\'wgSnapshot\'\'.\'\'description\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'border\'\':\'\'solid\'\'#\'\'555555\'\'2px\'\';\'\'padding\'\':\'\'5px\'\';\'\'width\'\':\'\'190px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'fff\'\';\'\'height\'\':\'\'50px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'overflow\'\':\'\'auto\'\';\'\'}\'\'.\'\'wgSnapshot\'\'a\'\'.\'\'fullSize\'\'{\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'a\'\':\'\'link\'\',\'\'.\'\'wgPictureDetails\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'fieldset\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'fefefe\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'padding\'\':\'\'10px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f9f9f9\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgPictureDetails\'\'legend\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'rowOne\'\'{\'\'background\'\':\'\'#\'\'EFEFEF\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'rowTwo\'\'{\'\'background\'\':\'\'#\'\'DCDCDC\'\';\'\'margin\'\':\'\'1px\'\';\'\'border\'\':\'\'solid\'\'#\'\'DDDDDD\'\'1px\'\';\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'rowOne\'\'.\'\'label\'\',\'\'.\'\'rowTwo\'\'.\'\'label\'\'{\'\'margin\'\'-\'\'left\'\':\'\'15px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'}\'\'.\'\'rowOne\'\'.\'\'data\'\',\'\'.\'\'rowTwo\'\'.\'\'data\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'a\'\'.\'\'fullSize\'\':\'\'link\'\',\'\'a\'\'.\'\'fullSize\'\':\'\'visited\'\'{\'\'color\'\':\'\'black\'\';\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'wgComments\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'margin\'\':\'\'10px\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'title\'\'{\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'555555\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'2px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'title\'\'a\'\'{\'\'color\'\':\'\'navy\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'comment\'\',\'\'.\'\'wgComments\'\'.\'\'commentAlt\'\'{\'\'position\'\':\'\'relative\'\';\'\'padding\'\':\'\'5px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'comment\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'F7F7F7\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'C9C9C9\'\'1px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'commentAlt\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f0f0f0\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'CDCDCD\'\'1px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'FBFBFB\'\'1px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'number\'\'{\'\'float\'\':\'\'left\'\';\'\'font\'\'-\'\'size\'\':\'\'30px\'\';\'\'color\'\':\'\'silver\'\';\'\'margin\'\':\'\'5px\'\'10px\'\'5px\'\'5px\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'posted\'\'{\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'padding\'\'-\'\'top\'\':\'\'3px\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'color\'\':\'\'gray\'\';\'\'}\'\'.\'\'wgComments\'\'.\'\'posted\'\'a\'\'{\'\'color\'\':\'\'navy\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'THUMBNAIL\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Thumbnail\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'thumbView\'\'{\'\'width\'\':\'\'400px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'thumbView\'\'.\'\'thumbnail\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'width\'\':\'\'350px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'1px\'\';\'\'}\'\'.\'\'thumbView\'\'.\'\'thumbnail\'\'img\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'width\'\':\'\'350px\'\';\'\'height\'\':\'\'auto\'\';\'\'}\'\'.\'\'thumb\'\'{\'\'width\'\':\'\'100px\'\';\'\'height\'\':\'\'65px\'\';\'\'overflow\'\':\'\'hidden\'\';\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'margin\'\':\'\'10px\'\';\'\'}\'\'.\'\'thumb\'\'img\'\'{\'\'width\'\':\'\'100px\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'{\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'padding\'\':\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'4px\'\';\'\'padding\'\'-\'\'right\'\':\'\'4px\'\';\'\'background\'\'-\'\'color\'\':\'\'silver\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'img\'\'{\'\'border\'\':\'\'solid\'\'#\'\'555\'\'1px\'\';\'\'}\'\'.\'\'thumb\'\'-\'\'popup\'\'.\'\'caption\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'#\'\'555\'\'2px\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'SLIDESHOW\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Slideshow\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'.\'\'wgSlideshow\'\'.\'\'controls\'\'{\'\'background\'\':\'\'url\'\'(\'\'&\'\'#\'\'94\'\';\'\'FileUrl\'\'(\'\'root\'\'/\'\'import\'\'/\'\'gallery\'\'-\'\'templates\'\'/\'\'images\'\'/\'\'pagination_bg\'\'.\'\'jpg\'\')\'\';\'\')\'\'repeat\'\'-\'\'x\'\';\'\'width\'\':\'\'500px\'\';\'\'height\'\':\'\'42px\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'}\'\'.\'\'wgSlideshow\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'{\'\'width\'\':\'\'500px\'\';\'\'height\'\':\'\'auto\'\';\'\'margin\'\':\'\'0px\'\'auto\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'border\'\':\'\'solid\'\'black\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'z\'\'-\'\'index\'\':\'\'0\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'img\'\'{\'\'width\'\':\'\'100\'\'%\'\';\'\'height\'\':\'\'auto\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'title\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'white\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'white\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'white\'\'1px\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'title\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'counter\'\'{\'\'background\'\'-\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'slideshow\'\'-\'\'container\'\'.\'\'slideshow\'\'-\'\'item\'\'.\'\'synopsis\'\'{\'\'width\'\':\'\'494px\'\';\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'padding\'\':\'\'3px\'\';\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'black\'\'1px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'/\'\'*\'\'*\'\'-\'\'-\'\'BEGIN\'\'STYLES\'\'FOR\'\'SEARCH\'\'VIEW\'\'-\'\'-\'\'*\'\'The\'\'Search\'\'view\'\'uses\'\'some\'\'/\'\'all\'\'of\'\'the\'\'above\'\'classes\'\',\'\'plus\'\'those\'\'in\'\'this\'\'section\'\'.\'\'*\'\'/\'\'#\'\'adminWrapper\'\'{\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'label\'\'{\'\'background\'\':\'\'black\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'#\'\'adminWrapper\'\'td\'\'.\'\'data\'\'input\'\'{\'\'background\'\':\'\'#\'\'f1f1f1\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'#\'\'adminWrapper\'\'td\'\'.\'\'radio\'\'input\'\'{\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\':\'\'none\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'forwardButton\'\'{\'\'cursor\'\':\'\'pointer\'\';\'\'float\'\':\'\'rigbt\'\';\'\'}\'\'#\'\'adminWrapper\'\'.\'\'forwardButton\'\':\'\'hover\'\'{\'\'color\'\':\'\'gold\'\';\'\'}','000001000001000013000016'),('kJf77eCr9GAMiEzWrzsBTA','matrix-ie.css','matrix-ie.css matrix-ie.css new matrix matrix ie.css ','new-matrix/matrix-ie.css',1229639255,1229639255,'3','7','12','WebGUI::Asset::Snippet',1,'matrix\'\'-\'\'ie\'\'.\'\'css\'\'matrix\'\'-\'\'ie\'\'.\'\'css\'\'new\'\'matrix\'\'matrix\'\'ie\'\'.\'\'css .\'\'matrixLeft\'\'.\'\'buttons\'\'span\'\',\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'span\'\'{\'\'padding\'\':\'\'0px\'\'0px\'\'0px\'\'0px\'\';\'\'}\'\'.\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\',\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'a\'\'{\'\'top\'\':\'\'-\'\'3px\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'height\'\':\'\'22px\'\';\'\'}\'\'.\'\'matrixRight\'\'.\'\'buttons\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'padding\'\':\'\'1px\'\'3px\'\';\'\'}','000001000001000019000007'),('4LQT4-bGW4FkiEQLSY5gvQ','show-hide.js','show-hide.js show-hide.js new matrix show hide.js ','new-matrix/show-hide.js',1232400287,1232400287,'3','7','12','WebGUI::Asset::Snippet',1,'show\'\'-\'\'hide\'\'.\'\'js\'\'show\'\'-\'\'hide\'\'.\'\'js\'\'new\'\'matrix\'\'show\'\'hide\'\'.\'\'js function\'\'showHide\'\'(\'\'theLink\'\',\'\'theId\'\')\'\'{\'\'var\'\'theId\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'theId\'\')\'\';\'\'var\'\'theLink\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'theLink\'\')\'\';\'\'if\'\'(\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'=\'\'\'\'\'block\'\'\'\'\')\'\'{\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\'\'\'none\'\'\'\'\';\'\'theLink\'\'.\'\'innerHTML\'\'=\'\'\"\'\'Send\'\'Creator\'\'a\'\'Message\'\'\"\'\';\'\'theLink\'\'.\'\'className\'\'=\'\'\"\'\'showLink\'\'\"\'\'}\'\'else\'\'{\'\'theId\'\'.\'\'style\'\'.\'\'display\'\'=\'\'\'\'\'block\'\'\'\'\';\'\'theLink\'\'.\'\'innerHTML\'\'=\'\'\"\'\'Hide\'\'\"\'\';\'\'theLink\'\'.\'\'className\'\'=\'\'\"\'\'hideLink\'\'\"\'\'}\'\'}','000001000001000019000008'),('alraubvBu-YJJ614jAHD5w','matrix-nav-tmpl','matrix-nav-tmpl matrix-nav-tmpl new matrix matrix nav tmpl ','new-matrix/matrix-nav-tmpl',1232664015,1235706026,'3','7','12','WebGUI::Asset::Template',1,'matrix\'\'-\'\'nav\'\'-\'\'tmpl\'\'matrix\'\'-\'\'nav\'\'-\'\'tmpl\'\'new\'\'matrix\'\'matrix\'\'nav\'\'tmpl Navigation','000001000001000019000009'),('Vch1Ww7G_JpBhOhXX07RDg','matrx-nav','matrx-nav matrix-nav new matrix matrix nav ','new-matrix/matrix-nav',1232664082,1235705952,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'matrx\'\'-\'\'nav\'\'matrix\'\'-\'\'nav\'\'new\'\'matrix\'\'matrix\'\'nav','000001000001000019000010'),('PBtmpl0000000000000063','Default Overview Report','Default Overview Report Default Overview Report root import survey default overview report ','root/import/survey/default_overview_report',1124395696,1233156264,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Overview\'\'Report\'\'Default\'\'Overview\'\'Report\'\'root\'\'import\'\'survey\'\'default\'\'overview\'\'report Survey\'\'/\'\'Overview','000001000001000039000001'),('PBtmpl0000000000000062','Default Gradebook Report','Default Gradebook Report Default Gradebook Report root import survey default gradebook report ','root/import/survey/default_gradebook_report',1124395696,1232981641,'3','7','12','WebGUI::Asset::Template',1,'Default\'\'Gradebook\'\'Report\'\'Default\'\'Gradebook\'\'Report\'\'root\'\'import\'\'survey\'\'default\'\'gradebook\'\'report Survey\'\'/\'\'Gradebook','000001000001000039000002'),('HW-sPoDDZR8wBZ0YgFgPtg','images','images images root import account images ','root/import/account/images',1227634350,1227634350,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images\'\'images\'\'root\'\'import\'\'account\'\'images','000001000001000001000009'),('hBpisL-_URyZnh9clR5ohA','no_photo.gif','no_photo.gif no_photo.gif root import account images no photo.gif ','root/import/account/images/no_photo.gif',1227634417,1227634417,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo\'\'.\'\'gif\'\'no_photo\'\'.\'\'gif\'\'root\'\'import\'\'account\'\'images\'\'no\'\'photo\'\'.\'\'gif','000001000001000001000009000001'),('FOBV6KkifreXa4GmEAUU4A','no_photo_sm.gif','no_photo_sm.gif no_photo_sm.gif root import account images no photo sm.gif ','root/import/account/images/no_photo_sm.gif',1227634447,1227634447,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo_sm\'\'.\'\'gif\'\'no_photo_sm\'\'.\'\'gif\'\'root\'\'import\'\'account\'\'images\'\'no\'\'photo\'\'sm\'\'.\'\'gif','000001000001000001000009000002'),('_XfvgNH__bY1ykMiKYSobQ','account.css','account.css account.css root import account account.css ','root/import/account/account.css',1233168041,1234924781,'3','7','12','WebGUI::Asset::Snippet',1,'account\'\'.\'\'css\'\'account\'\'.\'\'css\'\'root\'\'import\'\'account\'\'account\'\'.\'\'css /\'\'*\'\'general\'\'*\'\'/\'\'body\'\'{\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'font\'\':\'\'11px\'\'Verdana\'\';\'\'}\'\'a\'\'{\'\'cursor\'\':\'\'pointer\'\';\'\'}\'\'button\'\'{\'\'cursor\'\':\'\'pointer\'\';\'\'}\'\'img\'\'{\'\'border\'\':\'\'none\'\';\'\'}\'\'.\'\'WGbutton\'\'{\'\'float\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'}\'\'.\'\'centered\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGaccount_message\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'BECEF8\'\'1px\'\';\'\'height\'\':\'\'300px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'margin\'\'-\'\'left\'\':\'\'60px\'\';\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'overflow\'\':\'\'-\'\'moz\'\'-\'\'scrollbars\'\'-\'\'vertical\'\';\'\'overflow\'\'-\'\'x\'\':\'\'hidden\'\';\'\'overflow\'\'-\'\'y\'\':\'\'scroll\'\';\'\'padding\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGprofileMember\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'.\'\'WGmember\'\'{\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\':\'\'9px\'\'Verdana\'\',\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGphotostyle\'\'{\'\'border\'\':\'\'solid\'\'#\'\'3e4f77\'\'2px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\'}\'\'#\'\'rightalign\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'/\'\'*\'\'.\'\'WGsend\'\'{\'\'float\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'75px\'\';\'\'}\'\'*\'\'/\'\'/\'\'*\'\'bio\'\',\'\'addtonetwork\'\',\'\'network\'\'*\'\'/\'\'.\'\'WGbordered\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dashed\'\'#\'\'BECEF8\'\'2px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'10px\'\';\'\'}\'\'.\'\'WGfriendpic\'\'{\'\'border\'\':\'\'solid\'\'#\'\'BECEF8\'\'1px\'\';\'\'}\'\'.\'\'WGinvitemsg\'\'{\'\'width\'\':\'\'600px\'\';\'\'height\'\':\'\'150px\'\';\'\'}\'\'ol\'\'.\'\'WGProfile_interests\'\'{\'\'color\'\':\'\'#\'\'0B2259\'\';\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'padding\'\':\'\'5px\'\'5px\'\';\'\'}\'\'ol\'\'.\'\'WGProfile_interests\'\'li\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'ol\'\'.\'\'WGProfile_interests\'\'span\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'WGpBio\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'DDE6FB\'\'1px\'\';\'\'margin\'\':\'\'0px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'}\'\'.\'\'WGpBio\'\'div\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'DDE6FB\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'2px\'\';\'\'}\'\'.\'\'WGprogram\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'/\'\'*\'\'contributions\'\'*\'\'/\'\'.\'\'WGContribCount\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'padding\'\':\'\'3px\'\'}\'\'.\'\'WGContribTitle\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'0B2259\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'3px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'.\'\'WGContribTitleLeft\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'0B2259\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'3px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'.\'\'WGContribEntry\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'.\'\'WGContribEntryLeft\'\'{\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'padding\'\':\'\'3px\'\';\'\'}\'\'/\'\'*\'\'edit\'\'box\'\'*\'\'/\'\'.\'\'WGeditBox\'\'{\'\'/\'\'*\'\'background\'\':\'\'white\'\'url\'\'(\'\'images\'\'/\'\'edit_box_bg\'\'.\'\'jpg\'\')\'\'no\'\'-\'\'repeat\'\'bottom\'\'left\'\';\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'8DABF1\'\'2px\'\';\'\'display\'\':\'\'block\'\';\'\'font\'\'-\'\'family\'\':\'\'verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'left\'\':\'\'100px\'\';\'\'-\'\'moz\'\'-\'\'box\'\'-\'\'sizing\'\':\'\'border\'\'-\'\'box\'\';\'\'padding\'\':\'\'5px\'\';\'\'position\'\':\'\'absolute\'\';\'\'top\'\':\'\'100px\'\';\'\'width\'\':\'\'590px\'\';\'\'z\'\'-\'\'index\'\':\'\'100\'\';\'\'}\'\'.\'\'WGeditBox\'\'input\'\',\'\'.\'\'WGeditBox\'\'select\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'/\'\'*\'\'friends\'\'*\'\'/\'\'.\'\'WGfriends_name\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGfriends_photo\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'10\'\'%\'\';\'\'}\'\'.\'\'WGfriends_photo\'\'img\'\'{\'\'height\'\':\'\'50px\'\';\'\'width\'\':\'\'50px\'\';\'\'}\'\'.\'\'WGfriends_private\'\'{\'\'float\'\':\'\'right\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'width\'\':\'\'50\'\'%\'\';\'\'}\'\'.\'\'WGfriends_ninety\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGfriends_seventy\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'}\'\'.\'\'WGfriends_ten\'\'{\'\'width\'\':\'\'10\'\'%\'\';\'\'}\'\'.\'\'WGfriends_ten\'\'img\'\'{\'\'height\'\':\'\'50px\'\';\'\'width\'\':\'\'50px\'\';\'\'}\'\'.\'\'WGfriends_twenty\'\'{\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGaccepts\'\'{\'\'padding\'\'-\'\'bottom\'\':\'\'5px\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'*\'\'/\'\'.\'\'WGProfile_msgcontainer\'\'{\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'WGinbox_count\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'3px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'WGinbox_errors\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'red\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WG_inbox_InviteLabel\'\'{\'\'width\'\':\'\'50px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'.\'\'WG_inbox_InviteLabelView\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'width\'\':\'\'120px\'\';\'\'}\'\'.\'\'WGmsgcontainer\'\'{\'\'padding\'\':\'\'6px\'\';\'\'display\'\':\'\'block\'\';\'\'margin\'\'-\'\'bottom\'\':\'\'6px\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'contacts\'\'*\'\'/\'\'.\'\'WGdatacells\'\'{\'\'border\'\'-\'\'bottom\'\':\'\'dashed\'\'#\'\'BECEF8\'\'1px\'\';\'\'}\'\'.\'\'WGinbox_contactsTbl\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'EEF2FD\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'#\'\'contacts\'\'{\'\'height\'\':\'\'275px\'\';\'\'overflow\'\':\'\'auto\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'forms\'\'*\'\'/\'\'.\'\'WGbuttons_left\'\'{\'\'float\'\':\'\'left\'\';\'\'}\'\'.\'\'WGbuttons_right\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'WGinbox_from\'\'{\'\'color\'\':\'\'black\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGinbox_subject\'\'{\'\'width\'\':\'\'530px\'\';\'\'}\'\'.\'\'WGinbox_messageTo\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'BECEF8\'\'1px\'\';\'\'height\'\':\'\'50px\'\';\'\'overflow\'\':\'\'-\'\'moz\'\'-\'\'scrollbars\'\'-\'\'vertical\'\';\'\'overflow\'\'-\'\'x\'\':\'\'hidden\'\';\'\'overflow\'\'-\'\'y\'\':\'\'scroll\'\';\'\'width\'\':\'\'530px\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'pagination\'\'*\'\'/\'\'.\'\'WGinbox_buttons\'\'{\'\'display\'\':\'\'inline\'\';\'\'float\'\':\'\'left\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'}\'\'.\'\'WGinbox_pagination\'\'{\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGinbox_messagerpp\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGmessage\'\'{\'\'display\'\':\'\'inline\'\';\'\'float\'\':\'\'left\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'width\'\':\'\'70\'\'%\'\';\'\'}\'\'.\'\'WGmessagerpp\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'float\'\':\'\'right\'\';\'\'}\'\'.\'\'WG\'\'-\'\'previous\'\'-\'\'next\'\'{\'\'float\'\':\'\'right\'\';\'\'}\'\'/\'\'*\'\'inbox\'\'threads\'\'*\'\'/\'\'.\'\'WGevenThread\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e8fb\'\';\'\'border\'\'-\'\'bottom\'\':\'\'1px\'\'solid\'\'#\'\'bfcef9\'\';\'\'padding\'\':\'\'8px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGoddThread\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'eef2fd\'\';\'\'border\'\'-\'\'bottom\'\':\'\'1px\'\'solid\'\'#\'\'bfcef9\'\';\'\'padding\'\':\'\'8px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'/\'\'*\'\'pagination\'\'*\'\'/\'\'.\'\'WGProfile_pagination\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGProfile_messagerpp\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'display\'\':\'\'inline\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGProfile_paginationLeft\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGProfile_paginationCenter\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'20\'\'%\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'a\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'bfc8dc\'\'1px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'1px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'d8dee8\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'.\'\'prevNext\'\'{\'\'background\'\'-\'\'color\'\':\'\'transparent\'\';\'\'border\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'.\'\'prevNext\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'transparent\'\';\'\'border\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'.\'\'active\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'d8dee8\'\';\'\'border\'\':\'\'solid\'\'#\'\'bfc8dc\'\'1px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'1px\'\'5px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfile_pagination\'\'img\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'margin\'\'-\'\'top\'\':\'\'2px\'\';\'\'border\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'profile\'\'*\'\'/\'\'.\'\'WGProfile_registration\'\'{\'\'background\'\':\'\'none\'\';\'\'border\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'family\'\':\'\'arial\'\';\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'header\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'818997\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'header\'\'a\'\'{\'\'color\'\':\'\'white\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'help\'\'a\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'inputText\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'margin\'\'-\'\'right\'\':\'\'1px\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'label\'\'{\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'width\'\':\'\'1\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'labelLeft\'\'{\'\'font\'\'-\'\'size\'\':\'\'9pt\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'width\'\':\'\'1\'\'%\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'smallLabel\'\'{\'\'font\'\'-\'\'size\'\':\'\'8px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'smallText\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'}\'\'.\'\'WGinboxTbl\'\'{\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'4px\'\';\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'bar\'\',\'\'.\'\'WGProfile_registration\'\'.\'\'barRight\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\':\'\'10px\'\'0px\'\'10px\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'4px\'\'4px\'\'0px\'\'4px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'bar\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barRight\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'bar\'\'a\'\'{\'\'color\'\':\'\'#\'\'0B2259\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barFive\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'2px\'\';\'\'width\'\':\'\'4\'\'.\'\'3\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barTen\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'7\'\'.\'\'2\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barFifteen\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'15\'\'%\'\';\'\'}\'\'.\'\'WGProfile_registration\'\'.\'\'barFifty\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'min\'\'-\'\'height\'\':\'\'25px\'\';\'\'padding\'\':\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'50\'\'%\'\';\'\'}\'\'.\'\'WGbarContainer\'\'{\'\'display\'\':\'\'block\'\';\'\'margin\'\':\'\'10px\'\'0px\'\'10px\'\'0px\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'/\'\'*\'\'profile\'\'edit\'\'*\'\'/\'\'.\'\'WGfields\'\'{\'\'padding\'\':\'\'2px\'\';\'\'}\'\'.\'\'WGfields_left\'\'{\'\'padding\'\':\'\'2px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'15\'\'%\'\';\'\'}\'\'.\'\'WGfields_right\'\'{\'\'display\'\':\'\'inline\'\'float\'\':\'\'right\'\';\'\'padding\'\':\'\'2px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'80\'\'%\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'WGProfile\'\'{\'\'display\'\':\'\'table\'\';\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'WGProfileFields\'\'{\'\'border\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'margin\'\':\'\'0\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'WGProfileFields\'\'ol\'\'{\'\'display\'\':\'\'inline\'\';\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'}\'\'.\'\'WGProfileFields\'\'ul\'\'{\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'display\'\':\'\'inline\'\';\'\'}\'\'.\'\'WGProfileFields\'\'ul\'\'li\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'*\'\'display\'\':\'\'inline\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'/\'\'*\'\'profile\'\'view\'\'*\'\'/\'\'.\'\'WGProfile_accepts\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'gray\'\';\'\'padding\'\':\'\'4px\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'.\'\'WGviewContainer\'\'{\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGinternational\'\'{\'\'background\'\'-\'\'color\'\':\'\'red\'\';\'\'color\'\':\'\'white\'\';\'\'display\'\':\'\'inline\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'4px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGcategoryLabel\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'width\'\':\'\'90\'\'%\'\';\'\'}\'\'.\'\'WGprivateMessage\'\'{\'\'background\'\'-\'\'color\'\':\'\'gray\'\';\'\'padding\'\':\'\'4px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'}\'\'.\'\'WGprofileAlert\'\'{\'\'background\'\'-\'\'color\'\':\'\'red\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'padding\'\':\'\'4px\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'width\'\':\'\'100\'\'%\'\';\'\'}\'\'WGprofilePhoto\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'/\'\'*\'\'profile\'\'errors\'\'*\'\'/\'\'#\'\'WGprofileErrors\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'ff0000\'\';\'\'color\'\':\'\'#\'\'ffffff\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'.\'\'WGprofilefield_required_off\'\'{\'\'}\'\'.\'\'WGprofilefield_required\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'ffd6bb\'\';\'\'}\'\'.\'\'WGprofilefield_error\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'FF9494\'\';\'\'}\'\'.\'\'WGerrorMsg\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'color\'\':\'\'red\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'}\'\'/\'\'*\'\'user\'\'*\'\'/\'\'.\'\'WGuserInvite_subject\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'border\'\':\'\'solid\'\'#\'\'BECEF8\'\'1px\'\';\'\'height\'\':\'\'25px\'\';\'\'text\'\'-\'\'align\'\':\'\'left\'\';\'\'width\'\':\'\'500px\'\';\'\'/\'\'*\'\'margin\'\'-\'\'left\'\':\'\'50px\'\';\'\'*\'\'/\'\'/\'\'*\'\'margin\'\'-\'\'bottom\'\':\'\'20px\'\';\'\'*\'\'/\'\'/\'\'*\'\'overflow\'\':\'\'-\'\'moz\'\'-\'\'scrollbars\'\'-\'\'vertical\'\';\'\'overflow\'\'-\'\'x\'\':\'\'hidden\'\';\'\'overflow\'\'-\'\'y\'\':\'\'scroll\'\';\'\'*\'\'/\'\'}\'\'/\'\'*\'\'view\'\'profile\'\'*\'\'/\'\'.\'\'WGprofile_canEdit\'\'{\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'background\'\'-\'\'color\'\':\'\'red\'\';\'\'padding\'\':\'\'4px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'WGprofile_fieldLabel\'\'{\'\'background\'\':\'\'#\'\'DDE6FB\'\';\'\'padding\'\':\'\'2px\'\';\'\'width\'\':\'\'200px\'\';\'\'}\'\'.\'\'WGprofile_fieldData\'\'{\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'.\'\'WGprofile_fieldStatus\'\'{\'\'padding\'\':\'\'4px\'\';\'\'color\'\':\'\'white\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\'}\'\'/\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'/\'\'/\'\'*\'\'TABS\'\'*\'\'/\'\'/\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'*\'\'/\'\'/\'\'*\'\'TABS\'\'-\'\'outer\'\'*\'\'/\'\'.\'\'WGbottombutton\'\'{\'\'float\'\':\'\'right\'\';\'\'padding\'\'-\'\'right\'\':\'\'2px\'\';\'\'padding\'\'-\'\'top\'\':\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'WGcontent\'\'{\'\'padding\'\':\'\'10px\'\';\'\'}\'\'.\'\'WGcleartab\'\'{\'\'clear\'\':\'\'both\'\';\'\'height\'\':\'\'0\'\';\'\'}\'\'.\'\'WGsubContent\'\'{\'\'/\'\'*\'\'color\'\'setting\'\'for\'\'border\'\'under\'\'outer\'\'tabs\'\'that\'\'surrounds\'\'inner\'\'tabs\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'6px\'\';\'\'}\'\'.\'\'WGtopbutton\'\'{\'\'float\'\':\'\'right\'\';\'\'clear\'\':\'\'both\'\';\'\'padding\'\'-\'\'right\'\':\'\'2px\'\';\'\'padding\'\'-\'\'top\'\':\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\',\'\'ul\'\'.\'\'WGtopTabs\'\'li\'\'{\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'margin\'\':\'\'10px\'\'0px\'\'0px\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'position\'\':\'\'relative\'\';\'\'width\'\':\'\'auto\'\';\'\'Xposition\'\':\'\'relative\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\'li\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'margin\'\'-\'\'right\'\':\'\'3px\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\'li\'\'b\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'eef2fd\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'display\'\':\'\'block\'\';\'\'padding\'\':\'\'4px\'\'8px\'\';\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'1px\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\'{\'\'/\'\'*\'\'non\'\'-\'\'selected\'\'tabs\'\'color\'\'settings\'\'*\'\'/\'\'display\'\':\'\'block\'\';\'\'color\'\':\'\'#\'\'9ea0bb\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f2f5fa\'\';\'\'border\'\'-\'\'left\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'#\'\'d8dee8\'\'1px\'\';\'\'}\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\':\'\'hover\'\',\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\':\'\'hover\'\'b\'\',\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\'.\'\'selected\'\',\'\'ul\'\'.\'\'WGtopTabs\'\'a\'\'.\'\'selected\'\'b\'\'{\'\'/\'\'*\'\'selected\'\'tab\'\'color\'\'settings\'\'*\'\'/\'\'background\'\'-\'\'color\'\':\'\'#\'\'d8dee8\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'}\'\'/\'\'*\'\'TABS\'\'-\'\'YUI\'\'*\'\'/\'\'.\'\'WGcleardiv\'\'{\'\'clear\'\':\'\'both\'\';\'\'margin\'\':\'\'0px\'\'0px\'\'0px\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'.\'\'WGview\'\'{\'\'border\'\':\'\'none\'\';\'\'font\'\':\'\'bold\'\'10px\'\'Verdana\'\';\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'position\'\':\'\'absolute\'\';\'\'right\'\':\'\'4px\'\';\'\'top\'\':\'\'4px\'\';\'\'}\'\'.\'\'WGprofile_displayView\'\'{\'\'-\'\'x\'\'-\'\'system\'\'-\'\'font\'\':\'\'none\'\';\'\'border\'\':\'\'medium\'\'none\'\';\'\'color\'\':\'\'#\'\'0B2258\'\';\'\'display\'\':\'\'inline\'\';\'\'float\'\':\'\'right\'\';\'\'font\'\'-\'\'family\'\':\'\'Verdana\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'font\'\'-\'\'size\'\'-\'\'adjust\'\':\'\'none\'\';\'\'font\'\'-\'\'stretch\'\':\'\'normal\'\';\'\'font\'\'-\'\'style\'\':\'\'normal\'\';\'\'font\'\'-\'\'variant\'\':\'\'normal\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'line\'\'-\'\'height\'\':\'\'normal\'\';\'\'padding\'\'-\'\'right\'\':\'\'8px\'\';\'\'padding\'\'-\'\'top\'\':\'\'3px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'.\'\'WGprofile_displaySubContent\'\'{\'\'/\'\'*\'\'border\'\'around\'\'friends\'\'tab\'\'content\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'d8dee8\'\'6px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'d8dee8\'\'18px\'\';\'\'}\'\'/\'\'*\'\'Copyright\'\'(\'\'c\'\')\'\'2008\'\',\'\'Yahoo\'\'!\'\'Inc\'\'.\'\'All\'\'rights\'\'reserved\'\'.\'\'Code\'\'licensed\'\'under\'\'the\'\'BSD\'\'License\'\':\'\'http\'\':\'\'/\'\'/\'\'developer\'\'.\'\'yahoo\'\'.\'\'net\'\'/\'\'yui\'\'/\'\'license\'\'.\'\'txt\'\'version\'\':\'\'2\'\'.\'\'6\'\'.\'\'0\'\'*\'\'/\'\'/\'\'*\'\'yui\'\'tabs\'\'color\'\'settings\'\'below\'\'*\'\'/\'\'/\'\'*\'\'.\'\'yui\'\'-\'\'navset\'\'defaults\'\'to\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'/\'\'*\'\'protect\'\'nested\'\'tabviews\'\'from\'\'other\'\'orientations\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'color\'\'between\'\'tab\'\'list\'\'and\'\'content\'\'*\'\'/\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'5px\'\';\'\'Xposition\'\':\'\'relative\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'{\'\'background\'\':\'\'#\'\'ffffff\'\';\'\'/\'\'*\'\'tab\'\'background\'\'*\'\'/\'\'border\'\':\'\'solid\'\'#\'\'ffffff\'\';\'\'border\'\'-\'\'width\'\':\'\'0\'\'1px\'\';\'\'color\'\':\'\'#\'\'bfccdd\'\';\'\'position\'\':\'\'relative\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\':\'\'solid\'\'#\'\'eef2fd\'\';\'\'border\'\'-\'\'width\'\':\'\'1px\'\'0\'\'0\'\';\'\'cursor\'\':\'\'hand\'\';\'\'padding\'\':\'\'0\'\'.\'\'25em\'\'.\'\'75em\'\';\'\'left\'\':\'\'0\'\';\'\'right\'\':\'\'0\'\';\'\'bottom\'\':\'\'0\'\';\'\'/\'\'*\'\'protect\'\'from\'\'other\'\'orientations\'\'*\'\'/\'\'top\'\':\'\'-\'\'1px\'\';\'\'/\'\'*\'\'for\'\'1px\'\'rounded\'\'corners\'\'*\'\'/\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\':\'\'focus\'\',\'\'/\'\'*\'\'no\'\'focus\'\'effect\'\'for\'\'selected\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\':\'\'hover\'\'{\'\'/\'\'*\'\'no\'\'hover\'\'effect\'\'for\'\'selected\'\'*\'\'/\'\'background\'\':\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'selected\'\'tab\'\'background\'\'*\'\'/\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\'em\'\'{\'\'border\'\'-\'\'color\'\':\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'selected\'\'tab\'\'border\'\'color\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'focus\'\'{\'\'background\'\':\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'hover\'\'tab\'\'background\'\'*\'\'/\'\'color\'\':\'\'#\'\'3e4f77\'\';\'\'outline\'\':\'\'0\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'font\'\'-\'\'family\'\':\'\'Arial\'\',\'\'Helvetica\'\',\'\'sans\'\'-\'\'serif\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'background\'\':\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'content\'\'background\'\'color\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'content\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'border\'\':\'\'5px\'\'solid\'\'#\'\'eef2fd\'\';\'\'/\'\'*\'\'content\'\'border\'\'*\'\'/\'\'padding\'\':\'\'0\'\'.\'\'75em\'\'1em\'\';\'\'/\'\'*\'\'content\'\'padding\'\'*\'\'/\'\'}\'\'/\'\'*\'\'left\'\'and\'\'right\'\'orientations\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'5px\'\'0\'\'0\'\';\'\'Xposition\'\':\'\'absolute\'\';\'\'/\'\'*\'\'from\'\'tabview\'\'-\'\'core\'\';\'\'have\'\'to\'\'reiterate\'\'for\'\'skin\'\'-\'\'sam\'\'due\'\'to\'\'pos\'\':\'\'rel\'\'on\'\'skin\'\'-\'\'sam\'\'yui\'\'-\'\'nav\'\'*\'\'/\'\'top\'\':\'\'0\'\';\'\'bottom\'\':\'\'0\'\';\'\'/\'\'*\'\'stretch\'\'to\'\'fill\'\'content\'\'height\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'0\'\'5px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'0\'\'.\'\'3em\'\';\'\'/\'\'*\'\'space\'\'between\'\'tabs\'\'*\'\'/\'\'padding\'\':\'\'0\'\'0\'\'0\'\'1px\'\';\'\'/\'\'*\'\'gecko\'\':\'\'make\'\'room\'\'for\'\'overflow\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'padding\'\':\'\'0\'\'1px\'\'0\'\'0\'\';\'\'/\'\'*\'\'gecko\'\':\'\'make\'\'room\'\'for\'\'overflow\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'0\'\'-\'\'1px\'\'0\'\'.\'\'16em\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'0\'\'0\'\'0\'\'.\'\'16em\'\'-\'\'1px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'{\'\'border\'\'-\'\'width\'\':\'\'1px\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'0\'\'1px\'\';\'\'padding\'\':\'\'0\'\'.\'\'2em\'\'.\'\'75em\'\';\'\'top\'\':\'\'auto\'\';\'\'left\'\':\'\'-\'\'1px\'\';\'\'/\'\'*\'\'for\'\'1px\'\'rounded\'\'corners\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'1px\'\'0\'\'0\'\';\'\'left\'\':\'\'auto\'\';\'\'right\'\':\'\'-\'\'1px\'\';\'\'/\'\'*\'\'for\'\'1px\'\'rounded\'\'corners\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'image\'\':\'\'none\'\';\'\'/\'\'*\'\'no\'\'left\'\'-\'\'right\'\'or\'\'bottom\'\'-\'\'top\'\'gradient\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'border\'\':\'\'1px\'\'solid\'\'#\'\'d8dee8\'\';\'\'/\'\'*\'\'content\'\'border\'\'*\'\'/\'\'}\'\'/\'\'*\'\'bottom\'\'orientation\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'5px\'\'0\'\'0\'\';\'\'/\'\'*\'\'color\'\'between\'\'tab\'\'list\'\'and\'\'content\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'-\'\'1px\'\'0\'\'.\'\'3em\'\'0\'\'0\'\';\'\'/\'\'*\'\'for\'\'overlap\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'padding\'\':\'\'0\'\'0\'\'1px\'\'0\'\';\'\'/\'\'*\'\'gecko\'\':\'\'make\'\'room\'\'for\'\'overflow\'\'*\'\'/\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'{\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'1px\'\';\'\'top\'\':\'\'auto\'\';\'\'bottom\'\':\'\'-\'\'1px\'\';\'\'/\'\'*\'\'for\'\'1px\'\'rounded\'\'corners\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'content\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'border\'\':\'\'1px\'\'solid\'\'#\'\'f2f5fa\'\';\'\'/\'\'*\'\'content\'\'border\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'d8dee8\'\';\'\'padding\'\':\'\'10px\'\'5\'\'5\'\'5px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'/\'\'*\'\'yui\'\'tab\'\'placement\'\'settings\'\'below\'\'*\'\'/\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'.\'\'3em\'\'0\'\'0\'\';\'\'/\'\'*\'\'space\'\'between\'\'tabs\'\'*\'\'/\'\'padding\'\':\'\'5px\'\'0\'\'0\'\';\'\'/\'\'*\'\'gecko\'\':\'\'make\'\'room\'\'for\'\'overflow\'\'*\'\'/\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'0\'\'0\'\'.\'\'3em\'\'-\'\'1px\'\'0\'\';\'\'/\'\'*\'\'for\'\'overlap\'\'*\'\'/\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'.\'\'5em\'\'0\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'0\'\'.\'\'5em\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'content\'\'.\'\'yui\'\'-\'\'hidden\'\'{\'\'display\'\':\'\'none\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'width\'\':\'\'6em\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'width\'\':\'\'auto\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'{\'\'padding\'\':\'\'0\'\'0\'\'0\'\'6em\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'{\'\'padding\'\':\'\'0\'\'6em\'\'0\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'{\'\'padding\'\':\'\'auto\'\';\'\'}\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'list\'\'-\'\'style\'\':\'\'none\'\';\'\'margin\'\':\'\'0\'\';\'\'padding\'\':\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'li\'\'em\'\'{\'\'font\'\'-\'\'style\'\':\'\'normal\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'{\'\'position\'\':\'\'relative\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'content\'\'{\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'display\'\':\'\'-\'\'moz\'\'-\'\'inline\'\'-\'\'stack\'\';\'\'*\'\'display\'\':\'\'inline\'\';\'\'vertical\'\'-\'\'align\'\':\'\'bottom\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'{\'\'position\'\':\'\'relative\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'display\'\':\'\'inline\'\'-\'\'block\'\';\'\'vertical\'\'-\'\'align\'\':\'\'bottom\'\';\'\'zoom\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'{\'\'vertical\'\'-\'\'align\'\':\'\'text\'\'-\'\'top\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'a\'\'em\'\'{\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'position\'\':\'\'absolute\'\';\'\'z\'\'-\'\'index\'\':\'\'1\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'top\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'position\'\':\'\'static\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'left\'\':\'\'0\'\';\'\'right\'\':\'\'auto\'\';\'\'}\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'left\'\':\'\'auto\'\';\'\'right\'\':\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\'em\'\'{\'\'padding\'\':\'\'0\'\'.\'\'35em\'\'0\'\'.\'\'75em\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'5px\'\'0\'\'0\'\';\'\'bottom\'\':\'\'0\'\';\'\'top\'\':\'\'0\'\';\'\'Xposition\'\':\'\'absolute\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'0\'\'5px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'margin\'\':\'\'0\'\'0\'\'0\'\'.\'\'16em\'\';\'\'padding\'\':\'\'0\'\'0\'\'0\'\'1px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'padding\'\':\'\'0\'\'1px\'\'0\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'{\'\'border\'\'-\'\'width\'\':\'\'1px\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'0\'\'0\'\'1px\'\';\'\'left\'\':\'\'-\'\'1px\'\';\'\'padding\'\':\'\'0\'\'.\'\'2em\'\'.\'\'75em\'\';\'\'top\'\':\'\'auto\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\'em\'\'{\'\'border\'\'-\'\'width\'\':\'\'0\'\'1px\'\'0\'\'0\'\';\'\'left\'\':\'\'auto\'\';\'\'right\'\':\'\'-\'\'1px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'left\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'right\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'a\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'a\'\':\'\'hover\'\'{\'\'background\'\'-\'\'image\'\':\'\'none\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'.\'\'selected\'\'{\'\'margin\'\':\'\'-\'\'1px\'\'0\'\'.\'\'16em\'\'0\'\'0\'\';\'\'}\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\',\'\'.\'\'yui\'\'-\'\'skin\'\'-\'\'sam\'\'.\'\'yui\'\'-\'\'navset\'\'-\'\'bottom\'\'.\'\'yui\'\'-\'\'nav\'\'li\'\'{\'\'padding\'\':\'\'0\'\'0\'\'1px\'\'0\'\';\'\'vertical\'\'-\'\'align\'\':\'\'top\'\';\'\'}','000001000001000001000008'),('hkj6WeChxFyqfP85UlRP8w','matrix.css','matrix.css matrix.css new matrix matrix.css ','new-matrix/matrix.css',1232664229,1235708941,'3','7','12','WebGUI::Asset::Snippet',1,'matrix\'\'.\'\'css\'\'matrix\'\'.\'\'css\'\'new\'\'matrix\'\'matrix\'\'.\'\'css .\'\'wg\'\'-\'\'clear\'\'{\'\'display\'\':\'\'inline\'\';\'\'clear\'\':\'\'both\'\';\'\'font\'\'-\'\'size\'\':\'\'0px\'\';\'\'line\'\'-\'\'height\'\':\'\'0px\'\';\'\'}\'\'/\'\'*\'\'COLUMN\'\'STYLES\'\'*\'\'/\'\'#\'\'matrixLeft\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'65\'\'%\'\';\'\'padding\'\':\'\'1\'\'%\'\';\'\'min\'\'-\'\'height\'\':\'\'1\'\'%\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixRight\'\'{\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'25\'\'%\'\';\'\'padding\'\':\'\'0px\'\';\'\'min\'\'-\'\'height\'\':\'\'1\'\'%\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'margin\'\'-\'\'left\'\':\'\'5px\'\';\'\'}\'\'/\'\'*\'\'DROPSHADOW\'\'BUTTONS\'\'*\'\'/\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'span\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'888\'\';\'\'position\'\':\'\'relative\'\';\'\'padding\'\':\'\'5px\'\'0px\'\'0px\'\'0px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\',\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\'{\'\'border\'\':\'\'solid\'\'#\'\'2f495e\'\'2px\'\';\'\'position\'\':\'\'relative\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'padding\'\':\'\'auto\'\'3px\'\';\'\'margin\'\':\'\'0px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'line\'\'-\'\'height\'\':\'\'13px\'\';\'\'position\'\':\'\'relative\'\';\'\'top\'\':\'\'-\'\'6px\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'height\'\':\'\'22px\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\'2px\'\'10px\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'button\'\':\'\'hover\'\',\'\'#\'\'matrixLeft\'\'.\'\'buttons\'\'a\'\'#\'\'return\'\':\'\'hover\'\'{\'\'border\'\'-\'\'color\'\':\'\'black\'\';\'\'color\'\':\'\'white\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'444\'\';\'\'}\'\'/\'\'*\'\'WHITE\'\'AREA\'\'FOR\'\'THE\'\'LISTING\'\'OF\'\'OBJECTS\'\'TO\'\'COMPARE\'\'*\'\'/\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'{\'\'background\'\'-\'\'color\'\':\'\'white\'\';\'\'_height\'\':\'\'300px\'\';\'\'min\'\'-\'\'height\'\':\'\'300px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'margin\'\':\'\'10px\'\'2px\'\'20px\'\'2px\'\';\'\'padding\'\':\'\'auto\'\'10px\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'link\'\'{\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'color\'\':\'\'#\'\'111\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'visited\'\'{\'\'color\'\':\'\'#\'\'333\'\';\'\'font\'\'-\'\'size\'\':\'\'12px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'table\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'GRAY\'\'BAR\'\'THAT\'\'HOLDS\'\'THE\'\'SORT\'\'BUTTONS\'\'*\'\'/\'\'#\'\'matrixLeft\'\'.\'\'matrixListing\'\'.\'\'sortButtons\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'#\'\'D2D2D2\'\'2px\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'/\'\'*\'\'STYLES\'\'TO\'\'OVERRIDE\'\'THE\'\'SORT\'\'BUTTON\'\'CSS\'\'BUILT\'\'INTO\'\'THE\'\'PERL\'\'CODE\'\'*\'\'/\'\'#\'\'sortByViews\'\'-\'\'button\'\',\'\'#\'\'sortByCompares\'\'-\'\'button\'\',\'\'#\'\'sortByUpdated\'\'-\'\'button\'\',\'\'#\'\'sortByClicks\'\'-\'\'button\'\'{\'\'background\'\':\'\'none\'\';\'\'white\'\'-\'\'space\'\':\'\'nowrap\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'cursor\'\':\'\'pointer\'\';\'\'padding\'\'-\'\'bottom\'\':\'\'4px\'\';\'\'border\'\'-\'\'style\'\':\'\'none\'\';\'\'background\'\'-\'\'color\'\':\'\'transparent\'\';\'\'border\'\'-\'\'right\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'}\'\'#\'\'sortByViews\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByCompares\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByUpdated\'\'-\'\'button\'\':\'\'hover\'\',\'\'#\'\'sortByClicks\'\'-\'\'button\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'/\'\'*\'\'MATRIX\'\'STATISTICS\'\'*\'\'/\'\'#\'\'matrixRight\'\'.\'\'mainTitle\'\'{\'\'font\'\'-\'\'size\'\':\'\'20px\'\';\'\'padding\'\':\'\'5px\'\'10px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'}\'\'#\'\'matrixRight\'\'.\'\'textBox\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'padding\'\':\'\'10px\'\'5px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'{\'\'padding\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'title\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'statistics\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'15px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'label\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'width\'\':\'\'100px\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'{\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'a\'\'{\'\'color\'\':\'\'#\'\'111\'\';\'\'}\'\'.\'\'matrixStatistics\'\'.\'\'data\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'/\'\'*\'\'LINKS\'\'TO\'\'CONTROL\'\'ADMIN\'\'FUNCTIONS\'\'*\'\'/\'\'.\'\'adminLinks\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\':\'\'link\'\',\'\'.\'\'adminLinks\'\'a\'\':\'\'visited\'\'{\'\'display\'\':\'\'block\'\';\'\'text\'\'-\'\'align\'\':\'\'center\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\':\'\'hover\'\'{\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'link\'\',\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'visited\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'3498d1\'\';\'\'color\'\':\'\'white\'\';\'\'display\'\':\'\'block\'\';\'\'}\'\'.\'\'adminLinks\'\'a\'\'.\'\'newLink\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'39a6e5\'\';\'\'}\'\'/\'\'*\'\'STYLE\'\'FOR\'\'THE\'\'DETAILED\'\'LISTING\'\'*\'\'/\'\'#\'\'matrixDetail\'\'{\'\'min\'\'-\'\'width\'\':\'\'1000px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'{\'\'font\'\'-\'\'size\'\':\'\'9px\'\';\'\'line\'\'-\'\'height\'\':\'\'11px\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'font\'\'-\'\'weight\'\':\'\'normal\'\';\'\'margin\'\'-\'\'left\'\':\'\'10px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'editBtns\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'.\'\'screenshot\'\'{\'\'float\'\':\'\'left\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'commentsMail\'\'strong\'\'.\'\'title\'\'{\'\'margin\'\'-\'\'bottom\'\':\'\'0px\'\';\'\'margin\'\'-\'\'top\'\':\'\'20px\'\';\'\'display\'\':\'\'block\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'d2d2d2\'\';\'\'padding\'\':\'\'2px\'\'10px\'\';\'\'border\'\':\'\'solid\'\'1px\'\'gray\'\';\'\'border\'\'-\'\'bottom\'\'-\'\'color\'\':\'\'silver\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'{\'\'margin\'\':\'\'0px\'\'0px\'\'20px\'\'0px\'\';\'\'border\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'bottomRight\'\':\'\'4px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'.\'\'assetAspectComment\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'padding\'\':\'\'3px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f5f5f5\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'assetAspectComments\'\'.\'\'assetAspectCommentForm\'\'{\'\'border\'\'-\'\'top\'\':\'\'solid\'\'#\'\'d2d2d2\'\'5px\'\';\'\'padding\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\',\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'{\'\'list\'\'-\'\'style\'\'-\'\'type\'\':\'\'none\'\';\'\'margin\'\':\'\'0px\'\';\'\'padding\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'{\'\'display\'\':\'\'block\'\';\'\'line\'\'-\'\'height\'\':\'\'20px\'\';\'\'margin\'\':\'\'4px\'\'0px\'\';\'\'}\'\'#\'\'matrixDetail\'\'.\'\'stats\'\'ul\'\'li\'\'strong\'\'{\'\'display\'\':\'\'block\'\';\'\'float\'\':\'\'left\'\';\'\'width\'\':\'\'130px\'\';\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\'-\'\'right\'\':\'\'5px\'\';\'\'margin\'\'-\'\'right\'\':\'\'5px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'3px\'\';\'\'font\'\'-\'\'size\'\':\'\'11px\'\';\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'}\'\'.\'\'showLink\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'e1e1e1\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'.\'\'showLink\'\':\'\'hover\'\',\'\'.\'\'hideLink\'\':\'\'hover\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'555\'\';\'\'color\'\':\'\'white\'\';\'\'}\'\'.\'\'hideLink\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'border\'\'-\'\'bottom\'\'-\'\'style\'\':\'\'none\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topRight\'\':\'\'4px\'\';\'\'padding\'\':\'\'3px\'\'10px\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'color\'\':\'\'black\'\';\'\'}\'\'#\'\'matrixMail\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'padding\'\':\'\'15px\'\';\'\'border\'\':\'\'2px\'\'solid\'\'#\'\'2F495E\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'0px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\'-\'\'topLeft\'\':\'\'0px\'\';\'\'margin\'\'-\'\'top\'\':\'\'1px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'.\'\'tableData\'\'{\'\'padding\'\':\'\'5px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'input\'\'{\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixMail\'\'*\'\'.\'\'formDescription\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'vertical\'\'-\'\'align\'\':\'\'middle\'\';\'\'padding\'\'-\'\'right\'\':\'\'10px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'}\'\'#\'\'matrixMail\'\'form\'\'*\'\'img\'\'{\'\'margin\'\'-\'\'top\'\':\'\'-\'\'18px\'\';\'\'}\'\'#\'\'matrixMail\'\'#\'\'verify_formId\'\'{\'\'height\'\':\'\'45px\'\';\'\'line\'\'-\'\'height\'\':\'\'45px\'\';\'\'font\'\'-\'\'size\'\':\'\'35px\'\';\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'matrixRatings\'\'{\'\'width\'\':\'\'264px\'\';\'\'position\'\':\'\'relative\'\';\'\'left\'\':\'\'-\'\'2px\'\';\'\'top\'\':\'\'12px\'\';\'\'}\'\'#\'\'matrixRatings\'\'table\'\'{\'\'margin\'\'-\'\'left\'\':\'\'0px\'\';\'\'}\'\'#\'\'matrixRatings\'\'td\'\'{\'\'overflow\'\':\'\'hidden\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'{\'\'text\'\'-\'\'align\'\':\'\'right\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'97BCD1\'\';\'\'border\'\':\'\'solid\'\'#\'\'4D606B\'\'1px\'\';\'\'padding\'\':\'\'2px\'\'5px\'\';\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'10x\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'color\'\':\'\'#\'\'333\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\':\'\'before\'\'{\'\'content\'\':\'\'\"\'\'»\'\'\"\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\'{\'\'display\'\':\'\'block\'\';\'\'color\'\':\'\'red\'\';\'\'text\'\'-\'\'decoration\'\':\'\'none\'\';\'\'}\'\'#\'\'matrixRatings\'\'.\'\'formDescription\'\'a\'\':\'\'hover\'\'{\'\'text\'\'-\'\'decoration\'\':\'\'underline\'\';\'\'}\'\'#\'\'matrixAttributes\'\'{\'\'float\'\':\'\'left\'\';\'\'_width\'\':\'\'40\'\'%\'\';\'\'min\'\'-\'\'width\'\':\'\'20\'\'%\'\';\'\'max\'\'-\'\'width\'\':\'\'45\'\'%\'\';\'\'margin\'\'-\'\'right\'\':\'\'20px\'\';\'\'}\'\'#\'\'rightDetails\'\'{\'\'float\'\':\'\'left\'\';\'\'_width\'\':\'\'20\'\'%\'\';\'\'min\'\'-\'\'width\'\':\'\'20\'\'%\'\';\'\'max\'\'-\'\'width\'\':\'\'45\'\'%\'\';\'\'}\'\'#\'\'attributes\'\'{\'\'border\'\':\'\'solid\'\'#\'\'d2d2d2\'\'1px\'\';\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'margin\'\'-\'\'top\'\':\'\'10px\'\';\'\'-\'\'moz\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'-\'\'webkit\'\'-\'\'border\'\'-\'\'radius\'\':\'\'4px\'\';\'\'padding\'\':\'\'10px\'\';\'\'}\'\'#\'\'attributes\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'padding\'\':\'\'0px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'#\'\'attributes\'\'table\'\'*\'\'td\'\'{\'\'padding\'\':\'\'2px\'\';\'\'margin\'\':\'\'0px\'\';\'\'}\'\'.\'\'yui\'\'-\'\'dt0\'\'-\'\'col\'\'-\'\'value\'\'{\'\'font\'\'-\'\'weight\'\':\'\'bold\'\';\'\'font\'\'-\'\'size\'\':\'\'14px\'\';\'\'padding\'\':\'\'3px\'\';\'\'white\'\'-\'\'space\'\':\'\'no\'\'-\'\'wrap\'\';\'\'}\'\'/\'\'*\'\'COMPARISON\'\'STYLES\'\'*\'\'/\'\'#\'\'compareList\'\'table\'\'{\'\'border\'\'-\'\'collapse\'\':\'\'collapse\'\';\'\'border\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'margin\'\'-\'\'top\'\':\'\'5px\'\';\'\'}\'\'#\'\'compareList\'\'table\'\'*\'\'th\'\'a\'\'{\'\'color\'\':\'\'black\'\';\'\'padding\'\':\'\'1px\'\'5px\'\';\'\'}\'\'#\'\'compareList\'\'table\'\'*\'\'td\'\'{\'\'background\'\'-\'\'color\'\':\'\'#\'\'f1f1f1\'\';\'\'border\'\'-\'\'top\'\':\'\'solid\'\'gray\'\'1px\'\';\'\'border\'\'-\'\'bottom\'\':\'\'solid\'\'silver\'\'1px\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'{\'\'color\'\':\'\'#\'\'39A6E5\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'col\'\'-\'\'name\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'{\'\'font\'\'-\'\'style\'\':\'\'italic\'\';\'\'font\'\'-\'\'size\'\':\'\'10px\'\';\'\'color\'\':\'\'#\'\'555\'\';\'\'}\'\'#\'\'compareList\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'col\'\'-\'\'name\'\'.\'\'yui\'\'-\'\'dt\'\'-\'\'liner\'\'b\'\'{\'\'font\'\'-\'\'size\'\':\'\'15px\'\';\'\'font\'\'-\'\'style\'\':\'\'normal\'\';\'\'padding\'\'-\'\'right\'\':\'\'25px\'\';\'\'color\'\':\'\'black\'\';\'\'}','000001000001000019000006'),('wrq7hMxb1ewQqZ46xmd8Gg','equal-cols.js','equal-cols.js equal-cols.js matrix equal cols.js ','matrix/equal-cols.js',1235706620,1235706620,'3','7','12','WebGUI::Asset::Snippet',1,'equal\'\'-\'\'cols\'\'.\'\'js\'\'equal\'\'-\'\'cols\'\'.\'\'js\'\'matrix\'\'equal\'\'cols\'\'.\'\'js function\'\'equalCol\'\'(\'\')\'\'{\'\'var\'\'colOne\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'\'\'\'compareForm\'\'\'\'\')\'\';\'\'var\'\'colTwo\'\'=\'\'document\'\'.\'\'getElementById\'\'(\'\'\'\'\'matrixRight\'\'\'\'\')\'\';\'\'var\'\'colOneH\'\'=\'\'colOne\'\'.\'\'offsetHeight\'\';\'\'var\'\'colTwoH\'\'=\'\'colTwo\'\'.\'\'offsetHeight\'\';\'\'/\'\'/\'\'alert\'\'(\'\'colOneH\'\'+\'\'\"\'\',\'\'\"\'\'+\'\'colTwoH\'\')\'\';\'\'colOne\'\'.\'\'style\'\'.\'\'overflow\'\'=\'\'\"\'\'scroll\'\'\"\'\';\'\'colOne\'\'.\'\'style\'\'.\'\'height\'\'=\'\'(\'\'colTwoH\'\'-\'\'150\'\')\'\'+\'\'\"\'\'px\'\'\"\'\';\'\'}','000001000001000050'); +INSERT INTO `assetVersionTag` VALUES ('pbversion0000000000001','Base 7.6.14 Install',1,1236110747,'3',1236110747,'3',0,'','3','',NULL,NULL,NULL,NULL,0); INSERT INTO `authentication` VALUES ('1','LDAP','ldapUrl',NULL),('3','LDAP','ldapUrl',''),('1','LDAP','connectDN',NULL),('3','LDAP','connectDN',''),('1','WebGUI','identifier','No Login'),('3','WebGUI','identifier','RvlMjeFPs2aAhQdo/xt/Kg'),('1','WebGUI','passwordLastUpdated','1078704037'),('1','WebGUI','passwordTimeout','3122064000'),('1','WebGUI','changeUsername','1'),('1','WebGUI','changePassword','1'),('3','WebGUI','passwordLastUpdated','1078704037'),('3','WebGUI','passwordTimeout','3122064000'),('3','WebGUI','changeUsername','1'),('3','WebGUI','changePassword','1'); INSERT INTO `databaseLink` VALUES ('0',NULL,NULL,NULL,NULL,NULL,1,''); INSERT INTO `groupGroupings` VALUES ('4','12'),('6','12'),('8','12'),('11','12'),('3','2'),('3','4'),('3','6'),('3','7'),('3','8'),('3','13'),('3','11'),('3','12'),('3','14'),('3','pbgroup000000000000015'),('3','pbgroup000000000000016'),('3','pbgroup000000000000017'),('3','1'); @@ -2606,14 +2520,14 @@ INSERT INTO `imagePaletteColors` VALUES ('defaultPalette','UVL-iDSq7VTks3RCH2FEW INSERT INTO `ldapLink` VALUES ('1uBbhUm686mkFZ1ghv7Lag','Default LDAP Connection','ldap://ldap.mycompany.com:389/o=MyCompany','','','cn','shortname','LDAP Shortname','LDAP Password','0','Welcome to our site.','PBtmpl0000000000000004','PBtmpl0000000000000005','PBtmpl0000000000000006',NULL); INSERT INTO `paymentGateway` VALUES ('gzUxkEZJxREF9JpylOg2zw','WebGUI::Shop::PayDriver::Cash','{\"receiptEmailTemplateId\":\"bPz1yk6Y9uwMDMBcmMsSCg\",\"saleNotificationGroupId\":3,\"groupToUse\":7,\"label\":\"Cash\",\"enabled\":1}'),('BaSs55o1bnOlAj4F0hHYag','WebGUI::Shop::PayDriver::ITransact','{\"receiptEmailTemplateId\":\"bPz1yk6Y9uwMDMBcmMsSCg\",\"saleNotificationGroupId\":3,\"credentialsTemplateId\":\"itransact_credentials1\",\"groupToUse\":7,\"label\":\"ITransact\",\"enabled\":1}'); INSERT INTO `replacements` VALUES ('1','[quote]','
        '),('2','[/quote]','
        '),('3','[image]',''),('5','shit','crap'),('6','fuck','farg'),('7','asshole','icehole'),('8','nigger','guy'),('9','[b]',''),('10','[/b]',''),('11','[i]',''),('12','[/i]',''); -INSERT INTO `settings` VALUES ('maxAttachmentSize','100000'),('sessionTimeout','7200'),('smtpServer','localhost'),('companyEmail','info@mycompany.com'),('companyName','My Company'),('companyURL','http://www.mycompany.com'),('authMethod','WebGUI'),('anonymousRegistration','0'),('notFoundPage','68sKwDgf9cGH58-NZcU4lg'),('webguiRecoverPasswordEmail','Someone (probably you) requested your account information be sent. Your password has been reset. The following represents your new account information:'),('profileName','1'),('profileExtraContact','1'),('profileMisc','1'),('profileHome','0'),('profileWork','0'),('preventProxyCache','0'),('thumbnailSize','50'),('textBoxSize','30'),('defaultPage','68sKwDgf9cGH58-NZcU4lg'),('defaultVersionTagWorkflow','pbworkflow000000000003'),('useKarma','0'),('karmaPerLogin','1'),('runOnRegistration',''),('maxImageSize','100000'),('showDebug','0'),('richEditor','PBrichedit000000000001'),('selfDeactivation','1'),('snippetsPreviewLength','30'),('mailFooter','^c;\n^e;\n^u;\n'),('webguiSendWelcomeMessage','0'),('webguiWelcomeMessage','Welcome to our site.'),('encryptLogin','0'),('hostToUse','HTTP_HOST'),('webguiExpirePasswordOnCreation','0'),('webguiPasswordLength','0'),('webguiPasswordRecovery','0'),('webguiPasswordTimeout','3122064000'),('commerceCheckoutCanceledTemplateId','PBtmpl0000000000000015'),('webguiChangePassword','1'),('webguiChangeUsername','1'),('metaDataEnabled','0'),('passiveProfilingEnabled','0'),('urlExtension',''),('commerceConfirmCheckoutTemplateId','PBtmpl0000000000000016'),('commercePaymentPlugin','PayFlowPro'),('commerceSelectPaymentGatewayTemplateId','PBtmpl0000000000000017'),('AdminConsoleTemplate','PBtmpl0000000000000001'),('userFunctionStyleId','stevestyle000000000003'),('webguiValidateEmail','0'),('webguiUseCaptcha','1'),('webguiAccountTemplate','PBtmpl0000000000000010'),('webguiCreateAccountTemplate','PBtmpl0000000000000011'),('webguiExpiredPasswordTemplate','PBtmpl0000000000000012'),('webguiLoginTemplate','PBtmpl0000000000000013'),('webguiPasswordRecoveryTemplate','PBtmpl0000000000000014'),('ldapConnection','1uBbhUm686mkFZ1ghv7Lag'),('commerceSelectShippingMethodTemplateId','PBtmplCSSM000000000001'),('commerceViewShoppingCartTemplateId','PBtmplVSC0000000000001'),('commerceSendDailyReportTo',''),('debugIp',''),('showPerformanceIndicators','0'),('mailReturnPath',NULL),('commercePurchaseHistoryTemplateId','PBtmpl0000000000000019'),('webguiNonWordCharacters','0'),('webguiRequiredMixedCase','0'),('webguiRequiredDigits','0'),('automaticLDAPRegistration','0'),('commerceEnableSalesTax','0'),('trashWorkflow',NULL),('purgeWorkflow',NULL),('changeUrlWorkflow',NULL),('webguiPasswordRecoveryRequireUsername','1'),('groupIdCashier','3'),('skipCommitComments','1'),('groupIdAdminCache','3'),('groupIdAdminSpectre','3'),('groupIdAdminAdSpace','3'),('groupIdAdminWorkflow','pbgroup000000000000015'),('groupIdAdminGroupAdmin','11'),('groupIdAdminProfileSettings','3'),('groupIdAdminDatabaseLink','3'),('groupIdAdminActiveSessions','3'),('groupIdAdminLDAPLink','3'),('groupIdAdminStatistics','3'),('groupIdAdminHelp','7'),('groupIdAdminCommerce','3'),('groupIdAdminWorkflowRun','3'),('groupIdAdminUserAdd','11'),('groupIdAdminUser','3'),('groupIdAdminVersionTag','12'),('groupIdAdminGraphics','3'),('groupIdAdminGroup','3'),('groupIdAdminCron','3'),('groupIdAdminLoginHistory','3'),('groupIdAdminReplacements','3'),('runOnAdminCreateUser',''),('runOnAdminUpdateUser',''),('shopCartTemplateId','aIpCmr9Hi__vgdZnDTz1jw'),('shopAddressBookTemplateId','3womoo7Teyy2YKFa25-MZg'),('shopAddressTemplateId','XNd7a_g_cTvJVYrVHcx2Mw'),('shopMyPurchasesTemplateId','2gtFt7c0qAFNU3BG_uvNvg'),('shopMyPurchasesDetailTemplateId','g8W53Pd71uHB9pxaXhWf_A'),('showMessageOnLoginTimes','0'),('showMessageOnLogin','0'),('showMessageOnLoginBody',''),('versionTagMode','autoCommit'),('profileStyleTemplateId',''),('profileLayoutTemplateId','FJbUTvZ2nUTn65LpW6gjsA'),('profileEditTemplateId','75CmQgpcCSkdsL-oawdn3Q'),('inboxStyleTemplateId',''),('inboxViewTemplateId','c8xrwVuu5QE0XtF9DiVzLw'),('inboxViewMessageTemplateId','0n4HtbXaWa_XJHkFjetnLQ'),('inboxSendMessageTemplateId','6uQEULvXFgCYlRWnYzZsuA'),('inboxErrorTemplateId','ErEzulFiEKDkaCDVmxUavw'),('inboxMessageConfirmationTemplateId','DUoxlTBXhVS-Zl3CFDpt9g'),('inboxManageInvitationsTemplateId','1Q4Je3hKCJzeo0ZBB5YB8g'),('inboxViewInvitationTemplateId','VBkY05f-E3WJS50WpdKd1Q'),('inboxInvitationConfirmTemplateId','5A8Hd9zXvByTDy4x-H28qw'),('inboxInviteUserEnabled','0'),('inboxInviteUserRestrictSubject','0'),('inboxInviteUserSubject','^International(invite subject,Account_Inbox,^u;);'),('inboxInviteUserRestrictMessage','0'),('inboxInviteUserMessage','^International(invite message,Account_Inbox);'),('inboxInviteUserMessageTemplateId','XgcsoDrbC0duVla7N7JAdw'),('inboxInviteUserTemplateId','cR0UFm7I1qUI2Wbpj--08Q'),('inboxInviteUserConfirmTemplateId','SVIhz68689hwUGgcDM-gWw'),('friendsStyleTemplateId',''),('friendsViewTemplateId','1Yn_zE_dSiNuaBGNLPbxtw'),('friendsEditTemplateId','AZFU33p0jpPJ-E6qLSWZng'),('friendsSendRequestTemplateId','AGJBGviWGAwjnwziiPjvDg'),('friendsErrorTemplateId','7Ijdd8SW32lVgg2H8R-Aqw'),('friendsConfirmTemplateId','K8F0j_cq_jgo8dvWY_26Ag'),('friendsRemoveConfirmTemplateId','G5V6neXIDiFXN05oL-U3AQ'),('userAccountStyleTemplateId',''),('userAccountLayoutTemplateId','9ThW278DWLV0-Svf68ljFQ'),('shopStyleTemplateId',''),('shopLayoutTemplateId','aUDsJ-vB9RgP-AYvPOy8FQ'),('contribStyleTemplateId',''),('contribLayoutTemplateId','b4n3VyUIsAHyIvT-W-jziA'),('contribViewTemplateId','1IzRpX0tgW7iuCfaU2Kk0A'),('profileViewTemplateId','2CS-BErrjMmESOtGT90qOg'),('profileErrorTemplateId','MBmWlA_YEA2I6D29OMGtRg'),('inboxLayoutTemplateId','gfZOwaTWYjbSoVaQtHBBEw'),('friendsLayoutTemplateId','zrNpGbT3odfIkg6nFSUy8Q'),('specialState','init'),('inboxRichEditId','PBrichedit000000000001'); +INSERT INTO `settings` VALUES ('maxAttachmentSize','100000'),('sessionTimeout','7200'),('smtpServer','localhost'),('companyEmail','info@mycompany.com'),('companyName','My Company'),('companyURL','http://www.mycompany.com'),('authMethod','WebGUI'),('anonymousRegistration','0'),('notFoundPage','68sKwDgf9cGH58-NZcU4lg'),('webguiRecoverPasswordEmail','Someone (probably you) requested your account information be sent. Your password has been reset. The following represents your new account information:'),('profileName','1'),('profileExtraContact','1'),('profileMisc','1'),('profileHome','0'),('profileWork','0'),('preventProxyCache','0'),('thumbnailSize','50'),('textBoxSize','30'),('defaultPage','68sKwDgf9cGH58-NZcU4lg'),('defaultVersionTagWorkflow','pbworkflow000000000003'),('useKarma','0'),('karmaPerLogin','1'),('runOnRegistration',''),('maxImageSize','100000'),('showDebug','0'),('richEditor','PBrichedit000000000001'),('selfDeactivation','1'),('snippetsPreviewLength','30'),('mailFooter','^c;\n^e;\n^u;\n'),('webguiSendWelcomeMessage','0'),('webguiWelcomeMessage','Welcome to our site.'),('encryptLogin','0'),('hostToUse','HTTP_HOST'),('webguiExpirePasswordOnCreation','0'),('webguiPasswordLength','0'),('webguiPasswordRecovery','0'),('webguiPasswordTimeout','3122064000'),('commerceCheckoutCanceledTemplateId','PBtmpl0000000000000015'),('webguiChangePassword','1'),('webguiChangeUsername','1'),('metaDataEnabled','0'),('passiveProfilingEnabled','0'),('urlExtension',''),('commerceConfirmCheckoutTemplateId','PBtmpl0000000000000016'),('commercePaymentPlugin','PayFlowPro'),('commerceSelectPaymentGatewayTemplateId','PBtmpl0000000000000017'),('AdminConsoleTemplate','PBtmpl0000000000000001'),('userFunctionStyleId','stevestyle000000000003'),('webguiValidateEmail','0'),('webguiUseCaptcha','1'),('webguiAccountTemplate','PBtmpl0000000000000010'),('webguiCreateAccountTemplate','PBtmpl0000000000000011'),('webguiExpiredPasswordTemplate','PBtmpl0000000000000012'),('webguiLoginTemplate','PBtmpl0000000000000013'),('webguiPasswordRecoveryTemplate','PBtmpl0000000000000014'),('ldapConnection','1uBbhUm686mkFZ1ghv7Lag'),('commerceSelectShippingMethodTemplateId','PBtmplCSSM000000000001'),('commerceViewShoppingCartTemplateId','PBtmplVSC0000000000001'),('commerceSendDailyReportTo',''),('debugIp',''),('showPerformanceIndicators','0'),('mailReturnPath',NULL),('commercePurchaseHistoryTemplateId','PBtmpl0000000000000019'),('webguiNonWordCharacters','0'),('webguiRequiredMixedCase','0'),('webguiRequiredDigits','0'),('automaticLDAPRegistration','0'),('commerceEnableSalesTax','0'),('trashWorkflow',NULL),('purgeWorkflow',NULL),('changeUrlWorkflow',NULL),('webguiPasswordRecoveryRequireUsername','1'),('groupIdCashier','3'),('skipCommitComments','1'),('groupIdAdminCache','3'),('groupIdAdminSpectre','3'),('groupIdAdminAdSpace','3'),('groupIdAdminWorkflow','pbgroup000000000000015'),('groupIdAdminGroupAdmin','11'),('groupIdAdminProfileSettings','3'),('groupIdAdminDatabaseLink','3'),('groupIdAdminActiveSessions','3'),('groupIdAdminLDAPLink','3'),('groupIdAdminStatistics','3'),('groupIdAdminHelp','7'),('groupIdAdminCommerce','3'),('groupIdAdminWorkflowRun','3'),('groupIdAdminUserAdd','11'),('groupIdAdminUser','3'),('groupIdAdminVersionTag','12'),('groupIdAdminGraphics','3'),('groupIdAdminGroup','3'),('groupIdAdminCron','3'),('groupIdAdminLoginHistory','3'),('groupIdAdminReplacements','3'),('runOnAdminCreateUser',''),('runOnAdminUpdateUser',''),('shopCartTemplateId','aIpCmr9Hi__vgdZnDTz1jw'),('shopAddressBookTemplateId','3womoo7Teyy2YKFa25-MZg'),('shopAddressTemplateId','XNd7a_g_cTvJVYrVHcx2Mw'),('shopMyPurchasesTemplateId','2gtFt7c0qAFNU3BG_uvNvg'),('shopMyPurchasesDetailTemplateId','g8W53Pd71uHB9pxaXhWf_A'),('showMessageOnLoginTimes','0'),('showMessageOnLogin','0'),('showMessageOnLoginBody',''),('versionTagMode','autoCommit'),('profileStyleTemplateId',''),('profileLayoutTemplateId','FJbUTvZ2nUTn65LpW6gjsA'),('profileEditTemplateId','75CmQgpcCSkdsL-oawdn3Q'),('inboxStyleTemplateId',''),('inboxViewTemplateId','c8xrwVuu5QE0XtF9DiVzLw'),('inboxViewMessageTemplateId','0n4HtbXaWa_XJHkFjetnLQ'),('inboxSendMessageTemplateId','6uQEULvXFgCYlRWnYzZsuA'),('inboxErrorTemplateId','ErEzulFiEKDkaCDVmxUavw'),('inboxMessageConfirmationTemplateId','DUoxlTBXhVS-Zl3CFDpt9g'),('inboxManageInvitationsTemplateId','1Q4Je3hKCJzeo0ZBB5YB8g'),('inboxViewInvitationTemplateId','VBkY05f-E3WJS50WpdKd1Q'),('inboxInvitationConfirmTemplateId','5A8Hd9zXvByTDy4x-H28qw'),('inboxInviteUserEnabled','0'),('inboxInviteUserRestrictSubject','0'),('inboxInviteUserSubject','^International(invite subject,Account_Inbox,^u;);'),('inboxInviteUserRestrictMessage','0'),('inboxInviteUserMessage','^International(invite message,Account_Inbox);'),('inboxInviteUserMessageTemplateId','XgcsoDrbC0duVla7N7JAdw'),('inboxInviteUserTemplateId','cR0UFm7I1qUI2Wbpj--08Q'),('inboxInviteUserConfirmTemplateId','SVIhz68689hwUGgcDM-gWw'),('friendsStyleTemplateId',''),('friendsViewTemplateId','1Yn_zE_dSiNuaBGNLPbxtw'),('friendsEditTemplateId','AZFU33p0jpPJ-E6qLSWZng'),('friendsSendRequestTemplateId','AGJBGviWGAwjnwziiPjvDg'),('friendsErrorTemplateId','7Ijdd8SW32lVgg2H8R-Aqw'),('friendsConfirmTemplateId','K8F0j_cq_jgo8dvWY_26Ag'),('friendsRemoveConfirmTemplateId','G5V6neXIDiFXN05oL-U3AQ'),('userAccountStyleTemplateId',''),('userAccountLayoutTemplateId','9ThW278DWLV0-Svf68ljFQ'),('shopStyleTemplateId',''),('shopLayoutTemplateId','aUDsJ-vB9RgP-AYvPOy8FQ'),('contribStyleTemplateId',''),('contribLayoutTemplateId','b4n3VyUIsAHyIvT-W-jziA'),('contribViewTemplateId','1IzRpX0tgW7iuCfaU2Kk0A'),('profileViewTemplateId','2CS-BErrjMmESOtGT90qOg'),('profileErrorTemplateId','MBmWlA_YEA2I6D29OMGtRg'),('inboxLayoutTemplateId','gfZOwaTWYjbSoVaQtHBBEw'),('friendsLayoutTemplateId','zrNpGbT3odfIkg6nFSUy8Q'),('inboxRichEditId','PBrichedit000000000001'),('useRecaptcha',NULL),('recaptchaPublicKey',NULL),('recaptchaPrivateKey',NULL),('specialState','init'); INSERT INTO `shipper` VALUES ('defaultfreeshipping000','WebGUI::Shop::ShipDriver::FlatRate','{\"label\":\"Free Shipping\",\"enabled\":1}'); -INSERT INTO `snippet` VALUES ('SynConXSLT000000000001','\n\n\n \n \n \n \n \n \nYou\'re viewing an RSS version 0.9 feed. Please use an RSS feed reader to view this content as intended.\n
        \n
        \n \n
        \n
        \n \n
        \n
          \n \n
        \n
        \n
        \n \n
      • \n \n \n \n
      • \n
        \n
        ',0,'application/xml',1124395707,3600),('SynConXSLT000000000002','\n\n\n \n \n \n \n \n \n
        \nYou\'re viewing an RSS version 0.91 feed. Please use an RSS feed reader to view this content as intended.\n
        \n \n
        \n
        \n \n
        \n
          \n \n
        \n\n
        \n
        \n \n
      • \n \n \n \n
        \n \n\n
        \n
      • \n
        \n
        ',0,'application/xml',1124395707,3600),('SynConXSLT000000000003','\n\n\n \n \n \n \n \n \n
        \nYou\'re viewing an RSS version 1.0 feed. Please use an RSS feed reader to view this content as intended.\n
        \n \n
        \n
        \n \n
        \n
          \n \n
        \n\n
        \n
        \n \n
      • \n \n \n \n \n (\n )\n \n\n
        \n \n
        \n
      • \n
        \n
        \n',0,'application/xml',1124395707,3600),('SynConXSLT000000000004','\n\n\n \n \n \n \n \n \n
        \nYou\'re viewing an RSS version 2.0 feed. Please use an RSS feed reader to view this content as intended.\n
        \n \n
        \n
        \n \n
        \n
          \n \n
        \n\n
        \n
        \n \n
      • \n \n \n \n \n ()\n \n\n
        \n \n
        \n
      • \n
        \n
        ',0,'application/xml',1124395707,3600),('7.0-style0000000000003','body, html\n{\n text-align:center;\n margin:0px;\n height:100%; \n background-color:#494949;\n}\n\n#main\n{\n width:800px;\n background: url(\'^FileUrl(style1/main_bg.jpg);\') repeat-y;\n height:100%;\n margin-left:auto;\n margin-right:auto;\n margin-top:0px;\n margin-bottom:0px;\n position:relative;\n}\nbody > #main\n{\n height:auto;\n min-height:100%;\n}\n\n#main #mainHeader\n{\n width:800px;\n height:133px;\n background: url(\'^FileUrl(style1/header.jpg);\') top left no-repeat;\n margin-bottom:0px;\n position:relative;\n}\n#main #mainHeader #title\n{\n position:absolute;\n top:23px;\n left:145px;\n font-size:32pt;\n font-family:arial;\n color:white;\n font-weight:bold;\n}\n#main #mainHeader #title a {\n color:white;\n text-decoration:none;\n}\n\n#main #mainContent\n{\n background: url(\'^FileUrl(style1/orange_left01.jpg);\') left top no-repeat;\n width:100%;\n height:100%; \n margin-top:0px;\n text-align:left;\n border:solid red 0px;\n}\n#main > #mainContent\n{\n margin-top:0px;\n min-height:500px;\n}\n#main > #mainContent > p {\n margin-top:0px;\n}\n#main #mainContent #mainText a:link {\n color:#FF7F23;\n}\n#main #mainContent #mainText a:visited {\n color:#D25900;\n}\n\n/* LEVEL 1 AND 2 NAVIGATION */\n#main .mainNav_1, #main .mainNav_2 {\n border-bottom:dashed #DADADA 1px; \n width:621px;\n height:25px;\n text-align:left;\n position:relative;\n margin-left:137px; \n clear:both;\n}\n#main .mainNav_1 a:link, #main .mainNav_1 a:visited, #main .mainNav_2 a:link, #main .mainNav_2 a:visited {\n color:white;\n text-decoration:none;\n top:5px;\n position:relative;\n -moz-box-sizing:border-box;\n}\n#main .mainNav_1 a:hover,#main .mainNav_2 a:hover {\n color:black;\n}\n#main .mainNav_1 div .left, #main .mainNav_2 div .left {\n width:12px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .left {\n background: url(\'^FileUrl(style1/nav2_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div .center, #main .mainNav_2 div .center { \n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_center.jpg);\') repeat-x top left;\n color:white;\n font-family:arial, verdana;\n font-size:8pt;\n}\n#main .mainNav_2 div .center {\n background: url(\'^FileUrl(style1/nav2_off_center.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div .right, #main .mainNav_2 div .right {\n width:10px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .right {\n background: url(\'^FileUrl(style1/nav2_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .left {\n background: url(\'^FileUrl(style1/nav1_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .center {\n background: url(\'^FileUrl(style1/nav1_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div.navOn .right {\n background: url(\'^FileUrl(style1/nav1_on_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .left {\n background: url(\'^FileUrl(style1/nav2_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .center {\n background: url(\'^FileUrl(style1/nav2_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_2 div.navOn .right {\n background: url(\'^FileUrl(style1/nav2_on_right.jpg);\') no-repeat top left;\n} \n#main .mainNav_1 div.navOn a:link, #main .mainNav_1 div.navOn a:visited, #main .mainNav_2 div.navOn a:link, #main .mainNav_2 div.navOn a:visited {\n color:black;\n}\n/* ENDOF LEVEL 1 AND 2 NAVIGATION */\n\n#main #crumbTrail {\n margin-left:177px;\n margin-bottom:0px;\n color:gray;\n font-size:8pt;\n font-weight:bold;\n}\n#main #crumbTrail a.crumbTrail:visited, #main #crumbTrail a.crumbTrail:link {\n color:silver;\n font-size:8pt; \n font-family:arial;\n text-decoration:none;\n font-weight:normal;\n}\n#main #crumbTrail a.crumbTrail:hover {\n color:gray;\n}\n\n#main #mainText\n{\n padding-left:150px;\n font-family:verdana;\n font-size:9pt;\n width:600px;\n margin-top:0px;\n}\n\n#main #gui\n{\n bottom:0px;\n left:0px;\n position:absolute;\n width:135px;\n font-size:8pt;\n color:black;\n font-family:arial;\n text-align:right;\n}\n#main #gui .loginBox {\n padding-right:12px;\n -moz-box-sizing:border-box;\n width:100px; \n float:right;\n margin-bottom:10px;\n}\n#main #gui .loginBox .loginBoxField {\n width:75px;\n}\n#main #gui .loginBox .loginBoxButton {\n background-color:#D65501;\n color:white;\n border:solid white 2px;\n margin-top:4px;\n font-variant:small-caps;\n}\n#main #gui a\n{\n color:white; \n}\n#copyright {\n color:#fff;\n position:absolute;\n top:110px;\n right:40px;\n font-family:verdana;\n font-size:8pt;\n font-weight:bold;\n background-color:#2D2D2D;\n opacity:0.4;\n -moz-opacity:0.4;\n -khtml-opacity:0.4; \n padding:2px;\n}\n* html #copyright {\n background: transparent;\n}\n',1,'text/css',1147642492,3600),('7.0-style0000000000033','body, html { \n height:100%; \n}\nbody {\n background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg);\') repeat-y right; \n margin:0px;\n}\n.rightColumn {\n width:20%;\n height:100%;\n background: #eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg);\') repeat-y right; \n text-align:center; \n}\n.rightColumn #pb_wg_bg {\n background: url(\'^FileUrl(style2/pb_wg_bg.jpg);\') repeat-x;\n width:100%;\n text-align:left; \n}\n.rightColumn #pb_wg {\n background: url(\'^FileUrl(style2/pb_wg.jpg);\') left no-repeat;\n height:53px;\n}\n.leftColumn { \n width:80%; \n background: white url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; \n} \n.leftColumn #header {\n width:100%;\n background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg);\') right no-repeat; \n height:86px;\n position:relative;\n}\n.leftColumn #header #title, .leftColumn #header #title_bg {\n color:white;\n font-size:36pt;\n font-weight:bold;\n font-family:arial;\n font-variant:small-caps;\n letter-spacing:12px;\n top:15px;\n left:5px;\n position:absolute;\n z-index:10;\n}\n.leftColumn #header #title a {\n color:white;\n text-decoration:none;\n}\n.leftColumn #header #title_bg {\n color:black;\n z-index:5;\n top:17px;\n left:7px;\n}\n.leftColumn #context {\n /*background: #fff url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; */\n width:95%;\n font-family:verdana;\n font-size:9pt;\n color:#242424;\n -moz-box-sizing:border-box; \n position:relative;\n padding-left:1%;\n padding-right:1%;\n padding-bottom:15px;\n}\n.leftColumn #context a {\n color:#7C9AB0;\n font-weight:bold;\n}\n.leftColumn #context a:hover {\n text-decoration:none;\n}\n.leftColumn #pageTitleBG {\n background: url(\'^FileUrl(style2/page_title_bg.jpg);\') repeat-x; \n width:100%;\n}\n.leftColumn #pageTitleBG #pageTitle {\n background: url(\'^FileUrl(style2/page_title.jpg);\') right no-repeat; \n width:100%;\n height:50px;\n} \n.leftColumn #pageTitleBG #pageTitle h2 {\n font-size:14pt;\n color:#696969;\n font-family:arial;\n font-weight:normal;\n margin:0px;\n padding-top:2px;\n padding-left:25px;\n letter-spacing:3px;\n}\n.rightColumn #nav {\n width:85%;\n background: #b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg);\') repeat-x top; \n border-right:solid #848484 1px;\n margin-left:auto;\n margin-right:auto;\n text-align:left;\n padding-left:3px;\n padding-top:7px;\n padding-bottom:7px;\n}\n.rightColumn #nav a {\n color:white;\n font-size:8pt;\n font-weight:bold;\n text-decoration:none;\n font-family:arial;\n line-height:8pt; \n} \n.rightColumn #nav .selectedMenuItem {\n color:yellow;\n}\n#loginStyles {\n font-size:8pt;\n font-family:arial;\n padding-bottom:25px;\n}\n#loginStyles a {\n color:#89ACCF;\n font-weight:bold; \n border-bottom:solid transparent 2px;\n text-decoration:none;\n}\n#loginStyles a:hover {\n border-bottom:dotted #B2C9D9 2px;\n} \n\n.copyright {\n border-top:solid silver 3px;\n background-color:gray;\n font-family:arial;\n font-size:9pt;\n color:silver; \n text-align:center;\n}\n',0,'text/css',1147642500,3600),('pbrobot000000000000001','User-agent: googlebot\nDisallow: *?op=displayLogin\nDisallow: *?op=makePrintable\n',0,'text/plain',1147642511,3600),('MBZK_LPVzqhb4TV4mMRTJg','input.captionEnter {\r\n margin-left: -5px;\r\n width: 92px;\r\n}',0,'text/css',1197330678,3600),('3qiVYhNTXMVC5hfsumVHgg','var BrowserDetect = {\r\n init: function () {\r\n this.browser = this.searchString(this.dataBrowser) || \"An unknown browser\";\r\n this.version = this.searchVersion(navigator.userAgent)\r\n || this.searchVersion(navigator.appVersion)\r\n || \"an unknown version\";\r\n this.OS = this.searchString(this.dataOS) || \"an unknown OS\";\r\n },\r\n searchString: function (data) {\r\n for (var i=0;i= items.length ) {\r\n showIndex = 0;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex >= items.length ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n if ( items[ hideIndex ] )\r\n items[ hideIndex ].style.display = \"none\";\r\n if ( items[ showIndex ] ) {\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n }\r\n};\r\n\r\n/**\r\n showPrevious ( )\r\n Show the previous slide\r\n*/\r\nWebGUI.Slideshow.prototype.showPrevious\r\n= function () {\r\n var items = this.getSlideshowItems();\r\n \r\n var hideIndex = this.currentIndex;\r\n var showIndex = this.currentIndex - 1;\r\n\r\n // Wrap around\r\n if ( this.wrap && showIndex < 0 ) {\r\n showIndex = items.length - 1;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex < 0 ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n items[ hideIndex ].style.display = \"none\";\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n};\r\n\r\n/**\r\n togglePlay ( )\r\n If it\'s paused, play it. If it\'s playing, pause it.\r\n Return true if the slideshow is now playing.\r\n*/\r\nWebGUI.Slideshow.prototype.togglePlay\r\n= function () {\r\n if ( this.isPlaying == false ) {\r\n this.play();\r\n return true;\r\n }\r\n else {\r\n this.pause();\r\n }\r\n};\r\n\r\n/**\r\n updatePlayPauseButton ( )\r\n Update the Play/Pause button to have the correct image\r\n*/\r\nWebGUI.Slideshow.prototype.updatePlayPauseButton\r\n= function () {\r\n if ( this.playPauseButtonId ) {\r\n if ( this.isPlaying && this.playImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.pauseImageSrc;\r\n }\r\n else if ( this.pauseImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.playImageSrc;\r\n }\r\n }\r\n};',0,'text/javascript',1218582812,3600),('1XOJDcg_ITRYwVM-QnIcPw',' .wgShelf {\r\n font-size:12px;\r\n font-family:arial, verdana; \r\n margin:15px 0px;\r\n }\r\n .wgShelf h2 {\r\n background: black;\r\n padding:5px;\r\n padding-left:15px;\r\n line-height:32px;\r\n color:white;\r\n margin:0px;\r\n height:32px;\r\n }\r\n .wgShelf .wgShelves {\r\n background: #F1F1F1;\r\n height:29px;\r\n padding:3px;\r\n line-height:29px;\r\n padding-left:30px;\r\n }\r\n .wgShelf .product {\r\n margin:15px;\r\n margin-left:0px; \r\n text-align:left;\r\n background-color:#f1f1f1;\r\n border:solid #e1e1e1 1px;\r\n width: 200px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n }\r\n .wgShelf .product .thumbnail {\r\n display:block;\r\n text-align:left;\r\n margin:3px;\r\n float:left;\r\n }\r\n .wgShelf .product .link {\r\n background: #e1e1e1;\r\n height:30px;\r\n padding:3px;\r\n line-height:24px;\r\n margin-bottom:5px; \r\n text-align:left;\r\n display:block;\r\n }\r\n .wgShelf .product .link a:link,\r\n .wgShelf .product .link a:visited {\r\n color:#000; \r\n display:block;\r\n }\r\n .wgShelf .product .link a:hover {\r\n text-decoration:underline;\r\n }\r\n .wgShelf .product .price {\r\n display:block;\r\n text-align:right;\r\n font-size:18px;\r\n font-weight:bold;\r\n }',0,'text/css',1219175575,0),('THQhn1C-ooj-TLlEP7aIJQ','.wgPicture {\r\n float:left;\r\n}\r\n.wgAlbum {\r\n float:left;\r\n}\r\n.wgGallery .pagination li, \r\n.wgGallery .pagination a {\r\n float:left;\r\n}\r\n.wgGallery .container {\r\n display:inline-block;\r\n}',0,'text/html',1225313951,3600),('7.0-style0000000000051','body, html {\r\n margin:0px;\r\n background-color:#b53018;\r\n padding:0px;\r\n}\r\nbody a {\r\n color:#EE963E;font-weight:bold;\r\n letter-spacing:1px;\r\n font-size:8pt;\r\n}\r\n#main {\r\n width:98%;\r\n /*min-width:790px;*/\r\n margin:0px;\r\n padding:0px;\r\n padding-top:20px;\r\n padding-bottom:20px;\r\n position:relative;\r\n}\r\n#header { \r\n background: url(\'^FileUrl(style3/header_bg.jpg);\') repeat-x;\r\n width:100%;\r\n margin:0px;\r\n height:115px;\r\n}\r\n#headerTitle {\r\n background: url(\'^FileUrl(style3/header_left.jpg);\') no-repeat left top;\r\n height:100%;\r\n width:100%;\r\n}\r\n#headerRight {\r\n background: url(\'^FileUrl(style3/header_right.jpg);\') no-repeat right top;\r\n width:100%;\r\n height:100%;\r\n text-align:right;\r\n position:relative;\r\n}\r\n#headerRight #title {\r\n position:absolute;\r\n top:25px;\r\n left:20px;\r\n font-family:arial;\r\n text-align:left;\r\n}\r\n#title h1 {\r\n text-transform:uppercase;\r\n margin-bottom:0px;\r\n font-weight:normal;\r\n font-size:26pt;\r\n margin-top:0px;\r\n color:white;\r\n}\r\n#title h1 a {\r\n color:white;\r\n text-decoration:none; font-size: 26pt; font-weight: normal; \r\n}\r\n#title h2 {\r\n margin:0px;\r\n font-size:12pt;\r\n color:#bebebe;\r\n padding-left:20px;\r\n}\r\n#title img {\r\n z-index:5;\r\n}\r\n#login {\r\n position:absolute;\r\n font-size:8pt;\r\n top:45%;\r\n right:150px;\r\n color:white;\r\n z-index:6;\r\n font-family:arial;\r\n}\r\n#login a {\r\n color:white; font-weight: normal; letter-spacing: 0px;\r\n}\r\n.loginBox {\r\n font-size:8pt;\r\n margin:0px;\r\n display:inline;\r\n}\r\n.loginBox input {\r\n font-size:8pt;\r\n}\r\n\r\n#mainBody {\r\n width:100%;\r\n margin:0px;\r\n height:500px;\r\n background: #fff;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#main > #mainBody {\r\n height:auto;\r\n min-height:500px;\r\n}\r\n#contentArea {\r\n z-index:2;\r\n position:relative;\r\n padding-top:10px;\r\n padding-left:10px;\r\n padding-right:20px;\r\n padding-bottom:20px;\r\n -moz-box-sizing:border-box;\r\n font-family:verdana;\r\n font-size:9pt;\r\n min-height:500px;\r\n}\r\nhtml #main #mainBody #contentArea {\r\n height:1%;\r\n}\r\n#topCorner {\r\n width:100%;\r\n height:214px;\r\n position:absolute;\r\n top:0px;\r\n left:0px;\r\n background: url(^FileUrl(/style3/main_top.jpg);) no-repeat;\r\n z-index:1;\r\n}\r\n#bottomCorner {\r\n width:100%;\r\n height:211px;\r\n position:absolute;\r\n bottom:59px;\r\n right:0px;\r\n background: url(\'^FileUrl(style3/main_bottom.jpg);\') no-repeat right;\r\n z-index:1;\r\n}\r\n* html #bottomCorner {\r\n bottom:58px;\r\n}\r\n\r\n#footer {\r\n width:100%;\r\n margin:0px;\r\n background:#000 url(\'^FileUrl(style3/footer_right.jpg);\') no-repeat right top;\r\n height:57px;\r\n border-top:solid #B53018 2px;\r\n text-align:right;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#footer #copyright {\r\n color:#3b3b3b;\r\n font-family:arial;\r\n position:absolute;\r\n top:20px;\r\n left:30px;\r\n font-size:8pt;\r\n}\r\n#main .yui-skin-sam {\r\n font-family:verdana;\r\n font-size:9pt;\r\n font-weight:normal;\r\n}',0,'text/css',1224117026,3600),('_9_eiaPgxzF_x_upt6-PNQ','/* FIXES FLOAT ISSUES. WITHOUT THIS, FLOATS GET ALL NUTSY ESPECIALLY IN OPERA AND SAFARI */\r\n.clearfix:after {\r\n content: \".\";\r\n display: block;\r\n height: 0;\r\n clear: both;\r\n visibility: hidden;\r\n}\r\n.clearfix {display: inline-block;}\r\n/* END FLOAT FIX */\r\n\r\n\r\n\r\n.wgGallery {\r\n font-family:verdana, arial;\r\n text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n.firstBar {\r\n background: black;\r\n color:white;\r\n font-size:18px;\r\n font-weight:bold;\r\n}\r\n\r\n.firstBar .title { \r\n margin-left:20px; \r\n line-height:42px; \r\n}\r\n.firstBar .title a {\r\n font-size:18px;\r\n font-weight:bold;\r\n color:white;\r\n}\r\n.firstBar .buttons {\r\n float:right;\r\n}\r\n.firstBar .buttons a {\r\n display:block;\r\n float:left;\r\n height:42px;\r\n line-height:42px; \r\n font-size:10px;\r\n color:white;\r\n font-weight:bold;\r\n text-align:center;\r\n padding:0px 5px; \r\n}\r\n.firstBar .buttons .rss {\r\n display:block;\r\n height:29px;\r\n position:relative;\r\n background:transparent;\r\n padding-top:13px;\r\n}\r\n\r\n\r\n\r\n\r\n.secondBar {\r\n background: #F1F1F1;\r\n text-align:left;\r\n border-top:solid #8B8B8B 5px; \r\n color: black;\r\n overflow: hidden;\r\n}\r\n.secondBar .author {\r\n font-size:10px;\r\n}\r\n\r\n\r\n.secondBar .desc p {\r\n margin-left: 20px;\r\n margin-top: 0;\r\n color: black;\r\n}\r\n\r\n.pictures {\r\n \r\n}\r\n\r\n\r\n.searchArea {\r\n float:right;\r\n}\r\n.searchArea * {\r\n float:left;\r\n} \r\n.searchArea input.searchText {\r\n border:solid black 1px; \r\n width:100px; \r\n margin:0px;\r\n padding:2px;\r\n margin-top:5px;\r\n font-size:10px;\r\n height:15px;\r\n margin-right:10px;\r\n} \r\n.searchArea input.searchBtn {\r\n border:solid black 1px; \r\n margin:0px;\r\n padding:3px;\r\n margin-top:5px;\r\n font-size:10px; \r\n vertical-align:center;\r\n cursor:pointer;\r\n height:21px;\r\n} \r\n.searchArea a:link,\r\n.searchArea a:visited,\r\n.secondBar .author a:link,\r\n.secondBar .author a:visited {\r\n font-size:11px;\r\n color:black;\r\n}\r\n.searchArea .current {\r\n font-weight:bold;\r\n text-transform:uppercase;\r\n text-decoration:none;\r\n font-size:10px;\r\n} \r\n\r\n\r\n\r\n\r\n.wgAlbum {\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n width:250px;\r\n margin:10px;\r\n}\r\n.wgAlbum .albumTitle { \r\n background: black;\r\n color:white;\r\n font-size:12px;\r\n font-weight:bold;\r\n padding:10px;\r\n padding-right:50px;\r\n border:solid #475f6f 1px;\r\n border-bottom:solid #8B8B8B 5px;\r\n text-align:left;\r\n display:block;\r\n}\r\n.wgAlbum .albumImage {\r\n background: #F1F1F1;\r\n border-left: solid black 1px;\r\n border-right: solid black 1px;\r\n padding-top:15px;\r\n height:135px;\r\n} \r\n.wgAlbum .albumImage a {\r\n height:135px;\r\n width:200px;\r\n overflow:hidden; \r\n display:block;\r\n margin:0px 23px;\r\n}\r\n.wgAlbum .albumImage img { \r\n border-style:none;\r\n display:block;\r\n width:200px;\r\n height:auto; \r\n border:solid black 1px; \r\n}\r\n.wgAlbum .albumDesc {\r\n background: #F1F1F1;\r\n border-left: solid black 1px;\r\n border-right: solid black 1px;\r\n border-bottom: solid black 1px;\r\n text-align:center;\r\n padding: 5px 23px;\r\n}\r\n.wgAlbum .description {\r\n font-size:10px; \r\n height:40px;\r\n overflow:auto;\r\n text-align:left;\r\n border:solid silver 1px;\r\n padding:5px;\r\n background-color: #fff;\r\n color:#222;\r\n}\r\n.albumDesc .description * {\r\n margin:2px 0px;\r\n}\r\n\r\n\r\n\r\n\r\n/* PAGINATION STYLES */\r\n.wgGallery .paginationContainer {\r\n text-align:center; \r\n background: black;\r\n height:42px;\r\n}\r\n.wgGallery .container {\r\n clear:both; \r\n text-align:center;\r\n}\r\n.wgGallery .pagination { \r\n margin:0px auto 20px auto;\r\n display:table;\r\n list-style-type:none;\r\n white-space:nowrap;\r\n padding:0px;\r\n height:42px;\r\n}\r\n.wgGallery .pagination li {\r\n display:table-cell;\r\n}\r\n.wgGallery .pagination a {\r\n display:block;\r\n width:50px; \r\n line-height:42px;\r\n color:white; \r\n font-size:10px; \r\n text-align:center;\r\n}\r\n\r\n\r\n\r\n.wgPicture a:link,\r\n.wgPicture a:visited {\r\n color:black;\r\n}\r\n.wgPicture {\r\n width:250px;\r\n margin:10px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n}\r\n.wgPicture .title {\r\n background:#e0e0e0;\r\n display:block;\r\n font-size:12px;\r\n text-align:center;\r\n padding:2px 5px;\r\n border:solid black 1px;\r\n border-bottom:solid #8B8B8B 4px;\r\n}\r\n.wgPicture .thumbnail {\r\n text-align:center;\r\n background: #F1F1F1;\r\n padding:15px 23px 15px 23px;\r\n margin:0px;\r\n border-left:solid black 1px;\r\n\r\n\r\n\r\n\r\n\r\n border-right:solid black 1px;\r\n}\r\n.wgPicture .thumbnail a {\r\n display:block;\r\n width:200px;\r\n height:120px;\r\n overflow:hidden;\r\n border:solid black 1px;\r\n}\r\n.wgPicture .thumbnail img {\r\n border-style:none;\r\n width:200px;\r\n height:auto;\r\n}\r\n.wgPicture .pictureDesc {\r\n padding:0px;\r\n border-top:solid #e1e1e1 1px;\r\n border-bottom:solid gray 1px;\r\n border-left:solid black 1px;\r\n border-right:solid black 1px;\r\n background:#F1F1F1;\r\n margin:0px;\r\n}\r\n.wgPicture .pictureDesc .description {\r\n margin:0px;\r\n padding:5px;\r\n font-size:10px;\r\n}\r\n.wgPicture .details {\r\n background:#e0e0e0;\r\n border:solid #999 1px;\r\n border-top:solid #aaa 1px;\r\n font-size:9px;\r\n padding:1px 3px; \r\n}\r\n.wgPicture .details .date {\r\n float:right;\r\n}\r\n.wgPicture .details .comments {\r\n float:left;\r\n}\r\n.wgPicture .details a { \r\n font-size:9px; \r\n}\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR PHOTO VIEW --\r\n * The Photo view uses some/all of the above classes, plus those in this section.\r\n*/\r\n.wgSnapshot {\r\n float:left;\r\n margin:10px;\r\n max-width:250px; \r\n width:25%;\r\n}\r\n.wgSnapshot fieldset { \r\n background-color:#fefefe;\r\n border:solid #555 2px;\r\n padding:10px;\r\n background-color:#f9f9f9;\r\n text-align:center;\r\n}\r\n.wgSnapshot p {\r\n max-width:230px;\r\n}\r\n.wgSnapshot legend {\r\n color:#333;\r\n font-size:15px;\r\n font-weight:bold;\r\n max-width:250px;\r\n}\r\n.wgSnapshot a.thumbnail img {\r\n width:200px;\r\n height:auto;\r\n border:solid #555 2px;\r\n}\r\n.wgSnapshot .description {\r\n font-size:9px;\r\n border:solid #555555 2px;\r\n padding:5px;\r\n width:190px;\r\n margin:0px auto;\r\n background-color:#fff;\r\n height:50px;\r\n overflow:auto;\r\n text-align:left;\r\n overflow:auto;\r\n}\r\n.wgSnapshot a.fullSize {\r\n margin:0px auto;\r\n}\r\n\r\n\r\n\r\n.wgPictureDetails {\r\n float:left;\r\n width:70%; \r\n margin:10px;\r\n} \r\n.wgPictureDetails a:link,\r\n.wgPictureDetails a:visited {\r\n color:black;\r\n}\r\n.wgPictureDetails fieldset { \r\n background-color:#fefefe;\r\n border:solid #555 2px;\r\n padding:10px;\r\n background-color:#f9f9f9; \r\n margin-bottom:10px;\r\n}\r\n.wgPictureDetails legend {\r\n color:#333;\r\n font-size:15px;\r\n font-weight:bold;\r\n}\r\n\r\n\r\n\r\n.rowOne {\r\n background: #EFEFEF;\r\n margin:1px;\r\n border:solid #CDCDCD 1px;\r\n color:black;\r\n padding:3px;\r\n}\r\n.rowTwo {\r\n background: #DCDCDC;\r\n margin:1px;\r\n border:solid #DDDDDD 1px;\r\n color:black; \r\n padding:3px;\r\n}\r\n.rowOne .label, .rowTwo .label {\r\n margin-left:15px;\r\n display:inline;\r\n text-align:left;\r\n font-weight:bold;\r\n font-size:11px;\r\n}\r\n.rowOne .data, .rowTwo .data { \r\n font-size:10px;\r\n margin-left:5px;\r\n display:inline;\r\n}\r\na.fullSize:link,\r\na.fullSize:visited { \r\n color:black;\r\n display:block;\r\n text-align:center;\r\n font-weight:bold;\r\n font-size:10px; \r\n}\r\n\r\n\r\n\r\n\r\n.wgComments { \r\n font-size:9px; \r\n margin:10px;\r\n width:90%;\r\n}\r\n.wgComments .title {\r\n font-size:14px;\r\n font-weight:bold;\r\n color:#333;\r\n border-bottom:solid #555555 2px;\r\n padding-bottom:2px;\r\n} \r\n.wgComments .title a {\r\n color:navy;\r\n text-decoration:none;\r\n}\r\n.wgComments .comment, .wgComments .commentAlt {\r\n position:relative; \r\n padding:5px; \r\n}\r\n.wgComments .comment {\r\n background-color:#e1e1e1;\r\n border-top:solid #F7F7F7 1px;\r\n border-bottom:solid #C9C9C9 1px;\r\n}\r\n.wgComments .commentAlt {\r\n background-color:#f0f0f0; \r\n border-bottom:solid #CDCDCD 1px;\r\n border-top:solid #FBFBFB 1px;\r\n}\r\n.wgComments .number {\r\n float:left;\r\n font-size:30px;\r\n color:silver;\r\n margin:5px 10px 5px 5px;\r\n}\r\n.wgComments .posted { \r\n font-style:italic;\r\n padding-top:3px;\r\n font-size:9px;\r\n color:gray;\r\n}\r\n.wgComments .posted a {\r\n color:navy;\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR THUMBNAIL VIEW --\r\n * The Thumbnail view uses some/all of the above classes, plus those in this section.\r\n*/\r\n\r\n.thumbView {\r\n width:400px;\r\n height:auto;\r\n}\r\n.thumbView .thumbnail a {\r\n display:block;\r\n width:350px;\r\n height:auto; \r\n border:solid black 1px;\r\n}\r\n.thumbView .thumbnail img {\r\n border-style:none;\r\n width:350px;\r\n height:auto;\r\n}\r\n.thumb {\r\n width:100px;\r\n height:65px;\r\n overflow:hidden;\r\n display:block;\r\n float:left;\r\n border:solid black 2px;\r\n margin:10px;\r\n}\r\n.thumb img {\r\n width:100px;\r\n height:auto;\r\n border-style:none;\r\n}\r\n.thumb-popup {\r\n border:solid #555 1px;\r\n padding:2px;\r\n padding-bottom:4px;\r\n padding-right:4px;\r\n background-color:silver;\r\n}\r\n.thumb-popup img {\r\n border:solid #555 1px;\r\n}\r\n.thumb-popup .caption {\r\n background-color:black;\r\n color:white;\r\n padding:4px;\r\n border:solid #555 2px;\r\n}\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR SLIDESHOW VIEW --\r\n * The Slideshow view uses some/all of the above classes, plus those in this section.\r\n*/\r\n.wgSlideshow .controls {\r\n background: url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg);) repeat-x;\r\n width:500px;\r\n height:42px;\r\n margin:0px auto;\r\n border:solid black 2px;\r\n}\r\n.wgSlideshow { \r\n text-align:center;\r\n}\r\n#slideshow-container {\r\n width:500px;\r\n height:auto;\r\n margin:0px auto;\r\n text-align:center;\r\n border:solid black 2px;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#slideshow-container .slideshow-item img {\r\n width:100%;\r\n height:auto;\r\n border-style:none;\r\n display:block;\r\n}\r\n#slideshow-container .slideshow-item .title {\r\n background-color:black;\r\n padding:3px;\r\n color:white;\r\n border-top:solid white 1px;\r\n border-bottom:solid white 1px;\r\n}\r\n#slideshow-container .slideshow-item .title a {\r\n color:white;\r\n font-size:11px;\r\n font-weight:bold; \r\n}\r\n#slideshow-container .slideshow-item .counter {\r\n background-color:black;\r\n padding:3px;\r\n color:white;\r\n font-size:11px;\r\n font-weight:bold;\r\n}\r\n#slideshow-container .slideshow-item .synopsis {\r\n width:494px;\r\n background-color:white;\r\n padding:3px;\r\n color:black;\r\n font-size:11px;\r\n font-weight:bold;\r\n border-top:solid black 1px;\r\n text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR SEARCH VIEW --\r\n * The Search view uses some/all of the above classes, plus those in this section.\r\n*/\r\n#adminWrapper {\r\n margin-top:20px;\r\n}\r\n#adminWrapper .label {\r\n background:black;\r\n font-weight:bold; \r\n font-size:10px;\r\n color:white;\r\n}\r\n#adminWrapper td.data input {\r\n background: #f1f1f1;\r\n vertical-align:middle;\r\n}\r\n#adminWrapper td.radio input {\r\n border-style:none;\r\n background:none;\r\n}\r\n#adminWrapper .forwardButton {\r\n cursor:pointer;\r\n float:rigbt;\r\n}\r\n#adminWrapper .forwardButton:hover {\r\n color:gold;\r\n}',0,'text/css',1230702602,3600),('hkj6WeChxFyqfP85UlRP8w','.wg-clear {\r\n display: inline;\r\n clear: both;\r\n}\r\n\r\n/* COLUMN STYLES */\r\n.matrixLeft {\r\n float:left;\r\n width:65%;\r\n padding:1%;\r\n min-height:1%;\r\n background-color:#d2d2d2;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n}\r\n.matrixRight {\r\n float:left;\r\n width:25%;\r\n padding:0px;\r\n min-height:1%;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n border: solid silver 1px;\r\n background-color:white; \r\n margin-left:5px;\r\n}\r\n\r\n\r\n\r\n/* DROPSHADOW BUTTONS */\r\n.matrixLeft .buttons span {\r\n background-color:#888;\r\n position:relative;\r\n padding:5px 0px 0px 0px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n\r\n}\r\n.matrixLeft .buttons button,\r\n.matrixLeft .buttons a#return {\r\n border:solid #2f495e 2px;\r\n position:relative;\r\n background-color:#e1e1e1;\r\n padding:auto 3px;\r\n margin:0px;\r\n font-size:11px;\r\n line-height:13px;\r\n position:relative;\r\n top:-6px;\r\n left:-2px;\r\n height:22px;\r\n cursor:pointer;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n font-weight:bold;\r\n text-decoration:none;\r\n color:#333;\r\n}\r\n.matrixLeft .buttons a#return {\r\n font-size:10px;\r\n padding:3px 10px 2px 10px;\r\n}\r\n.matrixLeft .buttons button:hover,\r\n.matrixLeft .buttons a#return:hover {\r\n border-color:black;\r\n color:white;\r\n background-color:#444;\r\n}\r\n\r\n\r\n\r\n/* WHITE AREA FOR THE LISTING OF OBJECTS TO COMPARE */\r\n.matrixLeft .matrixListing {\r\n background-color:white;\r\n height:300px;\r\n overflow:auto;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n margin:10px 2px 20px 2px;\r\n padding:auto 10px;\r\n}\r\n.matrixLeft .matrixListing table {\r\n border-collapse:collapse;\r\n margin:0px;\r\n padding:0px;\r\n display:block;\r\n}\r\n.matrixLeft .matrixListing table a:link {\r\n font-size:12px;\r\n color:#111;\r\n}\r\n.matrixLeft .matrixListing table a:visited {\r\n color:#333;\r\n font-size:12px;\r\n text-decoration:none;\r\n}\r\n.matrixLeft .matrixListing table a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* GRAY BAR THAT HOLDS THE SORT BUTTONS */\r\n.matrixLeft .matrixListing .sortButtons {\r\n background-color:#f1f1f1;\r\n border:solid silver 1px;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft: 4px;\r\n -webkit-border-radius-topRight: 4px; \r\n border-bottom:solid #D2D2D2 2px;\r\n display:block;\r\n}\r\n\r\n\r\n\r\n/* STYLES TO OVERRIDE THE SORT BUTTON CSS BUILT INTO THE PERL CODE */\r\n#sortByViews-button,\r\n#sortByCompares-button,\r\n#sortByUpdated-button,\r\n#sortByClicks-button {\r\n background: none;\r\n white-space:nowrap;\r\n border-style:none;\r\n cursor:pointer;\r\n padding-bottom:4px;\r\n border-style:none;\r\n background-color:transparent;\r\n border-right:solid silver 1px;\r\n color:#555;\r\n}\r\n#sortByViews-button:hover,\r\n#sortByCompares-button:hover,\r\n#sortByUpdated-button:hover,\r\n#sortByClicks-button:hover {\r\n color:black;\r\n}\r\n\r\n\r\n\r\n/* MATRIX STATISTICS */\r\n.matrixRight .mainTitle {\r\n font-size:20px;\r\n padding:5px 10px;\r\n border-bottom: solid gray 1px;\r\n background-color:#d2d2d2;\r\n line-height:20px;\r\n}\r\n.matrixRight .textBox {\r\n border-top:solid silver 1px;\r\n padding:10px 5px;\r\n}\r\n.matrixStatistics {\r\n padding:10px;\r\n}\r\n.matrixStatistics .title {\r\n font-weight:bold;\r\n background-color:#f1f1f1;\r\n padding:2px 5px;\r\n font-size:11px;\r\n -moz-border-radius:4px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n.matrixStatistics .statistics {\r\n margin-bottom:15px;\r\n}\r\n.matrixStatistics .label {\r\n text-align:right;\r\n width:100px;\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data {\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data a {\r\n color:#111;\r\n}\r\n.matrixStatistics .data a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* LINKS TO CONTROL ADMIN FUNCTIONS */\r\n.adminLinks {\r\n background-color:#f1f1f1;\r\n}\r\n.adminLinks a:link,\r\n.adminLinks a:visited {\r\n display:block;\r\n text-align:center;\r\n text-decoration:none;\r\n color:#555;\r\n font-weight:normal;\r\n font-size:10px;\r\n padding:2px 5px;\r\n border-top:solid silver 1px;\r\n}\r\n.adminLinks a:hover {\r\n color:black;\r\n}\r\n.adminLinks a.newLink:link,\r\n.adminLinks a.newLink:visited {\r\n background-color:#3498d1;\r\n color:white;\r\n border-top-style:none;\r\n display:block;\r\n}\r\n.adminLinks a.newLink:hover {\r\n background-color:#39a6e5;\r\n}\r\n\r\n\r\n\r\n/* STYLE FOR THE DETAILED LISTING */\r\n#matrixDetail {\r\n min-width:1000px;\r\n}\r\n#matrixDetail .editBtns {\r\n font-size:9px;\r\n line-height:11px;\r\n vertical-align:middle;\r\n font-weight:normal;\r\n margin-left:10px;\r\n}\r\n#matrixDetail .editBtns a {\r\n color:black;\r\n text-decoration:underline;\r\n}\r\n#matrixDetail .editBtns a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n#matrixDetail .stats .screenshot {\r\n float:left;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixDetail .commentsMail strong.title {\r\n margin-bottom:0px;\r\n margin-top:20px;\r\n display:block;\r\n background-color:#d2d2d2;\r\n padding:2px 10px;\r\n border:solid 1px gray;\r\n border-bottom-color:silver;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n}\r\n\r\n#matrixDetail .assetAspectComments {\r\n margin:0px 0px 20px 0px;\r\n border:solid gray 1px;\r\n background-color:#f1f1f1;\r\n -moz-border-radius-bottomLeft:4px;\r\n -moz-border-radius-bottomRight:4px;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectComment {\r\n border-top:solid silver 1px;\r\n border-bottom:solid gray 1px;\r\n padding:3px;\r\n background-color:#f5f5f5;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectCommentForm {\r\n border-top:solid #d2d2d2 5px;\r\n padding:20px;\r\n}\r\n\r\n\r\n\r\n#matrixDetail .stats ul, #matrixDetail .stats ul li {\r\n list-style-type:none;\r\n margin:0px;\r\n padding:0px;\r\n}\r\n#matrixDetail .stats ul li {\r\n display:block;\r\n line-height:20px;\r\n margin:4px 0px;\r\n}\r\n#matrixDetail .stats ul li strong {\r\n display:block;\r\n float:left;\r\n width:130px;\r\n text-align:right;\r\n background-color:#f1f1f1;\r\n padding-right:5px;\r\n margin-right:5px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:3px;\r\n font-size:11px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n\r\n\r\n.showLink {\r\n background-color:#e1e1e1;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n.showLink:hover,\r\n.hideLink:hover {\r\n background-color:#555;\r\n color:white;\r\n}\r\n.hideLink {\r\n background-color:#f1f1f1;\r\n border:2px solid #2F495E;\r\n border-bottom-style:none;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft:4px;\r\n -webkit-border-radius-topRight:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n\r\n#matrixMail {\r\n background-color:#f1f1f1;\r\n padding:15px;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -moz-border-radius-topLeft:0px;\r\n -webkit-border-radius:4px;\r\n -webkit-border-radius-topLeft:0px;\r\n margin-top:1px;\r\n}\r\n#matrixMail * .tableData {\r\n padding:5px;\r\n margin:0px;\r\n}\r\n#matrixMail * input {\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#matrixMail * .formDescription {\r\n text-align:right;\r\n vertical-align:middle;\r\n padding-right:10px;\r\n font-weight:bold;\r\n}\r\n#matrixMail form * img {\r\n margin-top:-18px;\r\n}\r\n#matrixMail #verify_formId {\r\n height:45px;\r\n line-height:45px;\r\n font-size:35px;\r\n padding:0px;\r\n margin:0px;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixRatings {\r\n width:264px;\r\n position:relative;\r\n left:-2px;\r\n top:12px;\r\n}\r\n#matrixRatings table {\r\n margin-left:0px;\r\n}\r\n#matrixRatings td {\r\n overflow:hidden;\r\n}\r\n#matrixRatings .formDescription {\r\n text-align:right;\r\n background-color:#97BCD1;\r\n border:solid #4D606B 1px;\r\n padding:2px 5px;\r\n font-weight:bold;\r\n font-size:10x;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n color:#333;\r\n}\r\n#matrixRatings .formDescription a:before {\r\n content: \"» \";\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a {\r\n display:block;\r\n color:red;\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a:hover {\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n#matrixAttributes {\r\n float:left;\r\n width:20%;\r\n margin-right:20px;\r\n}\r\n#rightDetails {\r\n float:left;\r\n width:70%\r\n}\r\n\r\n\r\n\r\n#attributes {\r\n border:solid #d2d2d2 1px;\r\n background-color:#f1f1f1;\r\n margin-top:10px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:10px;\r\n}\r\n#attributes table {\r\n border-collapse:collapse;\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#attributes table * td {\r\n padding:2px;\r\n margin:0px;\r\n}\r\n\r\n\r\n.yui-dt0-col-value {\r\n font-weight:bold;\r\n font-size:14px;\r\n padding:3px;\r\n white-space:no-wrap;\r\n}\r\n\r\n\r\n\r\n/* COMPARISON STYLES */\r\n#compareList table {\r\n border-collapse:collapse;\r\n border:solid silver 1px;\r\n margin-top:5px;\r\n}\r\n#compareList table * th a {\r\n color:black;\r\n padding:1px 5px;\r\n}\r\n#compareList table * td {\r\n background-color:#f1f1f1;\r\n border-top:solid gray 1px;\r\n border-bottom:solid silver 1px;\r\n}\r\n\r\n#compareList .yui-dt-liner {\r\n color:#39A6E5;\r\n}\r\n\r\n#compareList .yui-dt-col-name .yui-dt-liner {\r\n font-style:italic;\r\n font-size:10px;\r\n color:#555;\r\n}\r\n#compareList .yui-dt-col-name .yui-dt-liner b {\r\n font-size:15px;\r\n font-style:normal;\r\n padding-right:25px;\r\n color:black;\r\n}',0,'text/css',1232664229,0),('kJf77eCr9GAMiEzWrzsBTA','.matrixLeft .buttons span,\r\n.matrixRight .buttons span {\r\n padding:0px 0px 0px 0px;\r\n}\r\n\r\n.matrixLeft .buttons button,\r\n.matrixRight .buttons a {\r\n top:-3px;\r\n left:-2px;\r\n height:22px;\r\n}\r\n.matrixRight .buttons a {\r\n color:black;\r\n text-decoration:none;\r\n padding:1px 3px;\r\n}',0,'text/css',1229639255,3600),('4LQT4-bGW4FkiEQLSY5gvQ','function showHide(theLink,theId) {\r\n var theId = document.getElementById(theId);\r\n var theLink = document.getElementById(theLink);\r\n if(theId.style.display == \'block\') {\r\n theId.style.display = \'none\';\r\n theLink.innerHTML = \"Send Creator a Message\";\r\n theLink.className = \"showLink\"\r\n }\r\n else {\r\n theId.style.display = \'block\';\r\n theLink.innerHTML = \"Hide\"; \r\n theLink.className = \"hideLink\" \r\n }\r\n}',0,'text/javascript',1232400287,0); -INSERT INTO `template` VALUES ('\">','Macro/AdminToggle',1,1,'PBtmpl0000000000000036',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/a_account',1,1,'PBtmpl0000000000000037',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/EditableToggle',1,1,'PBtmpl0000000000000038',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/GroupAdd',1,1,'PBtmpl0000000000000040',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/GroupDelete',1,1,'PBtmpl0000000000000041',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/H_homeLink',1,1,'PBtmpl0000000000000042',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/LoginToggle',1,1,'PBtmpl0000000000000043',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/r_printable',1,1,'PBtmpl0000000000000045',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/File',1,1,'PBtmpl0000000000000091',1129049189,'WebGUI::Asset::Template::HTMLTemplate',1),('','style',0,0,'PBtmpl0000000000000132',1129049190,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n
        /opaque.gif);\">\n \n
        \n\n\n\n
        /opaque.gif);\">\n \n
        \n
        \n
        \n','Shortcut',1,1,'PBtmpl0000000000000140',1129573244,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n\n\n
        \n \n
        \n
        \n
        :
        \n
        \n
        \n
        \n
        \n\n\n
        \n
        \n
        \n \n
        \n
        \n
        \n \n
        \n
        \n
        \n \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n\n','AdminConsole',1,1,'PBtmplHelp000000000001',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

        \n\n\n\n \n \n\n \n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n\n \n\n \n \n \n \n \n\n\n
        \">\">\">\">\">\">
        oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
        \n\n\n
        \n · · \n
        \n
        \n\n','Collaboration',1,1,'PBtmpl0000000000000208',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

        \n\n\n
        \n\n\n
        \n
        \n \">
        \n ()\n \n \n \n
        \n \n
        \n
        \n\n
        \n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000128',1147642411,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

        \n
        \n \n

        \n
        \n \n\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\"
        >\n > \n\n','Navigation',1,1,'PBtmpl0000000000000093',1147642412,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n
        \n \n
        \n\n\n\n\n \n \n\n\n
        \n

        \n\" class=\"backLabel\">\n\n\n','DataForm',1,1,'PBtmpl0000000000000104',1147642412,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n

        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
        \n
        \n\n\n
        \n · · \n
        \n
        \n\n\n','Collaboration/Search',1,1,'PBtmpl0000000000000031',1147642413,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n

        \n\">RSS 0.90\n\">RSS 0.91\n\">RSS 1.0\n\">RSS 2.0\n

        \n\n\n

        \n
        \n\n\n \n

        \n\n\n

        \n\n \" target=\"_blank\">\n\n \n\n

        \n\n\n

        \n\n\n

        \n','SyndicatedContent',1,1,'DPUROtmpl0000000000001',1147642413,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n \n

        \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
        \n\n\n
        \n
          \n \n
        • \">
        • \n
          \n\n
        \n
        ','Auth/LDAP/Login',1,1,'PBtmpl0000000000000006',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n

        \n\n\n\n \">\n

        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n class=\"even\">\n \">
        \n \n \n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n \">\n by\n \n \n \n \">\n \n on @ \n \n
        \n \n
        \n\n

        \n \n
        \n
        \n \n

        \n \n\n\n\n','MessageBoard',1,1,'PBtmpl0000000000000047',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1),('\nThis is the Manager\'s View\n\n','TimeTracking_manager',1,1,'TimeTrackingTMPL000002',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

        \n\n\n\n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n\n\n
        \">\">\">
        oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
        \n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000066',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n \n

        \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
        \n\n\n
        \n \n
        ','Auth/WebGUI/Login',1,1,'PBtmpl0000000000000013',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n \n

        \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
        \n \n \n \n
        \n \n \n \n
        \n \n \n \n
        \n \n
        \n','Auth/WebGUI/Expired',1,1,'PBtmpl0000000000000012',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n\n

        \n\n

        \n\n
        \n\n\">\n\n          \n\n\">\n\n
        \n','prompt',1,1,'PBtmpl0000000000000057',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(\"title\"); - WebGUI\n \n\n\n ^AdminBar;\n
        \n\n
        \n ^AssetProxy(flexmenu);\n
        \n\n
        \n \n
        \n
        \n
        \n ^LoginToggle;   ^a(^@;);   ^H;   ^AdminToggle;\n
        \n\n
        \n\n\n\n','style',0,1,'PBtmpl0000000000000060',1147642419,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \">\" alt=\"\" style=\"border-style:none;\" />','FileAsset',1,1,'PBtmpl0000000000000024',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

        \n \n

        \n \n \n \n

        \">

        \n \n \n \n\n \n \n \n \n\n \n\n \n \n \n\n
        \n\n \">\" border=\"0\" alt=\"\" />\n \">\n\n \" border=\"0\" alt=\"\" />\n\n \n \n
        \n \n \n \n \n \n\n \">\" border=\"0\" alt=\"\" />\n \">\n\n \" border=\"0\" alt=\"\" />\n\n \n ^D(\"%z %Z\",);
        \n','Folder',1,1,'PBtmpl0000000000000078',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />()','Macro/File',1,1,'PBtmpl0000000000000107',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n

        \n','Account/Inbox/InviteUserMessage',1,1,'XgcsoDrbC0duVla7N7JAdw',1227566394,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

        \n
        \n \n

        \n
        \n \n\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\"
        >\n · \n\n','Navigation',1,1,'PBtmpl0000000000000108',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \" />','ImageAsset',1,1,'PBtmpl0000000000000088',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n \">\n
        \n\n\n - \n

        \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

        \n
        \n\n\n - \n\n','Article',1,1,'PBtmpl0000000000000123',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n \');\">\n
        \n\n\n - \n

        \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

        \n
        \n\n\n - \n\n','Article',1,1,'PBtmpl0000000000000129',1147642422,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

        \n\n\n\n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n
        oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
        \n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000077',1147642422,'WebGUI::Asset::Template::HTMLTemplate',1),('

        RandomThread macro debug output:

        \n
        \n
        approve.url:
        \n
        assetId:
        \n
        assetSize:
        \n\n
        <tmpl_loop attachment_loop>:
        \n
        \n
        filename:
        \n
        icon:
        \n
        isImage:
        \n
        thumbnail:
        \n
        url:
        \n</tmpl_loop>\n\n\n
        attachment.icon:
        \n
        attachment.thumbnail:
        \n
        attachment.url:
        \n
        className:
        \n
        content:
        \n
        contentType:
        \n
        createdBy:
        \n
        creationDate:
        \n
        dateSubmitted:
        \n
        dateSubmitted.human:
        \n
        dateUpdated:
        \n
        dateUpdated.human:
        \n
        delete.url:
        \n
        deny.url:
        \n
        edit.url:
        \n
        encryptPage:
        \n
        endDate:
        \n
        extraHeadTags:
        \n
        groupIdEdit:
        \n
        groupIdView:
        \n
        hasRated:
        \n
        image.url
        \n
        image.thumbnail
        \n
        isHidden:
        \n
        isLocked:
        \n
        isLockedBy:
        \n
        isMarkedRead:
        \n
        isPackage:
        \n
        isPrototype:
        \n
        isSticky:
        \n
        isSystem:
        \n
        lastPostDate:
        \n
        lastPostId:
        \n
        lineage:
        \n
        menuTitle:
        \n
        newWindow:
        \n
        ownerUserId:
        \n
        parentId:
        \n
        rate.url.1:
        \n
        rate.url.2:
        \n
        rate.url.3:
        \n
        rate.url.4:
        \n
        rate.url.5:
        \n
        rating:
        \n
        rating.value:
        \n
        replies:
        \n
        reply.url:
        \n
        reply.withquote.url:
        \n
        revisedBy:
        \n
        revisionDate:
        \n
        startDate:
        \n
        state:
        \n
        stateChanged:
        \n
        stateChangedBy:
        \n
        status:
        \n
        storageId:
        \n
        subscriptionGroupId:
        \n
        synopsis:
        \n
        tagId:
        \n
        threadId:
        \n
        title:
        \n
        title.short:
        \n
        url:
        \n
        user.canEdit:
        \n
        user.isPoster:
        \n
        userDefined1:
        \n
        userDefined2:
        \n
        userDefined3:
        \n
        userDefined4:
        \n
        userDefined5:
        \n
        userId:
        \n
        userProfile.url:
        \n
        username:
        \n
        views:
        \n
        \n','Macro/RandomThread',1,1,'WVtmpl0000000000000001',1147642426,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

        \n
        \n \n

        \n
        \n \n\n\n
        \n\n
        \n \">\n
        \n \n
        \n \n
        \n \n
        \n \n
        \n
        \n
        \n
        ','Navigation',1,1,'PBtmpl0000000000000136',1147642428,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

        \n
        \n \n

        \n
        \n \n\n\n\n \n \n \n \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\"
        >\n \n','Navigation',1,1,'PBtmpl0000000000000124',1147642429,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n
        \n\n

        \n
        \n\n
        \n
        \n\n\n\n class=\"selectedMenuItem\"
        onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n
        \n\n\n','Navigation',1,1,'PBtmpl0000000000000048',1147642431,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(title); - <tmpl_var session.setting.companyName>\n \n \n \n\n\n\n^AdminBar(\"PBtmpl0000000000000090\");\n\n\n

        \n^AdminToggle();\n

        \n\n\n','style',1,1,'PBtmplBlankStyle000001',1147642431,'WebGUI::Asset::Template::HTMLTemplate',1),('

        ^International(error label,Account_Inbox);

        \r\n

        \r\n

        \">^International(back label,Account_Inbox);

        \n','Account/Inbox/Error',1,1,'ErEzulFiEKDkaCDVmxUavw',1227566394,'WebGUI::Asset::Template::HTMLTemplate',1),('

        ^International(invitation confirm label,Account_Inbox);

        \r\n

        ^International(invitation confirm message,Account_Inbox);

        \r\n\r\n \r\n \r\n \r\n \r\n \r\n
        ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
        \r\n

        \">^International(invitations back label,Account_Inbox);

        \n','Account/Inbox/Confirm',1,1,'5A8Hd9zXvByTDy4x-H28qw',1227566395,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n

        \n\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n

        \n ','FileAsset',1,1,'pbtmpl0000000000000221',1147642465,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n
        \n \n\n

        \n
        \n \n\n \n \n \n       \n \n class=\"navOn\"
        class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n\n
        \n','Navigation',1,1,'stevenav00000000000001',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n
        \n \n\n

        \n
        \n \n\n \n \n \n       \n \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n \n','Navigation',1,1,'PBnav000000style01lvl2',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n\n \n
        \n
        \n
        \n
        \n \n \n \n

        \">

        \n
        \n\n \n \">.\n \">\n \n \n \n
        \n
        \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000044',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n\n \n \n \n \n \n \n \n \n \n \n \n \n
        \n \">\n \n\n \n \">.\n \">\n \n
        \n
        \n
        \n
        \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000092',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
        \n
        \n\n

        \n
        \n\n

        \n
        \n\n\n\n
          \n\n\n\n\n
        \n
        \n\n
      • \">onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n\n
          \n\n \n\n\n \n \n \n
        \n \n
      • \n\n\n','Navigation',1,1,'PBnav00000000000bullet',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n

        \n
        \n
        \n\n\n
        \n \" style=\"height:auto;min-height:100px;width:100%;display:block;\">\n \" /> \n \n
        ','FileAsset',1,1,'pbtmpl0000000000000220',1148579525,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

        \n\n\n\n\n
        \n\n

        \n\n\n\n\n

        \n · · \n
        \n\n','Collaboration',1,1,'PBtmpl0000000000000133',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

        \n\n\n \n \n [\">] \n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n

        \n \" target=\"_blank\">\n \n - \n \n

        \n
        \n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000083',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

        \n\n
          \n \n
        1. \n \n \n [\">]\n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n \" target=\"_blank\">\n \n - \n \n
        2. \n
          \n
        \n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000101',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

        \n\n
        \n\n\n
        \n
        \n
        ()
        \n \n \n
        \n
        \n
        \n\n
        \n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000121',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \"> •\n \n \n \n \"> \n \n \">\n \n \n •\n \n \n \n \">\n \n

        \n\n\n \n \n \">\n \n \n \n\n \n \n \n \n \n \"> •\n \n \n \n (\">)
        \n\n
        \n

        \n Q: \n A: \n

        \n

        \n\n\n\n

        \n · · \n
        \n\n','Collaboration',1,1,'PBtmpl0000000000000081',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n \n  [\">]\n \n

        \n\n\n \n \n \">\n \n \n \n \n \n \n \n \n \"> •\n \n \n \n (\">)\n
        \n

        \n \n

        \n\n\n\n

        \n · · \n
        \n\n','Collaboration',1,1,'PBtmpl0000000000000079',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n \n \n •\n \n \n \n \">\n \n

        \n\n\n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000082',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

        \n\n

        \n\n\n

        \n \n
        \n
        \n \n \">\n -\n \n \n - \n \n \n - \n \n \n - \n \n \n \n \n \">\" border=\"0\" alt=\"\" align=\"right\" />\n \n \n
        \n \">\n
        \n
        \n

        \n\n\n\n

        \n \n
        \n\n','Collaboration',1,1,'PBtmpl0000000000000112',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\" style=\"border-style:none;vertical-align:middle;\" alt=\"\" />\n','Macro/File',1,1,'PBtmpl0000000000000039',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n
        \n\n \n

        \n\n\n
        \n\n\n \n \n
        \n
        \n

        \n \n \n\n \n \" alt=\"graph\" />\n \n \n
        \n \n \n \n \n \n
        \" class=\"pollColor\">^Spacer(1,1);  % ()
        \n
        \n


        : \n
        \n\n
        \n\n\n','Poll',1,1,'PBtmpl0000000000000055',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n^Page(title); - <tmpl_var session.setting.companyName>\n\n\n\n\n\n\n\n^AdminBar(\"\");\n\n
        \"plainblack\"
        \n\n
        \n \n
        \n\n
        © 2001-2004 Plain Black LLC
        \n\n\n\n','style',1,1,'PBtmpl0000000000000111',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\nBatch: \n\n\n
        \n\n','Operation/RedeemSubscription',1,1,'PBtmpl0000000000000053',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

        \n\n\n\n \n \n \n \n \n \n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
        \">\">\">
        oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n \n \">\" border=\"0\" alt=\"\" />\n \n  \n \n oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
        \n\n\n
        \n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000097',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n
        \n \n\n

        \n
        \n \n\n \n\n \n\n','Navigation',1,1,'PBnav00000000indentnav',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
        \n \n
        \n
        \n \n
        \n
        \n
        \n  \n
        \n \n \n \n \n \n
        \n  \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n \n
        \n \n \" >
        \n
        \n
        \n
        \n \n
        \n \n \">
        \n
        \n
        \n
        \n
        \n \">
        \n ^AdminToggle;
        \n ^LoginToggle;
        \n
        \n
        \n
        \n \n
        \n
        \n \n \')\">\"?\"\n \n
        \n
        \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
        \n
        \n\"*\"\n
        \n
        \n \" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
        \n\n\n','AdminConsole',1,1,'PBtmpl0000000000000001',1157679164,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n class=\"odd\">\n \n \n \n \n\n
        /\">\n \" />\n \n (\'\', \'\')\">/\" style=\"border-style:none;\" alt=\"\" title=\"\" />\n
        \n','ProjectManager_resourceList',1,1,'ProjectManagerTMPL0006',1157679165,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n\n
        \n \" align=\"right\" border=\"0\" alt=\"\" />\n\n\n\n\n \n\n\n\n \n \n

        \n \">\n \n \n

        \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

        \n
        \n\n\n\n·\n\n·\n\n\n\n\n\n
        \n
        \n
        \n','Article',1,1,'PBtmpl0000000000000002',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n
        \n \n \n
        px;top:px;\">♦
        \n
        \n
        px;top:px;width:px;background-color:\">\n
        %;\">
        \n \n
        \n
        \n \n
        px;top:3px;margin-top:-3px;\">
        \n
        \n
        \n
        \n
        \n \" id=\"projectTableWidth\">\n \" id=\"projectScrollPercentWidth\">\n px;z-index:1;\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \" class=\"monthName\" style=\"height:20px;\">
        \" class=\"empty\" style=\"height:21px;\"> 
        \n
        \n
        \n\n','ProjectManager_gantt',1,1,'ProjectManagerTMPL0003',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
          \n\n
        • at () by
        • \n
          \n
        \n','WikiPage_pageHistory',1,1,'WikiPHTmpl000000000001',1165460175,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n\n
          \n
        1. \">
        2. \n
        \n\n
        \"> | \"> | \">
        \n\n','WikiMaster_mostPopular',1,1,'WikiMPTmpl000000000001',1165460175,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n
        \n
        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n
        \n
        \n\n\n\n','InOutBoard/Report',1,1,'IOB0000000000000000002',1166019641,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n\n\n\n\n

        \n \n \n \n
        \n · · \n
        \n
        \n

        \n

        \">

        \n \n

        \n

        \">

        \n
        \n
        \n
        \"> | \"> | \">
        \n','WikiMaster_search',1,1,'WikiSearchTmpl00000001',1168480840,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n\n
          \n
        • \n \n \"> - on by \n \n - on by \n \n ( \"> )\n \n \n
        • \n
        \n\n
        \"> | \"> | \">
        \n\n\n','WikiMaster_recentChanges',1,1,'WikiRCTmpl000000000001',1169092823,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n \n

        \n
        \n
        \n\n\n
          \n
        • \n
        \n
        \n\n\n \">\n\n \n \n \n \n \n \n','ZipArchiveAsset',1,1,'ZipArchiveTMPL00000001',1169738426,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

        \n
        \n\n \n

        \n
        \n\n
        \n \n

        \n
        \n\n
        \n\n \">\n\n\n \n  · \n \n \">\n\n
        \n\n \n
        \n \n
        \n
        \n \n \n \n \n \n \n \n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n \n \n \n

        \n \n \n\n','InOutBoard',1,1,'IOB0000000000000000001',1169795123,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n\n','RSSCapable/RSS',1,1,'PBtmpl0000000000000142',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

        \n\n\n\n\n \n \n
        [\">]
        \n
        \n
        \n \n
        \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n
        \n
        \n \" id=\"id\">
        \n \n

        \">[top]

        \n
        \n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000080',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
        \">\n \n \n \n \n \n
         \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \">\n \n \n \n \n \n
         \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \">\n \n \n \n \n \n
         \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \">\n \n \n \n \n \n
         \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n','SQLReport/Download',1,1,'SQLReportDownload00001',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n\n\n

        \n \">
        \n

        \n

        \n
        \n\n

        \n\n','newsletter',1,1,'newsletter000000000001',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
        \">\">\">\">\">
        oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
        \n\n\n
        \n · · \n
        \n
        \n','Collaboration',1,1,'PBtmpl0000000000000026',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n \r\n

        \r\n\r\n\r\n\r\n

        \r\n\r\n\r\n \r\n \r\n\r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n\r\n
        \r\n \r\n
        ','Auth/LDAP/Account',1,1,'PBtmpl0000000000000004',1227026214,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n

        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n

        \n \n
        \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000029',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n\n\n\n','WikiMaster_byKeyword',1,1,'WikiKeyword00000000001',1185754571,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n

        \n\n\n

        \n\n
        \n\n
        \n

        \">

        \n
          \n
        • \n \n \">\n \n ()\n \n
        • \n
        \n
        \n
        \n

        \">

        \n
          \n
        1. \">
        2. \n
        \n\n
        \n
        \n\n
        \n\n\n','WikiMaster_front',1,1,'WikiFrontTmpl000000001',1185754572,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

        \n

        \n

        \n\n\n

        \n\n

        \n
        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n
        \n

        \n \n
        \n
        \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000068',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n

        \n
        \n\n\n

        \n
        \n\n\n
        \n \n
        \n
        \n\n\n\n

        \">

        \n\n\n\n\n','TimeTracking_user',1,1,'TimeTrackingTMPL000001',1201205738,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
        :
        \r\n
        \r\n\r\n\r\n

        \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
        :
        \r\n
        \r\n
        ','DataForm',1,1,'PBtmpl0000000000000085',1202884864,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n

        ^International(errors,Asset_Event);

        \r\n
          \r\n\r\n
        • \r\n
          \r\n
        \r\n
        \r\n\r\n\r\n\r\n \r\n\r\n
        \r\n ^International(tab event,Asset_Event);\r\n ^International(recurrence,Asset_Event);\r\n \r\n \r\n
        \r\n\r\n\r\n\r\n\r\n \r\n\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(event title,Asset_Event);
        ^International(short title,Asset_Event);
        ^International(location,Asset_Event);
        ^International(description,Asset_Event);
        ^International(start date,Asset_Event);
        ^International(end date,Asset_Event);
        ^International(time,Asset_Event);
         
        ^International(related material,Asset_Event);\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \'> \r\n \r\n \r\n \r\n \r\n \r\n\r\n
        \r\n\r\n
        \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\r\n \' value=\'\'>\r\n \' value=\"\">\r\n
        \'>\r\n\' name=\'\' value=\'\'>\r\n\' name=\'rel_delconfirm_\' value=\'0\'>\r\n
        \r\n
        \r\n
        ^International(group to view,Asset_Event);
        ^International(attachments for event,Asset_Event);
        \r\n
        \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
        ^International(recurrence pattern,Asset_Event);
        ^International(recurrence range,Asset_Event);\r\n

        ^International(start,Asset_Event);:

        \r\n

        \r\n

        ^International(end,Asset_Event);:

        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n','Calendar/EventEdit',1,1,'CalendarEventEdit00001',1205160982,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
        \r\n
          \r\n
        • \r\n
          \r\n
        \r\n
        \r\n\r\n
        \r\n © Plain Black 2006\r\n
        \r\n','Calendar/Print/Month',1,1,'CalendarPrintMonth0001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n   -   \r\n
        \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
        \r\n
          \r\n
        • \r\n
          \r\n
        \r\n
        \r\n\r\n
        \r\n © Plain Black 2006\r\n
        \r\n','Calendar/Print/Week',1,1,'CalendarPrintWeek00001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
        :00\r\n
          \r\n
        • \r\n
          \r\n
        \r\n
        \r\n\r\n
        \r\n © Plain Black 2006\r\n
        \r\n','Calendar/Print/Day',1,1,'CalendarPrintDay000001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

        \r\n
        \r\n\r\n

        \r\n\r\n
        \r\n\r\n
        \r\n\" alt=\"\" />\r\n
        \r\n
        \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n :
        \r\n :
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n \r\n : [ \"> \"> ]
        \r\n \r\n \r\n :
        \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n

        \r\n \r\n
        \r\n\r\n\r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n
        \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n \r\n
        \r\n
        \r\n\r\n
        \r\n\r\n\r\n
        \r\n

        \r\n
        \r\n
        \r\n \r\n \">\r\n \r\n \">\r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        Current\">\r\n \">\r\n
        \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
        \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n : \r\n
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n :
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        px;\">\r\n
        Current\">\r\n \">\r\n
        \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
        \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n : \r\n
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n :
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n
        \r\n [ | | ]\r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n \r\n \" class=\"controlLink\"> \r\n •\r\n \r\n \" class=\"controlLink\">\r\n \r\n \r\n •\r\n \" class=\"controlLink\"> \r\n \r\n \r\n •\r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \r\n \r\n \" class=\"controlLink\">\r\n \r\n \" class=\"controlLink\">\r\n \r\n \r\n
        \r\n
        \r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000067',1206998733,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n

        \r\n
        \r\n\r\n \r\n
        \r\n

        \">

        \r\n
        \r\n
        \r\n \r\n \">\r\n \r\n \">\r\n \r\n
        \r\n
        \r\n\r\n\r\n
        px;\">\r\n
        Current\">\r\n \">\r\n
        \r\n \r\n
        \r\n
        \r\n\r\n
        \r\n\" alt=\"\" />\r\n
        \r\n
        \r\n
        \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n :
        \r\n
        \r\n
        \r\n :
        \r\n : \r\n \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n
        \r\n \r\n : [ \"> \"> ]
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n [ | | ]\r\n
        \r\n
        \r\n\r\n
        \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \r\n \r\n \"> •\r\n \r\n \r\n \r\n \"> •\r\n \r\n \"> •\r\n \r\n \r\n \"> •\r\n \r\n \"> •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
        \r\n\r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000032',1206998756,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

        \r\n
        \r\n\r\n

        \r\n\r\n
        \r\n\r\n
        \r\n\" alt=\"\" />\r\n
        \r\n
        \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n :
        \r\n :
        \r\n :
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n \r\n :     [ \">     [ \"> ]
        \r\n \r\n \r\n :
        \r\n
        \r\n
        \r\n\r\n :
        \r\n:\r\n\r\n
        \r\n
        \r\n\r\n
        \r\n \r\n
        \r\n\r\n\r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
        \r\n
        \r\n\r\n
        \r\n\r\n\r\n
        \r\n

        \r\n
        \r\n
        \r\n \r\n \">\r\n \r\n \">\r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        Current\">\r\n \">\r\n
        \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
        \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n : \r\n
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        px;\">\r\n
        Current\">\r\n \">\r\n
        \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
        \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n : \r\n
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n
        \r\n [ | | ]\r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n \r\n \"> \r\n •\r\n \r\n \">\r\n \r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
        \r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000209',1206998862,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n \r\n , \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n\r\n\r\n','EMS/PrintBadge',1,1,'PsFn7dJt4wMwBa8hiE3hOA',1208558071,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
        \r\n
        \r\n : \r\n
        \r\n
        \r\n \r\n / \r\n
        \r\n
        \r\n : \r\n
        \r\n
        \r\n\r\n\r\n','EMS/PrintTicket',1,1,'yBwydfooiLvhEFawJb0VTQ',1208629936,'WebGUI::Asset::Template::HTMLTemplate',1),('

        ^International(thank you message,Shop);

        \r\n\r\n\r\n

        \">^International(order number,Shop);

        \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(date,Shop);
        ^International(amount,Shop);
        ^International(in shop credit used,Shop);
        ^International(taxes,Shop);
        ^International(shipping method,Shop);
        ^International(shipping amount,Shop);
        ^International(shipping address,Shop);
        ^International(payment method,Shop);
        ^International(status message,Shop);
        ^International(payment address,Shop);
        \r\n
        \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n
        ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
        \">
        \r\n ','Shop/EmailReceipt',1,1,'bPz1yk6Y9uwMDMBcmMsSCg',1211829604,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n

        Cart

        \r\n
        \r\n \r\n
        ) ()
        \r\n
        \r\n
        \r\n
        \r\n ^International(total,Shop);: \r\n
        \r\n
        \r\n ^ViewCart;\r\n
        \r\n
        \r\n','Shop/MiniCart',1,1,'EBlxJpZQ9o-8VBOaGQbChA',1212093746,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
        \" alt=\"\" />\r\n
        \r\n
         
        \r\n\r\n
        \r\n X\r\n
        \r\n
        \r\n
        \r\n
        °F
        \r\n

        \r\n\r\n
        \r\n\r\n\r\n\r\n\r\n\r\n\r\n
        \r\n\">\r\n
        \"The
        \r\n','WeatherData',1,1,'WeatherDataTmpl0000001',1210711353,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
        \r\n
        ^International(location,Asset_Event);
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        ^International(description label,Asset_Event);
        \r\n
        \r\n
        \r\n
        \r\n
        ^International(scheduled,Asset_Event);
        \r\n
        \r\n
        \r\n ,\r\n \r\n \r\n : , \r\n \r\n \r\n : \r\n
        \r\n
        \r\n
        ^International(related material,Asset_Event);
        \r\n
        \r\n \">
        \r\n
        \r\n
        \r\n','Calendar/Print/Event',1,1,'CalendarPrintEvent0001',1215396964,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n

        \r\n

        \">^International(continue shopping button,Shop);\r\n\r\n\r\n\r\n\r\n','FlatDiscount',1,1,'63ix2-hU0FchXGIWkG3tow',1216169693,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n \r\n\r\n\r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n','Navigation',1,1,'PBtmpl0000000000000130',1219072470,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n
        \n\n \n\n\n\n \n \">\n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl0000000000000054',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n
        \n\n \n\n\n\n \n \">\n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
        \n\n \n
        \n
        \n
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl000000000table54',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n
         
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl0000000000000125',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n\n

        \n
        \n\n\n\n \n \n\n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n \n
        \n\n\n \n\n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl00000000table125',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n\n

        \n
        \n\n\n \n\n\n\n\n \n\n\n \n \n \n\n \n\n
        \n \n
        \n \n \n \n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl00000000table094',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n\n

        \n
        \n\n\n \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n
         
        \n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n
         
        \n\n\n
         
        \n \n
        \n\n','Layout',1,1,'PBtmpl0000000000000109',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n\n\n \n\n\n \n \n \n\n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n\n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl00000000table109',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n \r\n\r\n\r\n\r\n
        \r\n\r\n \r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
        _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
        \r\n\r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n
         
        \r\n\r\n\r\n
        \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
        _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
        \r\n\r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n
        \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
        _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
        \r\n\r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n
         
        \r\n\r\n\r\n
        \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
        _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
        \r\n\r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n
         
        \r\n \r\n
        \r\n','Layout',1,1,'PBtmpl0000000000000094',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n
         
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl0000000000000131',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n\n\n \n \n\n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl00000000table131',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n\n

        \n
        \n\n\n \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n
         
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl0000000000000135',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n\n\n \n \n\n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl00000000table135',1220655706,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n
         
        \n\n\n
        \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n\n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl0000000000000118',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

        \n
        \n\n\n\n

        \n
        \n\n\n \n\n\n\n\n \n \n \n\n\n \n\n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n \n
        \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
        _div\" class=\"dragable uncommitted-asset\">\n \n\n
        \n\n \n
        \n
        \n
        \n \n
        \n\n\n
         
        \n \n
        \n','Layout',1,1,'PBtmpl00000000table118',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        \r\n
        Add/Edit Task
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
         
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
             
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n :

        \r\n \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/users.gif\" />     \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/groups.gif\" /> \r\n \r\n
        \r\n
        \r\n\r\n
        \r\n
        \n','ProjectManager_editTask',1,1,'ProjectManagerTMPL0004',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n\r\n\r\npx;\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         Task NameDurationStartFinishPred\" valign=\"top\" id=\"scrolltd\" style=\"border-style:none;width:%;\">\r\n
        \r\n \r\n
        \r\n
         
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
         
        \r\n\r\n\r\n\r\n
        \n','ProjectManager_project',1,1,'ProjectManagerTMPL0002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n\n\n \n \n\n\n\n\n \n\n\n
        \n\n\n\n\n \n\n','WikiPage_edit',1,1,'WikiPageEditTmpl000001',1221692341,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n\r\n
        \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\nalt\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
        ^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
        \r\n \r\n
        \r\n \r\n \r\n ^International(not applicable,Shop);\r\n
        \r\n
         
          
        ^International(subtotal,Shop);
        ^International(tax,Shop);
        ^International(shipping,Shop);
        \r\n \r\n \r\n \r\n
        \r\n \r\n
        ^International(in shop credit,Shop);(^International(available,Shop);: )
        ^International(total,Shop);
          
         
        ^International(order for,Shop);
         
        \r\n\r\n\r\n','Shop/Cart',1,1,'aIpCmr9Hi__vgdZnDTz1jw',1227539574,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n

        \n

        ^International(badge holder information,Asset_EventManagementSystem);

        \n\n\n

        \n
        \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
        ^International(name,Shop);
        ^International(organization,Asset_EventManagementSystem);
        ^International(address,Shop);
         
         
        ^International(city,Shop);
        ^International(state,Shop);
        ^International(code,Shop);
        ^International(country,Shop);
        ^International(phone number,Shop);
        ^International(email address,Asset_EventManagementSystem);
        \n\n\n','EMSBadge',1,1,'PBEmsBadgeTemplate0000',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n \r\n

        \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n
        \r\n\r\n\r\n\r\n
        \r\n
          \r\n
        • \">
        • \r\n \r\n
        \r\n
        ','Auth/LDAP/Create',1,1,'PBtmpl0000000000000005',1221612327,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n\n \n
        \n
        );\">
        \n
        \n
        \n
        \n \n
        \n · · \n
        \n
        \n
        \n\n','Search',1,1,'PBtmpl0000000000000200',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
         
        \r\n\r\n\r\n
        \r\n
          \r\n
        • \">
        • \r\n \r\n
        • \">
        • \r\n
          \r\n
        \r\n
        \r\n','Auth/WebGUI/Create',1,1,'PBtmpl0000000000000011',1221612288,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n
        \r\n\r\n \r\n
        \r\n
        \r\n
          \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
      • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
        \r\n
        \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n
      • \r\n \r\n
        \r\n\n','Navigation',1,1,'PBtmpl0000000000000134',1222574692,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n
          \r\n\r\n
        • \r\n\r\n
        \r\n
        \r\n\r\n\r\n
        \r\n \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n \">\r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n
        \r\n
        ^International(template captcha label,Asset_DataForm);
        \r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000020',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        ^International(my subscriptions,Asset_Newsletter);

        \n\n\n

        ^International(newsletter categories,Asset_Newsletter);

        \n\n


        \n

        \n \n
        \n
        \n

        \n
        \n\n\n\n','newsletter/mysubscriptions',1,1,'newslettersubscrip0001',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n
          \r\n \r\n
        • \r\n
          \r\n
        \r\n
        \r\n\r\n\r\n \r\n

        \r\n\r\n\r\n\r\n

        \r\n \">\r\n • \">\r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
        \r\n
        \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
        \r\n \r\n
        \r\n
        ^International(template captcha label,Asset_DataForm);
        \r\n
        \r\n\r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000141',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n
        \r\n\r\n \r\n

        \r\n
        \r\n\r\n \r\n\r\n
        \r\n \r\n
        \r\n \r\n ^D(\"%y\",);\r\n \r\n \r\n ^D(\"%c %y\",);\r\n \r\n \r\n ^D(\"%w, %c %d %y\",);\r\n \r\n
        \r\n\r\n
        \r\n

        \"> , ,

        \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n \r\n
        \r\n
        \n','Calendar/List',1,1,'kj3b-X3i6zRKnhLb4ZiCLw',1222574694,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \" id=\"id\">\r\n\r\n \r\n
        \r\n
        \r\n
        \r\n\r\n \r\n

        \r\n
        \r\n\r\n \r\n \r\n \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        (\">)
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \n','Subscription',1,1,'eqb9sWjFEVq0yHunGV8IGw',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n

        ^International(my purchases,Shop); · ^a(\"Return to Account\");

        \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);
        \">
        \r\n
        \n','Shop/MyPurchases',1,1,'2gtFt7c0qAFNU3BG_uvNvg',1222574694,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n
        \r\n\r\n

        ^International(order number,Shop);

        \r\n \r\n \r\n \r\n \r\n\r\n
          \r\n
        • ^International(date,Shop);
        • \r\n
        • ^International(amount,Shop);
        • \r\n
        • ^International(in shop credit used,Shop);
        • \r\n
        • ^International(taxes,Shop);
        • \r\n
        • ^International(shipping method,Shop);
        • \r\n
        • ^International(shipping amount,Shop);
        • \r\n
        • ^International(payment method,Shop);
        • \r\n
        • ^International(status message,Shop);
        • \r\n
        \r\n \r\n
        \r\n
        ^International(payment address,Shop);
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        ^International(shipping address,Shop);
        \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
        \">
        \r\n
        \n','Shop/MyPurchasesDetail',1,1,'g8W53Pd71uHB9pxaXhWf_A',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(title);\n \n \n \n \n\n\n ^AdminBar();\n
        \n
        \n
        \n ^H(^c(););\n
        \n \n
        \n © ^D(%y); ^c;\n
        \n
        \n\n
        \n
        \n ^AssetProxy(roottab_level0);\n
        \n
        \n
        \n ^AssetProxy(roottab_level1);\n
        \n
        \n ^AssetProxy(crumbtrail); \n
        \n
         
        \n
        \n \n
        \n
         
        \n
        \n \n
        \n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\n
        ^AdminToggle;
        \n ^AssetProxy(style1/gui_bottom.jpg);
        \n \"WebGUI\n
        \n
        \n\n \n','style',1,1,'stevestyle000000000001',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\n\n \n ^c; - ^Page(title);\n \n \n \n\n\r\n^AdminBar();\r\n\n\n \n \n\r\n\r\n \r\n\n
        \n
        \n
        ^H(^c;);
        \n
        ^c;
        \n
        \n
        \n

        ^Page(title);

        \n
        \n
        \n
        \n \n
        \n
        \n
        \n
        \r\n \"plain\"webgui\"
        \n
        \n
        \n
        \n \n \n \n \n \n
        \n
        \n ^AssetProxy(flexmenu);\n
        \n \n \n \n \n \n
        \n
        \n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\n ^AdminToggle;\n
        \n
        \r\n © ^D(%y); ^c;\r\n
        \r\n\n\n\n','style',1,1,'stevestyle000000000002',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n
          \r\n \r\n
        • \r\n
          \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n \">\r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n \r\n )\" id=\"tab\" class=\"tab\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n^International(template captcha label,Asset_DataForm);
        \r\n\r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000116',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n

        \r\n
        \r\n\r\n \r\n

        • View

        \r\n
        \r\n\r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \">\r\n \r\n \r\n \r\n
        \r\n
        \r\n\r\n
        \n','Thingy/ViewThing',1,1,'ThingyTmpl000000000002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n

        \r\n\r\n\r\n\r\n
        \r\n\r\n
        ','DataTable',1,1,'3rjnBVJRO6ZSkxlFkYh_ug',1225139643,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n

        \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ','DataTable',1,1,'TuYPpHx7TUyk08639Pc8Bg',1225139643,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n\r\n\r\n\r\n \r\n\r\n \r\n
        \r\n\r\n

        \r\n \">^International(add a ticket,Asset_EventManagementSystem);\r\n •\r\n \">^International(meta fields,Asset_EventManagementSystem);\r\n •\r\n \">^International(import,Asset_EventManagementSystem);\r\n •\r\n \">^International(export,Asset_EventManagementSystem);\r\n

        \r\n
        \r\n


        \r\n

        \r\n

        \r\n
        \r\n\r\n\r\n\r\n
        \r\n\r\n\r\n\r\n \r\n\r\n \r\n
        \r\n\r\n

        \">^International(add a ribbon,Asset_EventManagementSystem);

        \r\n
        \r\n

        \r\n
        \r\n\r\n\r\n\r\n
        \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n
        \r\n\r\n

        \">^International(add a token,Asset_EventManagementSystem);

        \r\n
        \r\n

        \r\n
        \r\n\r\n\r\n\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^ViewCart;\r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n\r\n \r\n\r\n\r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n','EMS/BadgeBuilder',1,1,'BMybD3cEnmXVk2wQ_qEsRQ',1224723361,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n

        \r\n
        \r\n\r\n

        \r\n
        \r\n\r\n\r\n\r\n\r\n\r\n','EMS',1,1,'2rC4ErZ3c77OJzJm7O5s3w',1224723218,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n','EMS/LookupRegistrant',1,1,'OOyMH33plAy6oCj_QWrxtg',1224724790,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n
        \r\n\r\n \r\n
        \" class=\"yuimenubar\">\r\n
        \r\n
          \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
      • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
        \r\n
        \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n
      • \r\n \r\n
        \r\n\r\n\r\n','Navigation',1,1,'stevecoolmenu000000001',1224116942,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n

        Add Address

        \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(label help,Shop);
        \r\n \r\n\r\n
        \r\n','Shop/Address',1,1,'XNd7a_g_cTvJVYrVHcx2Mw',1224606020,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n\r\n ^c; - ^Page(title);\r\n \r\n\r\n^AdminBar();\r\n\r\n\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n ^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\r\n
        \r\n
        \r\n

        ^H(^c;);

        \r\n

        ^Page(title);

        \r\n
        \r\n \"webgui\"
        \r\n
        \r\n
        \r\n
        \r\n ^AssetProxy(style3_coolmenu);\r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n
        \r\n © ^D(%y); ^c;\r\n
        \r\n \"plain
        \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000003',1224795533,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n

        \r\n
        \r\n\r\n \r\n

        \r\n
        \r\n\r\n \r\n
        \r\n
        \r\n\r\n \r\n \r\n\r\n \r\n
          \r\n \r\n
        • \r\n
          \r\n
        \r\n
        \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        wgRowOnewgRowTwo label\" valign=\"top\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\" valign=\"top\" colspan=\"2\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n\r\n','Thingy/EditThing',1,1,'ThingyTmpl000000000003',1224518002,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n

        \r\n  :
        \r\n  
        \r\n  
        \r\n  \r\n

        \r\n\r\n \r\n

        \r\n  :
        \r\n \r\n \" title=\"Link to profile\">
        \r\n
        \r\n

        \r\n
        \r\n
        \r\n
        \r\n\r\n','Macro/UsersOnline',1,1,'h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n

        \r\n  :
        \r\n  
        \r\n  
        \r\n  \r\n

        \r\n

        \r\n  :
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
        \" alt=\"Avatar of \"/> \" title=\"Link to profile\">

        \r\n

        \r\n

        \r\n  :
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

        \r\n

        \r\n
        \r\n\r\n','Macro/UsersOnline',1,1,'4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n

        \n\n\n

        \n\n \">\n\n \n\n

        \n\n\n \n

        \n\n\n

          \n\n
        • \n \n \">\n \n \n \n \n - \n \n
        • \n
          \n
        ','SyndicatedContent',1,1,'PBtmpl0000000000000065',1226457084,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
        \r\n\r\n\r\n
        \r\n \r\n
        \r\n','Auth/WebGUI/Account',1,1,'PBtmpl0000000000000010',1227026287,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \n\n

        \n
        \n\n\n\n\n\n\n\n\n \n \n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n
        \n\n\n
        \n \n
        \n','Auth/WebGUI/Recovery2',1,1,'PBtmpl0000000000000014',1227218041,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

        \n

        \n\n\n

        \n\n

        \n
        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n
        \n

        \n \n
        \n
        \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000099',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n
        \n

        \n

        \n

        \n

        \n

        \n
        \n\n\n

        \n\n

        \n
        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n
        \n

        \n \n

        \n

        \n

        \n
        \n
        \n

        \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000122',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

        \n\n\n

        \n\n

        \n
        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n\n\n \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000114',1227480813,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n\n\n

        \n \n \">\n |\n \n \n \">^International(my subscriptions,Asset_Newsletter);\n |\n \n \">\n

        \n\n

        \n\n\n

        \">
        \n

        \n
        \n\n\n
        \n \n
        \n
        \n','newsletter',1,1,'newslettercs0000000001',1226896423,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n

        \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n\n
        \n\n\n\n

        \n \n
        \n','Collaboration/PostForm',1,1,'PBtmpl0000000000000210',1227480812,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
        \r\n \r\n \r\n
        \r\n\r\n
        \r\n\" class=\"profile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\r\n
        subContentprofile_displaySubContent\">\r\n
        \r\n
        \r\n
        \r\n \r\n \" class=\"view\">^International(profile as others label,Account_Profile);\r\n \r\n \r\n
        \r\n
        \r\n \r\n
        * -  ^International(\'required field\',Account_Profile);
        † - ^International(\'set by admin\',Account_Profile);
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n','Account/Layout',1,1,'FJbUTvZ2nUTn65LpW6gjsA',1227070381,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
        \">\r\n\r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

        \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        *
        \r\n
        \r\n
        \r\n
        \r\n
        ','Account/Profile/Edit',1,1,'75CmQgpcCSkdsL-oawdn3Q',1227052575,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n

        \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n );\'\"/>\r\n  \r\n );\'\"/>\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n ^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        colspan=2 class=\"bar\">\r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        32\" class=\"bar\">
        greenredblue;padding:4px;color:white;font-weight:bold;\">
        \r\n
        \r\n );\" class=\"photostyle\"/>
        \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n );\'\"/>\r\n  \r\n );\'\"/>\r\n
        \r\n

        \r\n
        \r\n','Account/Profile/View',1,1,'2CS-BErrjMmESOtGT90qOg',1227070888,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n

        ^International(error label,Account_Inbox);

        \r\n

        \r\n

        \">^International(back label,Account_Profile);

        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        ','Account/Profile/Error',1,1,'MBmWlA_YEA2I6D29OMGtRg',1226542675,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n
        \r\n','Account/Layout',1,1,'gfZOwaTWYjbSoVaQtHBBEw',1226974679,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n oddThreadevenThread\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\r\n \r\n \r\n \r\n
        \r\n
         \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
        old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \'\" />\r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(message count,\'Account_Inbox\');\r\n
        \r\n
        \r\n','Account/Inbox/View',1,1,'c8xrwVuu5QE0XtF9DiVzLw',1226894351,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
        disabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>
         
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(subject label,Account_Inbox);:
        ^International(from label,Account_Inbox);:
        ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
        ^International(status label,Account_Inbox);:
        \r\n
        \r\n
        \r\n
        \r\n
        ','Account/Inbox/ViewMessage',1,1,'0n4HtbXaWa_XJHkFjetnLQ',1226894994,'WebGUI::Asset::Template::HTMLTemplate',1),(' \r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
        ^International(reply message labelcompose message label,Account_Inbox);
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
        class=\"inbox_messageTo\"> [];
        ^International(subject label,Account_Inbox);:
        32\" class=\"send\">\r\n   \r\n \'\" />\r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        _name\"> []
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n','Account/Inbox/SendMessage',1,1,'6uQEULvXFgCYlRWnYzZsuA',1226896682,'WebGUI::Asset::Template::HTMLTemplate',1),('

        ^International(message sent label,Account_Inbox);

        \r\n

        ^International(message sent text,Account_Inbox);

        \r\n

        \">^International(back label,Account_Inbox);

        ','Account/Inbox/Confirm',1,1,'DUoxlTBXhVS-Zl3CFDpt9g',1226896802,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n oddThreadevenThread\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        ^International(from label,Account_Inbox);^International(invitation label,Account_Inbox);^International(date label,Account_Inbox);
        \" class=\"inbox_from\">\">^International(invitation message,Account_Inbox,);
        ^International(no invitations,Account_Inbox);
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(invitation count,\'Account_Inbox\');\r\n
        \r\n
        \r\n','Account/Inbox/ManageInvitations',1,1,'1Q4Je3hKCJzeo0ZBB5YB8g',1226898445,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
        \'\" />\'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>
         
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(from label,Account_Inbox);:
        ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n','Account/Inbox/ViewInvitation',1,1,'VBkY05f-E3WJS50WpdKd1Q',1226899241,'WebGUI::Asset::Template::HTMLTemplate',1),(' \r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
        ^International(invite a friend,Account_Inbox);
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(to label,Account_Inbox);:
        ^International(subject label,Account_Inbox);:
        \r\n   \r\n \'\" />\r\n
        \r\n
        \r\n
        \r\n','Account/Inbox/InviteUser',1,1,'cR0UFm7I1qUI2Wbpj--08Q',1226964738,'WebGUI::Asset::Template::HTMLTemplate',1),('

        ^International(invitation sent label,Account_Inbox);

        \r\n

        ^International(invitation sent text,Account_Inbox);

        \r\n

        \">^International(back label,Account_Inbox);

        ','Account/Inbox/InviteUserConfirm',1,1,'SVIhz68689hwUGgcDM-gWw',1226973314,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n
        \r\n\" class=\"profile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"profile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"profile_displayView\">^International(\'back label\',\'Account_Friends\');\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        ','Account/Layout',1,1,'zrNpGbT3odfIkg6nFSUy8Q',1226994016,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        class=\"bordered\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \">\"\"^Extras(account/images/no_photo.gif);\"/>\r\n \">
        \r\n \r\n ^International(member since,Account_Friends); ^D(%z,);
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n

        ','Account/Friends/View',1,1,'1Yn_zE_dSiNuaBGNLPbxtw',1226994422,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        class=\"bordered\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \">\"\"^Extras(account/images/no_photo.gif);\"/>
        ^International(online,Friends);^International(offline,Friends);
        \r\n \">
        \r\n \r\n ^International(member since,Account_Friends); ^D(%z,);
        \r\n ^User(homeCountry,);\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n

        ','Account/Friends/Edit',1,1,'AZFU33p0jpPJ-E6qLSWZng',1226994865,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n
        ^International(add to network label,Account_Friends);
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(adding user message,Account_Friends,);
        ^International(sending to message,Account_Friends);
        \r\n
        \r\n
        \r\n

        \r\n','Account/Friends/SendRequest',1,1,'AGJBGviWGAwjnwziiPjvDg',1226995497,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n

        ^International(error label,Account_Friends);

        \r\n

        \r\n

        \">^International(back label,Account_Inbox);

        \r\n

        \r\n','Account/Friends/Error',1,1,'7Ijdd8SW32lVgg2H8R-Aqw',1226995714,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n

        ^International(message sent label,Account_Friends);

        \r\n

        ^International(add to friends confirmation,Account_Friends,);

        \r\n

        \">^International(back to user profile,Account_Friends);

        \r\n

        ','Account/Friends/Confirm',1,1,'K8F0j_cq_jgo8dvWY_26Ag',1226995643,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n

        ^International(remove confirm label,Account_Friends);

        \r\n

        ^International(remove confirm message,Account_Friends,);

        \r\n

        \r\n \">^International(remove confirm no,Account_Friends); · \r\n \">^International(remove confirm yes,Account_Friends);\r\n

        \r\n

        ','Account/Friends/Confirm',1,1,'G5V6neXIDiFXN05oL-U3AQ',1226995768,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        ','Account/Layout',1,1,'9ThW278DWLV0-Svf68ljFQ',1226647187,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        ','Account/Layout',1,1,'aUDsJ-vB9RgP-AYvPOy8FQ',1226660439,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        ','Account/Layout',1,1,'b4n3VyUIsAHyIvT-W-jziA',1227074747,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n oddThreadevenThread\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         \r\n \r\n \r\n \r\n
        \r\n
        \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
        \">^D(,);
        ^International(no contributions,Account_Contributions);
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         \r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(contribution count,\'Account_Contributions\');\r\n
        \r\n
        ','Account/Contrib/View',1,1,'1IzRpX0tgW7iuCfaU2Kk0A',1227079721,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \r\n\r\n
        \r\n','Account/Layout',1,1,'N716tpSna0iIQTKxS4gTWA',1226604666,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \" id=\"id\">\r\n\r\n \r\n
        \r\n
        \r\n\r\n \r\n

        \r\n
        \r\n\r\n\r\n \r\n
        \r\n
        ^ViewCart;
        \r\n \">^International(continue shopping button,Shop);\r\n \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n','Donation',1,1,'vrKXEtluIhbmAS9xmPukDA',1226698051,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n \r\n

        \r\n\r\n\r\n

        ','Survey',1,1,'PBtmpl0000000000000061',1227252733,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n\r\n\r\n \"> \r\n •\r\n \"> \r\n •\r\n \"> \r\n\r\n\">

        \r\n:
        \r\n:
        \r\n: \r\n\r\n

        \r\n\r\n\r\n
        \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
        \r\n \r\n \r\n
        \r\n

        \r\n','Survey/Response',1,1,'PBtmpl0000000000000064',1226009610,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n

        \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n >\r\n\r\n
        ','Survey/Take',1,1,'d8jMMMRddSQ7twP4l1ZSIw',1227248175,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n out of \r\n
        \r\n
        \r\n\r\n
        \r\n minutes left\r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n\r\n\r\n
        \r\n

        required\'>

        \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \' id=\'\' size=\'50\' />\r\n \r\n \r\n verbatim\' >\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \' value=\'\'>\r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n verbatim\'>\r\n \r\n \r\n
        \r\n
        \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n button\" value=\"\">\r\n \r\n button\">\r\n \r\n \" id=\"\" value=\"\">\r\n \r\n \r\n \r\n verbatim\' name=\'verbatim\'>\r\n
        \r\n \r\n
        \r\n \r\n button\" value=\"\">\r\n \r\n button\">\r\n \r\n \" id=\"\" value=\"\">\r\n \r\n verbatim\' name=\'verbatim\'>\r\n \r\n
        \r\n
        \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
        container\'>
        \r\n \' id=\'\' type=text>\r\n button\'>\r\n \r\n verbatim\'>\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n \' name=\'\' value=0>\r\n \r\n \r\n \' name=\'\' value=\"\">\r\n \r\n\r\n \r\n

        \r\n
        \r\n \r\n show\'>0\r\n \r\n \r\n \r\n show\'>\r\n \r\n
        0  \r\n
        slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\r\n \r\n
        slider-min-thumb\' class=slider-min-thumb>\r\n \r\n
        \r\n \r\n
        slider-max-thumb\' class=slider-max-thumb>\r\n \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n
        \r\n\r\n
        \r\n\r\n \r\n \r\n \r\n\r\n \r\n

        \r\n
        \r\n | \' name=\'\'> | \r\n \r\n
        0  \r\n
        slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\r\n
        slider-thumb\' class=slider-thumb>\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n

        Comment:

        \r\n
        \r\n\r\n\r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n\r\n
        \r\n\r\n\r\n\r\n\r\n\r\n\r\n','Survey/Take',1,1,'CxMpE_UPauZA3p8jdrOABw',1227556536,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        default\">\r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n
        \r\n','Shop/AddressBook',1,1,'3womoo7Teyy2YKFa25-MZg',1226703362,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n

        \r\n
        \r\n\r\n \r\n

        \r\n
        \r\n\r\n \r\n
        \r\n
        \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        \">
        \r\n \r\n
        \r\n\r\n \r\n

        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \r\n \r\n \r\n \r\n
        \">\r\n

        Search Results

        \r\n
        \r\n \">\r\n
        \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n · · \r\n
        \r\n
        \r\n
        \r\n','Thingy/SearchThing',1,1,'ThingyTmpl000000000004',1227044214,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n

        \r\n\r\n\r\n\r\n\r\n\r\n\">\r\n\r\n\r\n | \r\n\r\n
        \r\n
        \r\n\r\n
        \r\n\r\n
        \r\n\r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
        ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
        \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
        ^International(\'No users message\',\'Asset_UserList\');
        \r\n\r\n

        \r\n · · \r\n
        \r\n
        ','UserList',1,1,'UserListTmpl0000000001',1228125743,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n

        \r\n\r\n\r\n
        \r\n
        \r\n\r\n:
        \r\n:
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
        ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">\r\n\">
        \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
        ^International(\'No users message\',\'Asset_UserList\');
        \r\n\r\n

        \r\n · · \r\n
        \r\n
        ','UserList',1,1,'UserListTmpl0000000003',1228125758,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n

        \r\n\r\n\r\n
        \r\n
        \r\n\r\n\r\n
        \r\n^International(\'search in label\',\'Asset_UserList\');
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
        ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
        \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
        ^International(\'No users message\',\'Asset_UserList\');
        \r\n\r\n

        \r\n · · \r\n
        \r\n
        ','UserList',1,1,'UserListTmpl0000000002',1228125752,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n

        \r\n
        \r\n\r\n \r\n

        • ^International(manage things label,Asset_Thingy);

        \r\n
        \r\n\r\n \r\n
        \r\n
        \r\n\r\n \r\n \r\n \r\n\r\n \r\n
        \r\n \r\n
        rowOnerowTwo\">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        ','Thingy',1,1,'ThingyTmpl000000000001',1227753116,'WebGUI::Asset::Template::HTMLTemplate',1),('

        ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

        \r\n\r\n','Matrix/EditListing',1,1,'matrixtmpl000000000004',1228834590,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n\n\n\n \n\n\n\n \n \n

        \n \">\n \n \n \n

        \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />


        \n \n
        \n\n\n\n·\n\n·\n\n\n\n\n','Article',1,1,'PBtmpl0000000000000207',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n\n
        \" alt=\"\" border=\"0\" />
        \n
        \n
        \n\n\n \n

        \n\n\n\n\n \n

        \n \">\n \n\n

        \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

        \n
        \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000084',1229100305,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n \n \n \n \n \n
         
        /delete.gif\" border=\"0\" onclick=\"removeRow(\'\')\" style=\"cursor:pointer\" alt=\"delete\" />
        \n \n \n \n \n \n \n \n \n \n \n \n \n
        \" class=\"PM_blueLink\"> ^International(last week,Asset_TimeTracking);\" class=\"PM_blueLink\">^International(next week,Asset_TimeTracking);
         
        \n \n \n \" onclick=\"addRow();\" />   \" />\n
        \n
        \n\n\n\n \n \">\n \n \n \n \n \n \n \n \n
        /delete.gif\" border=\"0\" onclick=\"removeRow()\" style=\"cursor:pointer\" alt=\"delete\" />
        \n
        ','TimeTracking_row',1,1,'TimeTrackingTMPL000003',1229311434,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \" id=\"id\">\r\n\r\n \r\n
        \r\n
        \r\n\r\n \r\n

        \r\n
        \r\n\r\n \r\n \r\n
        \r\n \r\n

        \r\n ^ViewCart();
        \r\n \">^International(continue shopping button,Shop);\r\n \r\n ^ViewCart(); (^CartItemCount;)\r\n

        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n
          \r\n ^International(variants,Asset_Product);\r\n \r\n
        • \r\n
          \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n ^International(30,Asset_Product);\r\n \r\n
        • \r\n
          \r\n
        \r\n
        \r\n \r\n \r\n
          \r\n ^International(54,Asset_Product);\r\n \r\n
        • \r\n
          \r\n
        \r\n
        \r\n\r\n \r\n
          \r\n ^International(31,Asset_Product);\r\n \r\n
        • :
        • \r\n
          \r\n
        \r\n
        \r\n \r\n \r\n
          \r\n ^International(32,Asset_Product);\r\n \r\n
        • \">
        • \r\n
          \r\n
        \r\n
        \r\n \r\n \r\n
          \r\n ^International(33,Asset_Product);\r\n \r\n
        • \">
        • \r\n
          \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n\r\n','Product',1,1,'PBtmpl0000000000000056',1228934532,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n\n
        \n \" alt=\"\" align=\"left\" border=\"0\" />\n\n\n\n\n \n

        \n\n\n\n\n \n

        \n \">\n \n\n\n

        \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

        \n\n\n\n\n
        \n
        \n
        \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000103',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n\n
        \n \n \n
        \n \n \">\n \" alt=\"\" border=\"0\" />
        \n
        \n \n \" alt=\"\" border=\"0\" />
        \n
        \n
        \n\n\n\n\n \n

        \n\n\n\n

        \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

        \n\n\n\n\n
        \n
        \n
        \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000115',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('

        Calendar

        \r\n\r\n\r\n

        \r\n \r\n ^International(New Year,Asset_Calendar);,\r\n \r\n \r\n ^International(New Month,Asset_Calendar);,\r\n \r\n \r\n ^International(New Day,Asset_Calendar);\r\n \r\n

        \r\n\r\n

        \">

        \r\n \r\n

        \r\n\r\n
        \r\n\r\n\r\n \"><< ^International(previous page,Asset_Calendar);\r\n\r\n\r\n \">^International(next page,Asset_Calendar); >>\r\n','Calendar/Print/List',1,1,'uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n

        \r\n
        \r\n\r\n \r\n

        \r\n
        \r\n\r\n
        \r\n ^ViewCart(); (^CartItemCount;)\r\n
        \r\n\r\n \r\n
        \r\n
        \r\n \r\n\r\n \r\n
        \r\n ^International(subcategories,Asset_Shelf);: \r\n \r\n \r\n \">\r\n \r\n
        \r\n
        \r\n\r\n \r\n
        \r\n \r\n \r\n \" class=\"thumbnail\">\" alt=\"\" />\r\n \r\n \r\n
        \r\n \r\n ()\r\n
        \r\n
        \r\n
        \r\n \r\n \n \n
        \r\n
        ','Shelf',1,1,'nFen0xjkZn8WkpM93C9ceQ',1229117831,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\"> \n \n \n

        \n
        \n\n\n

        \n
        \n\n\n

        \n\n\n\n \n \n \n \n \n \n
        \n
        \n \n \n \n \n \n
        ^International(Stock Watch,Asset_StockData);\n
        \n ^International(Last Update,Asset_StockData);: EDT
        \n \n
        \n
        \n
        \n \n \n \n \n \n \n \n \n \n \n qmmt_cycleqmmt_main\'> \n \n \n \n \n \n \n \n
        Name SymbolLastTickChg
        \n \')\">\n \n /\" alt=\"\" /> \n _up_down\" style=\"text-align: right;whitespace:nowrap;\">
        \n
        ','StockData',1,1,'StockDataTMPL000000001',1229453697,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n WebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\n \n \n \n\n\n

        \n \n
        \n\n','style',1,0,'PBtmpl0000000000000137',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n
        \r\n
        ^International(hide new content list,Asset_Dashboard);
        \r\n
        \r\n
        \r\n\r\n\r\n\">\r\n
        _div\" class=\"dragable\">\r\n
        _div\">
        \r\n
        \r\n
        \r\n\r\n
        Add New Content
        \r\n\r\n

        \r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n\r\n

        \r\n
        \r\n\r\n\r\n\r\n\r\n

        \r\n\r\n

        \r\n
        \r\n
        ^L(\"17\",\"\",\"PBtmpl0000000000000092\"); ^AdminToggle(Modify the Default User\'s Perspective,Leave Default User Perspective (Admin Mode));
        \r\n
        \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
        \r\n\r\n\r\n \">\r\n\r\n
        _div\" class=\"dragable\">\r\n
        _div\">
        \r\n
        \r\n\r\n\r\n\r\n\">\r\n\r\n
        _div\" class=\"dragable\">\r\n
        _div\">
        \r\n
        \r\n\r\n\r\n\">\r\n\r\n
        _div\" class=\"dragable\">\r\n
        _div\">
        \r\n
        \r\n
        \r\n
         
        \r\n\r\n
        ','Dashboard',1,1,'DashboardViewTmpl00001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\n\n

        \n

        \n\n\n

        \n • \">\n \n • \" onclick=\"\">\n \n \n • \">\n • \">\n \n
        \n
        \n\n\n\n\n\n \n \n \n\n\n\n\n\n \n \n \n \n \n \n \n\n\n
        ^International(Entry ID,Asset_DataForm);^International(Submission Date,Asset_DataForm);
        \">
        ','DataForm/List',1,1,'PBtmpl0000000000000021',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n<tmpl_var title>\n\n\n/taskEdit.css\" />\n\n\n
        \">\n\" />\n\n\" />\n\" />\n
        \n
        \" size=\"20\" class=\"inputBox\" />\n\n
        \n\n

        \n

        \n','ProjectManager_resourcePopup',1,1,'ProjectManagerTMPL0005',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n
        \n\n\n

        \n
        \n\n\n
        \n \n
        \n
        \n\n\n\n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n \"> \n
        \">
        \n \">\n \n
        \n
        %;\">
        \n
        %
        \n
        \n
        \n \n \">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n \'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
        ','ProjectManager_dashboard',1,1,'ProjectManagerTMPL0001',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n

        \r\n\r\n
        \r\n
          \r\n
        • \r\n
        • \r\n
        \r\n
        \r\n
        \r\n
        \r\n

        ^International(keywords,Asset);: \">

        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n
        \"> | \"> | \"> | \">
        ','WikiPage',1,1,'WikiPageTmpl0000000001',1229706257,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n \n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n
         
        ^International(has posted to one of your subscriptions,Asset_Collaboration);
        \">
          
        \n

        \">

        ','Collaboration/Notification',1,1,'PBtmpl0000000000000027',1230159257,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n

        \n\n\n\n \n \n \n \n \n ^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n\n\n\n\n\n \n \n \n \n \n ^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n','HttpProxy',1,1,'PBtmpl0000000000000033',1230159454,'WebGUI::Asset::Template::HTMLTemplate',1),('

        ^International(post received,Asset_Post);

        \">^International(493,WebGUI);

        ','Collaboration/PostReceived',1,1,'default_post_received1',1230356300,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n \n

        \n\n\n\n \">^International(Download this data,Asset_SQLReport);\n\n\n\n

          \n \n
        • \n
          \n
        \n
        \n\n\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
        \">\n \n \n \n \n \n
         \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \">\n \n \n \n \n \n
         \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \">\n \n \n \n \n \n
         \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \">\n \n \n \n \n \n
         \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n\n\n
        \n \n
        \n
        ','SQLReport',1,1,'PBtmpl0000000000000059',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

        \n
        \n\n\n

        \n
        \n\n\n\n
        \n\n

        \n\n

        \n
        ','Navigation',1,1,'PBtmpl0000000000000117',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

        \r\n
        \r\n\r\n

        \r\n\r\n\r\n
        \r\n :     [ \"> \"> ]
        \r\n
        \r\n
        \r\n\r\n\r\n ^International(job description,Asset_Collaboration);
        \r\n

        \r\n
        \r\n\r\n\r\n ^International(job requirements,Asset_Collaboration);
        \r\n

        \r\n
        \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
        ^International(date posted,Asset_Collaboration); 
        ^International(location,Asset_Collaboration); 
        ^International(compensation,Asset_Collaboration); 
        ^International(views,Asset_Collaboration); 
        \r\n\r\n\r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
        \r\n
        \r\n\r\n\r\n\r\n
        \r\n

        \r\n
        \r\n
        \r\n \r\n \">\r\n \r\n \">\r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        Current\">\r\n \">\r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n :
        \r\n
        \r\n
        \r\n :
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n \r\n :
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        px;\">\r\n
        Current\">\r\n \">\r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n :
        \r\n
        \r\n
        \r\n :
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n \r\n :
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n
        \r\n [ | | ]\r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n \r\n \"> \r\n •\r\n \r\n \"> \r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \"> \r\n \r\n \">\r\n \r\n \r\n
        ','Collaboration/Thread',1,1,'PBtmpl0000000000000098',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

        \r\n
        \r\n\r\n

        \r\n\r\n\r\n
        \r\n :     [ \"> \"> ]
        \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n ^International(Link Description,Asset_Collaboration);

        \r\n
        \r\n \r\n ^International(Link URL,Asset_Collaboration);

        \r\n \">

        \r\n
        \r\n
        \r\n\r\n\r\n\r\n\r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n\r\n
        \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
        \r\n
        \r\n\r\n\r\n\r\n
        \r\n

        \r\n
        \r\n
        \r\n \r\n \">\r\n \r\n \">\r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        Current\">\r\n \" id=\"id\">\r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n :
        \r\n
        \r\n
        \r\n :
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n \r\n :
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \"> • \r\n \r\n \r\n \"> •\r\n \">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        px;\">\r\n
        Current\">\r\n \" id=\"id\">\r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
        \r\n :
        \r\n
        \r\n
        \r\n :
        \r\n : \r\n \r\n     [
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        |
        \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
        ]\r\n
        \r\n
        \r\n \r\n :
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \">\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n
        \r\n [ | | ]\r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n \r\n \"> \r\n •\r\n \r\n \">^International(List All Links,Asset_Collaboration);\r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n \r\n \r\n •\r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
        ','Collaboration/Thread',1,1,'PBtmpl0000000000000113',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('\"> \n \n \n

        \n
        \n\n\n

        \n
        \n\n\n

        \n\n\n

        \n
        \n\n\n \n \n\n\n \n \n\n
        ^International(364,WebGUI);:\n \n
        ^International(For,WebGUI);: 
        \n
        \n
        ','MultiSearch',1,1,'MultiSearchTmpl0000001',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
        \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n\r\n \r\n
        \r\n \r\n
        \r\n
        \r\n , , \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        :00
        \r\n
        \r\n
          \r\n
        • \r\n \">\r\n
        • \r\n
        \r\n
        \r\n
        ','Calendar/Day',1,1,'CalendarDay00000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
        \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n \r\n
        \r\n \r\n \r\n
        \r\n ^International(event details,Asset_Event);\r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
        \r\n
        ^International(event title,Asset_Event);
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        ^International(location,Asset_Event);
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        ^International(description,Asset_Event);
        \r\n
        \r\n
        \r\n
        \r\n
        ^International(scheduled,Asset_Event);
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        ^International(related material,Asset_Event);
        \r\n
        \r\n \r\n
        \r\n
        ^International(attachments,Asset_Event);
        \r\n
        \r\n \"> \" />
        \r\n
        \r\n
        \r\n
        ','Calendar/Event',1,1,'CalendarEvent000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n
        \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        active current\">\r\n \r\n \">\r\n \r\n \r\n \r\n \" class=\"moreButton\" onmouseover=\"return showEvents(\'overlay\');\">\r\n /wobject/Calendar/images/more.gif\" />\r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n\r\n
        \" class=\"moreDisplay\">\r\n
        \r\n
          \r\n \r\n
        • \">
        • \r\n
          \r\n
        \r\n
        \r\n
        \r\n
        ','Calendar/Month',1,1,'CalendarMonth000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
        \r\n ?type=day\">^International(label day,Asset_Calendar);\r\n ?type=week\">^International(label week,Asset_Calendar);\r\n ?type=month\">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n
        \r\n  \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
        \r\n
        ^International(keyword,Asset_Calendar);
        \r\n
        \r\n
        \r\n
        ^International(start date,Asset_Calendar);
        \r\n
        \r\n
        \r\n
        ^International(end date,Asset_Calendar);
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
        \r\n
        \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
        \r\n
        \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n \" style=\"padding-left:10px\">\r\n
        \r\n
        \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        ','Calendar/Search',1,1,'CalendarSearch00000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n\r\n

        \r\n
        \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
        \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
        \r\n \r\n
        \r\n
        \r\n , to , \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        curDay\"> \r\n \r\n \r\n
        \r\n
        \r\n
        ','Calendar/Week',1,1,'CalendarWeek0000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n

        ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

        \r\n\r\n

        ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

        \r\n\r\n \r\n

        \r\n
        \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(\'template upload type\',\'Asset_GalleryAlbum\');\r\n \" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\r\n ^International(\'template upload archive\',\'Asset_GalleryAlbum\');\r\n
        ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\r\n \r\n
        ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\r\n \r\n
        ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
        \r\n \r\n
        \r\n \r\n
        \r\n \r\n \r\n\r\n
        ','GalleryAlbum/AddArchive',1,1,'0X4Q3tBWUb_thsVbsYz9xQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','GalleryAlbum/ViewRss',1,1,'mM3bjP_iG9sv5nQb4S17tQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n \r\n
        \r\n
        \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n^International(template url_delete,Asset_Photo);\n
        \r\n\r\n

        \r\n\r\n
        \r\n \r\n
        \r\n\r\n
        ','GalleryAlbum/Delete',1,1,'UTNFeV7B_aSCRmmaFCq4Vw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n \r\n
        \r\n
        \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n^International(template url_delete,Asset_Photo);\n
        \r\n\r\n

        \r\n\r\n
        \r\n\r\n
        \r\n\r\n
        \r\n ^International(\"template delete message\",\"Asset_Photo\");\r\n
        \r\n\r\n
        \r\n\r\n \r\n
        \r\n
        \r\n
        ','GalleryFile/Delete',1,1,'zcX-wIUct0S_np14xxOA-A',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n\n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
        \n
        \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
        \n\n

        \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n
        ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
        ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
        ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
        \n
        \n
        \n\n ^International(\'editForm assetIdThumbnail label\',\'Asset_GalleryAlbum\');

        \n \n
        \n
        \n \n\n
        \n

        \n
        \n\n
        \n \n
        \n
         
        \n
        \n
        \n
        \n\n\n
        \n \n
        \n
        \n','GalleryAlbum/Edit',1,1,'6X-7Twabn5KKO_AbgK3PEw',1230585542,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n\n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \"\"\n \n \"\"\n \"\"\n \n \"\"\n
        \n
        \n
        \n\n

        \n\n
        \n ^International(\"template comment add title\",\"Asset_Photo\");\n ^International(\"template comment edit title\",\"Asset_Photo\");\n \n \n
        \n
        \n \n
        \n \n
        \n
        \n
        \n
        \n','GalleryFile/EditComment',1,1,'OxJWQgnGsgyGohP2L3zJPQ',1230585543,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n\n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
        \n
        \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
        \n\n

        \n\n

        \n\n \n

        ^International(\'template error happened\',\'Asset_Photo\');

        \n
          \n \n
        • \n
          \n
        \n
        \n\n \n\n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n ^International(\'template upload single\',\'Asset_GalleryAlbum\');\n \" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
        ^International(\'editForm title label\',\'Asset_Photo\');\n \n
        ^International(\'editForm synopsis label\',\'Asset_Photo\');\n \n
        ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n \n
        ^International(\'editForm keywords\',\'Asset_Photo\');\n \n
        ^International(\'editForm location\',\'Asset_Photo\');\n \n
        ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n \n
        \n\n \n\n
        \n\n','GalleryFile/Edit',1,1,'7JCTAiu1U_bT9ldr655Blw',1230585543,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListAlbumsRss',1,1,'ilu5BrM-VGaOsec9Lm7M6Q',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
        \r\n \r\n \r\n
        \r\n
        \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n
        \r\n \r\n
        \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n \r\n
        ','Gallery/ListAlbums',1,1,'azCqD0IjdQSlM3ar29k5Sg',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListFilesForUserRss',1,1,'-ANLpoTEP-n4POAdRxCzRw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n \r\n
        \r\n
        \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n\r\n \r\n\r\n

        ^International(template listFilesForUser albums title,Asset_Gallery);

        \r\n \r\n \r\n
        \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n

        ^International(template listFilesForUser pictures title,Asset_Gallery);

        \r\n \r\n \r\n
        \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        ','Gallery/ListFilesForUser',1,1,'OkphOEdaSGTXnFGhK4GT5A',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \n \n\n
        \n
        \n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
        \n
        \n ^International(template makeShortcut title,Asset_Photo);\n
        \n\n

        \n\n
        \n\n \n \n \n \n \n \n \n \n \n \n
        ^International(template makeShortcut file,Asset_Photo);
        ^International(template makeShortcut album,Asset_Photo);
        \n\n
        \n \n
        \n\n
        \n
        \n','GalleryFile/MakeShortcut',1,1,'m3IbBavqzuKDd2PGGhKPlA',1230585543,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n \r\n
        \r\n
        \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n ^International(\'template search title\',\'Asset_Gallery\');\r\n
        \r\n\r\n \r\n\r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(\'template search field title\',\'Asset_Gallery\');
        ^International(\'template search field description\',\'Asset_Gallery\');
        ^International(\'template search field keywords\',\'Asset_Gallery\');
        ^International(\'template search field className\',\'Asset_Gallery\');\r\n \r\n
        ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
         \r\n \r\n
        \r\n
        \r\n \r\n\r\n

        \r\n\r\n \r\n
        \r\n \r\n
        \r\n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\r\n
        \r\n\r\n

        Albums

        \r\n \r\n \r\n
        \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n \r\n

        Pictures

        \r\n \r\n \r\n
        \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        Created ^D(\"%M/%d/%Y\",^International(\'template file creationDate\',\'Asset_GalleryAlbum\'););
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n\r\n
        \r\n
        ','Gallery/Search',1,1,'jME5BEDYVDlBZ8jIQA9-jQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
        \r\n \r\n \r\n
        \r\n
        \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
        \r\n\r\n \r\n\r\n
        \r\n
        \r\n \"Previous\r\n \r\n \"Next\r\n
        \r\n
        \r\n \r\n
        \r\n \r\n
        \r\n \">\" style=\"border: none\" /> \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
        ','GalleryAlbum/ViewSlideshow',1,1,'KAMdiUdJykjN02CPHpyZOw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n\n\n','GalleryAlbum/ViewThumbnails',1,1,'q5O62aH4pjUXsrQR3Pq4lw',1230585542,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
        \r\n \r\n \r\n
        \r\n
        \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url,Asset_GalleryAlbum);    \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \n \r\n \r\n
        \r\n
        \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
        \r\n\r\n\r\n \r\n\r\n \r\n
        \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n
        ^International(template file creationDate,Asset_GalleryAlbum); ^D(\"%z\",);
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n\r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        ','GalleryAlbum/View',1,1,'05FpjceLYhq4csF1Kww1KQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
        \r\n \r\n\r\n
        \r\n
        \r\n \">^International(\'template url_album\',\'Asset_Photo\');    \r\n
        \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
        \r\n
        \r\n ·\r\n ^International(\'template by\',\'Asset_Gallery\');: \">\r\n
        \r\n\r\n \r\n
        \r\n
        \r\n ^International(template view details,Asset_Photo);\r\n
        \r\n
        \r\n ^International(\'template creationDate\',\'Asset_Photo\');:\r\n
        \r\n
        \r\n ^D(\"%z %Z\", );\r\n
        \r\n
        \r\n
        \r\n
        \r\n ^International(\'template views\',\'Asset_Photo\');:\r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n ^International(\'template by\',\'Asset_Gallery\');:\r\n
        \r\n
        \r\n \">\r\n
        \r\n
        \r\n
        \r\n
        \r\n ^International(\'template friendsOnly label\',\'Asset_Photo\');:\r\n
        \r\n
        \r\n ^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\r\n
        \r\n
        \r\n
        \r\n
        \r\n ^International(\'template location\',\'Asset_Photo\');:\r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n ^International(template view available resolutions,Asset_Photo);\r\n
        \r\n
        \r\n \r\n \">\r\n \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n ^International(\'template keywords\',\'Asset_Photo\');\r\n \r\n \">, \r\n \r\n
        \r\n
        \r\n
        \r\n ^International(more details,Asset_Photo);\r\n
        \r\n \r\n
        rowOnerowTwo\">\r\n
        \r\n :\r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n ^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\r\n
        \r\n \r\n
        \r\n \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        ','GalleryFile/View',1,1,'TEId5V-jEvUULsZA0wuRuA',1230702582,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n
        \n
          \n
        • \n
        \n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \n \r\n \r\n \r\n \r\n \n \r\n \r\n \r\n \r\n
        \r\n \r\n\r\n
        \n','Shop/Credentials',1,1,'itransact_credentials1',1228953856,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n \n \n \n \n \n \n
        \n
        \n \n \n \n \n \n
        ()\n \n
        1:23 PM EDT
        \n \n
        \n
        \n
        \n
        \n \n \n \n \n \n \n
        \n &t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n \n \n \n \n \n \n \n \n \n \n
        Today5d1m3m1y5y20y
        \n
        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        ^International(stocks.last,Asset_StockData);
        ^International(Market Cap,Asset_StockData);
        ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n /\' alt=\"\" /> \n
        ^International(Open,Asset_StockData);
        ^International(Day High,Asset_StockData);
        ^International(stocks.bid,Asset_StockData);
        ^International(52 Wk High,Asset_StockData);
        ^International(EPS,Asset_StockData);
        ^International(stocks.ex_div,Asset_StockData);
        ^International(Yield,Asset_StockData);
        \n
        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        ^International(Last Trade,Asset_StockData);
        ^International(Volume,Asset_StockData); m
        ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
        ^International(Prev Close,Asset_StockData);
        ^International(Day Low,Asset_StockData);
        ^International(stocks.ask,Asset_StockData);
        ^International(52 Wk Low,Asset_StockData);
        ^International(stocks.pe,Asset_StockData);
        ^International(Dividend,Asset_StockData);
        ^International(Exchange,Asset_StockData);
        \n
        \n
        \n\n\n\n','StockData/Display',1,1,'StockDataTMPL000000002',1229494994,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

        \n
        \n\n\n

        \n
        \n\n\n

        \n\n\n

        \n\n \">\n\n \n\n

        \n\n\n

        \n\n\n\n \n \n
        \n \n
        \n \n
        \n \" style=\"font-size: 9px;\">^International(read more,WebGUI);...\n
        \n
        \n
        \n
        ','SyndicatedContent',1,1,'GNvjCFQWjY2AF2uf0aCM8Q',1230356300,'WebGUI::Asset::Template::HTMLTemplate',1),('

        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n
        ^International(\'comparison label\',\'Asset_Matrix\');
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n\r\n
        \r\n
        \r\n
        \r\n\r\n','Matrix/Compare',1,1,'matrixtmpl000000000002',1233132357,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

        \r\n
        \r\n\r\n

        \r\n\r\n\r\n
        \r\n \r\n
        \r\n
        \r\n\r\n
        \r\n
        \r\n \r\n \r\n
        \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n
        \r\n
        \r\n ^International(\'expand the matrix label\',\'Asset_Matrix\');\r\n
        \r\n \r\n
        \r\n \r\n ^International(\'add new listing text\',\'Asset_Matrix\');\r\n \r\n ^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        ^International(\'listing statistics label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
        ^International(\'most views label\',\'Asset_Matrix\');\"> ()
        ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
        \r\n \r\n
        ^International(\'most recently updated label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \">
        \r\n \r\n
        ^International(\'best rated label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \"> (/10)
        \r\n \r\n
        ^International(\'worst rated label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \"> (/10)
        \r\n \r\n
        ^International(\'site statistics label\',\'Asset_Matrix\');
        \r\n \r\n \r\n \r\n \r\n \r\n
        ^International(\'listing count label\',\'Asset_Matrix\');
        \r\n
        \r\n \r\n \r\n \r\n\r\n \r\n \r\n
        ^International(\'pending listings label\',\'Asset_Matrix\');:
        \r\n
        \r\n
          \r\n \r\n
        • \">
        • \r\n
          \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        ','Matrix',1,1,'matrixtmpl000000000001',1232674109,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n \r\n \r\n

        \r\n
        \r\n \r\n

        \r\n \r\n \r\n [\r\n ^AssetProxy(new-matrix/matrix-nav);\r\n blockblockblock\">\r\n \r\n • \">Edit\r\n \r\n \r\n \r\n • \">Approve\r\n \r\n • \">Delete\r\n \r\n \r\n ]\r\n \r\n

        \r\n \r\n
        \r\n \r\n \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n ^International(\'description label\',\'Asset_MatrixListing\');\r\n \r\n \r\n \r\n Add a Description\r\n \r\n No Description\r\n \r\n \r\n
        \r\n
        \r\n
        \r\n \r\n
        \r\n
          \r\n
        • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\">
        • \r\n
        • ^International(\'version label\',\'Asset_MatrixListing\');
        • \r\n
        • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\">
        • \r\n
        • ^International(\'last updated label\',\'Asset_MatrixListing\');
        • \r\n
        • ^International(\'clicks label\',\'Asset_Matrix\');
        • \r\n
        • ^International(\'views label\',\'Asset_Matrix\');
        • \r\n
        • ^International(\'compares label\',\'Asset_Matrix\');
        • \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n Comments\r\n \r\n Send Creator a Message\r\n
        \r\n \r\n
        ^International(\'message sent message\',\'Asset_MatrixListing\');
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        ','Matrix/Detail',1,1,'matrixtmpl000000000003',1232674242,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        \r\n \r\n
        \r\n
        \r\n \r\n
        \r\n
        \r\n
        \r\n\r\n
        \r\n
        ^International(\'search label\',\'Asset_Matrix\');
        \r\n
        \r\n \r\n
        \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
        \r\n
        \r\n
        \r\n
        \r\n
        \r\n \r\n\r\n\r\n','Matrix/Search',1,1,'matrixtmpl000000000005',1232674190,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \">Return to Matrix\r\n\r\n','Navigation',1,1,'alraubvBu-YJJ614jAHD5w',1232664015,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        ^International(\'please enter answer information\',\'Asset_Survey\');
        \r\n
        \r\n\r\n
        \r\n\r\n \r\n
        \r\n

        ^International(\'answer number\',\'Asset_Survey\');
        ^International(\'answer number description\',\'Asset_Survey\');
        \r\n \'>\r\n

        \r\n

        ^International(\'verbatim\',\'Asset_Survey\');
        ^International(\'verbatim description\',\'Asset_Survey\');
        \r\n ^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');

        \r\n

        ^International(\'min\',\'Asset_Survey\');
        ^International(\'min description\',\'Asset_Survey\');
        \' name=min size=2>

        \r\n

        ^International(\'max\',\'Asset_Survey\');
        ^International(\'max description\',\'Asset_Survey\');
        \' name=max size=2>

        \r\n

        ^International(\'step\',\'Asset_Survey\');
        ^International(\'step description\',\'Asset_Survey\');
        \' name=step size=2>

        \r\n\r\n
        \r\n\r\n

        ^International(\'recorded answer\',\'Asset_Survey\');
        ^International(\'recorded answer description\',\'Asset_Survey\');

        \r\n

        ^International(\'jump to\',\'Asset_Survey\');
        ^International(\'jump to description\',\'Asset_Survey\');
        \' name=goto size=4>\r\n

        ^International(\'cols\',\'Asset_Survey\');
        ^International(\'cols description\',\'Asset_Survey\');
        \' name=textCols>\r\n
        ^International(\'rows\',\'Asset_Survey\');
        ^International(\'rows description\',\'Asset_Survey\');
        \r\n \' name=textRows>

        \r\n

        ^International(\'is this the correct answer\',\'Asset_Survey\');
        ^International(\'is this the correct answer description\',\'Asset_Survey\');
        \r\n checked>^International(\'yes\',\'Asset_Survey\');\r\n checked>^International(\'no\',\'Asset_Survey\');

        \r\n\r\n

        ^International(\'answer value\',\'Asset_Survey\');
        ^International(\'answer value description\',\'Asset_Survey\');
        \' name=value>

        \r\n
        \r\n

        ^International(\'answer text\',\'Asset_Survey\');
        ^International(\'answer text description\',\'Asset_Survey\');

        \r\n
        \r\n
        \r\n
        ','Survey/Edit',1,1,'AjhlNO3wZvN5k4i4qioWcg',1232726656,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        ^International(\'please enter question information\',\'Asset_Survey\');
        \r\n
        \r\n
        \r\n\r\n\r\n\r\n
        \r\n

        ^International(\'question number\',\'Asset_Survey\');
        ^International(\'question number description\',\'Asset_Survey\');

        \r\n \'>\r\n \r\n \r\n

        ^International(\'question text\',\'Asset_Survey\');
        ^International(\'question text description\',\'Asset_Survey\');
        \r\n

        \r\n

        ^International(\'question variable name\',\'Asset_Survey\');
        ^International(\'question variable name description\',\'Asset_Survey\');
        \' name=variable size=2>

        \r\n

        ^International(\'randomize answers\',\'Asset_Survey\');
        ^International(\'randomize answers description\',\'Asset_Survey\');
        \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

        \r\n

        ^International(\'question type\',\'Asset_Survey\');
        ^International(\'question type description\',\'Asset_Survey\');
        \r\n

        \r\n\r\n
        \r\n\r\n

        ^International(\'vertical display\',\'Asset_Survey\');
        ^International(\'vertical display description\',\'Asset_Survey\');
        \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

        \r\n

        ^International(\'show text in button\',\'Asset_Survey\');
        ^International(\'show text in button description\',\'Asset_Survey\');
        \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

        \r\n\r\n

        ^International(\'allow comment\',\'Asset_Survey\');
        ^International(\'allow comment description\',\'Asset_Survey\');
        \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');\r\n   
        ^International(\'cols\',\'Asset_Survey\');
        ^International(\'cols description\',\'Asset_Survey\');
        \' name=commentCols> \r\n
        ^International(\'rows\',\'Asset_Survey\');
        ^International(\'rows description\',\'Asset_Survey\');
        \r\n \' name=commentRows>
        \r\n

        \r\n

        ^International(\'maximum number of answers\',\'Asset_Survey\');
        ^International(\'maximum number of answers description\',\'Asset_Survey\');
        \' name=maxAnswers size=2>

        \r\n

        ^International(\'required\',\'Asset_Survey\');
        ^International(\'required description\',\'Asset_Survey\');
        \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

        \r\n

        ^International(\'question value\',\'Asset_Survey\');
        ^International(\'question value description\',\'Asset_Survey\');
        \' name=value>

        \r\n
        \r\n
        \r\n
        \r\n
        ','Survey/Edit',1,1,'wAc4azJViVTpo-2NYOXWvg',1232907257,'WebGUI::Asset::Template::HTMLTemplate',1),('
        \r\n
        ^International(\'please enter section information\',\'Asset_Survey\');
        \r\n
        \r\n
        \r\n\r\n
        \r\n

        ^International(\'section number\',\'Asset_Survey\');
        ^International(\'section number description\',\'Asset_Survey\');

        \r\n \'>\r\n \r\n \r\n

        ^International(\'section name\',\'Asset_Survey\');
        ^International(\'section name description\',\'Asset_Survey\');
        \' type=text>

        \r\n
        \r\n

        ^International(\'randomize questions\',\'Asset_Survey\');
        ^International(\'randomize questions description\',\'Asset_Survey\');

        \r\n\r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');\r\n\r\n

        ^International(\'section custom variable name\',\'Asset_Survey\');
        ^International(\'section custom variable name description\',\'Asset_Survey\');
        \' name=variable size=2>

        \r\n

        ^International(\'section branch goto variable name\',\'Asset_Survey\');
        ^International(\'section branch goto variable name description\',\'Asset_Survey\');
        \' name=goto size=2>

        \r\n

        ^International(\'questions per page\',\'Asset_Survey\');
        ^International(\'questions per page description\',\'Asset_Survey\');
        \r\n

        \r\n
        \r\n

        ^International(\'questions on section page\',\'Asset_Survey\');
        ^International(\'questions on section page description\',\'Asset_Survey\');
        \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

        \r\n


        \r\n\r\n

        ^International(\'title on every page\',\'Asset_Survey\');
        ^International(\'title on every page description\',\'Asset_Survey\');
        \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

        \r\n

        ^International(\'text on every page\',\'Asset_Survey\');
        ^International(\'text on every page description\',\'Asset_Survey\');
        \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

        \r\n

        ^International(\'terminal section\',\'Asset_Survey\');
        ^International(\'terminal section description\',\'Asset_Survey\');
        \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

        \r\n

        ^International(\'terminal section url\',\'Asset_Survey\');
        ^International(\'terminal section url description\',\'Asset_Survey\');
        \'>\r\n
        \r\n

        ^International(\'section text\',\'Asset_Survey\');
        ^International(\'section text description\',\'Asset_Survey\');

        \r\n
        \r\n
        \r\n\r\n','Survey/Edit',1,1,'1oBRscNIcFOI-pETrCOspA',1232648656,'WebGUI::Asset::Template::HTMLTemplate',1),(' \r\nWebGUI ^International(assetName,Asset_Survey);\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n\r\n
        \r\n\r\n
        \r\n\r\n
          \r\n\r\n
          \r\n
          \r\n\r\n\r\n\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n\r\n','Survey/Edit',1,1,'GRUNFctldUgop-qRLuo_DA',1232646902,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n\r\n\r\n\r\n\r\n

          \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
          ^International(\'user label\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
          /%
          \r\n\r\n\r\n\r\n
          \r\n · · \r\n
          \r\n
          \r\n','Survey/Gradebook',1,1,'PBtmpl0000000000000062',1232981641,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n\r\n\r\n\r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \" style=\"display:none;\">\r\n \r\n \r\n \r\n \r\n
          ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
          \');\">^International(\'show comments label\',\'Asset_Survey\');
          \r\n \r\n

          \r\n
          \r\n
          \r\n \r\n
          \r\n \');\">^International(\'show responses label\',\'Asset_Survey\');\r\n
          \r\n
          \" style=\"display:none;\">\r\n \r\n

          \r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n


          \r\n
          \r\n\r\n\r\n
          \r\n · · \r\n
          \r\n
          \r\n','Survey/Overview',1,1,'PBtmpl0000000000000063',1233156264,'WebGUI::Asset::Template::HTMLTemplate',1); +INSERT INTO `snippet` VALUES ('SynConXSLT000000000001','\n\n\n \n \n \n \n \n \nYou\'re viewing an RSS version 0.9 feed. Please use an RSS feed reader to view this content as intended.\n
          \n
          \n \n
          \n
          \n \n
          \n
            \n \n
          \n
          \n
          \n \n
        • \n \n \n \n
        • \n
          \n
          ',0,'application/xml',1124395707,3600),('SynConXSLT000000000002','\n\n\n \n \n \n \n \n \n
          \nYou\'re viewing an RSS version 0.91 feed. Please use an RSS feed reader to view this content as intended.\n
          \n \n
          \n
          \n \n
          \n
            \n \n
          \n\n
          \n
          \n \n
        • \n \n \n \n
          \n \n\n
          \n
        • \n
          \n
          ',0,'application/xml',1124395707,3600),('SynConXSLT000000000003','\n\n\n \n \n \n \n \n \n
          \nYou\'re viewing an RSS version 1.0 feed. Please use an RSS feed reader to view this content as intended.\n
          \n \n
          \n
          \n \n
          \n
            \n \n
          \n\n
          \n
          \n \n
        • \n \n \n \n \n (\n )\n \n\n
          \n \n
          \n
        • \n
          \n
          \n',0,'application/xml',1124395707,3600),('SynConXSLT000000000004','\n\n\n \n \n \n \n \n \n
          \nYou\'re viewing an RSS version 2.0 feed. Please use an RSS feed reader to view this content as intended.\n
          \n \n
          \n
          \n \n
          \n
            \n \n
          \n\n
          \n
          \n \n
        • \n \n \n \n \n ()\n \n\n
          \n \n
          \n
        • \n
          \n
          ',0,'application/xml',1124395707,3600),('7-0-style0000000000003','body, html\n{\n text-align:center;\n margin:0px;\n height:100%; \n background-color:#494949;\n}\n\n#main\n{\n width:800px;\n background: url(\'^FileUrl(style1/main_bg.jpg);\') repeat-y;\n height:100%;\n margin-left:auto;\n margin-right:auto;\n margin-top:0px;\n margin-bottom:0px;\n position:relative;\n}\nbody > #main\n{\n height:auto;\n min-height:100%;\n}\n\n#main #mainHeader\n{\n width:800px;\n height:133px;\n background: url(\'^FileUrl(style1/header.jpg);\') top left no-repeat;\n margin-bottom:0px;\n position:relative;\n}\n#main #mainHeader #title\n{\n position:absolute;\n top:23px;\n left:145px;\n font-size:32pt;\n font-family:arial;\n color:white;\n font-weight:bold;\n}\n#main #mainHeader #title a {\n color:white;\n text-decoration:none;\n}\n\n#main #mainContent\n{\n background: url(\'^FileUrl(style1/orange_left01.jpg);\') left top no-repeat;\n width:100%;\n height:100%; \n margin-top:0px;\n text-align:left;\n border:solid red 0px;\n}\n#main > #mainContent\n{\n margin-top:0px;\n min-height:500px;\n}\n#main > #mainContent > p {\n margin-top:0px;\n}\n#main #mainContent #mainText a:link {\n color:#FF7F23;\n}\n#main #mainContent #mainText a:visited {\n color:#D25900;\n}\n\n/* LEVEL 1 AND 2 NAVIGATION */\n#main .mainNav_1, #main .mainNav_2 {\n border-bottom:dashed #DADADA 1px; \n width:621px;\n height:25px;\n text-align:left;\n position:relative;\n margin-left:137px; \n clear:both;\n}\n#main .mainNav_1 a:link, #main .mainNav_1 a:visited, #main .mainNav_2 a:link, #main .mainNav_2 a:visited {\n color:white;\n text-decoration:none;\n top:5px;\n position:relative;\n -moz-box-sizing:border-box;\n}\n#main .mainNav_1 a:hover,#main .mainNav_2 a:hover {\n color:black;\n}\n#main .mainNav_1 div .left, #main .mainNav_2 div .left {\n width:12px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .left {\n background: url(\'^FileUrl(style1/nav2_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div .center, #main .mainNav_2 div .center { \n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_center.jpg);\') repeat-x top left;\n color:white;\n font-family:arial, verdana;\n font-size:8pt;\n}\n#main .mainNav_2 div .center {\n background: url(\'^FileUrl(style1/nav2_off_center.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div .right, #main .mainNav_2 div .right {\n width:10px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .right {\n background: url(\'^FileUrl(style1/nav2_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .left {\n background: url(\'^FileUrl(style1/nav1_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .center {\n background: url(\'^FileUrl(style1/nav1_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div.navOn .right {\n background: url(\'^FileUrl(style1/nav1_on_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .left {\n background: url(\'^FileUrl(style1/nav2_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .center {\n background: url(\'^FileUrl(style1/nav2_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_2 div.navOn .right {\n background: url(\'^FileUrl(style1/nav2_on_right.jpg);\') no-repeat top left;\n} \n#main .mainNav_1 div.navOn a:link, #main .mainNav_1 div.navOn a:visited, #main .mainNav_2 div.navOn a:link, #main .mainNav_2 div.navOn a:visited {\n color:black;\n}\n/* ENDOF LEVEL 1 AND 2 NAVIGATION */\n\n#main #crumbTrail {\n margin-left:177px;\n margin-bottom:0px;\n color:gray;\n font-size:8pt;\n font-weight:bold;\n}\n#main #crumbTrail a.crumbTrail:visited, #main #crumbTrail a.crumbTrail:link {\n color:silver;\n font-size:8pt; \n font-family:arial;\n text-decoration:none;\n font-weight:normal;\n}\n#main #crumbTrail a.crumbTrail:hover {\n color:gray;\n}\n\n#main #mainText\n{\n padding-left:150px;\n font-family:verdana;\n font-size:9pt;\n width:600px;\n margin-top:0px;\n}\n\n#main #gui\n{\n bottom:0px;\n left:0px;\n position:absolute;\n width:135px;\n font-size:8pt;\n color:black;\n font-family:arial;\n text-align:right;\n}\n#main #gui .loginBox {\n padding-right:12px;\n -moz-box-sizing:border-box;\n width:100px; \n float:right;\n margin-bottom:10px;\n}\n#main #gui .loginBox .loginBoxField {\n width:75px;\n}\n#main #gui .loginBox .loginBoxButton {\n background-color:#D65501;\n color:white;\n border:solid white 2px;\n margin-top:4px;\n font-variant:small-caps;\n}\n#main #gui a\n{\n color:white; \n}\n#copyright {\n color:#fff;\n position:absolute;\n top:110px;\n right:40px;\n font-family:verdana;\n font-size:8pt;\n font-weight:bold;\n background-color:#2D2D2D;\n opacity:0.4;\n -moz-opacity:0.4;\n -khtml-opacity:0.4; \n padding:2px;\n}\n* html #copyright {\n background: transparent;\n}\n',1,'text/css',1147642492,3600),('7-0-style0000000000033','body, html { \n height:100%; \n}\nbody {\n background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg);\') repeat-y right; \n margin:0px;\n}\n.rightColumn {\n width:20%;\n height:100%;\n background: #eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg);\') repeat-y right; \n text-align:center; \n}\n.rightColumn #pb_wg_bg {\n background: url(\'^FileUrl(style2/pb_wg_bg.jpg);\') repeat-x;\n width:100%;\n text-align:left; \n}\n.rightColumn #pb_wg {\n background: url(\'^FileUrl(style2/pb_wg.jpg);\') left no-repeat;\n height:53px;\n}\n.leftColumn { \n width:80%; \n background: white url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; \n} \n.leftColumn #header {\n width:100%;\n background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg);\') right no-repeat; \n height:86px;\n position:relative;\n}\n.leftColumn #header #title, .leftColumn #header #title_bg {\n color:white;\n font-size:36pt;\n font-weight:bold;\n font-family:arial;\n font-variant:small-caps;\n letter-spacing:12px;\n top:15px;\n left:5px;\n position:absolute;\n z-index:10;\n}\n.leftColumn #header #title a {\n color:white;\n text-decoration:none;\n}\n.leftColumn #header #title_bg {\n color:black;\n z-index:5;\n top:17px;\n left:7px;\n}\n.leftColumn #context {\n /*background: #fff url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; */\n width:95%;\n font-family:verdana;\n font-size:9pt;\n color:#242424;\n -moz-box-sizing:border-box; \n position:relative;\n padding-left:1%;\n padding-right:1%;\n padding-bottom:15px;\n}\n.leftColumn #context a {\n color:#7C9AB0;\n font-weight:bold;\n}\n.leftColumn #context a:hover {\n text-decoration:none;\n}\n.leftColumn #pageTitleBG {\n background: url(\'^FileUrl(style2/page_title_bg.jpg);\') repeat-x; \n width:100%;\n}\n.leftColumn #pageTitleBG #pageTitle {\n background: url(\'^FileUrl(style2/page_title.jpg);\') right no-repeat; \n width:100%;\n height:50px;\n} \n.leftColumn #pageTitleBG #pageTitle h2 {\n font-size:14pt;\n color:#696969;\n font-family:arial;\n font-weight:normal;\n margin:0px;\n padding-top:2px;\n padding-left:25px;\n letter-spacing:3px;\n}\n.rightColumn #nav {\n width:85%;\n background: #b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg);\') repeat-x top; \n border-right:solid #848484 1px;\n margin-left:auto;\n margin-right:auto;\n text-align:left;\n padding-left:3px;\n padding-top:7px;\n padding-bottom:7px;\n}\n.rightColumn #nav a {\n color:white;\n font-size:8pt;\n font-weight:bold;\n text-decoration:none;\n font-family:arial;\n line-height:8pt; \n} \n.rightColumn #nav .selectedMenuItem {\n color:yellow;\n}\n#loginStyles {\n font-size:8pt;\n font-family:arial;\n padding-bottom:25px;\n}\n#loginStyles a {\n color:#89ACCF;\n font-weight:bold; \n border-bottom:solid transparent 2px;\n text-decoration:none;\n}\n#loginStyles a:hover {\n border-bottom:dotted #B2C9D9 2px;\n} \n\n.copyright {\n border-top:solid silver 3px;\n background-color:gray;\n font-family:arial;\n font-size:9pt;\n color:silver; \n text-align:center;\n}\n',0,'text/css',1147642500,3600),('pbrobot000000000000001','User-agent: googlebot\nDisallow: *?op=displayLogin\nDisallow: *?op=makePrintable\n',0,'text/plain',1147642511,3600),('MBZK_LPVzqhb4TV4mMRTJg','input.captionEnter {\r\n margin-left: -5px;\r\n width: 92px;\r\n}',0,'text/css',1197330678,3600),('3qiVYhNTXMVC5hfsumVHgg','var BrowserDetect = {\r\n init: function () {\r\n this.browser = this.searchString(this.dataBrowser) || \"An unknown browser\";\r\n this.version = this.searchVersion(navigator.userAgent)\r\n || this.searchVersion(navigator.appVersion)\r\n || \"an unknown version\";\r\n this.OS = this.searchString(this.dataOS) || \"an unknown OS\";\r\n },\r\n searchString: function (data) {\r\n for (var i=0;i= items.length ) {\r\n showIndex = 0;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex >= items.length ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n if ( items[ hideIndex ] )\r\n items[ hideIndex ].style.display = \"none\";\r\n if ( items[ showIndex ] ) {\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n }\r\n};\r\n\r\n/**\r\n showPrevious ( )\r\n Show the previous slide\r\n*/\r\nWebGUI.Slideshow.prototype.showPrevious\r\n= function () {\r\n var items = this.getSlideshowItems();\r\n \r\n var hideIndex = this.currentIndex;\r\n var showIndex = this.currentIndex - 1;\r\n\r\n // Wrap around\r\n if ( this.wrap && showIndex < 0 ) {\r\n showIndex = items.length - 1;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex < 0 ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n items[ hideIndex ].style.display = \"none\";\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n};\r\n\r\n/**\r\n togglePlay ( )\r\n If it\'s paused, play it. If it\'s playing, pause it.\r\n Return true if the slideshow is now playing.\r\n*/\r\nWebGUI.Slideshow.prototype.togglePlay\r\n= function () {\r\n if ( this.isPlaying == false ) {\r\n this.play();\r\n return true;\r\n }\r\n else {\r\n this.pause();\r\n }\r\n};\r\n\r\n/**\r\n updatePlayPauseButton ( )\r\n Update the Play/Pause button to have the correct image\r\n*/\r\nWebGUI.Slideshow.prototype.updatePlayPauseButton\r\n= function () {\r\n if ( this.playPauseButtonId ) {\r\n if ( this.isPlaying && this.playImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.pauseImageSrc;\r\n }\r\n else if ( this.pauseImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.playImageSrc;\r\n }\r\n }\r\n};',0,'text/javascript',1218582812,3600),('1XOJDcg_ITRYwVM-QnIcPw',' .wgShelf {\r\n font-size:12px;\r\n font-family:arial, verdana; \r\n margin:15px 0px;\r\n }\r\n .wgShelf h2 {\r\n background: black;\r\n padding:5px;\r\n padding-left:15px;\r\n line-height:32px;\r\n color:white;\r\n margin:0px;\r\n height:32px;\r\n }\r\n .wgShelf .wgShelves {\r\n background: #F1F1F1;\r\n height:29px;\r\n padding:3px;\r\n line-height:29px;\r\n padding-left:30px;\r\n }\r\n .wgShelf .product {\r\n margin:15px;\r\n margin-left:0px; \r\n text-align:left;\r\n background-color:#f1f1f1;\r\n border:solid #e1e1e1 1px;\r\n width: 200px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n }\r\n .wgShelf .product .thumbnail {\r\n display:block;\r\n text-align:left;\r\n margin:3px;\r\n float:left;\r\n }\r\n .wgShelf .product .link {\r\n background: #e1e1e1;\r\n height:30px;\r\n padding:3px;\r\n line-height:24px;\r\n margin-bottom:5px; \r\n text-align:left;\r\n display:block;\r\n }\r\n .wgShelf .product .link a:link,\r\n .wgShelf .product .link a:visited {\r\n color:#000; \r\n display:block;\r\n }\r\n .wgShelf .product .link a:hover {\r\n text-decoration:underline;\r\n }\r\n .wgShelf .product .price {\r\n display:block;\r\n text-align:right;\r\n font-size:18px;\r\n font-weight:bold;\r\n }',0,'text/css',1219175575,0),('THQhn1C-ooj-TLlEP7aIJQ','.wgPicture {\r\n float:left;\r\n}\r\n.wgAlbum {\r\n float:left;\r\n}\r\n.wgGallery .pagination li, \r\n.wgGallery .pagination a {\r\n float:left;\r\n}\r\n.wgGallery .container {\r\n display:inline-block;\r\n}',0,'text/html',1225313951,3600),('7-0-style0000000000051','body, html {\r\n margin:0px;\r\n background-color:#b53018;\r\n padding:0px;\r\n}\r\nbody a {\r\n color:#EE963E;font-weight:bold;\r\n letter-spacing:1px;\r\n font-size:8pt;\r\n}\r\n#main {\r\n width:98%;\r\n /*min-width:790px;*/\r\n margin:0px;\r\n padding:0px;\r\n padding-top:20px;\r\n padding-bottom:20px;\r\n position:relative;\r\n}\r\n#header { \r\n background: url(\'^FileUrl(style3/header_bg.jpg);\') repeat-x;\r\n width:100%;\r\n margin:0px;\r\n height:115px;\r\n}\r\n#headerTitle {\r\n background: url(\'^FileUrl(style3/header_left.jpg);\') no-repeat left top;\r\n height:100%;\r\n width:100%;\r\n}\r\n#headerRight {\r\n background: url(\'^FileUrl(style3/header_right.jpg);\') no-repeat right top;\r\n width:100%;\r\n height:100%;\r\n text-align:right;\r\n position:relative;\r\n}\r\n#headerRight #title {\r\n position:absolute;\r\n top:25px;\r\n left:20px;\r\n font-family:arial;\r\n text-align:left;\r\n}\r\n#title h1 {\r\n text-transform:uppercase;\r\n margin-bottom:0px;\r\n font-weight:normal;\r\n font-size:26pt;\r\n margin-top:0px;\r\n color:white;\r\n}\r\n#title h1 a {\r\n color:white;\r\n text-decoration:none; font-size: 26pt; font-weight: normal; \r\n}\r\n#title h2 {\r\n margin:0px;\r\n font-size:12pt;\r\n color:#bebebe;\r\n padding-left:20px;\r\n}\r\n#title img {\r\n z-index:5;\r\n}\r\n#login {\r\n position:absolute;\r\n font-size:8pt;\r\n top:45%;\r\n right:150px;\r\n color:white;\r\n z-index:6;\r\n font-family:arial;\r\n}\r\n#login a {\r\n color:white; font-weight: normal; letter-spacing: 0px;\r\n}\r\n.loginBox {\r\n font-size:8pt;\r\n margin:0px;\r\n display:inline;\r\n}\r\n.loginBox input {\r\n font-size:8pt;\r\n}\r\n\r\n#mainBody {\r\n width:100%;\r\n margin:0px;\r\n height:500px;\r\n background: #fff;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#main > #mainBody {\r\n height:auto;\r\n min-height:500px;\r\n}\r\n#contentArea {\r\n z-index:2;\r\n position:relative;\r\n padding-top:10px;\r\n padding-left:10px;\r\n padding-right:20px;\r\n padding-bottom:20px;\r\n -moz-box-sizing:border-box;\r\n font-family:verdana;\r\n font-size:9pt;\r\n min-height:500px;\r\n}\r\nhtml #main #mainBody #contentArea {\r\n height:1%;\r\n}\r\n#topCorner {\r\n width:100%;\r\n height:214px;\r\n position:absolute;\r\n top:0px;\r\n left:0px;\r\n background: url(^FileUrl(/style3/main_top.jpg);) no-repeat;\r\n z-index:1;\r\n}\r\n#bottomCorner {\r\n width:100%;\r\n height:211px;\r\n position:absolute;\r\n bottom:59px;\r\n right:0px;\r\n background: url(\'^FileUrl(style3/main_bottom.jpg);\') no-repeat right;\r\n z-index:1;\r\n}\r\n* html #bottomCorner {\r\n bottom:58px;\r\n}\r\n\r\n#footer {\r\n width:100%;\r\n margin:0px;\r\n background:#000 url(\'^FileUrl(style3/footer_right.jpg);\') no-repeat right top;\r\n height:57px;\r\n border-top:solid #B53018 2px;\r\n text-align:right;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#footer #copyright {\r\n color:#3b3b3b;\r\n font-family:arial;\r\n position:absolute;\r\n top:20px;\r\n left:30px;\r\n font-size:8pt;\r\n}\r\n#main .yui-skin-sam {\r\n font-family:verdana;\r\n font-size:9pt;\r\n font-weight:normal;\r\n}',0,'text/css',1224117026,3600),('_9_eiaPgxzF_x_upt6-PNQ','/* FIXES FLOAT ISSUES. WITHOUT THIS, FLOATS GET ALL NUTSY ESPECIALLY IN OPERA AND SAFARI */\r\n.clearfix:after {\r\n content: \".\";\r\n display: block;\r\n height: 0;\r\n clear: both;\r\n visibility: hidden;\r\n}\r\n.clearfix {display: inline-block;}\r\n/* END FLOAT FIX */\r\n\r\n\r\n\r\n.wgGallery {\r\n font-family:verdana, arial;\r\n text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n.firstBar {\r\n background: black;\r\n color:white;\r\n font-size:18px;\r\n font-weight:bold;\r\n}\r\n\r\n.firstBar .title { \r\n margin-left:20px; \r\n line-height:42px; \r\n}\r\n.firstBar .title a {\r\n font-size:18px;\r\n font-weight:bold;\r\n color:white;\r\n}\r\n.firstBar .buttons {\r\n float:right;\r\n}\r\n.firstBar .buttons a {\r\n display:block;\r\n float:left;\r\n height:42px;\r\n line-height:42px; \r\n font-size:10px;\r\n color:white;\r\n font-weight:bold;\r\n text-align:center;\r\n padding:0px 5px; \r\n}\r\n.firstBar .buttons .rss {\r\n display:block;\r\n height:29px;\r\n position:relative;\r\n background:transparent;\r\n padding-top:13px;\r\n}\r\n\r\n\r\n\r\n\r\n.secondBar {\r\n background: #F1F1F1;\r\n text-align:left;\r\n border-top:solid #8B8B8B 5px; \r\n color: black;\r\n overflow: hidden;\r\n}\r\n.secondBar .author {\r\n font-size:10px;\r\n}\r\n\r\n\r\n.secondBar .desc p {\r\n margin-left: 20px;\r\n margin-top: 0;\r\n color: black;\r\n}\r\n\r\n.pictures {\r\n \r\n}\r\n\r\n\r\n.searchArea {\r\n float:right;\r\n}\r\n.searchArea * {\r\n float:left;\r\n} \r\n.searchArea input.searchText {\r\n border:solid black 1px; \r\n width:100px; \r\n margin:0px;\r\n padding:2px;\r\n margin-top:5px;\r\n font-size:10px;\r\n height:15px;\r\n margin-right:10px;\r\n} \r\n.searchArea input.searchBtn {\r\n border:solid black 1px; \r\n margin:0px;\r\n padding:3px;\r\n margin-top:5px;\r\n font-size:10px; \r\n vertical-align:center;\r\n cursor:pointer;\r\n height:21px;\r\n} \r\n.searchArea a:link,\r\n.searchArea a:visited,\r\n.secondBar .author a:link,\r\n.secondBar .author a:visited {\r\n font-size:11px;\r\n color:black;\r\n}\r\n.searchArea .current {\r\n font-weight:bold;\r\n text-transform:uppercase;\r\n text-decoration:none;\r\n font-size:10px;\r\n} \r\n\r\n\r\n\r\n\r\n.wgAlbum {\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n width:250px;\r\n margin:10px;\r\n}\r\n.wgAlbum .albumTitle { \r\n background: black;\r\n color:white;\r\n font-size:12px;\r\n font-weight:bold;\r\n padding:10px;\r\n padding-right:50px;\r\n border:solid #475f6f 1px;\r\n border-bottom:solid #8B8B8B 5px;\r\n text-align:left;\r\n display:block;\r\n}\r\n.wgAlbum .albumImage {\r\n background: #F1F1F1;\r\n border-left: solid black 1px;\r\n border-right: solid black 1px;\r\n padding-top:15px;\r\n height:135px;\r\n} \r\n.wgAlbum .albumImage a {\r\n height:135px;\r\n width:200px;\r\n overflow:hidden; \r\n display:block;\r\n margin:0px 23px;\r\n}\r\n.wgAlbum .albumImage img { \r\n border-style:none;\r\n display:block;\r\n width:200px;\r\n height:auto; \r\n border:solid black 1px; \r\n}\r\n.wgAlbum .albumDesc {\r\n background: #F1F1F1;\r\n border-left: solid black 1px;\r\n border-right: solid black 1px;\r\n border-bottom: solid black 1px;\r\n text-align:center;\r\n padding: 5px 23px;\r\n}\r\n.wgAlbum .description {\r\n font-size:10px; \r\n height:40px;\r\n overflow:auto;\r\n text-align:left;\r\n border:solid silver 1px;\r\n padding:5px;\r\n background-color: #fff;\r\n color:#222;\r\n}\r\n.albumDesc .description * {\r\n margin:2px 0px;\r\n}\r\n\r\n\r\n\r\n\r\n/* PAGINATION STYLES */\r\n.wgGallery .paginationContainer {\r\n text-align:center; \r\n background: black;\r\n height:42px;\r\n}\r\n.wgGallery .container {\r\n clear:both; \r\n text-align:center;\r\n}\r\n.wgGallery .pagination { \r\n margin:0px auto 20px auto;\r\n display:table;\r\n list-style-type:none;\r\n white-space:nowrap;\r\n padding:0px;\r\n height:42px;\r\n}\r\n.wgGallery .pagination li {\r\n display:table-cell;\r\n}\r\n.wgGallery .pagination a {\r\n display:block;\r\n width:50px; \r\n line-height:42px;\r\n color:white; \r\n font-size:10px; \r\n text-align:center;\r\n}\r\n\r\n\r\n\r\n.wgPicture a:link,\r\n.wgPicture a:visited {\r\n color:black;\r\n}\r\n.wgPicture {\r\n width:250px;\r\n margin:10px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n}\r\n.wgPicture .title {\r\n background:#e0e0e0;\r\n display:block;\r\n font-size:12px;\r\n text-align:center;\r\n padding:2px 5px;\r\n border:solid black 1px;\r\n border-bottom:solid #8B8B8B 4px;\r\n}\r\n.wgPicture .thumbnail {\r\n text-align:center;\r\n background: #F1F1F1;\r\n padding:15px 23px 15px 23px;\r\n margin:0px;\r\n border-left:solid black 1px;\r\n\r\n\r\n\r\n\r\n\r\n border-right:solid black 1px;\r\n}\r\n.wgPicture .thumbnail a {\r\n display:block;\r\n width:200px;\r\n height:120px;\r\n overflow:hidden;\r\n border:solid black 1px;\r\n}\r\n.wgPicture .thumbnail img {\r\n border-style:none;\r\n width:200px;\r\n height:auto;\r\n}\r\n.wgPicture .pictureDesc {\r\n padding:0px;\r\n border-top:solid #e1e1e1 1px;\r\n border-bottom:solid gray 1px;\r\n border-left:solid black 1px;\r\n border-right:solid black 1px;\r\n background:#F1F1F1;\r\n margin:0px;\r\n}\r\n.wgPicture .pictureDesc .description {\r\n margin:0px;\r\n padding:5px;\r\n font-size:10px;\r\n}\r\n.wgPicture .details {\r\n background:#e0e0e0;\r\n border:solid #999 1px;\r\n border-top:solid #aaa 1px;\r\n font-size:9px;\r\n padding:1px 3px; \r\n}\r\n.wgPicture .details .date {\r\n float:right;\r\n}\r\n.wgPicture .details .comments {\r\n float:left;\r\n}\r\n.wgPicture .details a { \r\n font-size:9px; \r\n}\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR PHOTO VIEW --\r\n * The Photo view uses some/all of the above classes, plus those in this section.\r\n*/\r\n.wgSnapshot {\r\n float:left;\r\n margin:10px;\r\n max-width:250px; \r\n width:25%;\r\n}\r\n.wgSnapshot fieldset { \r\n background-color:#fefefe;\r\n border:solid #555 2px;\r\n padding:10px;\r\n background-color:#f9f9f9;\r\n text-align:center;\r\n}\r\n.wgSnapshot p {\r\n max-width:230px;\r\n}\r\n.wgSnapshot legend {\r\n color:#333;\r\n font-size:15px;\r\n font-weight:bold;\r\n max-width:250px;\r\n}\r\n.wgSnapshot a.thumbnail img {\r\n width:200px;\r\n height:auto;\r\n border:solid #555 2px;\r\n}\r\n.wgSnapshot .description {\r\n font-size:9px;\r\n border:solid #555555 2px;\r\n padding:5px;\r\n width:190px;\r\n margin:0px auto;\r\n background-color:#fff;\r\n height:50px;\r\n overflow:auto;\r\n text-align:left;\r\n overflow:auto;\r\n}\r\n.wgSnapshot a.fullSize {\r\n margin:0px auto;\r\n}\r\n\r\n\r\n\r\n.wgPictureDetails {\r\n float:left;\r\n width:70%; \r\n margin:10px;\r\n} \r\n.wgPictureDetails a:link,\r\n.wgPictureDetails a:visited {\r\n color:black;\r\n}\r\n.wgPictureDetails fieldset { \r\n background-color:#fefefe;\r\n border:solid #555 2px;\r\n padding:10px;\r\n background-color:#f9f9f9; \r\n margin-bottom:10px;\r\n}\r\n.wgPictureDetails legend {\r\n color:#333;\r\n font-size:15px;\r\n font-weight:bold;\r\n}\r\n\r\n\r\n\r\n.rowOne {\r\n background: #EFEFEF;\r\n margin:1px;\r\n border:solid #CDCDCD 1px;\r\n color:black;\r\n padding:3px;\r\n}\r\n.rowTwo {\r\n background: #DCDCDC;\r\n margin:1px;\r\n border:solid #DDDDDD 1px;\r\n color:black; \r\n padding:3px;\r\n}\r\n.rowOne .label, .rowTwo .label {\r\n margin-left:15px;\r\n display:inline;\r\n text-align:left;\r\n font-weight:bold;\r\n font-size:11px;\r\n}\r\n.rowOne .data, .rowTwo .data { \r\n font-size:10px;\r\n margin-left:5px;\r\n display:inline;\r\n}\r\na.fullSize:link,\r\na.fullSize:visited { \r\n color:black;\r\n display:block;\r\n text-align:center;\r\n font-weight:bold;\r\n font-size:10px; \r\n}\r\n\r\n\r\n\r\n\r\n.wgComments { \r\n font-size:9px; \r\n margin:10px;\r\n width:90%;\r\n}\r\n.wgComments .title {\r\n font-size:14px;\r\n font-weight:bold;\r\n color:#333;\r\n border-bottom:solid #555555 2px;\r\n padding-bottom:2px;\r\n} \r\n.wgComments .title a {\r\n color:navy;\r\n text-decoration:none;\r\n}\r\n.wgComments .comment, .wgComments .commentAlt {\r\n position:relative; \r\n padding:5px; \r\n}\r\n.wgComments .comment {\r\n background-color:#e1e1e1;\r\n border-top:solid #F7F7F7 1px;\r\n border-bottom:solid #C9C9C9 1px;\r\n}\r\n.wgComments .commentAlt {\r\n background-color:#f0f0f0; \r\n border-bottom:solid #CDCDCD 1px;\r\n border-top:solid #FBFBFB 1px;\r\n}\r\n.wgComments .number {\r\n float:left;\r\n font-size:30px;\r\n color:silver;\r\n margin:5px 10px 5px 5px;\r\n}\r\n.wgComments .posted { \r\n font-style:italic;\r\n padding-top:3px;\r\n font-size:9px;\r\n color:gray;\r\n}\r\n.wgComments .posted a {\r\n color:navy;\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR THUMBNAIL VIEW --\r\n * The Thumbnail view uses some/all of the above classes, plus those in this section.\r\n*/\r\n\r\n.thumbView {\r\n width:400px;\r\n height:auto;\r\n}\r\n.thumbView .thumbnail a {\r\n display:block;\r\n width:350px;\r\n height:auto; \r\n border:solid black 1px;\r\n}\r\n.thumbView .thumbnail img {\r\n border-style:none;\r\n width:350px;\r\n height:auto;\r\n}\r\n.thumb {\r\n width:100px;\r\n height:65px;\r\n overflow:hidden;\r\n display:block;\r\n float:left;\r\n border:solid black 2px;\r\n margin:10px;\r\n}\r\n.thumb img {\r\n width:100px;\r\n height:auto;\r\n border-style:none;\r\n}\r\n.thumb-popup {\r\n border:solid #555 1px;\r\n padding:2px;\r\n padding-bottom:4px;\r\n padding-right:4px;\r\n background-color:silver;\r\n}\r\n.thumb-popup img {\r\n border:solid #555 1px;\r\n}\r\n.thumb-popup .caption {\r\n background-color:black;\r\n color:white;\r\n padding:4px;\r\n border:solid #555 2px;\r\n}\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR SLIDESHOW VIEW --\r\n * The Slideshow view uses some/all of the above classes, plus those in this section.\r\n*/\r\n.wgSlideshow .controls {\r\n background: url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg);) repeat-x;\r\n width:500px;\r\n height:42px;\r\n margin:0px auto;\r\n border:solid black 2px;\r\n}\r\n.wgSlideshow { \r\n text-align:center;\r\n}\r\n#slideshow-container {\r\n width:500px;\r\n height:auto;\r\n margin:0px auto;\r\n text-align:center;\r\n border:solid black 2px;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#slideshow-container .slideshow-item img {\r\n width:100%;\r\n height:auto;\r\n border-style:none;\r\n display:block;\r\n}\r\n#slideshow-container .slideshow-item .title {\r\n background-color:black;\r\n padding:3px;\r\n color:white;\r\n border-top:solid white 1px;\r\n border-bottom:solid white 1px;\r\n}\r\n#slideshow-container .slideshow-item .title a {\r\n color:white;\r\n font-size:11px;\r\n font-weight:bold; \r\n}\r\n#slideshow-container .slideshow-item .counter {\r\n background-color:black;\r\n padding:3px;\r\n color:white;\r\n font-size:11px;\r\n font-weight:bold;\r\n}\r\n#slideshow-container .slideshow-item .synopsis {\r\n width:494px;\r\n background-color:white;\r\n padding:3px;\r\n color:black;\r\n font-size:11px;\r\n font-weight:bold;\r\n border-top:solid black 1px;\r\n text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n\r\n\r\n/* \r\n* --BEGIN STYLES FOR SEARCH VIEW --\r\n * The Search view uses some/all of the above classes, plus those in this section.\r\n*/\r\n#adminWrapper {\r\n margin-top:20px;\r\n}\r\n#adminWrapper .label {\r\n background:black;\r\n font-weight:bold; \r\n font-size:10px;\r\n color:white;\r\n}\r\n#adminWrapper td.data input {\r\n background: #f1f1f1;\r\n vertical-align:middle;\r\n}\r\n#adminWrapper td.radio input {\r\n border-style:none;\r\n background:none;\r\n}\r\n#adminWrapper .forwardButton {\r\n cursor:pointer;\r\n float:rigbt;\r\n}\r\n#adminWrapper .forwardButton:hover {\r\n color:gold;\r\n}',0,'text/css',1230702602,3600),('kJf77eCr9GAMiEzWrzsBTA','.matrixLeft .buttons span,\r\n.matrixRight .buttons span {\r\n padding:0px 0px 0px 0px;\r\n}\r\n\r\n.matrixLeft .buttons button,\r\n.matrixRight .buttons a {\r\n top:-3px;\r\n left:-2px;\r\n height:22px;\r\n}\r\n.matrixRight .buttons a {\r\n color:black;\r\n text-decoration:none;\r\n padding:1px 3px;\r\n}',0,'text/css',1229639255,3600),('4LQT4-bGW4FkiEQLSY5gvQ','function showHide(theLink,theId) {\r\n var theId = document.getElementById(theId);\r\n var theLink = document.getElementById(theLink);\r\n if(theId.style.display == \'block\') {\r\n theId.style.display = \'none\';\r\n theLink.innerHTML = \"Send Creator a Message\";\r\n theLink.className = \"showLink\"\r\n }\r\n else {\r\n theId.style.display = \'block\';\r\n theLink.innerHTML = \"Hide\"; \r\n theLink.className = \"hideLink\" \r\n }\r\n}',0,'text/javascript',1232400287,0),('qsG6B24a0SC5KrhQjmdZBw','body {\r\n margin: 0;\r\n background-repeat: repeat-y;\r\n background-position: 0px 0px;\r\n}\r\n.survey-header {\r\n width: 80%;\r\n height: 20px;\r\n margin-left: 80px;\r\n}\r\n#survey {\r\n margin-left: 80px;\r\n width: 85%;\r\n}\r\n\r\ndiv.dateanswer {\r\n min-height: 250px;\r\n}\r\ndiv.slider-bg {\r\n position: relative;\r\n background:url(/extras/wobject/Survey/bg-fader-500.gif) 5px 0 no-repeat;\r\n height:68px;\r\n width:529px; \r\n}\r\ndiv.slider-thumb {\r\n cursor:default;\r\n position: absolute;\r\n top: 30px;\r\n left: 4px;\r\n}\r\ndiv.slider-min-thumb {\r\n cursor:default;\r\n position: absolute;\r\n top: 4px;\r\n}\r\ndiv.slider-max-thumb {\r\n cursor:default;\r\n position: absolute;\r\n top: 4px;\r\n}\r\n#headertitle {\r\n display: none;\r\n}\r\n#headertext {\r\n display: none;\r\n}\r\n#questions {\r\n display: none;\r\n}\r\ninput.mcbutton{\r\n font-size: 10px;\r\n font-weight: bold;\r\n text-decoration: none;\r\n background-color: #CCCCCC;\r\n background-repeat: repeat-x;\r\n text-align: center;\r\n display: block;\r\n margin: 0.5em;\r\n padding: .8em;\r\n width: 60px;\r\n font-family: Verdana, Arial, Helvetica, sans-serif;\r\n color: #000000;\r\n background-image: url(/extras/wobject/Survey/gradient-glossy.png);\r\n}\r\ninput.mcbutton:hover{\r\n background-color: #B6D2F1;\r\n font-family: Verdana, Arial, Helvetica, sans-serif;\r\n font-size: 10px;\r\n color: #000000;\r\n}\r\ninput.mcbutton-selected{\r\n background-color: #172D9D;\r\n background-repeat: repeat-x;\r\n color: #FFFFFF;\r\n font-family: Verdana, Arial, Helvetica, sans-serif;\r\n font-size: 10px;\r\n margin: 0.5em;\r\n padding: .8em;\r\n width: 60px;\r\n text-align: center;\r\n display: block;\r\n font-weight: bold;\r\n background-image: url(/extras/wobject/Survey/gradient-glossy.png);\r\n background-position: 0px 0px;\r\n}\r\n\r\n/* By default the marker for invalid (required) fields is a red \'*\' */ \r\n.survey-invalid-marker {\r\n color: #FF0000;\r\n}\r\n\r\n\r\n#survey {\r\n font-family: Verdana, Arial, Helvetica, sans-serif;\r\n font-size: 10px;\r\n border: 3px solid #1e1e1e;\r\n}\r\n\r\n#survey #survey-header {\r\n background-color: #cfcfcf;\r\n padding-top: 1px;\r\n}\r\n\r\n#survey #headertitle {\r\n padding-left: 5px;\r\n}\r\n\r\n#survey #progress {\r\n position: relative;\r\n top: -26px;\r\n right: 5px;\r\n text-align: right;\r\n font-style: italic;\r\n}\r\n\r\n#survey #progress:before {\r\n content: \"Progress: \";\r\n}\r\n\r\n#survey #headertext {\r\n border-bottom: 2px solid #1e1e1e;\r\n padding: 5px;\r\n position: relative;\r\n top: -20px;\r\n}\r\n\r\n#survey #questions {\r\n position: relative;\r\n top: -20px;\r\n}\r\n\r\n#survey .question {\r\n background-color: #dfdfdf;\r\n padding: 10px 5px 10px 5px;\r\n}\r\n\r\n#survey .question p:before {\r\n content: \"Q: \";\r\n}\r\n\r\n#survey .scale:before {\r\n content: \"A: \";\r\n}\r\n\r\n#survey #submitbutton {\r\n margin-left: 5px;\r\n}\r\n\r\n',0,'text/css',1233860274,3600),('_XfvgNH__bY1ykMiKYSobQ','/* general */ \n\nbody {\n margin:0;\n padding:0;\n font: 11px Verdana;\n }\na {\n cursor: pointer;\n}\nbutton {\n cursor: pointer;\n}\nimg {\n border: none;\n}\n.WGbutton {\n float:right;\n padding-right:10px;\n} \n.centered {\n text-align: center;\n}\n.WGaccount_message {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 300px;\n margin-bottom: 10px;\n margin-left: 60px;\n margin-top: 20px;\n overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;\n padding:10px;\n text-align: left;\n vertical-align:top;\n width: 90%;\n}\n\n.WGprofileMember {\n font-size:9px;\n margin-right:20px;\n text-align:right;\n}\n.WGmember {\n color:#3e4f77;\n font: 9px Verdana, Arial, Helvetica, sans-serif;\n text-align:center;\n}\n.WGphotostyle {\n border:solid #3e4f77 2px;\n margin-bottom:5px;\n margin-top:5px\n }\n#rightalign {\n float: right;\n}\n/*.WGsend {\n float:right;\n padding-right: 75px;\n}*/\n\n\n/* bio, addtonetwork, network */\n.WGbordered {\n border-bottom: dashed #BECEF8 2px;\n padding-bottom: 10px;\n}\n.WGfriendpic {\n border: solid #BECEF8 1px;\n}\n.WGinvitemsg {\n width: 600px;\n height: 150px;\n}\nol.WGProfile_interests {\n color:#0B2259;\n font-size:15px;\n font-weight:bold;\n list-style-type:none;\n margin:0px;\n padding:0px;\n padding:5px 5px;\n}\nol.WGProfile_interests li {\n margin-bottom:15px;\n}\nol.WGProfile_interests span {\n font-size:12px;\n font-weight:normal;\n color:black;\n}\n.WGpBio {\n border-bottom:solid #DDE6FB 1px;\n margin:0px;\n margin-bottom:5px;\n padding-bottom:5px; \n}\n.WGpBio div {\n background-color:#DDE6FB;\n padding:2px 5px;\n margin-bottom:2px;\n}\n.WGprogram {\n font-size: 9px;\n}\n\n/* contributions */\n\n.WGContribCount {\n font-size:12px;\n text-align:left;\n padding:3px\n}\n.WGContribTitle {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#0B2259;\n font-size:12px;\n font-weight:bold;\n min-height:25px;\n padding:3px;\n text-align:center;\n text-decoration: underline;\n}\n.WGContribTitleLeft {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#0B2259;\n font-size:12px;\n font-weight:bold;\n min-height:25px;\n padding:3px;\n text-align:center;\n text-decoration: underline;\n} \n.WGContribEntry {\n text-align:center;\n padding:3px;\n}\n.WGContribEntryLeft {\n text-align:left;\n padding:3px;\n}\n \n/* edit box */\n.WGeditBox {\n /*background:white url(images/edit_box_bg.jpg) no-repeat bottom left;*/\n border:solid #8DABF1 2px;\n display:block;\n font-family:verdana;\n font-size:9px;\n font-weight:bold;\n left:100px;\n -moz-box-sizing:border-box;\n padding:5px;\n position:absolute;\n top:100px;\n width:590px;\n z-index:100;\n \n}\n.WGeditBox input, .WGeditBox select {\n font-size:9px; \n}\n\n/* friends */\n\n.WGfriends_name {\n font-weight:bold;\n width:90%;\n}\n.WGfriends_photo {\n font-weight:bold;\n width:10%;\n}\n.WGfriends_photo img {\n height: 50px; \n width: 50px;\n}\n.WGfriends_private { \n float:right;\n padding-bottom: 5px;\n width: 50%;\n}\n.WGfriends_ninety { \n vertical-align:top;\n width: 90%;\n}\n.WGfriends_seventy { \n vertical-align:top;\n width: 70%;\n}\n.WGfriends_ten { \n width: 10%;\n}\n.WGfriends_ten img {\n height: 50px; \n width: 50px;\n}\n.WGfriends_twenty { \n width: 20%;\n}\n.WGaccepts {\n padding-bottom: 5px;\n}\n\n/* inbox */\n\n.WGProfile_msgcontainer {\n padding:2px;\n}\n.WGinbox_count {\n font-size:12px;\n font-weight:bold;\n padding:3px;\n text-align:left;\n}\n.WGinbox_errors {\n font-weight:bold;\n color:red;\n text-align:center;\n}\n.WG_inbox_InviteLabel {\n width:50px;\n text-align:right;\n}\n.WG_inbox_InviteLabelView {\n font-weight:bold;\n width:120px;\n}\n.WGmsgcontainer {\n padding:6px;\n display:block;\n margin-bottom:6px;\n}\n/* inbox contacts */\n.WGdatacells {\n border-bottom: dashed #BECEF8 1px;\n}\n.WGinbox_contactsTbl {\n background-color:#EEF2FD;\n font-family:arial;\n font-size:9pt;\n width:100%;\n}\n#contacts {\n height: 275px;\n overflow: auto;\n}\n/* inbox forms */\n.WGbuttons_left {\n float: left;\n}\n.WGbuttons_right {\n float: right;\n}\n.WGinbox_from {\n color: black;\n font-weight: normal;\n text-decoration: none;\n}\n.WGinbox_subject {\n width: 530px;\n}\n.WGinbox_messageTo {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 50px;\n overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;\n width: 530px;\n}\n/* inbox pagination */\n.WGinbox_buttons {\n display:inline;\n float:left;\n font-size:10px;\n text-align:left;\n width:70%; \n}\n.WGinbox_pagination {\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGinbox_messagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGmessage {\n display:inline;\n float:left;\n font-size:10px;\n text-align:left;\n width:70%;\n}\n\n.WGmessagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n float: right;\n}\n\n.WG-previous-next {\n float: right;\n}\n\n/* inbox threads */\n\n.WGevenThread {\n background-color: #e1e8fb;\n border-bottom: 1px solid #bfcef9;\n padding: 8px;\n text-align:center;\n}\n.WGoddThread {\n background-color: #eef2fd;\n border-bottom: 1px solid #bfcef9;\n padding: 8px;\n text-align: center;\n}\n\n/* pagination */\n.WGProfile_pagination {\n font-size:10px;\n text-align:right;\n width:20%;\n}\n.WGProfile_messagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGProfile_paginationLeft {\n font-size:10px;\n text-align:left;\n width:20%;\n}\n.WGProfile_paginationCenter {\n font-size:10px;\n text-align:center;\n width:20%;\n}\n.WGProfile_pagination a {\n background-color:#f2f5fa;\n border:solid #bfc8dc 1px;\n font-size:10px;\n font-weight:bold;\n padding:1px 5px;\n text-decoration:none;\n}\n.WGProfile_pagination a:hover {\n background-color:#d8dee8;\n color:white;\n}\n.WGProfile_pagination .prevNext {\n background-color: transparent;\n border: none;\n color: black;\n}\n.WGProfile_pagination .prevNext:hover {\n background-color: transparent;\n border: none;\n color: black;\n}\n.WGProfile_pagination .active {\n background-color:#d8dee8;\n border:solid #bfc8dc 1px;\n color:white; \n font-size:10px;\n font-weight:bold;\n padding:1px 5px;\n text-decoration:none;\n}\n.WGProfile_pagination img {\n vertical-align:middle;\n margin-top:2px;\n border:none;\n}\n/* profile */\n.WGProfile_registration {\n background:none;\n border:none;\n font-size:9pt;\n font-family:arial;\n margin:0;\n padding:0;\n width:100%;\n}\n.WGProfile_registration .header {\n background-color:#818997;\n color:#3e4f77;\n font-size:10px;\n font-weight:bold;\n text-align:left; \n}\n.WGProfile_registration .header a {\n color:white;\n text-decoration:none; \n}\n.WGProfile_registration .help a {\n font-weight:bold;\n text-decoration:none;\n}\n.WGProfile_registration .inputText {\n font-size:10px;\n margin-right:1px;\n}\n.WGProfile_registration .label {\n font-size:9pt;\n font-weight:bold;\n text-align:right;\n white-space:nowrap;\n width:1%;\n} \n.WGProfile_registration .labelLeft {\n font-size:9pt;\n font-weight:bold;\n white-space:nowrap;\n width:1%;\n text-align: left;\n vertical-align: top;\n}\n.WGProfile_registration .smallLabel {\n font-size:8px;\n text-align:center;\n}\n.WGProfile_registration .smallText {\n font-size:9px;\n}\n\n.WGinboxTbl {\n display:block;\n margin: 4px;\n padding: 2px;\n}\n\n.WGProfile_registration .bar, .WGProfile_registration .barRight {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin:10px 0px 10px 0px;\n min-height:25px;\n padding:4px 4px 0px 4px;\n vertical-align:middle;\n}\n.WGProfile_registration .bar {\n text-align: center;\n}\n.WGProfile_registration .barRight {\n text-align: right;\n}\n.WGProfile_registration .bar a {\n color:#0B2259;\n font-size:10px;\n font-weight:bold;\n}\n.WGProfile_registration .barFive {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n text-align:center;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n width:4.3%;\n}\n.WGProfile_registration .barTen {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:7.2%;\n}\n.WGProfile_registration .barFifteen {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:15%;\n}\n.WGProfile_registration .barFifty {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:50%; \n}\n.WGbarContainer {\n display:block;\n margin:10px 0px 10px 0px; \n width:100%;\n\n}\n\n/* profile edit */\n\n.WGfields {\n padding: 2px;\n\n}\n.WGfields_left {\n padding:2px;\n vertical-align:top;\n width: 15%;\n}\n.WGfields_right {\n display:inline\n float:right;\n padding:2px;\n text-align:right;\n width:80%;\n vertical-align: top;\n}\n.WGProfile {\n display:table;\n margin: 0;\n padding: 0;\n width:100%;\n}\n.WGProfileFields {\n border:0;\n padding: 0;\n margin:0;\n width: 100%;\n \n}\n.WGProfileFields ol {\n display: inline;\n list-style-type: none;\n \n}\n.WGProfileFields ul {\n list-style-type: none;\n display: inline;\n}\n.WGProfileFields ul li {\n display: inline-block;\n *display: inline;\n zoom: 1;\n}\n/* profile view */\n.WGProfile_accepts {\n text-align:right;\n background-color:gray;\n padding:4px;\n width:100%;\n}\n.WGviewContainer {\n margin:0;\n padding:0;\n width:90%;\n}\n.WGinternational {\n background-color:red;\n color:white;\n display:inline;\n font-weight:bold;\n padding:4px;\n text-align:center;\n}\n\n.WGcategoryLabel {\n vertical-align:top; \n width:90%;\n}\n\n.WGprivateMessage {\n background-color:gray;\n padding:4px;\n text-align:right;\n}\n\n.WGprofileAlert {\n background-color:red;\n color:white;\n font-weight:bold;\n padding:4px;\n text-align:center;\n width:100%;\n}\nWGprofilePhoto {\n vertical-align:top;\n}\n\n/* profile errors */\n#WGprofileErrors {\n background-color: #ff0000;\n color: #ffffff;\n font-weight: bold;\n text-align: center;\n}\n.WGprofilefield_required_off {\n}\n.WGprofilefield_required {\n background-color: #ffd6bb;\n}\n.WGprofilefield_error {\n background-color: #FF9494;\n}\n.WGerrorMsg {\n font-weight:bold;\n color:red;\n text-align:center;\n}\n/* user */\n.WGuserInvite_subject {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 25px;\n text-align: left;\n width: 500px;\n /*margin-left: 50px;*/\n /*margin-bottom: 20px;*/\n /*overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;*/\n}\n/* view profile */\n\n.WGprofile_canEdit {\n text-align:center;\n background-color:red;\n padding:4px;\n color:white;\n font-weight:bold;\n}\n.WGprofile_fieldLabel {\n background: #DDE6FB;\n padding:2px;\n width:200px;\n}\n.WGprofile_fieldData {\n margin-left: 5px;\n}\n.WGprofile_fieldStatus {\n padding:4px;\n color:white;\n font-weight:bold\n}\n\n/**********************************************************************/\n/* TABS */\n/**********************************************************************/\n\n/* TABS - outer */\n\n.WGbottombutton {\n float:right;\n padding-right:2px;\n padding-top: 2px;\n position: relative;\n} \n.WGcontent {\n padding:10px;\n\n}\n.WGcleartab {\n clear: both; \n height:0;\n}\n.WGsubContent { /* color setting for border under outer tabs that surrounds inner tabs */\n border: solid #d8dee8 6px;\n}\n.WGtopbutton {\n float:right;\n clear:both;\n padding-right:2px;\n padding-top: 2px;\n position: relative;\n}\n\n\nul.WGtopTabs,\nul.WGtopTabs li {\n list-style-type:none;\n margin:10px 0px 0px 0px;\n padding:0px;\n position:relative;\n width:auto;\n Xposition:relative;\n zoom:1;\n}\nul.WGtopTabs li {\n display:block;\n float:left;\n margin-right: 3px;\n}\nul.WGtopTabs li b { \n background-color: #eef2fd;\n border-top:solid #d8dee8 1px;\n display:block;\n padding:4px 8px;\n position:relative;\n top:-1px; \n}\nul.WGtopTabs a { /* non-selected tabs color settings */\n display:block;\n color:#9ea0bb;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n background-color:#f2f5fa;\n border-left: solid #d8dee8 1px;\n border-right: solid #d8dee8 1px; \n}\n\nul.WGtopTabs a:hover,\nul.WGtopTabs a:hover b,\nul.WGtopTabs a.selected,\nul.WGtopTabs a.selected b { /* selected tab color settings */\n background-color:#d8dee8;\n color:#3e4f77;\n}\n\n/* TABS - YUI */\n\n.WGcleardiv {\n clear: both;\n margin: 0px 0px 0px 0px;\n padding: 0px;\n}\n\n.WGview {\n border: none;\n font: bold 10px Verdana;\n color: #3e4f77;\n text-decoration:none;\n position: absolute;\n right: 4px;\n top:4px;\n}\n\n.WGprofile_displayView {\n -x-system-font:none;\n border:medium none;\n color:#0B2258;\n display:inline;\n float:right;\n font-family:Verdana;\n font-size:10px;\n font-size-adjust:none;\n font-stretch:normal;\n font-style:normal;\n font-variant:normal;\n font-weight:bold;\n line-height:normal;\n padding-right:8px;\n padding-top:3px;\n text-decoration: none;\n}\n\n.WGprofile_displaySubContent { /* border around friends tab content */\n border: solid #d8dee8 6px;\n border-top: solid #d8dee8 18px;\n}\n\n\n /*\nCopyright (c) 2008, Yahoo! Inc. All rights reserved.\nCode licensed under the BSD License:\nhttp://developer.yahoo.net/yui/license.txt\nversion: 2.6.0\n*/\n\n/* yui tabs color settings below */\n\n/* .yui-navset defaults to .yui-navset-top */\n.yui-skin-sam .yui-navset .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav { /* protect nested tabviews from other orientations */\n border:solid #eef2fd; /* color between tab list and content */\n border-width:0 0 5px;\n Xposition:relative;\n zoom:1;\n}\n.yui-skin-sam .yui-navset .yui-nav a,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a {\n background:#ffffff; /* tab background */\n border:solid #ffffff;\n border-width:0 1px;\n color:#bfccdd;\n position:relative;\n text-decoration:none;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n font-weight: bold;\n}\n\n.yui-skin-sam .yui-navset .yui-nav a em,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a em {\n border:solid #eef2fd;\n border-width:1px 0 0;\n cursor:hand;\n padding:0.25em .75em;\n left:0; right: 0; bottom: 0; /* protect from other orientations */\n top:-1px; /* for 1px rounded corners */\n position:relative;\n}\n\n.yui-skin-sam .yui-navset .yui-nav .selected a,\n.yui-skin-sam .yui-navset .yui-nav .selected a:focus, /* no focus effect for selected */\n.yui-skin-sam .yui-navset .yui-nav .selected a:hover { /* no hover effect for selected */\n background: #eef2fd; /* selected tab background */\n color: #3e4f77;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n font-weight: bold;\n}\n.yui-skin-sam .yui-navset .yui-nav .selected a,\n.yui-skin-sam .yui-navset .yui-nav .selected a em {\n border-color:#eef2fd; /* selected tab border color */\n}\n\n.yui-skin-sam .yui-navset .yui-nav a:hover,\n.yui-skin-sam .yui-navset .yui-nav a:focus {\n background: #eef2fd; /* hover tab background */\n color: #3e4f77;\n outline:0;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n font-weight: bold;\n\n}\n.yui-skin-sam .yui-navset .yui-content {\n background: #eef2fd; /* content background color */\n}\n\n.yui-skin-sam .yui-navset .yui-content,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-content {\n border:5px solid #eef2fd; /* content border */\n padding:0.75em 1em; /* content padding */\n}\n\n/* left and right orientations */\n.yui-skin-sam .yui-navset-left .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,\n.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 5px 0 0;\n Xposition:absolute; /* from tabview-core; have to reiterate for skin-sam due to pos:rel on skin-sam yui-nav */\n top:0; bottom:0; /* stretch to fill content height */\n}\n\n.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,\n.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 0 0 5px;\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav li,\n.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,\n.yui-skin-sam .yui-navset-right .yui-nav li {\n margin:0 0 0.3em; /* space between tabs */\n padding:0 0 0 1px; /* gecko: make room for overflow */\n}\n\n.yui-skin-sam .yui-navset-right .yui-nav li {\n padding:0 1px 0 0; /* gecko: make room for overflow */\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav .selected,\n.yui-skin-sam .yui-navset .yui-navset-left .yui-nav .selected { \n margin:0 -1px 0.16em 0;\n}\n\n.yui-skin-sam .yui-navset-right .yui-nav .selected { \n margin:0 0 0.16em -1px;\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav a,\n.yui-skin-sam .yui-navset-right .yui-nav a {\n border-width:1px 0;\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav a em,\n.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,\n.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 0 0 1px;\n padding:0.2em .75em;\n top:auto;\n left:-1px; /* for 1px rounded corners */\n}\n\n.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 1px 0 0;\n left:auto;\n right:-1px; /* for 1px rounded corners */\n}\n.yui-skin-sam .yui-navset-left .yui-nav a,\n.yui-skin-sam .yui-navset-left .yui-nav .selected a,\n.yui-skin-sam .yui-navset-left .yui-nav a:hover,\n.yui-skin-sam .yui-navset-right .yui-nav a,\n.yui-skin-sam .yui-navset-right .yui-nav .selected a,\n.yui-skin-sam .yui-navset-right .yui-nav a:hover,\n.yui-skin-sam .yui-navset-bottom .yui-nav a,\n.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,\n.yui-skin-sam .yui-navset-bottom .yui-nav a:hover {\n background-image:none; /* no left-right or bottom-top gradient */\n}\n.yui-skin-sam .yui-navset-left .yui-content {\n border:1px solid #d8dee8; /* content border */\n}\n/* bottom orientation */\n.yui-skin-sam .yui-navset-bottom .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav {\n border-width:5px 0 0; /* color between tab list and content */\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,\n.yui-skin-sam .yui-navset-bottom .yui-nav .selected { \n margin:-1px 0.3em 0 0; /* for overlap */\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,\n.yui-skin-sam .yui-navset-bottom .yui-nav li { \n padding:0 0 1px 0; /* gecko: make room for overflow */\n vertical-align:top;\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li a,\n.yui-skin-sam .yui-navset-bottom .yui-nav li a { \n}\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav a em,\n.yui-skin-sam .yui-navset-bottom .yui-nav a em {\n border-width:0 0 1px;\n top:auto;\n bottom:-1px; /* for 1px rounded corners */\n}\n.yui-skin-sam .yui-navset-bottom .yui-content,\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-content {\n border:1px solid #f2f5fa; /* content border */\n}\n.yui-skin-sam {\n background-color: #d8dee8;\n padding: 10px 5 5 5px;\n display:block;\n}\n\n/* yui tab placement settings below */\n\n.yui-skin-sam .yui-navset .yui-nav li,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav li {\n margin:0 0.3em 0 0; /* space between tabs */\n padding:5px 0 0; /* gecko: make room for overflow */\n zoom:1;\n}\n\n.yui-skin-sam .yui-navset .yui-nav .selected,\n.yui-skin-sam .yui-navset .yui-navset-top .yui-nav .selected { \n margin:0 0.3em -1px 0; /* for overlap */\n}\n\n.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,\n.yui-navset .yui-navset-bottom .yui-nav li {\n margin:0 0.5em 0 0;\n}\n.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li {\n margin:0 0 0.5em;\n}\n.yui-navset .yui-content .yui-hidden {\n display:none;\n}\n.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,\n.yui-navset-left .yui-nav,.yui-navset-right .yui-nav {\n width:6em;\n}\n.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav {\n width:auto;\n}\n.yui-navset .yui-navset-left,.yui-navset-left {\n padding:0 0 0 6em;\n}\n.yui-navset-right {\n padding:0 6em 0 0;\n}\n.yui-navset-top,.yui-navset-bottom {\n padding:auto;\n}\n.yui-nav,.yui-nav li {\n list-style:none;\n margin:0;\n padding:0; \n}\n.yui-navset li em {\n font-style:normal;\n}\n.yui-navset {\n position:relative;\n zoom:1;\n}\n.yui-navset .yui-content {\n zoom:1;\n}\n.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,\n.yui-navset .yui-navset-bottom .yui-nav li {\n display:inline-block;\n display:-moz-inline-stack;\n *display:inline;\n vertical-align:bottom;\n cursor:pointer;\n zoom:1;\n}\n.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li {\n display:block;\n}\n.yui-navset .yui-nav a {\n position:relative;\n}\n.yui-navset .yui-nav li a,.yui-navset-top .yui-nav li a,\n.yui-navset-bottom .yui-nav li a {\n display:block;\n display:inline-block;\n vertical-align:bottom;\n zoom:1;\n}\n.yui-navset-left .yui-nav li a,.yui-navset-right .yui-nav li a {\n display:block;\n}\n.yui-navset-bottom .yui-nav li a {\n vertical-align:text-top;\n}\n.yui-navset .yui-nav li a em,.yui-navset-top .yui-nav li a em,\n.yui-navset-bottom .yui-nav li a em {\n display:block;\n}\n.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,\n.yui-navset-left .yui-nav,.yui-navset-right .yui-nav {\n position:absolute;\n z-index:1;\n}\n.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav {\n position:static;\n}\n.yui-navset .yui-navset-left .yui-nav,.yui-navset-left .yui-nav {\n left:0;\n right:auto;\n}\n.yui-navset .yui-navset-right .yui-nav,.yui-navset-right .yui-nav {\n left:auto;\n right:0;\n}\n.yui-skin-sam .yui-navset .yui-nav .selected a em {\n padding:0.35em 0.75em;\n}\n.yui-skin-sam .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,\n.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 5px 0 0;\n bottom:0;\n top:0;\n Xposition:absolute;\n}\n.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 0 0 5px;\n}\n.yui-skin-sam .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,\n.yui-skin-sam .yui-navset-right .yui-nav li {\n margin:0 0 0.16em;\n padding:0 0 0 1px;\n}\n.yui-skin-sam .yui-navset-right .yui-nav li {\n padding:0 1px 0 0;\n}\n.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav a {\n border-width:1px 0;\n}\n.yui-skin-sam .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 0 0 1px;\n left:-1px;\n padding:0.2em .75em;\n top:auto;\n}\n.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 1px 0 0;\n left:auto;\n right:-1px;\n}\n\n.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-left .yui-nav .selected a,.yui-skin-sam .yui-navset-left .yui-nav a:hover,\n.yui-skin-sam .yui-navset-right .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav .selected a,.yui-skin-sam .yui-navset-right .yui-nav a:hover,\n.yui-skin-sam .yui-navset-bottom .yui-nav a,.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,\n.yui-skin-sam .yui-navset-bottom .yui-nav a:hover {\n background-image:none;\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,\n.yui-skin-sam .yui-navset-bottom .yui-nav .selected {\n margin:-1px 0.16em 0 0;\n}\n\n.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,\n.yui-skin-sam .yui-navset-bottom .yui-nav li {\n padding:0 0 1px 0;\n vertical-align:top;\n}\n',0,'text/css',1234924781,3600),('wrq7hMxb1ewQqZ46xmd8Gg','function equalCol() {\r\n var colOne = document.getElementById(\'compareForm\');\r\n var colTwo = document.getElementById(\'matrixRight\'); \r\n var colOneH = colOne.offsetHeight;\r\n var colTwoH = colTwo.offsetHeight; \r\n \r\n //alert(colOneH + \", \" + colTwoH);\r\n colOne.style.overflow = \"scroll\";\r\n colOne.style.height = (colTwoH - 150) + \"px\";\r\n}',0,'text/javascript',1235706620,3600),('hkj6WeChxFyqfP85UlRP8w','.wg-clear {\r\n display: inline;\r\n clear: both;\r\n font-size:0px;\r\n line-height:0px;\r\n}\r\n\r\n/* COLUMN STYLES */\r\n#matrixLeft {\r\n float:left;\r\n width:65%;\r\n padding:1%;\r\n min-height:1%;\r\n background-color:#d2d2d2;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n}\r\n#matrixRight {\r\n float:left;\r\n width:25%;\r\n padding:0px;\r\n min-height:1%;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n border: solid silver 1px;\r\n background-color:white; \r\n margin-left:5px;\r\n}\r\n\r\n\r\n\r\n/* DROPSHADOW BUTTONS */\r\n#matrixLeft .buttons span {\r\n background-color:#888;\r\n position:relative;\r\n padding:5px 0px 0px 0px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n\r\n}\r\n#matrixLeft .buttons button,\r\n#matrixLeft .buttons a#return {\r\n border:solid #2f495e 2px;\r\n position:relative;\r\n background-color:#e1e1e1;\r\n padding:auto 3px;\r\n margin:0px;\r\n font-size:11px;\r\n line-height:13px;\r\n position:relative;\r\n top:-6px;\r\n left:-2px;\r\n height:22px;\r\n cursor:pointer;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n font-weight:bold;\r\n text-decoration:none;\r\n color:#333;\r\n}\r\n#matrixLeft .buttons a#return {\r\n font-size:10px;\r\n padding:3px 10px 2px 10px;\r\n}\r\n#matrixLeft .buttons button:hover,\r\n#matrixLeft .buttons a#return:hover {\r\n border-color:black;\r\n color:white;\r\n background-color:#444;\r\n}\r\n\r\n\r\n\r\n/* WHITE AREA FOR THE LISTING OF OBJECTS TO COMPARE */\r\n#matrixLeft .matrixListing {\r\n background-color:white;\r\n _height:300px;\r\n min-height:300px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n margin:10px 2px 20px 2px;\r\n padding:auto 10px;\r\n}\r\n#matrixLeft .matrixListing table {\r\n border-collapse:collapse;\r\n margin:0px;\r\n padding:0px;\r\n display:block;\r\n}\r\n#matrixLeft .matrixListing table a:link {\r\n font-size:12px;\r\n color:#111;\r\n}\r\n#matrixLeft .matrixListing table a:visited {\r\n color:#333;\r\n font-size:12px;\r\n text-decoration:none;\r\n}\r\n#matrixLeft .matrixListing table a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* GRAY BAR THAT HOLDS THE SORT BUTTONS */\r\n#matrixLeft .matrixListing .sortButtons {\r\n background-color:#f1f1f1;\r\n border:solid silver 1px;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft: 4px;\r\n -webkit-border-radius-topRight: 4px; \r\n border-bottom:solid #D2D2D2 2px;\r\n display:block;\r\n}\r\n\r\n\r\n\r\n/* STYLES TO OVERRIDE THE SORT BUTTON CSS BUILT INTO THE PERL CODE */\r\n#sortByViews-button,\r\n#sortByCompares-button,\r\n#sortByUpdated-button,\r\n#sortByClicks-button {\r\n background: none;\r\n white-space:nowrap;\r\n border-style:none;\r\n cursor:pointer;\r\n padding-bottom:4px;\r\n border-style:none;\r\n background-color:transparent;\r\n border-right:solid silver 1px;\r\n color:#555;\r\n}\r\n#sortByViews-button:hover,\r\n#sortByCompares-button:hover,\r\n#sortByUpdated-button:hover,\r\n#sortByClicks-button:hover {\r\n color:black;\r\n}\r\n\r\n\r\n\r\n/* MATRIX STATISTICS */\r\n#matrixRight .mainTitle {\r\n font-size:20px;\r\n padding:5px 10px;\r\n border-bottom: solid gray 1px;\r\n background-color:#d2d2d2;\r\n}\r\n#matrixRight .textBox {\r\n border-top:solid silver 1px;\r\n padding:10px 5px;\r\n}\r\n.matrixStatistics {\r\n padding:10px;\r\n}\r\n.matrixStatistics .title {\r\n font-weight:bold;\r\n background-color:#f1f1f1;\r\n padding:2px 5px;\r\n font-size:11px;\r\n -moz-border-radius:4px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n.matrixStatistics .statistics {\r\n margin-bottom:15px;\r\n}\r\n.matrixStatistics .label {\r\n text-align:right;\r\n width:100px;\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data {\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data a {\r\n color:#111;\r\n}\r\n.matrixStatistics .data a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* LINKS TO CONTROL ADMIN FUNCTIONS */\r\n.adminLinks {\r\n background-color:#f1f1f1;\r\n}\r\n.adminLinks a:link,\r\n.adminLinks a:visited {\r\n display:block;\r\n text-align:center;\r\n text-decoration:none;\r\n color:#555;\r\n font-weight:normal;\r\n font-size:10px;\r\n padding:2px 5px;\r\n border-top:solid silver 1px;\r\n}\r\n.adminLinks a:hover {\r\n color:black;\r\n}\r\n.adminLinks a.newLink:link,\r\n.adminLinks a.newLink:visited {\r\n background-color:#3498d1;\r\n color:white;\r\n display:block;\r\n}\r\n.adminLinks a.newLink:hover {\r\n background-color:#39a6e5;\r\n}\r\n\r\n\r\n\r\n/* STYLE FOR THE DETAILED LISTING */\r\n#matrixDetail {\r\n min-width:1000px;\r\n}\r\n#matrixDetail .editBtns {\r\n font-size:9px;\r\n line-height:11px;\r\n vertical-align:middle;\r\n font-weight:normal;\r\n margin-left:10px;\r\n}\r\n#matrixDetail .editBtns a {\r\n color:black;\r\n text-decoration:underline;\r\n}\r\n#matrixDetail .editBtns a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n#matrixDetail .stats .screenshot {\r\n float:left;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixDetail .commentsMail strong.title {\r\n margin-bottom:0px;\r\n margin-top:20px;\r\n display:block;\r\n background-color:#d2d2d2;\r\n padding:2px 10px;\r\n border:solid 1px gray;\r\n border-bottom-color:silver;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n}\r\n\r\n#matrixDetail .assetAspectComments {\r\n margin:0px 0px 20px 0px;\r\n border:solid gray 1px;\r\n background-color:#f1f1f1;\r\n -moz-border-radius-bottomLeft:4px;\r\n -moz-border-radius-bottomRight:4px;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectComment {\r\n border-top:solid silver 1px;\r\n border-bottom:solid gray 1px;\r\n padding:3px;\r\n background-color:#f5f5f5;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectCommentForm {\r\n border-top:solid #d2d2d2 5px;\r\n padding:20px;\r\n}\r\n\r\n\r\n\r\n#matrixDetail .stats ul, #matrixDetail .stats ul li {\r\n list-style-type:none;\r\n margin:0px;\r\n padding:0px;\r\n}\r\n#matrixDetail .stats ul li {\r\n display:block;\r\n line-height:20px;\r\n margin:4px 0px;\r\n}\r\n#matrixDetail .stats ul li strong {\r\n display:block;\r\n float:left;\r\n width:130px;\r\n text-align:right;\r\n background-color:#f1f1f1;\r\n padding-right:5px;\r\n margin-right:5px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:3px;\r\n font-size:11px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n\r\n\r\n.showLink {\r\n background-color:#e1e1e1;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n.showLink:hover,\r\n.hideLink:hover {\r\n background-color:#555;\r\n color:white;\r\n}\r\n.hideLink {\r\n background-color:#f1f1f1;\r\n border:2px solid #2F495E;\r\n border-bottom-style:none;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft:4px;\r\n -webkit-border-radius-topRight:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n\r\n#matrixMail {\r\n background-color:#f1f1f1;\r\n padding:15px;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -moz-border-radius-topLeft:0px;\r\n -webkit-border-radius:4px;\r\n -webkit-border-radius-topLeft:0px;\r\n margin-top:1px;\r\n}\r\n#matrixMail * .tableData {\r\n padding:5px;\r\n margin:0px;\r\n}\r\n#matrixMail * input {\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#matrixMail * .formDescription {\r\n text-align:right;\r\n vertical-align:middle;\r\n padding-right:10px;\r\n font-weight:bold;\r\n}\r\n#matrixMail form * img {\r\n margin-top:-18px;\r\n}\r\n#matrixMail #verify_formId {\r\n height:45px;\r\n line-height:45px;\r\n font-size:35px;\r\n padding:0px;\r\n margin:0px;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixRatings {\r\n width:264px;\r\n position:relative;\r\n left:-2px;\r\n top:12px;\r\n}\r\n#matrixRatings table {\r\n margin-left:0px;\r\n}\r\n#matrixRatings td {\r\n overflow:hidden;\r\n}\r\n#matrixRatings .formDescription {\r\n text-align:right;\r\n background-color:#97BCD1;\r\n border:solid #4D606B 1px;\r\n padding:2px 5px;\r\n font-weight:bold;\r\n font-size:10x;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n color:#333;\r\n}\r\n#matrixRatings .formDescription a:before {\r\n content: \"» \";\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a {\r\n display:block;\r\n color:red;\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a:hover {\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n#matrixAttributes {\r\n float:left;\r\n _width:40%;\r\n min-width:20%;\r\n max-width:45%;\r\n margin-right:20px;\r\n}\r\n#rightDetails {\r\n float:left;\r\n _width:20%;\r\n min-width:20%;\r\n max-width:45%;\r\n}\r\n\r\n\r\n\r\n#attributes {\r\n border:solid #d2d2d2 1px;\r\n background-color:#f1f1f1;\r\n margin-top:10px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:10px;\r\n}\r\n#attributes table {\r\n border-collapse:collapse;\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#attributes table * td {\r\n padding:2px;\r\n margin:0px;\r\n}\r\n\r\n\r\n.yui-dt0-col-value {\r\n font-weight:bold;\r\n font-size:14px;\r\n padding:3px;\r\n white-space:no-wrap;\r\n}\r\n\r\n\r\n\r\n/* COMPARISON STYLES */\r\n#compareList table {\r\n border-collapse:collapse;\r\n border:solid silver 1px;\r\n margin-top:5px;\r\n}\r\n#compareList table * th a {\r\n color:black;\r\n padding:1px 5px;\r\n}\r\n#compareList table * td {\r\n background-color:#f1f1f1;\r\n border-top:solid gray 1px;\r\n border-bottom:solid silver 1px;\r\n}\r\n\r\n#compareList .yui-dt-liner {\r\n color:#39A6E5;\r\n}\r\n\r\n#compareList .yui-dt-col-name .yui-dt-liner {\r\n font-style:italic;\r\n font-size:10px;\r\n color:#555;\r\n}\r\n#compareList .yui-dt-col-name .yui-dt-liner b {\r\n font-size:15px;\r\n font-style:normal;\r\n padding-right:25px;\r\n color:black;\r\n}',0,'text/css',1235708941,0); +INSERT INTO `template` VALUES ('\">','Macro/AdminToggle',1,1,'PBtmpl0000000000000036',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/a_account',1,1,'PBtmpl0000000000000037',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/EditableToggle',1,1,'PBtmpl0000000000000038',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/GroupAdd',1,1,'PBtmpl0000000000000040',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/GroupDelete',1,1,'PBtmpl0000000000000041',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/H_homeLink',1,1,'PBtmpl0000000000000042',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/LoginToggle',1,1,'PBtmpl0000000000000043',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/r_printable',1,1,'PBtmpl0000000000000045',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1),('\">','Macro/File',1,1,'PBtmpl0000000000000091',1129049189,'WebGUI::Asset::Template::HTMLTemplate',1),('','style',0,0,'PBtmpl0000000000000132',1129049190,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n
          /opaque.gif);\">\n \n
          \n\n\n\n
          /opaque.gif);\">\n \n
          \n
          \n
          \n','Shortcut',1,1,'PBtmpl0000000000000140',1129573244,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n\n\n
          \n \n
          \n
          \n
          :
          \n
          \n
          \n
          \n
          \n\n\n
          \n
          \n
          \n \n
          \n
          \n
          \n \n
          \n
          \n
          \n \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n\n','AdminConsole',1,1,'PBtmplHelp000000000001',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

          \n\n\n\n \n \n\n \n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n\n \n\n \n \n \n \n \n\n\n
          \">\">\">\">\">\">
          oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
          \n\n\n
          \n · · \n
          \n
          \n\n','Collaboration',1,1,'PBtmpl0000000000000208',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

          \n\n\n
          \n\n\n
          \n
          \n \">
          \n ()\n \n \n \n
          \n \n
          \n
          \n\n
          \n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000128',1147642411,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

          \n
          \n \n

          \n
          \n \n\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\"
          >\n > \n\n','Navigation',1,1,'PBtmpl0000000000000093',1147642412,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n
          \n \n
          \n\n\n\n\n \n \n\n\n
          \n

          \n\" class=\"backLabel\">\n\n\n','DataForm',1,1,'PBtmpl0000000000000104',1147642412,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n

          \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
          \n
          \n\n\n
          \n · · \n
          \n
          \n\n\n','Collaboration/Search',1,1,'PBtmpl0000000000000031',1147642413,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n \n

          \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
          \n\n\n
          \n
            \n \n
          • \">
          • \n
            \n\n
          \n
          ','Auth/LDAP/Login',1,1,'PBtmpl0000000000000006',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n

          \n\n\n\n \">\n

          \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n class=\"even\">\n \">
          \n \n \n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n \">\n by\n \n \n \n \">\n \n on @ \n \n
          \n \n
          \n\n

          \n \n
          \n
          \n \n

          \n \n\n\n\n','MessageBoard',1,1,'PBtmpl0000000000000047',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1),('\nThis is the Manager\'s View\n\n','TimeTracking_manager',1,1,'TimeTrackingTMPL000002',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

          \n\n\n\n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n\n\n
          \">\">\">
          oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
          \n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000066',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n \n

          \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
          \n\n\n
          \n \n
          ','Auth/WebGUI/Login',1,1,'PBtmpl0000000000000013',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n \n

          \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
          \n \n \n \n
          \n \n \n \n
          \n \n \n \n
          \n \n
          \n','Auth/WebGUI/Expired',1,1,'PBtmpl0000000000000012',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n\n

          \n\n

          \n\n
          \n\n\">\n\n          \n\n\">\n\n
          \n','prompt',1,1,'PBtmpl0000000000000057',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(\"title\"); - WebGUI\n \n\n\n ^AdminBar;\n
          \n\n
          \n ^AssetProxy(flexmenu);\n
          \n\n
          \n \n
          \n
          \n
          \n ^LoginToggle;   ^a(^@;);   ^H;   ^AdminToggle;\n
          \n\n
          \n\n\n\n','style',0,1,'PBtmpl0000000000000060',1147642419,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \">\" alt=\"\" style=\"border-style:none;\" />','FileAsset',1,1,'PBtmpl0000000000000024',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

          \n \n

          \n \n \n \n

          \">

          \n \n \n \n\n \n \n \n \n\n \n\n \n \n \n\n
          \n\n \">\" border=\"0\" alt=\"\" />\n \">\n\n \" border=\"0\" alt=\"\" />\n\n \n \n
          \n \n \n \n \n \n\n \">\" border=\"0\" alt=\"\" />\n \">\n\n \" border=\"0\" alt=\"\" />\n\n \n ^D(\"%z %Z\",);
          \n','Folder',1,1,'PBtmpl0000000000000078',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />()','Macro/File',1,1,'PBtmpl0000000000000107',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n

          \n','Account/Inbox/InviteUserMessage',1,1,'XgcsoDrbC0duVla7N7JAdw',1227566394,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

          \n
          \n \n

          \n
          \n \n\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\"
          >\n · \n\n','Navigation',1,1,'PBtmpl0000000000000108',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \" />','ImageAsset',1,1,'PBtmpl0000000000000088',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n \">\n
          \n\n\n - \n

          \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

          \n
          \n\n\n - \n\n','Article',1,1,'PBtmpl0000000000000123',1147642421,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n \');\">\n
          \n\n\n - \n

          \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

          \n
          \n\n\n - \n\n','Article',1,1,'PBtmpl0000000000000129',1147642422,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

          \n\n\n\n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n
          oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
          \n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000077',1147642422,'WebGUI::Asset::Template::HTMLTemplate',1),('

          RandomThread macro debug output:

          \n
          \n
          approve.url:
          \n
          assetId:
          \n
          assetSize:
          \n\n
          <tmpl_loop attachment_loop>:
          \n
          \n
          filename:
          \n
          icon:
          \n
          isImage:
          \n
          thumbnail:
          \n
          url:
          \n</tmpl_loop>\n\n\n
          attachment.icon:
          \n
          attachment.thumbnail:
          \n
          attachment.url:
          \n
          className:
          \n
          content:
          \n
          contentType:
          \n
          createdBy:
          \n
          creationDate:
          \n
          dateSubmitted:
          \n
          dateSubmitted.human:
          \n
          dateUpdated:
          \n
          dateUpdated.human:
          \n
          delete.url:
          \n
          deny.url:
          \n
          edit.url:
          \n
          encryptPage:
          \n
          endDate:
          \n
          extraHeadTags:
          \n
          groupIdEdit:
          \n
          groupIdView:
          \n
          hasRated:
          \n
          image.url
          \n
          image.thumbnail
          \n
          isHidden:
          \n
          isLocked:
          \n
          isLockedBy:
          \n
          isMarkedRead:
          \n
          isPackage:
          \n
          isPrototype:
          \n
          isSticky:
          \n
          isSystem:
          \n
          lastPostDate:
          \n
          lastPostId:
          \n
          lineage:
          \n
          menuTitle:
          \n
          newWindow:
          \n
          ownerUserId:
          \n
          parentId:
          \n
          rate.url.1:
          \n
          rate.url.2:
          \n
          rate.url.3:
          \n
          rate.url.4:
          \n
          rate.url.5:
          \n
          rating:
          \n
          rating.value:
          \n
          replies:
          \n
          reply.url:
          \n
          reply.withquote.url:
          \n
          revisedBy:
          \n
          revisionDate:
          \n
          startDate:
          \n
          state:
          \n
          stateChanged:
          \n
          stateChangedBy:
          \n
          status:
          \n
          storageId:
          \n
          subscriptionGroupId:
          \n
          synopsis:
          \n
          tagId:
          \n
          threadId:
          \n
          title:
          \n
          title.short:
          \n
          url:
          \n
          user.canEdit:
          \n
          user.isPoster:
          \n
          userDefined1:
          \n
          userDefined2:
          \n
          userDefined3:
          \n
          userDefined4:
          \n
          userDefined5:
          \n
          userId:
          \n
          userProfile.url:
          \n
          username:
          \n
          views:
          \n
          \n','Macro/RandomThread',1,1,'WVtmpl0000000000000001',1147642426,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

          \n
          \n \n

          \n
          \n \n\n\n
          \n\n
          \n \">\n
          \n \n
          \n \n
          \n \n
          \n \n
          \n
          \n
          \n
          ','Navigation',1,1,'PBtmpl0000000000000136',1147642428,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n

          \n
          \n \n

          \n
          \n \n\n\n\n \n \n \n \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\"
          >\n \n','Navigation',1,1,'PBtmpl0000000000000124',1147642429,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n
          \n\n

          \n
          \n\n
          \n
          \n\n\n\n class=\"selectedMenuItem\" onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n
          \n
          \n
          \n','Navigation',1,1,'PBtmpl0000000000000048',1147642431,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(title); - <tmpl_var session.setting.companyName>\n \n \n \n\n\n\n^AdminBar(\"PBtmpl0000000000000090\");\n\n\n

          \n^AdminToggle();\n

          \n\n\n','style',1,1,'PBtmplBlankStyle000001',1147642431,'WebGUI::Asset::Template::HTMLTemplate',1),('

          ^International(error label,Account_Inbox);

          \r\n

          \r\n

          \">^International(back label,Account_Inbox);

          \n','Account/Inbox/Error',1,1,'ErEzulFiEKDkaCDVmxUavw',1227566394,'WebGUI::Asset::Template::HTMLTemplate',1),('

          ^International(invitation confirm label,Account_Inbox);

          \r\n

          ^International(invitation confirm message,Account_Inbox);

          \r\n\r\n \r\n \r\n \r\n \r\n \r\n
          ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
          \r\n

          \">^International(invitations back label,Account_Inbox);

          \n','Account/Inbox/Confirm',1,1,'5A8Hd9zXvByTDy4x-H28qw',1227566395,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n

          \n\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n

          \n ','FileAsset',1,1,'pbtmpl0000000000000221',1147642465,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n
          \n \n\n

          \n
          \n \n\n \n \n \n       \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n\n
          \n','Navigation',1,1,'stevenav00000000000001',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n
          \n \n\n

          \n
          \n \n\n \n \n \n       \n \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n \n','Navigation',1,1,'PBnav000000style01lvl2',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \n\n \n
          \n
          \n
          \n
          \n \n \n \n

          \">

          \n
          \n\n \n \">.\n \">\n \n \n \n
          \n
          \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000044',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \n\n \n \n \n \n \n \n \n \n \n \n \n \n
          \n \">\n \n\n \n \">.\n \">\n \n
          \n
          \n
          \n
          \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000092',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
          \n
          \n\n

          \n
          \n\n

          \n
          \n\n\n\n
            \n\n\n\n\n
          \n
          \n\n
        • \">onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n\n
            \n\n \n\n\n \n \n \n
          \n \n
        • \n\n\n','Navigation',1,1,'PBnav00000000000bullet',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n

          \n
          \n
          \n\n\n
          \n \" style=\"height:auto;min-height:100px;width:100%;display:block;\">\n \" /> \n \n
          ','FileAsset',1,1,'pbtmpl0000000000000220',1148579525,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

          \n\n\n\n\n
          \n\n

          \n\n\n\n\n

          \n · · \n
          \n\n','Collaboration',1,1,'PBtmpl0000000000000133',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

          \n\n\n \n \n [\">] \n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n

          \n \" target=\"_blank\">\n \n - \n \n

          \n
          \n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000083',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

          \n\n
            \n \n
          1. \n \n \n [\">]\n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n \" target=\"_blank\">\n \n - \n \n
          2. \n
            \n
          \n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000101',1149286278,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

          \n\n
          \n\n\n
          \n
          \n
          ()
          \n \n \n
          \n
          \n
          \n\n
          \n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000121',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \"> •\n \n \n \n \"> \n \n \">\n \n \n •\n \n \n \n \">\n \n

          \n\n\n \n \n \">\n \n \n \n\n \n \n \n \n \n \"> •\n \n \n \n (\">)
          \n\n
          \n

          \n Q: \n A: \n

          \n

          \n\n\n\n

          \n · · \n
          \n\n','Collaboration',1,1,'PBtmpl0000000000000081',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n \n  [\">]\n \n

          \n\n\n \n \n \">\n \n \n \n \n \n \n \n \n \"> •\n \n \n \n (\">)\n
          \n

          \n \n

          \n\n\n\n

          \n · · \n
          \n\n','Collaboration',1,1,'PBtmpl0000000000000079',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n \n \n •\n \n \n \n \">\n \n

          \n\n\n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000082',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

          \n\n

          \n\n\n

          \n \n
          \n
          \n \n \">\n -\n \n \n - \n \n \n - \n \n \n - \n \n \n \n \n \">\" border=\"0\" alt=\"\" align=\"right\" />\n \n \n
          \n \">\n
          \n
          \n

          \n\n\n\n

          \n \n
          \n\n','Collaboration',1,1,'PBtmpl0000000000000112',1149286279,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\" style=\"border-style:none;vertical-align:middle;\" alt=\"\" />\n','Macro/File',1,1,'PBtmpl0000000000000039',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n
          \n\n \n

          \n\n\n
          \n\n\n \n \n
          \n
          \n

          \n \n \n\n \n \" alt=\"graph\" />\n \n \n
          \n \n \n \n \n \n
          \" class=\"pollColor\">^Spacer(1,1);  % ()
          \n
          \n


          : \n
          \n\n
          \n\n\n','Poll',1,1,'PBtmpl0000000000000055',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n^Page(title); - <tmpl_var session.setting.companyName>\n\n\n\n\n\n\n\n^AdminBar(\"\");\n\n
          \"plainblack\"
          \n\n
          \n \n
          \n\n
          © 2001-2004 Plain Black LLC
          \n\n\n\n','style',1,1,'PBtmpl0000000000000111',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\nBatch: \n\n\n
          \n\n','Operation/RedeemSubscription',1,1,'PBtmpl0000000000000053',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

          \n\n\n\n \n \n \n \n \n \n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
          \">\">\">
          oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n \n \">\" border=\"0\" alt=\"\" />\n \n  \n \n oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
          \n\n\n
          \n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000097',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n
          \n \n\n

          \n
          \n \n\n \n\n \n\n','Navigation',1,1,'PBnav00000000indentnav',1154535074,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
          \n \n
          \n
          \n \n
          \n
          \n
          \n  \n
          \n \n \n \n \n \n
          \n  \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n \n
          \n \n \" >
          \n
          \n
          \n
          \n \n
          \n \n \">
          \n
          \n
          \n
          \n
          \n \">
          \n ^AdminToggle;
          \n ^LoginToggle;
          \n
          \n
          \n
          \n \n
          \n
          \n \n \')\">\"?\"\n \n
          \n
          \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
          \n
          \n\"*\"\n
          \n
          \n \" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
          \n\n\n','AdminConsole',1,1,'PBtmpl0000000000000001',1157679164,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n class=\"odd\">\n \n \n \n \n\n
          /\">\n \" />\n \n (\'\', \'\')\">/\" style=\"border-style:none;\" alt=\"\" title=\"\" />\n
          \n','ProjectManager_resourceList',1,1,'ProjectManagerTMPL0006',1157679165,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n\n
          \n \" align=\"right\" border=\"0\" alt=\"\" />\n\n\n\n\n \n\n\n\n \n \n

          \n \">\n \n \n

          \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

          \n
          \n\n\n\n·\n\n·\n\n\n\n\n\n
          \n
          \n
          \n','Article',1,1,'PBtmpl0000000000000002',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n
          \n \n \n
          px;top:px;\">♦
          \n
          \n
          px;top:px;width:px;background-color:\">\n
          %;\">
          \n \n
          \n
          \n \n
          px;top:3px;margin-top:-3px;\">
          \n
          \n
          \n
          \n
          \n \" id=\"projectTableWidth\">\n \" id=\"projectScrollPercentWidth\">\n px;z-index:1;\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \" class=\"monthName\" style=\"height:20px;\">
          \" class=\"empty\" style=\"height:21px;\"> 
          \n
          \n
          \n\n','ProjectManager_gantt',1,1,'ProjectManagerTMPL0003',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
            \n\n
          • at () by
          • \n
            \n
          \n','WikiPage_pageHistory',1,1,'WikiPHTmpl000000000001',1165460175,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n\n
            \n
          1. \">
          2. \n
          \n\n
          \"> | \"> | \">
          \n\n','WikiMaster_mostPopular',1,1,'WikiMPTmpl000000000001',1165460175,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n
          \n
          \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \n
          \n
          \n\n\n\n','InOutBoard/Report',1,1,'IOB0000000000000000002',1166019641,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n\n\n\n\n

          \n \n \n \n
          \n · · \n
          \n
          \n

          \n

          \">

          \n \n

          \n

          \">

          \n
          \n
          \n
          \"> | \"> | \">
          \n','WikiMaster_search',1,1,'WikiSearchTmpl00000001',1168480840,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n\n
            \n
          • \n \n \"> - on by \n \n - on by \n \n ( \"> )\n \n \n
          • \n
          \n\n
          \"> | \"> | \">
          \n\n\n','WikiMaster_recentChanges',1,1,'WikiRCTmpl000000000001',1169092823,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n \n

          \n
          \n
          \n\n\n
            \n
          • \n
          \n
          \n\n\n \">\n\n \n \n \n \n \n \n','ZipArchiveAsset',1,1,'ZipArchiveTMPL00000001',1169738426,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

          \n
          \n\n \n

          \n
          \n\n
          \n \n

          \n
          \n\n
          \n\n \">\n\n\n \n  · \n \n \">\n\n
          \n\n \n
          \n \n
          \n
          \n \n \n \n \n \n \n \n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n \n \n \n

          \n \n \n\n','InOutBoard',1,1,'IOB0000000000000000001',1169795123,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n\n','RSSCapable/RSS',1,1,'PBtmpl0000000000000142',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n \n\n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

          \n\n\n\n\n \n \n
          [\">]
          \n
          \n
          \n \n
          \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n
          \n
          \n \" id=\"id\">
          \n \n

          \">[top]

          \n
          \n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000080',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
          \">\n \n \n \n \n \n
           \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \">\n \n \n \n \n \n
           \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \">\n \n \n \n \n \n
           \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \">\n \n \n \n \n \n
           \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n','SQLReport/Download',1,1,'SQLReportDownload00001',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n\n\n

          \n \">
          \n

          \n

          \n
          \n\n

          \n\n','newsletter',1,1,'newsletter000000000001',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

          \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
          \">\">\">\">\">
          oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
          \n\n\n
          \n · · \n
          \n
          \n','Collaboration',1,1,'PBtmpl0000000000000026',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n \r\n

          \r\n\r\n\r\n\r\n

          \r\n\r\n\r\n \r\n \r\n\r\n
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n\r\n
          \r\n \r\n
          ','Auth/LDAP/Account',1,1,'PBtmpl0000000000000004',1227026214,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n\n\n\n','WikiMaster_byKeyword',1,1,'WikiKeyword00000000001',1185754571,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n

          \n\n\n

          \n\n
          \n\n
          \n

          \">

          \n
            \n
          • \n \n \">\n \n ()\n \n
          • \n
          \n
          \n
          \n

          \">

          \n
            \n
          1. \">
          2. \n
          \n\n
          \n
          \n\n
          \n\n\n','WikiMaster_front',1,1,'WikiFrontTmpl000000001',1185754572,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n

          \n
          \n\n\n

          \n
          \n\n\n
          \n \n
          \n
          \n\n\n\n

          \">

          \n\n\n\n\n','TimeTracking_user',1,1,'TimeTrackingTMPL000001',1201205738,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
          :
          \r\n
          \r\n\r\n\r\n

          \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
          :
          \r\n
          \r\n
          ','DataForm',1,1,'PBtmpl0000000000000085',1202884864,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
          \r\n
            \r\n
          • \r\n
            \r\n
          \r\n
          \r\n\r\n
          \r\n © Plain Black 2006\r\n
          \r\n','Calendar/Print/Month',1,1,'CalendarPrintMonth0001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n   -   \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
          \r\n
            \r\n
          • \r\n
            \r\n
          \r\n
          \r\n\r\n
          \r\n © Plain Black 2006\r\n
          \r\n','Calendar/Print/Week',1,1,'CalendarPrintWeek00001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
          :00\r\n
            \r\n
          • \r\n
            \r\n
          \r\n
          \r\n\r\n
          \r\n © Plain Black 2006\r\n
          \r\n','Calendar/Print/Day',1,1,'CalendarPrintDay000001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

          \r\n
          \r\n\r\n

          \r\n\r\n
          \r\n\r\n
          \r\n\" alt=\"\" />\r\n
          \r\n
          \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n :
          \r\n :
          \r\n : \r\n \r\n     [ \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" /> |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n \r\n : [ \"> \"> ]
          \r\n \r\n \r\n :
          \r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n

          \r\n \r\n
          \r\n\r\n\r\n
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n
          \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n \r\n
          \r\n
          \r\n\r\n
          \r\n\r\n\r\n
          \r\n

          \r\n
          \r\n
          \r\n \r\n \">\r\n \r\n \">\r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          Current\">\r\n \">\r\n
          \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
          \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n : \r\n
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n :
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          px;\">\r\n
          Current\">\r\n \">\r\n
          \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
          \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n : \r\n
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n :
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \" class=\"controlLink\">\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n \r\n \r\n
          \r\n [ | | ]\r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n \r\n \" class=\"controlLink\"> \r\n •\r\n \r\n \" class=\"controlLink\">\r\n \r\n \r\n •\r\n \" class=\"controlLink\"> \r\n \r\n \r\n •\r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \" class=\"controlLink\">\r\n •\r\n \r\n \r\n \r\n \r\n \" class=\"controlLink\">\r\n \r\n \" class=\"controlLink\">\r\n \r\n \r\n
          \r\n
          \r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000067',1206998733,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n

          \r\n
          \r\n\r\n \r\n
          \r\n

          \">

          \r\n
          \r\n
          \r\n \r\n \">\r\n \r\n \">\r\n \r\n
          \r\n
          \r\n\r\n\r\n
          px;\">\r\n
          Current\">\r\n \">\r\n
          \r\n \r\n
          \r\n
          \r\n\r\n
          \r\n\" alt=\"\" />\r\n
          \r\n
          \r\n
          \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n :
          \r\n
          \r\n
          \r\n :
          \r\n : \r\n \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n
          \r\n \r\n : [ \"> \"> ]
          \r\n
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n [ | | ]\r\n
          \r\n
          \r\n\r\n
          \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \r\n \r\n \"> •\r\n \r\n \r\n \r\n \"> •\r\n \r\n \"> •\r\n \r\n \r\n \"> •\r\n \r\n \"> •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
          \r\n\r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000032',1206998756,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

          \r\n
          \r\n\r\n

          \r\n\r\n
          \r\n\r\n
          \r\n\" alt=\"\" />\r\n
          \r\n
          \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n :
          \r\n :
          \r\n :
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n \r\n :     [ \">     [ \"> ]
          \r\n \r\n \r\n :
          \r\n
          \r\n
          \r\n\r\n :
          \r\n:\r\n\r\n
          \r\n
          \r\n\r\n
          \r\n \r\n
          \r\n\r\n\r\n
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
          \r\n
          \r\n\r\n
          \r\n\r\n\r\n
          \r\n

          \r\n
          \r\n
          \r\n \r\n \">\r\n \r\n \">\r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          Current\">\r\n \">\r\n
          \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
          \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n : \r\n
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          px;\">\r\n
          Current\">\r\n \">\r\n
          \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
          \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n : \r\n
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n \r\n \r\n
          \r\n [ | | ]\r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n \r\n \"> \r\n •\r\n \r\n \">\r\n \r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
          \r\n','Collaboration/Thread',1,1,'PBtmpl0000000000000209',1206998862,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n \r\n \r\n , \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n\r\n\r\n','EMS/PrintBadge',1,1,'PsFn7dJt4wMwBa8hiE3hOA',1208558071,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
          \r\n
          \r\n : \r\n
          \r\n
          \r\n \r\n / \r\n
          \r\n
          \r\n : \r\n
          \r\n
          \r\n\r\n\r\n','EMS/PrintTicket',1,1,'yBwydfooiLvhEFawJb0VTQ',1208629936,'WebGUI::Asset::Template::HTMLTemplate',1),('

          ^International(thank you message,Shop);

          \r\n\r\n\r\n

          \">^International(order number,Shop);

          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(date,Shop);
          ^International(amount,Shop);
          ^International(in shop credit used,Shop);
          ^International(taxes,Shop);
          ^International(shipping method,Shop);
          ^International(shipping amount,Shop);
          ^International(shipping address,Shop);
          ^International(payment method,Shop);
          ^International(status message,Shop);
          ^International(payment address,Shop);
          \r\n
          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n
          ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
          \">
          \r\n ','Shop/EmailReceipt',1,1,'bPz1yk6Y9uwMDMBcmMsSCg',1211829604,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n

          Cart

          \r\n
          \r\n \r\n
          ) ()
          \r\n
          \r\n
          \r\n
          \r\n ^International(total,Shop);: \r\n
          \r\n
          \r\n ^ViewCart;\r\n
          \r\n
          \r\n','Shop/MiniCart',1,1,'EBlxJpZQ9o-8VBOaGQbChA',1212093746,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
          \" alt=\"\" />\r\n
          \r\n
           
          \r\n\r\n
          \r\n X\r\n
          \r\n
          \r\n
          \r\n
          °F
          \r\n

          \r\n\r\n
          \r\n\r\n\r\n\r\n\r\n\r\n\r\n
          \r\n\">\r\n
          \"The
          \r\n','WeatherData',1,1,'WeatherDataTmpl0000001',1210711353,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
          \r\n
          ^International(location,Asset_Event);
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          ^International(description label,Asset_Event);
          \r\n
          \r\n
          \r\n
          \r\n
          ^International(scheduled,Asset_Event);
          \r\n
          \r\n
          \r\n ,\r\n \r\n \r\n : , \r\n \r\n \r\n : \r\n
          \r\n
          \r\n
          ^International(related material,Asset_Event);
          \r\n
          \r\n \">
          \r\n
          \r\n
          \r\n','Calendar/Print/Event',1,1,'CalendarPrintEvent0001',1215396964,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n

          \r\n

          \">^International(continue shopping button,Shop);\r\n\r\n\r\n\r\n\r\n','FlatDiscount',1,1,'63ix2-hU0FchXGIWkG3tow',1216169693,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n \r\n\r\n\r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n','Navigation',1,1,'PBtmpl0000000000000130',1219072470,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n
          \n\n \n\n\n\n \n \">\n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl0000000000000054',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n
          \n\n \n\n\n\n \n \">\n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
          \n\n \n
          \n
          \n
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl000000000table54',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n
           
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl0000000000000125',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n\n

          \n
          \n\n\n\n \n \n\n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n \n
          \n\n\n \n\n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl00000000table125',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n\n

          \n
          \n\n\n \n\n\n\n\n \n\n\n \n \n \n\n \n\n
          \n \n
          \n \n \n \n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl00000000table094',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n\n

          \n
          \n\n\n \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n
           
          \n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n
           
          \n\n\n
           
          \n \n
          \n\n','Layout',1,1,'PBtmpl0000000000000109',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n\n\n \n\n\n \n \n \n\n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n\n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl00000000table109',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n \r\n\r\n\r\n\r\n
          \r\n\r\n \r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
          _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
          \r\n\r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n
           
          \r\n\r\n\r\n
          \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
          _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
          \r\n\r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n
          \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
          _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
          \r\n\r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n
           
          \r\n\r\n\r\n
          \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
          _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
          \r\n\r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n
           
          \r\n \r\n
          \r\n','Layout',1,1,'PBtmpl0000000000000094',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n
           
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl0000000000000131',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n\n\n \n \n\n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl00000000table131',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n\n

          \n
          \n\n\n \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n
           
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl0000000000000135',1220655704,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n\n\n \n \n\n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl00000000table135',1220655706,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n
           
          \n\n\n
          \n\n \n\n\n\n \n \">\n \n \n \n\n\n\n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n\n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl0000000000000118',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n

          \n
          \n\n\n\n

          \n
          \n\n\n \n\n\n\n\n \n \n \n\n\n \n\n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n \n
          \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n
          _div\" class=\"dragable uncommitted-asset\">\n \n\n
          \n\n \n
          \n
          \n
          \n \n
          \n\n\n
           
          \n \n
          \n','Layout',1,1,'PBtmpl00000000table118',1220655705,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n
          \r\n
          Add/Edit Task
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
           
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
               
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n :

          \r\n \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/users.gif\" />     \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/groups.gif\" /> \r\n \r\n
          \r\n
          \r\n\r\n
          \r\n
          \n','ProjectManager_editTask',1,1,'ProjectManagerTMPL0004',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n\r\n\r\npx;\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
           Task NameDurationStartFinishPred\" valign=\"top\" id=\"scrolltd\" style=\"border-style:none;width:%;\">\r\n
          \r\n \r\n
          \r\n
           
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n
           
           
          \r\n\r\n\r\n\r\n
          \n','ProjectManager_project',1,1,'ProjectManagerTMPL0002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n\n\n \n \n\n\n\n\n \n\n\n
          \n\n\n\n\n \n\n','WikiPage_edit',1,1,'WikiPageEditTmpl000001',1221692341,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n\r\n
          \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\nalt\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
          ^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
          \r\n \r\n
          \r\n \r\n \r\n ^International(not applicable,Shop);\r\n
          \r\n
           
            
          ^International(subtotal,Shop);
          ^International(tax,Shop);
          ^International(shipping,Shop);
          \r\n \r\n \r\n \r\n
          \r\n \r\n
          ^International(in shop credit,Shop);(^International(available,Shop);: )
          ^International(total,Shop);
            
           
          ^International(order for,Shop);
           
          \r\n\r\n\r\n','Shop/Cart',1,1,'aIpCmr9Hi__vgdZnDTz1jw',1227539574,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n

          \n

          ^International(badge holder information,Asset_EventManagementSystem);

          \n\n\n

          \n
          \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
          ^International(name,Shop);
          ^International(organization,Asset_EventManagementSystem);
          ^International(address,Shop);
           
           
          ^International(city,Shop);
          ^International(state,Shop);
          ^International(code,Shop);
          ^International(country,Shop);
          ^International(phone number,Shop);
          ^International(email address,Asset_EventManagementSystem);
          \n\n\n','EMSBadge',1,1,'PBEmsBadgeTemplate0000',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n \r\n

          \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n
          \r\n\r\n\r\n\r\n
          \r\n
            \r\n
          • \">
          • \r\n \r\n
          \r\n
          ','Auth/LDAP/Create',1,1,'PBtmpl0000000000000005',1221612327,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n\n \n
          \n
          );\">
          \n
          \n
          \n
          \n \n
          \n · · \n
          \n
          \n
          \n\n','Search',1,1,'PBtmpl0000000000000200',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
           
          \r\n\r\n\r\n
          \r\n
            \r\n
          • \">
          • \r\n \r\n
          • \">
          • \r\n
            \r\n
          \r\n
          \r\n','Auth/WebGUI/Create',1,1,'PBtmpl0000000000000011',1221612288,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n
          \r\n\r\n \r\n
          \r\n
          \r\n
            \r\n \r\n \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
        • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
          \r\n
          \r\n
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n \r\n
        • \r\n \r\n
          \r\n\n','Navigation',1,1,'PBtmpl0000000000000134',1222574692,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n
            \r\n\r\n
          • \r\n\r\n
          \r\n
          \r\n\r\n\r\n
          \r\n \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n \">\r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n
          \r\n
          ^International(template captcha label,Asset_DataForm);
          \r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000020',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          ^International(my subscriptions,Asset_Newsletter);

          \n\n\n

          ^International(newsletter categories,Asset_Newsletter);

          \n\n


          \n

          \n \n
          \n
          \n

          \n
          \n\n\n\n','newsletter/mysubscriptions',1,1,'newslettersubscrip0001',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n
            \r\n \r\n
          • \r\n
            \r\n
          \r\n
          \r\n\r\n\r\n \r\n

          \r\n\r\n\r\n\r\n

          \r\n \">\r\n • \">\r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
          \r\n
          \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
          \r\n \r\n
          \r\n
          ^International(template captcha label,Asset_DataForm);
          \r\n
          \r\n\r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000141',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n
          \r\n\r\n \r\n

          \r\n
          \r\n\r\n \r\n\r\n
          \r\n \r\n
          \r\n \r\n ^D(\"%y\",);\r\n \r\n \r\n ^D(\"%c %y\",);\r\n \r\n \r\n ^D(\"%w, %c %d %y\",);\r\n \r\n
          \r\n\r\n
          \r\n

          \"> , ,

          \r\n \r\n
          \r\n
          \r\n
          \r\n\r\n \r\n
          \r\n
          \n','Calendar/List',1,1,'kj3b-X3i6zRKnhLb4ZiCLw',1222574694,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \" id=\"id\">\r\n\r\n \r\n
          \r\n
          \r\n
          \r\n\r\n \r\n

          \r\n
          \r\n\r\n \r\n \r\n \r\n
          \r\n \r\n
          \r\n
          \r\n \r\n
          (\">)
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n
          \n','Subscription',1,1,'eqb9sWjFEVq0yHunGV8IGw',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n

          ^International(my purchases,Shop); · ^a(\"Return to Account\");

          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);
          \">
          \r\n
          \n','Shop/MyPurchases',1,1,'2gtFt7c0qAFNU3BG_uvNvg',1222574694,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n
          \r\n\r\n

          ^International(order number,Shop);

          \r\n \r\n \r\n \r\n \r\n\r\n
            \r\n
          • ^International(date,Shop);
          • \r\n
          • ^International(amount,Shop);
          • \r\n
          • ^International(in shop credit used,Shop);
          • \r\n
          • ^International(taxes,Shop);
          • \r\n
          • ^International(shipping method,Shop);
          • \r\n
          • ^International(shipping amount,Shop);
          • \r\n
          • ^International(payment method,Shop);
          • \r\n
          • ^International(status message,Shop);
          • \r\n
          \r\n \r\n
          \r\n
          ^International(payment address,Shop);
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          ^International(shipping address,Shop);
          \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
          \">
          \r\n
          \n','Shop/MyPurchasesDetail',1,1,'g8W53Pd71uHB9pxaXhWf_A',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n ^Page(title);\n \n \n \n \n\n\n ^AdminBar();\n
          \n
          \n
          \n ^H(^c(););\n
          \n \n
          \n © ^D(%y); ^c;\n
          \n
          \n\n
          \n
          \n ^AssetProxy(roottab_level0);\n
          \n
          \n
          \n ^AssetProxy(roottab_level1);\n
          \n
          \n ^AssetProxy(crumbtrail); \n
          \n
           
          \n
          \n \n
          \n
           
          \n
          \n \n
          \n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\n
          ^AdminToggle;
          \n ^AssetProxy(style1/gui_bottom.jpg);
          \n \"WebGUI\n
          \n
          \n\n \n','style',1,1,'stevestyle000000000001',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\n\n \n ^c; - ^Page(title);\n \n \n \n\n\r\n^AdminBar();\r\n\n\n \n \n\r\n\r\n \r\n\n
          \n
          \n
          ^H(^c;);
          \n
          ^c;
          \n
          \n
          \n

          ^Page(title);

          \n
          \n
          \n
          \n \n
          \n
          \n
          \n
          \r\n \"plain\"webgui\"
          \n
          \n
          \n
          \n \n \n \n \n \n
          \n
          \n ^AssetProxy(flexmenu);\n
          \n \n \n \n \n \n
          \n
          \n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\n ^AdminToggle;\n
          \n
          \r\n © ^D(%y); ^c;\r\n
          \r\n\n\n\n','style',1,1,'stevestyle000000000002',1222383245,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n
            \r\n \r\n
          • \r\n
            \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n \">\r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n \r\n )\" id=\"tab\" class=\"tab\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n
          \r\n \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n \r\n
          \r\n^International(template captcha label,Asset_DataForm);
          \r\n\r\n\r\n\r\n','DataForm',1,1,'PBtmpl0000000000000116',1221692340,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n

          \r\n
          \r\n\r\n \r\n

          • View

          \r\n
          \r\n\r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \">\r\n \r\n \r\n \r\n
          \r\n
          \r\n\r\n
          \n','Thingy/ViewThing',1,1,'ThingyTmpl000000000002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n\r\n\r\n\r\n \r\n\r\n \r\n
          \r\n\r\n

          \r\n \">^International(add a ticket,Asset_EventManagementSystem);\r\n •\r\n \">^International(meta fields,Asset_EventManagementSystem);\r\n •\r\n \">^International(import,Asset_EventManagementSystem);\r\n •\r\n \">^International(export,Asset_EventManagementSystem);\r\n

          \r\n
          \r\n


          \r\n

          \r\n

          \r\n
          \r\n\r\n\r\n\r\n
          \r\n\r\n\r\n\r\n \r\n\r\n \r\n
          \r\n\r\n

          \">^International(add a ribbon,Asset_EventManagementSystem);

          \r\n
          \r\n

          \r\n
          \r\n\r\n\r\n\r\n
          \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n
          \r\n\r\n

          \">^International(add a token,Asset_EventManagementSystem);

          \r\n
          \r\n

          \r\n
          \r\n\r\n\r\n\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^ViewCart;\r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n\r\n \r\n\r\n\r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n','EMS/BadgeBuilder',1,1,'BMybD3cEnmXVk2wQ_qEsRQ',1224723361,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n

          \r\n
          \r\n\r\n

          \r\n
          \r\n\r\n\r\n\r\n\r\n\r\n','EMS',1,1,'2rC4ErZ3c77OJzJm7O5s3w',1224723218,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n','EMS/LookupRegistrant',1,1,'OOyMH33plAy6oCj_QWrxtg',1224724790,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n
          \r\n\r\n \r\n
          \" class=\"yuimenubar\">\r\n
          \r\n
            \r\n \r\n \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
        • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
          \r\n
          \r\n
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n \r\n
        • \r\n \r\n
          \r\n\r\n\r\n','Navigation',1,1,'stevecoolmenu000000001',1224116942,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n

          Add Address

          \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(label help,Shop);
          \r\n \r\n\r\n
          \r\n','Shop/Address',1,1,'XNd7a_g_cTvJVYrVHcx2Mw',1224606020,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n\r\n ^c; - ^Page(title);\r\n \r\n\r\n^AdminBar();\r\n\r\n\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n ^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\r\n
          \r\n
          \r\n

          ^H(^c;);

          \r\n

          ^Page(title);

          \r\n
          \r\n \"webgui\"
          \r\n
          \r\n
          \r\n
          \r\n ^AssetProxy(style3_coolmenu);\r\n \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n
          \r\n © ^D(%y); ^c;\r\n
          \r\n \"plain
          \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000003',1224795533,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n

          \r\n
          \r\n\r\n \r\n

          \r\n
          \r\n\r\n \r\n
          \r\n
          \r\n\r\n \r\n \r\n\r\n \r\n
            \r\n \r\n
          • \r\n
            \r\n
          \r\n
          \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          wgRowOnewgRowTwo label\" valign=\"top\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\" valign=\"top\" colspan=\"2\">\r\n \r\n \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n\r\n','Thingy/EditThing',1,1,'ThingyTmpl000000000003',1224518002,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n

          \r\n  :
          \r\n  
          \r\n  
          \r\n  \r\n

          \r\n\r\n \r\n

          \r\n  :
          \r\n \r\n \" title=\"Link to profile\">
          \r\n
          \r\n

          \r\n
          \r\n
          \r\n
          \r\n\r\n','Macro/UsersOnline',1,1,'h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n

          \r\n  :
          \r\n  
          \r\n  
          \r\n  \r\n

          \r\n

          \r\n  :
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
          \" alt=\"Avatar of \"/> \" title=\"Link to profile\">

          \r\n

          \r\n

          \r\n  :
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

          \r\n

          \r\n
          \r\n\r\n','Macro/UsersOnline',1,1,'4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n

          \n\n\n

          \n\n \">\n\n \n\n

          \n\n\n \n

          \n\n\n

            \n\n
          • \n \n \">\n \n \n \n \n - \n \n
          • \n
            \n
          ','SyndicatedContent',1,1,'PBtmpl0000000000000065',1226457084,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
          \r\n\r\n\r\n
          \r\n \r\n
          \r\n','Auth/WebGUI/Account',1,1,'PBtmpl0000000000000010',1227026287,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \n\n

          \n
          \n\n\n\n\n\n\n\n\n \n \n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n
          \n\n\n
          \n \n
          \n','Auth/WebGUI/Recovery2',1,1,'PBtmpl0000000000000014',1227218041,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n\n\n

          \n \n \">\n |\n \n \n \">^International(my subscriptions,Asset_Newsletter);\n |\n \n \">\n

          \n\n

          \n\n\n

          \">
          \n

          \n
          \n\n\n
          \n \n
          \n
          \n','newsletter',1,1,'newslettercs0000000001',1226896423,'WebGUI::Asset::Template::HTMLTemplate',1),('

          ^International(message sent label,Account_Inbox);

          \r\n

          ^International(message sent text,Account_Inbox);

          \r\n

          \">^International(back label,Account_Inbox);

          ','Account/Inbox/Confirm',1,1,'DUoxlTBXhVS-Zl3CFDpt9g',1226896802,'WebGUI::Asset::Template::HTMLTemplate',1),('

          ^International(invitation sent label,Account_Inbox);

          \r\n

          ^International(invitation sent text,Account_Inbox);

          \r\n

          \">^International(back label,Account_Inbox);

          ','Account/Inbox/InviteUserConfirm',1,1,'SVIhz68689hwUGgcDM-gWw',1226973314,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n

          ^International(error label,Account_Friends);

          \r\n

          \r\n

          \">^International(back label,Account_Inbox);

          \r\n

          \r\n','Account/Friends/Error',1,1,'7Ijdd8SW32lVgg2H8R-Aqw',1226995714,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n

          ^International(message sent label,Account_Friends);

          \r\n

          ^International(add to friends confirmation,Account_Friends,);

          \r\n

          \">^International(back to user profile,Account_Friends);

          \r\n

          ','Account/Friends/Confirm',1,1,'K8F0j_cq_jgo8dvWY_26Ag',1226995643,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n

          ^International(remove confirm label,Account_Friends);

          \r\n

          ^International(remove confirm message,Account_Friends,);

          \r\n

          \r\n \">^International(remove confirm no,Account_Friends); · \r\n \">^International(remove confirm yes,Account_Friends);\r\n

          \r\n

          ','Account/Friends/Confirm',1,1,'G5V6neXIDiFXN05oL-U3AQ',1226995768,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \" id=\"id\">\r\n\r\n \r\n
          \r\n
          \r\n\r\n \r\n

          \r\n
          \r\n\r\n\r\n \r\n
          \r\n
          ^ViewCart;
          \r\n \">^International(continue shopping button,Shop);\r\n \r\n \r\n
          \r\n
          \r\n
          \r\n\r\n \r\n \r\n \r\n \r\n \r\n
          \r\n','Donation',1,1,'vrKXEtluIhbmAS9xmPukDA',1226698051,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n \r\n

          \r\n\r\n\r\n

          ','Survey',1,1,'PBtmpl0000000000000061',1227252733,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n\r\n\r\n \"> \r\n •\r\n \"> \r\n •\r\n \"> \r\n\r\n\">

          \r\n:
          \r\n:
          \r\n: \r\n\r\n

          \r\n\r\n\r\n
          \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
          \r\n \r\n \r\n
          \r\n

          \r\n','Survey/Response',1,1,'PBtmpl0000000000000064',1226009610,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n \r\n
          default\">\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n
          \r\n','Shop/AddressBook',1,1,'3womoo7Teyy2YKFa25-MZg',1226703362,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n

          \r\n
          \r\n\r\n \r\n

          \r\n
          \r\n\r\n \r\n
          \r\n
          \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          \">
          \r\n \r\n
          \r\n\r\n \r\n

          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \r\n \r\n \r\n \r\n
          \">\r\n

          Search Results

          \r\n
          \r\n \">\r\n
          \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n · · \r\n
          \r\n
          \r\n
          \r\n','Thingy/SearchThing',1,1,'ThingyTmpl000000000004',1227044214,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n

          \r\n\r\n\r\n\r\n\r\n\r\n\">\r\n\r\n\r\n | \r\n\r\n
          \r\n
          \r\n\r\n
          \r\n\r\n
          \r\n\r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
          ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
          \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
          ^International(\'No users message\',\'Asset_UserList\');
          \r\n\r\n

          \r\n · · \r\n
          \r\n
          ','UserList',1,1,'UserListTmpl0000000001',1228125743,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n

          \r\n\r\n\r\n
          \r\n
          \r\n\r\n:
          \r\n:
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
          ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">\r\n\">
          \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
          ^International(\'No users message\',\'Asset_UserList\');
          \r\n\r\n

          \r\n · · \r\n
          \r\n
          ','UserList',1,1,'UserListTmpl0000000003',1228125758,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n

          \r\n\r\n\r\n
          \r\n
          \r\n\r\n\r\n
          \r\n^International(\'search in label\',\'Asset_UserList\');
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
          ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
          \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
          ^International(\'No users message\',\'Asset_UserList\');
          \r\n\r\n

          \r\n · · \r\n
          \r\n
          ','UserList',1,1,'UserListTmpl0000000002',1228125752,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n

          \r\n
          \r\n\r\n \r\n

          • ^International(manage things label,Asset_Thingy);

          \r\n
          \r\n\r\n \r\n
          \r\n
          \r\n\r\n \r\n \r\n \r\n\r\n \r\n
          \r\n \r\n
          rowOnerowTwo\">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          ','Thingy',1,1,'ThingyTmpl000000000001',1227753116,'WebGUI::Asset::Template::HTMLTemplate',1),('

          ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

          \r\n\r\n','Matrix/EditListing',1,1,'matrixtmpl000000000004',1228834590,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n\n\n\n \n\n\n\n \n \n

          \n \">\n \n \n \n

          \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />


          \n \n
          \n\n\n\n·\n\n·\n\n\n\n\n','Article',1,1,'PBtmpl0000000000000207',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n\n
          \" alt=\"\" border=\"0\" />
          \n
          \n
          \n\n\n \n

          \n\n\n\n\n \n

          \n \">\n \n\n

          \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

          \n
          \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000084',1229100305,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n \n \n \n \n \n
           
          /delete.gif\" border=\"0\" onclick=\"removeRow(\'\')\" style=\"cursor:pointer\" alt=\"delete\" />
          \n \n \n \n \n \n \n \n \n \n \n \n \n
          \" class=\"PM_blueLink\"> ^International(last week,Asset_TimeTracking);\" class=\"PM_blueLink\">^International(next week,Asset_TimeTracking);
           
          \n \n \n \" onclick=\"addRow();\" />   \" />\n
          \n
          \n\n\n\n \n \">\n \n \n \n \n \n \n \n \n
          /delete.gif\" border=\"0\" onclick=\"removeRow()\" style=\"cursor:pointer\" alt=\"delete\" />
          \n
          ','TimeTracking_row',1,1,'TimeTrackingTMPL000003',1229311434,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \" id=\"id\">\r\n\r\n \r\n
          \r\n
          \r\n\r\n \r\n

          \r\n
          \r\n\r\n \r\n \r\n
          \r\n \r\n

          \r\n ^ViewCart();
          \r\n \">^International(continue shopping button,Shop);\r\n \r\n ^ViewCart(); (^CartItemCount;)\r\n

          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n
            \r\n ^International(variants,Asset_Product);\r\n \r\n
          • \r\n
            \r\n
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
            \r\n ^International(30,Asset_Product);\r\n \r\n
          • \r\n
            \r\n
          \r\n
          \r\n \r\n \r\n
            \r\n ^International(54,Asset_Product);\r\n \r\n
          • \r\n
            \r\n
          \r\n
          \r\n\r\n \r\n
            \r\n ^International(31,Asset_Product);\r\n \r\n
          • :
          • \r\n
            \r\n
          \r\n
          \r\n \r\n \r\n
            \r\n ^International(32,Asset_Product);\r\n \r\n
          • \">
          • \r\n
            \r\n
          \r\n
          \r\n \r\n \r\n
            \r\n ^International(33,Asset_Product);\r\n \r\n
          • \">
          • \r\n
            \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n\r\n','Product',1,1,'PBtmpl0000000000000056',1228934532,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n\n
          \n \" alt=\"\" align=\"left\" border=\"0\" />\n\n\n\n\n \n

          \n\n\n\n\n \n

          \n \">\n \n\n\n

          \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

          \n\n\n\n\n
          \n
          \n
          \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000103',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n\n
          \n \n \n
          \n \n \">\n \" alt=\"\" border=\"0\" />
          \n
          \n \n \" alt=\"\" border=\"0\" />
          \n
          \n
          \n\n\n\n\n \n

          \n\n\n\n

          \">\" style=\"vertical-align:middle;border: 0px;\" alt=\"\" />

          \n\n\n\n\n
          \n
          \n
          \n\n\n\n·\n\n·\n\n','Article',1,1,'PBtmpl0000000000000115',1229100306,'WebGUI::Asset::Template::HTMLTemplate',1),('

          Calendar

          \r\n\r\n\r\n

          \r\n \r\n ^International(New Year,Asset_Calendar);,\r\n \r\n \r\n ^International(New Month,Asset_Calendar);,\r\n \r\n \r\n ^International(New Day,Asset_Calendar);\r\n \r\n

          \r\n\r\n

          \">

          \r\n \r\n

          \r\n\r\n
          \r\n\r\n\r\n \"><< ^International(previous page,Asset_Calendar);\r\n\r\n\r\n \">^International(next page,Asset_Calendar); >>\r\n','Calendar/Print/List',1,1,'uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n

          \r\n
          \r\n\r\n \r\n

          \r\n
          \r\n\r\n
          \r\n ^ViewCart(); (^CartItemCount;)\r\n
          \r\n\r\n \r\n
          \r\n
          \r\n \r\n\r\n \r\n
          \r\n ^International(subcategories,Asset_Shelf);: \r\n \r\n \r\n \">\r\n \r\n
          \r\n
          \r\n\r\n \r\n
          \r\n \r\n \r\n \" class=\"thumbnail\">\" alt=\"\" />\r\n \r\n \r\n
          \r\n \r\n ()\r\n
          \r\n
          \r\n
          \r\n \r\n \n \n
          \r\n
          ','Shelf',1,1,'nFen0xjkZn8WkpM93C9ceQ',1229117831,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\"> \n \n \n

          \n
          \n\n\n

          \n
          \n\n\n

          \n\n\n\n \n \n \n \n \n \n
          \n
          \n \n \n \n \n \n
          ^International(Stock Watch,Asset_StockData);\n
          \n ^International(Last Update,Asset_StockData);: EDT
          \n \n
          \n
          \n
          \n \n \n \n \n \n \n \n \n \n \n qmmt_cycleqmmt_main\'> \n \n \n \n \n \n \n \n
          Name SymbolLastTickChg
          \n \')\">\n \n /\" alt=\"\" /> \n _up_down\" style=\"text-align: right;whitespace:nowrap;\">
          \n
          ','StockData',1,1,'StockDataTMPL000000001',1229453697,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n WebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\n \n \n \n\n\n

          \n \n
          \n\n','style',1,0,'PBtmpl0000000000000137',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n
          \r\n
          ^International(hide new content list,Asset_Dashboard);
          \r\n
          \r\n
          \r\n\r\n\r\n\">\r\n
          _div\" class=\"dragable\">\r\n
          _div\">
          \r\n
          \r\n
          \r\n\r\n
          Add New Content
          \r\n\r\n

          \r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n\r\n

          \r\n
          \r\n\r\n\r\n\r\n\r\n

          \r\n\r\n

          \r\n
          \r\n
          ^L(\"17\",\"\",\"PBtmpl0000000000000092\"); ^AdminToggle(Modify the Default User\'s Perspective,Leave Default User Perspective (Admin Mode));
          \r\n
          \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
          \r\n\r\n\r\n \">\r\n\r\n
          _div\" class=\"dragable\">\r\n
          _div\">
          \r\n
          \r\n\r\n\r\n\r\n\">\r\n\r\n
          _div\" class=\"dragable\">\r\n
          _div\">
          \r\n
          \r\n\r\n\r\n\">\r\n\r\n
          _div\" class=\"dragable\">\r\n
          _div\">
          \r\n
          \r\n
          \r\n
           
          \r\n\r\n
          ','Dashboard',1,1,'DashboardViewTmpl00001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\">\n\n

          \n

          \n\n\n

          \n • \">\n \n • \" onclick=\"\">\n \n \n • \">\n • \">\n \n
          \n
          \n\n\n\n\n\n \n \n \n\n\n\n\n\n \n \n \n \n \n \n \n\n\n
          ^International(Entry ID,Asset_DataForm);^International(Submission Date,Asset_DataForm);
          \">
          ','DataForm/List',1,1,'PBtmpl0000000000000021',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n<tmpl_var title>\n\n\n/taskEdit.css\" />\n\n\n
          \">\n\" />\n\n\" />\n\" />\n
          \n
          \" size=\"20\" class=\"inputBox\" />\n\n
          \n\n

          \n

          \n','ProjectManager_resourcePopup',1,1,'ProjectManagerTMPL0005',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n
          \n\n\n

          \n
          \n\n\n
          \n \n
          \n
          \n\n\n\n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \n \"> \n
          \">
          \n \">\n \n
          \n
          %;\">
          \n
          %
          \n
          \n
          \n \n \">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n \'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
          ','ProjectManager_dashboard',1,1,'ProjectManagerTMPL0001',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n

          \r\n\r\n
          \r\n
            \r\n
          • \r\n
          • \r\n
          \r\n
          \r\n
          \r\n
          \r\n

          ^International(keywords,Asset);: \">

          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n\r\n
          \"> | \"> | \"> | \">
          ','WikiPage',1,1,'WikiPageTmpl0000000001',1229706257,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n \n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n
           
          ^International(has posted to one of your subscriptions,Asset_Collaboration);
          \">
            
          \n

          \">

          ','Collaboration/Notification',1,1,'PBtmpl0000000000000027',1230159257,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n

          \n\n\n\n \n \n \n \n \n ^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n\n\n\n\n\n \n \n \n \n \n ^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n','HttpProxy',1,1,'PBtmpl0000000000000033',1230159454,'WebGUI::Asset::Template::HTMLTemplate',1),('

          ^International(post received,Asset_Post);

          \">^International(493,WebGUI);

          ','Collaboration/PostReceived',1,1,'default_post_received1',1230356300,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n \n

          \n\n\n\n \">^International(Download this data,Asset_SQLReport);\n\n\n\n

            \n \n
          • \n
            \n
          \n
          \n\n\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
          \">\n \n \n \n \n \n
           \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \">\n \n \n \n \n \n
           \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \">\n \n \n \n \n \n
           \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \">\n \n \n \n \n \n
           \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n\n\n
          \n \n
          \n
          ','SQLReport',1,1,'PBtmpl0000000000000059',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1),('\n

          \n
          \n\n\n

          \n
          \n\n\n\n
          \n\n

          \n\n

          \n
          ','Navigation',1,1,'PBtmpl0000000000000117',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

          \r\n
          \r\n\r\n

          \r\n\r\n\r\n
          \r\n :     [ \"> \"> ]
          \r\n
          \r\n
          \r\n\r\n\r\n ^International(job description,Asset_Collaboration);
          \r\n

          \r\n
          \r\n\r\n\r\n ^International(job requirements,Asset_Collaboration);
          \r\n

          \r\n
          \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
          ^International(date posted,Asset_Collaboration); 
          ^International(location,Asset_Collaboration); 
          ^International(compensation,Asset_Collaboration); 
          ^International(views,Asset_Collaboration); 
          \r\n\r\n\r\n
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
          \r\n
          \r\n\r\n\r\n\r\n
          \r\n

          \r\n
          \r\n
          \r\n \r\n \">\r\n \r\n \">\r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          Current\">\r\n \">\r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n :
          \r\n
          \r\n
          \r\n :
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n \r\n :
          \r\n
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          px;\">\r\n
          Current\">\r\n \">\r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n :
          \r\n
          \r\n
          \r\n :
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n \r\n :
          \r\n
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n \r\n \r\n
          \r\n [ | | ]\r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n \r\n \"> \r\n •\r\n \r\n \"> \r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \"> \r\n \r\n \">\r\n \r\n \r\n
          ','Collaboration/Thread',1,1,'PBtmpl0000000000000098',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\"> \r\n\r\n \r\n

          \r\n
          \r\n\r\n

          \r\n\r\n\r\n
          \r\n :     [ \"> \"> ]
          \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n ^International(Link Description,Asset_Collaboration);

          \r\n
          \r\n \r\n ^International(Link URL,Asset_Collaboration);

          \r\n \">

          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n
          \r\n\r\n\r\n
          \r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \">\r\n \r\n
          \r\n
          \r\n\r\n\r\n\r\n
          \r\n

          \r\n
          \r\n
          \r\n \r\n \">\r\n \r\n \">\r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          Current\">\r\n \" id=\"id\">\r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n :
          \r\n
          \r\n
          \r\n :
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n \r\n :
          \r\n
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \"> • \r\n \r\n \r\n \"> •\r\n \">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          px;\">\r\n
          Current\">\r\n \" id=\"id\">\r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
          \r\n :
          \r\n
          \r\n
          \r\n :
          \r\n : \r\n \r\n     [
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          |
          \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
          ]\r\n
          \r\n
          \r\n \r\n :
          \r\n
          \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n \"> •\r\n \r\n \r\n \"> • \r\n \">\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n \r\n \r\n
          \r\n [ | | ]\r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n \r\n \"> \r\n •\r\n \r\n \">^International(List All Links,Asset_Collaboration);\r\n \r\n •\r\n \"> \r\n \r\n \r\n •\r\n \">\r\n \r\n \r\n •\r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
          ','Collaboration/Thread',1,1,'PBtmpl0000000000000113',1229581394,'WebGUI::Asset::Template::HTMLTemplate',1),('\"> \n \n \n

          \n
          \n\n\n

          \n
          \n\n\n

          \n\n\n

          \n
          \n\n\n \n \n\n\n \n \n\n
          ^International(364,WebGUI);:\n \n
          ^International(For,WebGUI);: 
          \n
          \n
          ','MultiSearch',1,1,'MultiSearchTmpl0000001',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
          \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n\r\n \r\n
          \r\n \r\n
          \r\n
          \r\n , , \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n
          :00
          \r\n
          \r\n
            \r\n
          • \r\n \">\r\n
          • \r\n
          \r\n
          \r\n
          ','Calendar/Day',1,1,'CalendarDay00000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
          \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n \r\n
          \r\n \r\n \r\n
          \r\n ^International(event details,Asset_Event);\r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
          \r\n
          ^International(event title,Asset_Event);
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          ^International(location,Asset_Event);
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          ^International(description,Asset_Event);
          \r\n
          \r\n
          \r\n
          \r\n
          ^International(scheduled,Asset_Event);
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          ^International(related material,Asset_Event);
          \r\n
          \r\n \r\n
          \r\n
          ^International(attachments,Asset_Event);
          \r\n
          \r\n \"> \" />
          \r\n
          \r\n
          \r\n
          ','Calendar/Event',1,1,'CalendarEvent000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n
          \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
          \r\n \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          active current\">\r\n \r\n \">\r\n \r\n \r\n \r\n \" class=\"moreButton\" onmouseover=\"return showEvents(\'overlay\');\">\r\n /wobject/Calendar/images/more.gif\" />\r\n \r\n \r\n \r\n \r\n
          \r\n
          \r\n\r\n
          \" class=\"moreDisplay\">\r\n
          \r\n
            \r\n \r\n
          • \">
          • \r\n
            \r\n
          \r\n
          \r\n
          \r\n
          ','Calendar/Month',1,1,'CalendarMonth000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
          \r\n ?type=day\">^International(label day,Asset_Calendar);\r\n ?type=week\">^International(label week,Asset_Calendar);\r\n ?type=month\">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n
          \r\n  \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
          \r\n
          ^International(keyword,Asset_Calendar);
          \r\n
          \r\n
          \r\n
          ^International(start date,Asset_Calendar);
          \r\n
          \r\n
          \r\n
          ^International(end date,Asset_Calendar);
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
          \r\n
          \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
          \r\n
          \r\n
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n
          \r\n
          \r\n \" style=\"padding-left:10px\">\r\n
          \r\n
          \r\n
          \r\n \r\n \r\n \r\n
          \r\n
          \r\n
          ','Calendar/Search',1,1,'CalendarSearch00000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
          \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
          \r\n \r\n
          \r\n
          \r\n , to , \r\n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n
          \r\n
          curDay\"> \r\n \r\n \r\n
          \r\n
          \r\n
          ','Calendar/Week',1,1,'CalendarWeek0000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n

          ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

          \r\n\r\n

          ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

          \r\n\r\n \r\n

          \r\n
          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(\'template upload type\',\'Asset_GalleryAlbum\');\r\n \" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\r\n ^International(\'template upload archive\',\'Asset_GalleryAlbum\');\r\n
          ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\r\n \r\n
          ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\r\n \r\n
          ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
          \r\n \r\n
          \r\n \r\n
          \r\n \r\n \r\n\r\n
          ','GalleryAlbum/AddArchive',1,1,'0X4Q3tBWUb_thsVbsYz9xQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','GalleryAlbum/ViewRss',1,1,'mM3bjP_iG9sv5nQb4S17tQ',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListAlbumsRss',1,1,'ilu5BrM-VGaOsec9Lm7M6Q',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListFilesForUserRss',1,1,'-ANLpoTEP-n4POAdRxCzRw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
          \r\n \r\n \r\n
          \r\n
          \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
          \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
          \r\n
          \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
          \r\n\r\n \r\n\r\n
          \r\n
          \r\n \"Previous\r\n \r\n \"Next\r\n
          \r\n
          \r\n \r\n
          \r\n \r\n
          \r\n \">\" style=\"border: none\" /> \r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          ','GalleryAlbum/ViewSlideshow',1,1,'KAMdiUdJykjN02CPHpyZOw',1230581176,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \n
            \n
          • \n
          \n
          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \n \r\n \r\n \r\n \r\n \n \r\n \r\n \r\n \r\n
          \r\n \r\n\r\n
          \n','Shop/Credentials',1,1,'itransact_credentials1',1228953856,'WebGUI::Asset::Template::HTMLTemplate',1),('\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n \n \n \n \n \n \n
          \n
          \n \n \n \n \n \n
          ()\n \n
          1:23 PM EDT
          \n \n
          \n
          \n
          \n
          \n \n \n \n \n \n \n
          \n &t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n \n \n \n \n \n \n \n \n \n \n
          Today5d1m3m1y5y20y
          \n
          \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          ^International(stocks.last,Asset_StockData);
          ^International(Market Cap,Asset_StockData);
          ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n /\' alt=\"\" /> \n
          ^International(Open,Asset_StockData);
          ^International(Day High,Asset_StockData);
          ^International(stocks.bid,Asset_StockData);
          ^International(52 Wk High,Asset_StockData);
          ^International(EPS,Asset_StockData);
          ^International(stocks.ex_div,Asset_StockData);
          ^International(Yield,Asset_StockData);
          \n
          \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          ^International(Last Trade,Asset_StockData);
          ^International(Volume,Asset_StockData); m
          ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
          ^International(Prev Close,Asset_StockData);
          ^International(Day Low,Asset_StockData);
          ^International(stocks.ask,Asset_StockData);
          ^International(52 Wk Low,Asset_StockData);
          ^International(stocks.pe,Asset_StockData);
          ^International(Dividend,Asset_StockData);
          ^International(Exchange,Asset_StockData);
          \n
          \n
          \n\n\n\n','StockData/Display',1,1,'StockDataTMPL000000002',1229494994,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

          \n
          \n\n\n

          \n
          \n\n\n

          \n\n\n

          \n\n \">\n\n \n\n

          \n\n\n

          \n\n\n\n \n \n
          \n \n
          \n \n
          \n \" style=\"font-size: 9px;\">^International(read more,WebGUI);...\n
          \n
          \n
          \n
          ','SyndicatedContent',1,1,'GNvjCFQWjY2AF2uf0aCM8Q',1230356300,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n
          ^International(\'please enter section information\',\'Asset_Survey\');
          \r\n
          \r\n
          \r\n\r\n
          \r\n

          ^International(\'section number\',\'Asset_Survey\');
          ^International(\'section number description\',\'Asset_Survey\');

          \r\n \'>\r\n \r\n \r\n

          ^International(\'section name\',\'Asset_Survey\');
          ^International(\'section name description\',\'Asset_Survey\');
          \' type=text>

          \r\n
          \r\n

          ^International(\'randomize questions\',\'Asset_Survey\');
          ^International(\'randomize questions description\',\'Asset_Survey\');

          \r\n\r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');\r\n\r\n

          ^International(\'section custom variable name\',\'Asset_Survey\');
          ^International(\'section custom variable name description\',\'Asset_Survey\');
          \' name=variable size=2>

          \r\n

          ^International(\'section branch goto variable name\',\'Asset_Survey\');
          ^International(\'section branch goto variable name description\',\'Asset_Survey\');
          \' name=goto size=2>

          \r\n

          ^International(\'questions per page\',\'Asset_Survey\');
          ^International(\'questions per page description\',\'Asset_Survey\');
          \r\n

          \r\n
          \r\n

          ^International(\'questions on section page\',\'Asset_Survey\');
          ^International(\'questions on section page description\',\'Asset_Survey\');
          \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

          \r\n


          \r\n\r\n

          ^International(\'title on every page\',\'Asset_Survey\');
          ^International(\'title on every page description\',\'Asset_Survey\');
          \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

          \r\n

          ^International(\'text on every page\',\'Asset_Survey\');
          ^International(\'text on every page description\',\'Asset_Survey\');
          \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

          \r\n

          ^International(\'terminal section\',\'Asset_Survey\');
          ^International(\'terminal section description\',\'Asset_Survey\');
          \r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n \r\n ^International(\'yes\',\'Asset_Survey\');\r\n ^International(\'no\',\'Asset_Survey\');\r\n

          \r\n

          ^International(\'terminal section url\',\'Asset_Survey\');
          ^International(\'terminal section url description\',\'Asset_Survey\');
          \'>\r\n
          \r\n

          ^International(\'section text\',\'Asset_Survey\');
          ^International(\'section text description\',\'Asset_Survey\');

          \r\n
          \r\n
          \r\n\r\n','Survey/Edit',1,1,'1oBRscNIcFOI-pETrCOspA',1232648656,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n\r\n\r\n\r\n\r\n

          \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
          ^International(\'user label\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
          /%
          \r\n\r\n\r\n\r\n
          \r\n · · \r\n
          \r\n
          \r\n','Survey/Gradebook',1,1,'PBtmpl0000000000000062',1232981641,'WebGUI::Asset::Template::HTMLTemplate',1),('

          \r\n\r\n\r\n\r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \" style=\"display:none;\">\r\n \r\n \r\n \r\n \r\n
          ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
          \');\">^International(\'show comments label\',\'Asset_Survey\');
          \r\n \r\n

          \r\n
          \r\n
          \r\n \r\n
          \r\n \');\">^International(\'show responses label\',\'Asset_Survey\');\r\n
          \r\n
          \" style=\"display:none;\">\r\n \r\n

          \r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n


          \r\n
          \r\n\r\n\r\n
          \r\n · · \r\n
          \r\n
          \r\n','Survey/Overview',1,1,'PBtmpl0000000000000063',1233156264,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
          \r\n \r\n \r\n
          \r\n\r\n
          \r\n\" class=\"WGprofile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\r\n
          WGsubContentWGprofile_displaySubContent\">\r\n
          \r\n
          \r\n
          \r\n \r\n \" class=\"WGview\">^International(profile as others label,Account_Profile);\r\n \r\n \r\n
          \r\n
          \r\n \r\n
          * -  ^International(\'required field\',Account_Profile);
          † - ^International(\'set by admin\',Account_Profile);
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n','Account/Layout',1,1,'FJbUTvZ2nUTn65LpW6gjsA',1232735095,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
          \">\r\n
          \r\n\r\n
          \r\n
          \r\n
          \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
          \r\n\r\n \r\n

          \r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          *
          \r\n \r\n \r\n
          \r\n\r\n
          \r\n
          \r\n
          ','Account/Profile/Edit',1,1,'75CmQgpcCSkdsL-oawdn3Q',1232561177,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n\r\n\r\n
          \r\n );\'\"/>\r\n  \r\n );\'\"/>\r\n
          \r\n\r\n \r\n
          \r\n ^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\r\n
          \r\n\r\n
          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          colspan=2 class=\"bar\">\r\n
          \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          32\" class=\"bar\">
          greenredblue;\">
          \r\n
          \r\n );\" class=\"WGphotostyle\"/>
          \r\n
          \r\n \r\n
          \r\n );\'\"/>\r\n  \r\n );\'\"/>\r\n
          \r\n\r\n
          \r\n','Account/Profile/View',1,1,'2CS-BErrjMmESOtGT90qOg',1232955105,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n

          ^International(error label,Account_Inbox);

          \r\n

          \r\n

          \">^International(back label,Account_Profile);

          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          ','Account/Profile/Error',1,1,'MBmWlA_YEA2I6D29OMGtRg',1228753307,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n
          \r\n','Account/Layout',1,1,'gfZOwaTWYjbSoVaQtHBBEw',1232735116,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n\r\n
          \r\n\r\n

          \r\n
          \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

          \r\n

          \r\n disabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\r\n \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\r\n

          \r\n
          \r\n

          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(subject label,Account_Inbox);:
          ^International(from label,Account_Inbox);:
          ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
          ^International(status label,Account_Inbox);:
          \r\n
          \r\n
          \r\n \r\n\r\n
          \r\n\r\n
          \r\n','Account/Inbox/ViewMessage',1,1,'0n4HtbXaWa_XJHkFjetnLQ',1233168324,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
          \r\n
          \r\n\r\n

          \r\n
          \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

          \r\n\r\n

          \r\n \r\n \r\n\r\n \r\n \r\n \" class=\"prevNext\">\"Previous\" \r\n \"> \r\n  \" class=\"prevNext\">\"Next\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n

          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WGoddThreadWGevenThread\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \">^International(from label,Account_Inbox);\">^International(invitation label,Account_Inbox);\">^International(date label,Account_Inbox);
          \" class=\"WGinbox_from\">\">^International(invitation message,Account_Inbox,);
          ^International(no invitations,Account_Inbox);
          \r\n \r\n

          \r\n \r\n \r\n\r\n \r\n \r\n \" class=\"prevNext\">\"Previous\" \r\n \"> \r\n  \" class=\"prevNext\">\"Next\"\r\n \r\n \r\n \r\n \r\n \r\n \r\n

          \r\n\r\n

          \r\n ^International(invitation count,\'Account_Inbox\');\r\n

          \r\n\r\n
          \r\n
          \r\n','Account/Inbox/ManageInvitations',1,1,'1Q4Je3hKCJzeo0ZBB5YB8g',1232753312,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
          \r\n \r\n
          \r\n\r\n

          \r\n
          \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

          \r\n
          \r\n \'\" /> \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\r\n
          \r\n \r\n

          \r\n

          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(from label,Account_Inbox);:
          ^International(received label,Account_Inbox);:
          ^D(\"%z %Z\",);
          \r\n
          \r\n\r\n
          \r\n\r\n
          \r\n','Account/Inbox/ViewInvitation',1,1,'VBkY05f-E3WJS50WpdKd1Q',1233168685,'WebGUI::Asset::Template::HTMLTemplate',1),(' \r\n
          \r\n \r\n
          \r\n\r\n

          \r\n
          \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n

          \r\n\r\n

          \r\n ^International(invite a friend,Account_Inbox);\r\n

          \r\n \r\n\r\n

          \r\n\r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(to label,Account_Inbox);:
          ^International(subject label,Account_Inbox);:
          \r\n   \r\n \'\" />\r\n
          \r\n\r\n
          \r\n
          \r\n','Account/Inbox/InviteUser',1,1,'cR0UFm7I1qUI2Wbpj--08Q',1232464762,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n
          \r\n\" class=\"WGprofile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'back label\',\'Account_Friends\');\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          ','Account/Layout',1,1,'zrNpGbT3odfIkg6nFSUy8Q',1232735138,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n
          \r\n\r\n\r\n

          \r\n
          \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n

          \r\n\r\n \r\n\r\n
          \r\n\r\n
          \r\n\r\n

          \r\n \r\n \r\n \r\n

          \r\n \r\n \r\n \r\n

          \r\n\r\n \r\n
          class=\"bordered\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \">\"\"^Extras(account/images/no_photo.gif);\"/>\r\n \">
          \r\n \r\n ^International(member since,Account_Friends); ^D(%z,);
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n

          \r\n \r\n \r\n \r\n

          \r\n \r\n \r\n \r\n

          \r\n\r\n
          \r\n','Account/Friends/View',1,1,'1Yn_zE_dSiNuaBGNLPbxtw',1232952380,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n\r\n
          \r\n\r\n
          \r\n
          \r\n ^International(member since,Account_Inbox); ^D(%z,);\r\n
          \r\n\r\n \r\n\r\n
          \r\n\r\n
          \r\n\r\n

          \r\n \r\n \r\n \r\n

          \r\n \r\n \r\n \r\n

          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
          class=\"WGbordered\" >\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \">\"Friend^Extras(account/images/no_photo.gif);\"/>
          ^International(online,Friends);^International(offline,Friends);
          \r\n \">
          \r\n \r\n ^International(member since,Account_Friends); ^D(%z,);
          \r\n ^User(homeCountry,);\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n

          \r\n \r\n \r\n \r\n

          \r\n \r\n \r\n \r\n

          \r\n\r\n
          \r\n\r\n
          \r\n','Account/Friends/Edit',1,1,'AZFU33p0jpPJ-E6qLSWZng',1232951869,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n
          \r\n \r\n

          \r\n
          \r\n ^International(member since,Account_Friends); ^D(%z,);\r\n

          \r\n \r\n

          ^International(add to network label,Account_Friends);

          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(adding user message,Account_Friends,);
          ^International(sending to message,Account_Friends);
          \r\n\r\n
          \r\n\r\n','Account/Friends/SendRequest',1,1,'AGJBGviWGAwjnwziiPjvDg',1232569232,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          ','Account/Layout',1,1,'9ThW278DWLV0-Svf68ljFQ',1232735163,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          ','Account/Layout',1,1,'aUDsJ-vB9RgP-AYvPOy8FQ',1232735191,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n
          ','Account/Layout',1,1,'b4n3VyUIsAHyIvT-W-jziA',1232735307,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n \r\n
          \r\n\r\n
          \r\n','Account/Layout',1,1,'N716tpSna0iIQTKxS4gTWA',1232734726,'WebGUI::Asset::Template::HTMLTemplate',1),(' \n\n \n \n \n \n \n
          \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          \n
          \n ^International(member since,Account_Inbox); ^D(%z,);\n
          ^International(reply message label,Account_Inbox);^International(compose message label,Account_Inbox);
          \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
          class=\"inbox_messageTo\"> [];
          ^International(subject label,Account_Inbox);:
          32\" class=\"send\">\n   \n \'\" />\n
          \n
          \n
          \n\n
          \n \n \n \n \n \n \n \n \n \n \n \n \n
          \n \n \n
          \n
          \n \n \n \n \n \n \n \n \n \n
          _name\"> []
          \n
          \n
          \n \n \n
          \n
          \n
          \n','Account/Inbox/SendMessage',1,1,'6uQEULvXFgCYlRWnYzZsuA',1233874321,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n

          ^International(errors,Asset_Event);

          \r\n
            \r\n\r\n
          • \r\n
            \r\n
          \r\n
          \r\n\r\n\r\n\r\n \r\n\r\n
          \r\n ^International(tab event,Asset_Event);\r\n ^International(recurrence,Asset_Event);\r\n \r\n \r\n
          \r\n\r\n\r\n\r\n\r\n \r\n\r\n
          \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          ^International(event title,Asset_Event);
          ^International(short title,Asset_Event);
          ^International(location,Asset_Event);
          ^International(description,Asset_Event);
          ^International(start date,Asset_Event);
          ^International(end date,Asset_Event);
          ^International(time,Asset_Event);
           
          ^International(related material,Asset_Event);\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \'> \r\n \r\n \r\n \r\n \r\n \r\n\r\n
          \r\n\r\n
          \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\r\n \' value=\'\'>\r\n \' value=\"\">\r\n
          \'>\r\n\' name=\'\' value=\'\'>\r\n\' name=\'rel_delconfirm_\' value=\'0\'>\r\n
          \r\n
          \r\n
          ^International(group to view,Asset_Event);
          ^International(attachments for event,Asset_Event);
          \r\n
          \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
          ^International(recurrence pattern,Asset_Event);
          ^International(recurrence range,Asset_Event);\r\n

          ^International(start,Asset_Event);:

          \r\n

          \r\n

          ^International(end,Asset_Event);:

          \r\n
          \r\n
          \r\n\r\n\r\n\r\n\r\n','Calendar/EventEdit',1,1,'CalendarEventEdit00001',1233698348,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \" class=\"dataTable\">\r\n\r\n\r\n \r\n\r\n\r\n\r\n

          \r\n
          \r\n\r\n
          \r\n \r\n
          \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n
          ','DataTable',1,1,'TuYPpHx7TUyk08639Pc8Bg',1233861621,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \" class=\"dataTable\">\r\n\r\n\r\n

          \r\n
          \r\n\r\n\r\n

          \r\n
          \r\n\r\n
          \r\n\r\n
          \r\n\r\n
          \r\n\r\n
          \r\n
          ','DataTable',1,1,'3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \n \n\n
          \n
          \n \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n \n
          \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
          \n\n

          \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n
          ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
          ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
          ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
          \n
          \n
          \n\n ^International(\'editForm assetIdThumbnail label\',\'Asset_GalleryAlbum\');

          \n \n
          \n
          \n \n\n
          \n

          \n
          \n\n
          \n \n
          \n
           
          \n
          \n
          \n
          \n\n\n
          \n \n
          \n \n
          ','GalleryAlbum/Edit',1,1,'6X-7Twabn5KKO_AbgK3PEw',1233872216,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \n \n\n
          \n
          \n
          \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
          \n
          \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
          \n\n

          \n\n

          \n\n \n

          ^International(\'template error happened\',\'Asset_Photo\');

          \n
            \n \n
          • \n
            \n
          \n
          \n\n \n\n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n ^International(\'template upload single\',\'Asset_GalleryAlbum\');\n \" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
          ^International(\'editForm title label\',\'Asset_Photo\');\n \n
          ^International(\'editForm synopsis label\',\'Asset_Photo\');\n \n
          ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n \n
          ^International(\'editForm keywords\',\'Asset_Photo\');\n \n
          ^International(\'editForm location\',\'Asset_Photo\');\n \n
          ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n \n
          \n\n \n\n \n\n
          ','GalleryFile/Edit',1,1,'7JCTAiu1U_bT9ldr655Blw',1233872075,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \n \n\n
          \n
          \n
          \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
          \n
          \n ^International(template makeShortcut title,Asset_Photo);\n
          \n\n

          \n\n
          \n\n \n \n \n \n \n \n \n \n \n \n
          ^International(template makeShortcut file,Asset_Photo);
          ^International(template makeShortcut album,Asset_Photo);
          \n\n
          \n \n
          \n\n \n
          \n
          ','GalleryFile/MakeShortcut',1,1,'m3IbBavqzuKDd2PGGhKPlA',1233871747,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \n
          ^International(\'please enter answer information\',\'Asset_Survey\');
          \n
          \n\n
          \n\n \n
          \n

          ^International(\'answer number\',\'Asset_Survey\');
          ^International(\'answer number description\',\'Asset_Survey\');
          \n \'>\n

          \n

          ^International(\'verbatim label\',\'Asset_Survey\');
          ^International(\'verbatim description\',\'Asset_Survey\');
          \n ^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\n ^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');

          \n

          ^International(\'min\',\'Asset_Survey\');
          ^International(\'min description\',\'Asset_Survey\');
          \' name=min size=2>

          \n

          ^International(\'max label\',\'Asset_Survey\');
          ^International(\'max description\',\'Asset_Survey\');
          \' name=max size=2>

          \n

          ^International(\'step label\',\'Asset_Survey\');
          ^International(\'step description\',\'Asset_Survey\');
          \' name=step size=2>

          \n\n
          \n\n

          ^International(\'recorded answer\',\'Asset_Survey\');
          ^International(\'recorded answer description\',\'Asset_Survey\');

          \n

          ^International(\'jump to\',\'Asset_Survey\');
          ^International(\'jump to description\',\'Asset_Survey\');
          \' name=goto size=4>\n

          ^International(\'text answer\',\'Asset_Survey\');

          ^International(\'cols\',\'Asset_Survey\');
          ^International(\'cols description\',\'Asset_Survey\');
          \' name=textCols>\n
          ^International(\'rows\',\'Asset_Survey\');
          ^International(\'rows description\',\'Asset_Survey\');
          \n \' name=textRows>

          \n

          ^International(\'is this the correct answer\',\'Asset_Survey\');
          ^International(\'is this the correct answer description\',\'Asset_Survey\');
          \n checked>^International(\'yes\',\'Asset_Survey\');\n checked>^International(\'no\',\'Asset_Survey\');

          \n\n

          ^International(\'answer value\',\'Asset_Survey\');
          ^International(\'answer value description\',\'Asset_Survey\');
          \' name=value>

          \n
          \n

          ^International(\'answer text\',\'Asset_Survey\');
          ^International(\'answer text description\',\'Asset_Survey\');

          \n
          \n
          \n
          ','Survey/Edit',1,1,'AjhlNO3wZvN5k4i4qioWcg',1233874172,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n
          ^International(\'please enter question information\',\'Asset_Survey\');
          \r\n
          \r\n
          \r\n\r\n\r\n\r\n
          \r\n

          ^International(\'question number\',\'Asset_Survey\');
          ^International(\'question number description\',\'Asset_Survey\');

          \r\n \'>\r\n \r\n \r\n

          ^International(\'question text\',\'Asset_Survey\');
          ^International(\'question text description\',\'Asset_Survey\');
          \r\n

          \r\n

          ^International(\'question variable name\',\'Asset_Survey\');
          ^International(\'question variable name description\',\'Asset_Survey\');
          \' name=variable size=2>

          \r\n

          ^International(\'randomize answers\',\'Asset_Survey\');
          ^International(\'randomize answers description\',\'Asset_Survey\');
          \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

          \r\n

          ^International(\'question type\',\'Asset_Survey\');
          ^International(\'question type description\',\'Asset_Survey\');
          \r\n

          \r\n\r\n
          \r\n\r\n

          ^International(\'vertical display\',\'Asset_Survey\');
          ^International(\'vertical display description\',\'Asset_Survey\');
          \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

          \r\n

          ^International(\'show text in button\',\'Asset_Survey\');
          ^International(\'show text in button description\',\'Asset_Survey\');
          \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

          \r\n\r\n

          ^International(\'allow comment\',\'Asset_Survey\');
          ^International(\'allow comment description\',\'Asset_Survey\');
          \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');\r\n   
          ^International(\'cols\',\'Asset_Survey\');
          ^International(\'cols description\',\'Asset_Survey\');
          \' name=commentCols> \r\n
          ^International(\'rows\',\'Asset_Survey\');
          ^International(\'rows description\',\'Asset_Survey\');
          \r\n \' name=commentRows>
          \r\n

          \r\n

          ^International(\'maximum number of answers\',\'Asset_Survey\');
          ^International(\'maximum number of answers description\',\'Asset_Survey\');
          \' name=maxAnswers size=2>

          \r\n

          ^International(\'required label\',\'Asset_Survey\');
          ^International(\'required description\',\'Asset_Survey\');
          \r\n checked >^International(\'yes\',\'Asset_Survey\');\r\n checked >^International(\'no\',\'Asset_Survey\');

          \r\n

          ^International(\'question value\',\'Asset_Survey\');
          ^International(\'question value description\',\'Asset_Survey\');
          \' name=value>

          \r\n
          \r\n
          \r\n
          \r\n
          ','Survey/Edit',1,1,'wAc4azJViVTpo-2NYOXWvg',1233872588,'WebGUI::Asset::Template::HTMLTemplate',1),('
          \r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n out of \r\n
          \r\n
          \r\n\r\n
          \r\n minutes left\r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n\r\n\r\n
          \r\n

          required\'>

          \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \' id=\'\' size=\'50\' />\r\n \r\n \r\n verbatim\' >\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \' value=\'\'>\r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n
          \r\n
          \r\n \r\n verbatim\'>\r\n \r\n \r\n
          \r\n
          \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
          \r\n \r\n button\" value=\"\">\r\n \r\n button\">\r\n \r\n \" id=\"\" value=\"\">\r\n \r\n \r\n \r\n verbatim\' name=\'verbatim\'>\r\n
          \r\n \r\n
          \r\n \r\n button\" value=\"\">\r\n \r\n button\">\r\n \r\n \" id=\"\" value=\"\">\r\n \r\n verbatim\' name=\'verbatim\'>\r\n \r\n
          \r\n
          \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
          container\'>
          \r\n \' id=\'\' type=text>\r\n button\'>\r\n \r\n verbatim\'>\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n \' name=\'\' value=0>\r\n \r\n \r\n \' name=\'\' value=\"\">\r\n \r\n\r\n \r\n

          \r\n
          \r\n \r\n show\'>0\r\n \r\n \r\n \r\n show\'>\r\n \r\n
          0  \r\n
          slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\r\n \r\n
          slider-min-thumb\' class=slider-min-thumb>\r\n \r\n
          \r\n \r\n
          slider-max-thumb\' class=slider-max-thumb>\r\n \r\n
          \r\n
          \r\n \r\n \r\n
          \r\n \r\n
          \r\n\r\n
          \r\n\r\n \r\n \r\n \r\n\r\n \r\n

          \r\n
          \r\n | \' name=\'\'> | \r\n \r\n
          0  \r\n
          slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\r\n
          slider-thumb\' class=slider-thumb>\r\n \r\n
          \r\n
          \r\n
          \r\n
          \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n

          Comment:

          \r\n
          \r\n\r\n\r\n
          \r\n
          \r\n
          \r\n\r\n
          \r\n\r\n
          \r\n\r\n\r\n\r\n\r\n\r\n\r\n','Survey/Take',1,1,'CxMpE_UPauZA3p8jdrOABw',1233698297,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\nWebGUI ^International(assetName,Asset_Survey);\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n\r\n
          \r\n\r\n
          \r\n\r\n
            \r\n\r\n
            \r\n
            \r\n\r\n\r\n\r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n\r\n','Survey/Edit',1,1,'GRUNFctldUgop-qRLuo_DA',1233698093,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \r\n

            \r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n
            \r\n
            \r\n \r\n >\r\n\r\n
            ','Survey/Take',1,1,'d8jMMMRddSQ7twP4l1ZSIw',1234040817,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

            \n
            \n\n\n

            \n
            \n\n

            \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
            \n\n\n\n

            \n \n
            \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000029',1234392043,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

            \n

            \n

            \n\n\n

            \n\n

            \n
            \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
            \n\n\n\n
            \n

            \n \n
            \n
            \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000068',1234393332,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

            \n

            \n\n\n

            \n\n

            \n
            \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
            \n\n\n\n
            \n

            \n \n
            \n
            \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000099',1234393376,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n
            \n

            \n

            \n

            \n

            \n

            \n
            \n\n\n

            \n\n

            \n
            \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
            \n\n\n\n
            \n

            \n \n

            \n

            \n

            \n
            \n
            \n

            \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000122',1234393411,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n

            \n\n\n

            \n\n

            \n
            \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
            \n\n\n\n \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000114',1234393441,'WebGUI::Asset::Template::HTMLTemplate',1),('\" id=\"id\">\n\n\n

            \n
            \n\n\n

            \n
            \n\n

            \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
            \n\n
            \n\n\n\n

            \n \n
            \n','Collaboration/PostForm',1,1,'PBtmpl0000000000000210',1234393614,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \n
            \n\n

            \n
            \n ^International(member since,Account_Inbox); ^D(%z,);\n

            \n \n

            \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

            \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n
            \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
            \">^D(,);
            ^International(no contributions,Account_Contributions);
            \n \n

            \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

            \n \n \n

            ^International(contribution count,\'Account_Contributions\');

            \n
            \n
            ','Account/Contrib/View',1,1,'1IzRpX0tgW7iuCfaU2Kk0A',1234924646,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \n \n \n
            \n
            \n
            \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
            \n
            \n^International(template url_delete,Asset_Photo);\n
            \n\n

            \n\n \n\n
            ','GalleryAlbum/Delete',1,1,'UTNFeV7B_aSCRmmaFCq4Vw',1234568788,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \n \n \n
            \n
            \n
            \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
            \n
            \n^International(template url_delete,Asset_Photo);\n
            \n\n

            \n\n \n
            ','GalleryFile/Delete',1,1,'zcX-wIUct0S_np14xxOA-A',1234568742,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \n \n\n
            \n
            \n
            \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \"\"\n \n \"\"\n \"\"\n \n \"\"\n
            \n
            \n
            \n\n

            \n\n
            \n ^International(\"template comment add title\",\"Asset_Photo\");\n ^International(\"template comment edit title\",\"Asset_Photo\");\n \n \n
            \n
            \n \n
            \n \n
            \n
            \n \n
            \n
            ','GalleryFile/EditComment',1,1,'OxJWQgnGsgyGohP2L3zJPQ',1234564647,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n \r\n\r\n\r\n
            \r\n \r\n \r\n
            \r\n
            \r\n
            \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
            \r\n
            \r\n
            \r\n
            \r\n \r\n
            \r\n \r\n
            \r\n \r\n
            \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
            \r\n
            \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n \r\n \r\n
            \r\n \r\n \r\n \r\n
            \r\n \r\n
            ','Gallery/ListAlbums',1,1,'azCqD0IjdQSlM3ar29k5Sg',1234561066,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \n \n \n
            \n
            \n
            \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
            \n
            \n \n
            \n\n \n\n

            ^International(template listFilesForUser albums title,Asset_Gallery);

            \n \n \n \n \n \n
            \n \n

            ^International(template listFilesForUser pictures title,Asset_Gallery);

            \n \n \n
            \n \" class=\"title\">\n \n \n \n \n
            \n
            \n \n
            \n
            \n
            \n
            \n \n
            ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
            \n
            \n
            \n
            \n
            \n
            \n \n
            \n \n \n
            ','Gallery/ListFilesForUser',1,1,'OkphOEdaSGTXnFGhK4GT5A',1234560760,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \n \n \n
            \n
            \n
            \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
            \n
            \n ^International(\'template search title\',\'Asset_Gallery\');\n
            \n\n \n\n \n
            \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
            ^International(\'template search field title\',\'Asset_Gallery\');
            ^International(\'template search field description\',\'Asset_Gallery\');
            ^International(\'template search field keywords\',\'Asset_Gallery\');
            ^International(\'template search field className\',\'Asset_Gallery\');\n \n
            ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
             \n \n
            \n
            \n \n\n

            \n\n \n
            \n \n
            \n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\n
            \n\n

            Albums

            \n \n \n \n \n \n \n
            \n \n

            Pictures

            \n \n \n
            \n \" class=\"title\">\n \n \n \n \n
            \n
            \n \n
            \n
            \n
            \n
            \n \n
            ^International(\"template file creationDate\",\"Asset_GalleryAlbum\"); ^D(\"%M/%d/%Y\",);
            \n
            \n
            \n
            \n
            \n
            \n
            \n\n
            \n \n \n
            \n\n
            \n
            ','Gallery/Search',1,1,'jME5BEDYVDlBZ8jIQA9-jQ',1234565056,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n\n\n','GalleryAlbum/ViewThumbnails',1,1,'q5O62aH4pjUXsrQR3Pq4lw',1234568087,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n\n\n','GalleryAlbum/View',1,1,'05FpjceLYhq4csF1Kww1KQ',1234568028,'WebGUI::Asset::Template::HTMLTemplate',1),('\n \n\n\n
            \n \n\n
            \n
            \n \">^International(\'template url_album\',\'Asset_Photo\');    \n
            \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
            \n
            \n ·\n ^International(\'template by\',\'Asset_Gallery\');: \">\n
            \n\n \n
            \n
            \n ^International(template view details,Asset_Photo);\n
            \n
            \n ^International(\'template creationDate\',\'Asset_Photo\');:\n
            \n
            \n ^D(\"%z %Z\", );\n
            \n
            \n
            \n
            \n ^International(\'template views\',\'Asset_Photo\');:\n
            \n
            \n \n
            \n
            \n
            \n
            \n ^International(\'template by\',\'Asset_Gallery\');:\n
            \n
            \n \">\n
            \n
            \n
            \n
            \n ^International(\'template friendsOnly label\',\'Asset_Photo\');:\n
            \n
            \n ^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\n
            \n
            \n
            \n
            \n ^International(\'template location\',\'Asset_Photo\');:\n
            \n
            \n \n
            \n
            \n
            \n
            \n ^International(template view available resolutions,Asset_Photo);\n
            \n
            \n \n \">\n \n
            \n
            \n
            \n \n
            \n ^International(\'template keywords\',\'Asset_Photo\');\n \n \">, \n \n
            \n
            \n
            \n ^International(more details,Asset_Photo);\n
            \n \n
            rowOnerowTwo\">\n
            \n :\n
            \n
            \n \n
            \n
            \n
            \n
            \n
            \n
            \n
            \n
            \n
            \n ^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\n
            \n \n
            \n \n
            \n \n
            \n
            \n \n
            \n
            \n \n \n \n
            \n
            ','GalleryFile/View',1,1,'TEId5V-jEvUULsZA0wuRuA',1234568469,'WebGUI::Asset::Template::HTMLTemplate',1),('\n
            \n\n
            \n

            \n
            \n ^International(member since,Account_Inbox); ^D(%z,);\n

            \n \n

            \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

            \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n
             \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
            old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
            \n \n

            \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

            \n\n

            \n ^International(message count,\'Account_Inbox\');\n

            \n \n
            \n\n
            \n','Account/Inbox/View',1,1,'c8xrwVuu5QE0XtF9DiVzLw',1235331153,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \r\n
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n\r\n
            \r\n
            ^International(\'comparison label\',\'Asset_Matrix\');
            \r\n
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            \r\n\r\n
            \r\n
            \r\n
            \r\n
            \r\n\r\n','Matrix/Compare',1,1,'matrixtmpl000000000002',1235704003,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \r\n \r\n \r\n

            \r\n
            \r\n \r\n

            \r\n \r\n \r\n [\r\n ^AssetProxy(new-matrix/matrix-nav);\r\n blockblockblock\">\r\n \r\n • \">Edit\r\n \r\n \r\n \r\n • \">Approve\r\n \r\n • \">Delete\r\n \r\n \r\n ]\r\n \r\n

            \r\n \r\n
            \r\n \r\n \r\n \r\n
            \r\n
            \r\n \r\n
            \r\n
            \r\n \r\n ^International(\'description label\',\'Asset_MatrixListing\');\r\n \r\n \r\n \r\n Add a Description\r\n \r\n No Description\r\n \r\n \r\n
            \r\n
            \r\n
            \r\n \r\n
            \r\n
              \r\n
            • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\">
            • \r\n
            • ^International(\'version label\',\'Asset_MatrixListing\');
            • \r\n
            • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\">
            • \r\n
            • ^International(\'last updated label\',\'Asset_MatrixListing\');
            • \r\n
            • ^International(\'clicks label\',\'Asset_Matrix\');
            • \r\n
            • ^International(\'views label\',\'Asset_Matrix\');
            • \r\n
            • ^International(\'compares label\',\'Asset_Matrix\');
            • \r\n
            \r\n
            \r\n \r\n
            \r\n
            \r\n
            \r\n
            \r\n Comments\r\n \r\n Send Creator a Message\r\n
            \r\n \r\n
            ^International(\'message sent message\',\'Asset_MatrixListing\');
            \r\n
            \r\n \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            ','Matrix/Detail',1,1,'matrixtmpl000000000003',1235987792,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n

            \r\n
            \r\n\r\n

            \r\n\r\n\r\n
            \r\n \r\n
            \r\n
            \r\n\r\n
            \r\n
            \r\n \r\n \r\n
            \r\n
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            \r\n \r\n
            \r\n
            \r\n \r\n
            \r\n
            \r\n
            \r\n\r\n
            \r\n
            \r\n
            \r\n \r\n
            \r\n
            \r\n \r\n ^International(\'add new listing text\',\'Asset_Matrix\');\r\n \r\n ^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\r\n \r\n
            \r\n \r\n \r\n
            \r\n \r\n
            \r\n
            ^International(\'listing statistics label\',\'Asset_Matrix\');
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
            ^International(\'most views label\',\'Asset_Matrix\');\"> ()
            ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
            \r\n \r\n
            ^International(\'most recently updated label\',\'Asset_Matrix\');
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            \">
            \r\n \r\n
            ^International(\'best rated label\',\'Asset_Matrix\');
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            \"> (/10)
            \r\n \r\n
            ^International(\'worst rated label\',\'Asset_Matrix\');
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            \"> (/10)
            \r\n \r\n
            ^International(\'site statistics label\',\'Asset_Matrix\');
            \r\n \r\n \r\n \r\n \r\n \r\n
            ^International(\'listing count label\',\'Asset_Matrix\');
            \r\n
            \r\n \r\n \r\n \r\n\r\n \r\n \r\n
            ^International(\'pending listings label\',\'Asset_Matrix\');:
            \r\n
            \r\n
              \r\n \r\n
            • \">
            • \r\n
              \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n\r\n','Matrix',1,1,'matrixtmpl000000000001',1235706149,'WebGUI::Asset::Template::HTMLTemplate',1),('
            \r\n
            \r\n \r\n
            \r\n
            \r\n \r\n
            \r\n
            \r\n
            \r\n\r\n
            \r\n
            ^International(\'search label\',\'Asset_Matrix\');
            \r\n
            \r\n \r\n
            \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n
            \r\n \r\n\r\n\r\n','Matrix/Search',1,1,'matrixtmpl000000000005',1235704755,'WebGUI::Asset::Template::HTMLTemplate',1),('\r\n\r\n\r\n\r\n \">Return to Matrix\r\n\r\n\r\n','Navigation',1,1,'alraubvBu-YJJ614jAHD5w',1235706026,'WebGUI::Asset::Template::HTMLTemplate',1); INSERT INTO `userProfileCategory` VALUES ('1','WebGUI::International::get(449,\"WebGUI\");','WebGUI::International::get(\"misc info short\",\"WebGUI\");',6,1,1,1),('2','WebGUI::International::get(440,\"WebGUI\");','WebGUI::International::get(\"contact info short\",\"WebGUI\");',2,1,1,1),('3','WebGUI::International::get(439,\"WebGUI\");','WebGUI::International::get(\"personal info short\",\"WebGUI\");',1,1,1,1),('4','WebGUI::International::get(445,\"WebGUI\");','WebGUI::International::get(\"preferences short\",\"WebGUI\");',7,0,1,1),('5','WebGUI::International::get(443,\"WebGUI\");','WebGUI::International::get(\"home info short\",\"WebGUI\");',3,1,1,1),('6','WebGUI::International::get(442,\"WebGUI\");','WebGUI::International::get(\"work info short\",\"WebGUI\");',4,1,1,1),('7','WebGUI::International::get(444,\"WebGUI\");','WebGUI::International::get(\"demographic info short\",\"WebGUI\");',5,1,1,1); INSERT INTO `userProfileData` VALUES ('1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'English',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/Chicago',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL,NULL,NULL,'none',0,NULL,NULL,NULL,'{\"workCity\":\"all\",\"department\":\"all\",\"uiLevel\":\"none\",\"homeCountry\":\"all\",\"homeZip\":\"all\",\"firstDayOfWeek\":\"none\",\"photo\":\"all\",\"email\":\"all\",\"homeAddress\":\"all\",\"allowPrivateMessages\":\"none\",\"timeZone\":\"none\",\"firstName\":\"all\",\"birthdate\":\"all\",\"toolbar\":\"none\",\"yahooIM\":\"all\",\"workPhone\":\"all\",\"showMessageOnLoginSeen\":\"none\",\"middleName\":\"all\",\"workURL\":\"all\",\"signature\":\"all\",\"homeURL\":\"all\",\"homeState\":\"all\",\"alias\":\"all\",\"discussionLayout\":\"none\",\"workAddress\":\"all\",\"workCountry\":\"all\",\"avatar\":\"all\",\"publicProfile\":\"none\",\"dateFormat\":\"none\",\"ableToBeFriend\":\"none\",\"workName\":\"all\",\"icq\":\"all\",\"workZip\":\"all\",\"timeFormat\":\"none\",\"cellPhone\":\"all\",\"lastName\":\"all\",\"homePhone\":\"all\",\"versionTagMode\":\"none\",\"gender\":\"all\",\"showOnline\":\"none\",\"language\":\"none\",\"homeCity\":\"all\",\"aim\":\"all\",\"workState\":\"all\",\"emailToPager\":\"all\",\"msnIM\":\"all\",\"pager\":\"all\",\"publicEmail\":\"none\"}'),('3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'English',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/Chicago',NULL,NULL,NULL,'0','9',NULL,NULL,'none',NULL,NULL,NULL,NULL,'all',NULL,NULL,NULL,NULL,'{\"workCity\":\"all\",\"department\":\"all\",\"uiLevel\":\"none\",\"homeCountry\":\"all\",\"homeZip\":\"all\",\"firstDayOfWeek\":\"none\",\"photo\":\"all\",\"email\":\"all\",\"homeAddress\":\"all\",\"allowPrivateMessages\":\"none\",\"timeZone\":\"none\",\"firstName\":\"all\",\"birthdate\":\"all\",\"toolbar\":\"none\",\"yahooIM\":\"all\",\"workPhone\":\"all\",\"showMessageOnLoginSeen\":\"none\",\"middleName\":\"all\",\"workURL\":\"all\",\"signature\":\"all\",\"homeURL\":\"all\",\"homeState\":\"all\",\"alias\":\"all\",\"discussionLayout\":\"none\",\"workAddress\":\"all\",\"workCountry\":\"all\",\"avatar\":\"all\",\"publicProfile\":\"none\",\"dateFormat\":\"none\",\"ableToBeFriend\":\"none\",\"workName\":\"all\",\"icq\":\"all\",\"workZip\":\"all\",\"timeFormat\":\"none\",\"cellPhone\":\"all\",\"lastName\":\"all\",\"homePhone\":\"all\",\"versionTagMode\":\"none\",\"gender\":\"all\",\"showOnline\":\"none\",\"language\":\"none\",\"homeCity\":\"all\",\"aim\":\"all\",\"workState\":\"all\",\"emailToPager\":\"all\",\"msnIM\":\"all\",\"pager\":\"all\",\"publicEmail\":\"all\"}'); INSERT INTO `userProfileField` VALUES ('email','WebGUI::International::get(56,\"WebGUI\");',1,1,'email',NULL,NULL,1,'2',1,1,1,1,0,NULL),('firstName','WebGUI::International::get(314,\"WebGUI\");',1,0,'text',NULL,NULL,1,'3',1,1,1,0,0,NULL),('middleName','WebGUI::International::get(315,\"WebGUI\");',1,0,'text',NULL,NULL,2,'3',1,1,1,0,0,NULL),('lastName','WebGUI::International::get(316,\"WebGUI\");',1,0,'text',NULL,NULL,3,'3',1,1,1,0,0,NULL),('icq','WebGUI::International::get(317,\"WebGUI\");',1,0,'text',NULL,NULL,2,'2',1,1,1,0,0,NULL),('aim','WebGUI::International::get(318,\"WebGUI\");',1,0,'text',NULL,NULL,3,'2',1,1,1,0,0,NULL),('msnIM','WebGUI::International::get(319,\"WebGUI\");',1,0,'text',NULL,NULL,4,'2',1,1,1,0,0,NULL),('yahooIM','WebGUI::International::get(320,\"WebGUI\");',1,0,'text',NULL,NULL,5,'2',1,1,1,0,0,NULL),('cellPhone','WebGUI::International::get(321,\"WebGUI\");',1,0,'phone',NULL,NULL,6,'2',1,1,1,0,0,NULL),('pager','WebGUI::International::get(322,\"WebGUI\");',1,0,'phone',NULL,NULL,7,'2',1,1,1,0,0,NULL),('emailToPager','WebGUI::International::get(441,\"WebGUI\");',1,0,'email',NULL,NULL,8,'2',1,1,1,0,0,NULL),('language','WebGUI::International::get(304,\"WebGUI\");',1,0,'selectBox','WebGUI::International::getLanguages()','\'English\'',1,'4',1,1,1,0,0,NULL),('homeAddress','WebGUI::International::get(323,\"WebGUI\");',1,0,'text',NULL,NULL,1,'5',1,1,1,0,0,NULL),('homeCity','WebGUI::International::get(324,\"WebGUI\");',1,0,'text',NULL,NULL,2,'5',1,1,1,0,0,NULL),('homeState','WebGUI::International::get(325,\"WebGUI\");',1,0,'text',NULL,NULL,3,'5',1,1,1,0,0,NULL),('homeZip','WebGUI::International::get(326,\"WebGUI\");',1,0,'zipcode',NULL,NULL,4,'5',1,1,1,0,0,NULL),('homeCountry','WebGUI::International::get(327,\"WebGUI\");',1,0,'text',NULL,NULL,5,'5',1,1,1,0,0,NULL),('homePhone','WebGUI::International::get(328,\"WebGUI\");',1,0,'phone',NULL,NULL,6,'5',1,1,1,0,0,NULL),('workAddress','WebGUI::International::get(329,\"WebGUI\");',1,0,'text',NULL,NULL,2,'6',1,1,1,0,0,NULL),('workCity','WebGUI::International::get(330,\"WebGUI\");',1,0,'text',NULL,NULL,3,'6',1,1,1,0,0,NULL),('workState','WebGUI::International::get(331,\"WebGUI\");',1,0,'text',NULL,NULL,4,'6',1,1,1,0,0,NULL),('workZip','WebGUI::International::get(332,\"WebGUI\");',1,0,'zipcode',NULL,NULL,5,'6',1,1,1,0,0,NULL),('workCountry','WebGUI::International::get(333,\"WebGUI\");',1,0,'text',NULL,NULL,6,'6',1,1,1,0,0,NULL),('workPhone','WebGUI::International::get(334,\"WebGUI\");',1,0,'phone',NULL,NULL,7,'6',1,1,1,0,0,NULL),('gender','WebGUI::International::get(335,\"WebGUI\");',1,0,'selectBox','{\r\n \'neuter\'=>WebGUI::International::get(403),\r\n \'male\'=>WebGUI::International::get(339),\r\n \'female\'=>WebGUI::International::get(340)\r\n}','\'neuter\'',1,'7',1,1,1,0,0,NULL),('birthdate','WebGUI::International::get(336,\"WebGUI\");',1,0,'date',NULL,NULL,2,'7',1,1,1,0,0,NULL),('homeURL','WebGUI::International::get(337,\"WebGUI\");',1,0,'url',NULL,NULL,7,'5',1,1,1,0,0,NULL),('workURL','WebGUI::International::get(446,\"WebGUI\");',1,0,'url',NULL,NULL,8,'6',1,1,1,0,0,NULL),('workName','WebGUI::International::get(450,\"WebGUI\");',1,0,'text',NULL,NULL,1,'6',1,1,1,0,0,NULL),('timeZone','WebGUI::International::get(\"timezone\",\"DateTime\");',1,0,'timeZone','','\'America/Chicago\'',3,'4',1,1,1,0,0,NULL),('dateFormat','WebGUI::International::get(461,\"WebGUI\");',1,0,'selectBox','{\n\'%d-%m-%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%d-%m-%y\"),\n\'%d.%m.%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%d.%m.%y\"),\r\n \'%M/%D/%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%M/%D/%y\"),\r\n \'%y-%m-%d\'=>WebGUI::DateTime::epochToHuman(\"\",\"%y-%m-%d\"),\r\n \'%D-%c-%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%D-%c-%y\"),\r\n \'%c %D, %y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%c %D, %y\")\r\n}\r\n','\'%M/%D/%y\'',4,'4',1,1,1,0,0,NULL),('timeFormat','WebGUI::International::get(462,\"WebGUI\");',1,0,'selectBox','{\r\n \'%H:%n %p\'=>WebGUI::DateTime::epochToHuman(\"\",\"%H:%n %p\"),\r\n \'%H:%n:%s %p\'=>WebGUI::DateTime::epochToHuman(\"\",\"%H:%n:%s %p\"),\r\n \'%j:%n\'=>WebGUI::DateTime::epochToHuman(\"\",\"%j:%n\"),\r\n \'%j:%n:%s\'=>WebGUI::DateTime::epochToHuman(\"\",\"%j:%n:%s\")\r\n}\r\n','\'%H:%n %p\'',5,'4',1,1,1,0,0,NULL),('discussionLayout','WebGUI::International::get(509)',1,0,'selectBox','{\n flat=>WebGUI::International::get(510),\n nested=>WebGUI::International::get(1045)\n}','\'nested\'',6,'4',1,1,1,0,0,NULL),('firstDayOfWeek','WebGUI::International::get(699,\"WebGUI\");',1,0,'selectBox','{0=>WebGUI::International::get(\"sunday\",\"DateTime\"),1=>WebGUI::International::get(\"monday\",\"DateTime\")}','\'0\'',2,'4',1,1,1,0,0,NULL),('uiLevel','WebGUI::International::get(739,\"WebGUI\");',0,0,'selectBox','{\r\n0=>WebGUI::International::get(729,\"WebGUI\"),\r\n1=>WebGUI::International::get(730,\"WebGUI\"),\r\n2=>WebGUI::International::get(731,\"WebGUI\"),\r\n3=>WebGUI::International::get(732,\"WebGUI\"),\r\n4=>WebGUI::International::get(733,\"WebGUI\"),\r\n5=>WebGUI::International::get(734,\"WebGUI\"),\r\n6=>WebGUI::International::get(735,\"WebGUI\"),\r\n7=>WebGUI::International::get(736,\"WebGUI\"),\r\n8=>WebGUI::International::get(737,\"WebGUI\"),\r\n9=>WebGUI::International::get(738,\"WebGUI\")\r\n}','\'5\'',7,'4',1,0,1,0,0,NULL),('alias','WebGUI::International::get(858)',1,0,'text','','',4,'3',1,1,1,0,0,NULL),('signature','WebGUI::International::get(859)',1,0,'HTMLArea','','',5,'3',1,1,1,0,0,NULL),('publicProfile','WebGUI::International::get(861)',1,0,'RadioList','{ all=>WebGUI::International::get(\'public label\',\'Account_Profile\'), friends=>WebGUI::International::get(\'friends only label\',\'Account_Profile\'), none=>WebGUI::International::get(\'private label\',\'Account_Profile\')}','[\"none\"]',8,'4',1,1,0,0,0,''),('toolbar','WebGUI::International::get(746)',0,0,'selectBox','WebGUI::Icon::getToolbarOptions()','\'useLanguageDefault\'',10,'4',1,0,1,0,0,NULL),('photo','WebGUI::International::get(\"photo\",\"WebGUI\");',1,0,'Image','','',6,'3',1,1,1,0,0,NULL),('avatar','WebGUI::International::get(\"avatar\",\"WebGUI\");',1,0,'Image','','',1,'1',1,1,1,0,0,NULL),('department','WebGUI::International::get(\'Department\',\'Asset_InOutBoard\')',1,0,'selectBox','{\'IT\'=>WebGUI::International::get(\'IT\',\'Asset_InOutBoard\'),\'HR\'=>WebGUI::International::get(\'HR\',\'Asset_InOutBoard\'),\'Regular Staff\'=>WebGUI::International::get(\'Regular Staff\',\'Asset_InOutBoard\')}\n','\'Regular Staff\'',8,'6',0,1,1,0,0,NULL),('allowPrivateMessages','WebGUI::International::get(\"allow private messages label\",\"WebGUI\")',1,0,'RadioList','{ all=>WebGUI::International::get(\"user profile field private message allow label\",\"WebGUI\"), friends=>WebGUI::International::get(\"user profile field private message friends only label\",\"WebGUI\"), none=>WebGUI::International::get(\"user profile field private message allow none label\",\"WebGUI\"),}','[\"all\"]',11,'4',1,1,1,0,0,NULL),('ableToBeFriend','Are you available to be added as a Friend?',0,0,'yesNo',NULL,'1',2,'1',1,1,1,0,0,NULL),('showMessageOnLoginSeen','WebGUI::International::get(\"showMessageOnLoginSeen\",\"Auth\");',0,0,'integer',NULL,'0',3,'1',1,0,1,0,0,NULL),('showOnline','WebGUI::International::get(\'Show when online?\',\'WebGUI\')',1,0,'YesNo',NULL,'0',12,'4',1,1,1,0,0,''),('versionTagMode','WebGUI::International::get(\"version tag mode\",\"WebGUI\");',1,0,'selectBox','\n{\n inherited => WebGUI::International::get(\"versionTagMode inherited\"),\n multiPerUser => WebGUI::International::get(\"versionTagMode multiPerUser\"),\n singlePerUser => WebGUI::International::get(\"versionTagMode singlePerUser\"),\n siteWide => WebGUI::International::get(\"versionTagMode siteWide\"),\n autoCommit => WebGUI::International::get(\"versionTagMode autoCommit\"),\n}\n','inherited',13,'4',1,1,0,0,0,''); INSERT INTO `users` VALUES ('1','Visitor','WebGUI',1019867418,1222804519,0,'Active','0',''),('3','Admin','WebGUI',1019867418,1222804519,0,'Active','1',''); INSERT INTO `vendor` VALUES ('defaultvendor000000000','2008-06-12 19:43:10','Default Vendor','3',NULL,NULL,NULL,NULL); -INSERT INTO `wobject` VALUES (1,'

            Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with hosting, online support is included!

            ','iCYOjohB9SKvAPr6bXElKA','stevestyle000000000003','stevestyle000000000003',1147642516),(1,'

            What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to custom single sign on systems, to applications that will manage your entire company, our team can do it.

            ','4Yfz9hqBqM8OYMGuQK8oLw','stevestyle000000000003','stevestyle000000000003',1147642516),(0,'\n

            \nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n

            \n

            \nNow that you\'re logged in, we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account. Don\'t worry if you lock yourself out, you can always contact Plain Black® support to get instructions to get back in.\n

            NOTE: If you appear to be get logged out while moving between pages, this is most likely your browser displaying a cached version of the page. Click on your browser\'s refresh button to correct the problem.

            \n

            \nNo doubt after you enabled admin mode you saw a menu along the left side of the screen, that\'s called the Admin Bar. Use that to add content and access administrative functions. You\'re now ready to begin exploring your new WebGUI site.

            \n

            \nFor more information about services related to WebGUI click here.\n

            \n

            \nEnjoy your new WebGUI site!\n

            \n','NK8bqlwVRILJknqeCDPBHg','stevestyle000000000003','stevestyle000000000003',1147642515),(1,'

            Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us today to see how we can help you.

            ','6QuS-0rosuZTdTv11fobig','stevestyle000000000003','stevestyle000000000003',1147642515),(1,'

            Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of support you purchase, you get WebGUI Documentation included in your purchase.

            ','ix1p0AbwKAz8QWB-T-HHfg','stevestyle000000000003','stevestyle000000000003',1147642516),(1,'\n

            \nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n

            \n

            \nWorkflow & Versioning - Never again worry about content getting put on your site that you don\'t want there. Never again lose your old content after making an edit. And never again push out new changes until you\'re absolutely ready to release them. WebGUI\'s workflow and versioning system is fast, flexible, powerful, and easy to use.\n

            \n

            \nEverything\'s a Template - Worry nevermore about your CMS forcing you into a mould that doesn\'t suit you. With WebGUI everything a site visitor can see is a customizable template, so you can make it look exactly how you want. Moreover if you\'re the type that strives for excellence rest in the knowledge that all the templates that come with WebGUI are XHTML 1.0 strict compliant.\n

            \n

            \nLocalization - WebGUI\'s entire user interface is set up to be internationalized. Visit one of the WebGUI Worldwide member sites to get translations for your language. Stay there to get support and services in your native language. Feel confident in the knowledge that WebGUI will work with your native characters because it\'s UTF-8 compliant. On top of that WebGUI allows you to customize dates, currency, and weights to match your locale. \n

            \n

            \nPluggable By Design - With WebGUI 7 you have many plug-in points to add your own functionality. And best of all, the API is stable and standardized. Write it today and it will still work years from now and survive all upgrades.\n

            \n','IWFxZDyGhQ3-SLZhELa3qw','stevestyle000000000003','stevestyle000000000003',1147642514),(1,'

            The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy enough for the average business user, but powerful enough for any large enterprise.

            \n\n

            There are thousands of small and large businesses, schools, universities, governments, associations, clubs, churches, projects, and communities using WebGUI all over the world today. A brief list of some of them can be found here. Your site should be on that list.

            \n\n

            If you\'re new to WebGUI, click here to learn how to get started. If you\'re getting up to speed, check out some ways you can do more faster. If this is all old hat to you, then check out the latest news. No matter what level you\'re at tell your friends about WebGUI.

            ','OhdaFLE7sXOzo_SIP2ZUgA','stevestyle000000000003','stevestyle000000000003',1147642513),(0,'This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','fK-HMSboA3uu0c1KYkYspA','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'pJd5TLAjfWMVXD6sCRLwUg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'68sKwDgf9cGH58-NZcU4lg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'_iHetEvMQUOoxS-T2CM0sQ','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'8Bb8gu-me2mhL3ljFyiWLg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'2TqQc4OISddWCZmRY1_m8A','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'Swf6L8poXKc7hUaNPkBevw','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'x3OFY6OJh_qsXkZfPwug4A','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(1,NULL,'PBasset000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'7.0-style0000000000026','PBtmpl0000000000000060','',1147642499),(0,NULL,'PBnav00000000000000001','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000014','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000015','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000016','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000017','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000018','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000019','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000020','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000021','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000006','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000007','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000008','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000009','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000010','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000011','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000012','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000013','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(1,'

            Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site.

            ','Wl8WZ43g2rK5AYr9o4zY7w','stevestyle000000000003','stevestyle000000000003',1147642516),(0,NULL,'7.0-style0000000000070','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642510),(1,'

            Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of experience reading, writing, and speaking many languages.

            ','LBuiKzg2mWwmOPS9AgV3bg','stevestyle000000000003','stevestyle000000000003',1147642517),(1,'

            Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate programs to ensure your site gets the traffic it needs.

            ','jTNggl7AoVSUc_ZzrvuCmw','stevestyle000000000003','stevestyle000000000003',1147642517),(1,NULL,'7.0-style0000000000001','PBtmpl0000000000000060','',1147642492),(1,'\n

            \nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n

            \n

            NOTE: Click on the green start icon on the video to begin your tutorial.

            ','bX5rYxb6tZ9docY6sUhBlw','stevestyle000000000003','stevestyle000000000003',1147642514),(1,NULL,'7.0-style0000000000031','PBtmpl0000000000000060','',1147642500),(0,NULL,'7.0-style0000000000025','PBtmpl0000000000000060','',1147642498),(1,NULL,'PBasset000000000000003','PBtmpl0000000000000060','PBtmpl0000000000000111',1147642437),(1,NULL,'nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000060','',1147642465),(1,NULL,'TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000060','',1147642465),(1,NULL,'GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642466),(1,NULL,'S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000060','',1147642468),(1,NULL,'tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000060','',1147642469),(1,NULL,'GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000060','',1147642470),(1,NULL,'N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000060','',1147642470),(1,NULL,'tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000060','',1147642470),(1,NULL,'VXSsbsfcfht1904EWkb1sw','PBtmpl0000000000000060','',1147642470),(1,NULL,'-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803056),(1,NULL,'3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000060','',1147642470),(1,NULL,'cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000060','',1147642475),(1,NULL,'bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000060','',1147642475),(1,NULL,'BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000060','',1147642475),(1,NULL,'jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000060','',1147642477),(1,NULL,'VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000060','',1147642477),(1,NULL,'f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000060','',1147642479),(1,NULL,'Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000060','',1147642479),(0,'Tell a friend about WebGUI.','Szs5eev3OMssmnsyLRZmWA','stevestyle000000000003','PBtmpl0000000000000111',1213317790),(1,NULL,'bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000060','',1147642480),(1,NULL,'Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000060','',1147642480),(1,NULL,'RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000060','',1147642480),(1,NULL,'oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000060','',1147642482),(1,NULL,'9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000060','',1147642483),(1,NULL,'CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000060','',1147642484),(1,NULL,'TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000060','',1147642484),(1,NULL,'pbproto000000000000002','PBtmpl0000000000000060','',1163019036),(1,NULL,'tempspace0000000000000','PBtmpl0000000000000060','PBtmpl0000000000000060',1185754574),(1,NULL,'kaPRSaf8UKiskiGEgJgLAw','2p9ygcqH_Z11qOUvQ1uBvw','PBtmpl0000000000000111',1197330678),(1,'

            WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization.

            ','FOvmwGC0GtZo5VTxJIL3OA','stevestyle000000000003','stevestyle000000000003',1207068851),(1,NULL,'Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000060','PBtmpl0000000000000111',1213244777),(1,'

             

            ','-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1209325764),(1,'

             

            ','4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000060','PBtmpl0000000000000111',1208725439),(1,NULL,'aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000060','PBtmpl0000000000000060',1213283425),(1,NULL,'TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1211664878),(1,NULL,'6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1210777115),(1,NULL,'gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1212086102),(1,NULL,'6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000060','PBtmpl0000000000000111',1209509389),(1,NULL,'C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1212160830),(1,NULL,'aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000060','PBtmpl0000000000000060',1213122695),(1,'

             

            ','gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000060','PBtmpl0000000000000111',1213734379),(1,'

            There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction.

            \n

            \n

            \n
              \n
            • Primer - A downloadable PDF that shows you the basics of publishing content in WebGUI.
            • \n
            • Wiki - Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials.
            • \n
            • Worldwide - A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI.
            • \n
            • API Docs - The documentation of all of the WebGUI source code.
            • \n
            • Template Help - The documentation of all of WebGUI\'s template variables.
            • \n
            \n

             

            ','j_1qEqM6iLfQLiR6VKy0aA','stevestyle000000000003','PBtmpl0000000000000111',1215718151),(1,'

            Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of the latest WebGUI features. Visit the book store today to stock your WebGUI library. Other than hands on training, there is no better way to hone your WebGUI skills. No matter what your need, Plain Black has created a book that\'s right for you and is creating new books each year.

            ','diZvW4bSgZWwyyGP3qXi1g','stevestyle000000000003','PBtmpl0000000000000111',1215717972),(1,NULL,'jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000060','PBtmpl0000000000000111',1216250666),(1,'

            With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation.

            ','mTOiwwk3q4k9g5-XykXhPA','stevestyle000000000003','PBtmpl0000000000000111',1218149728),(1,NULL,'2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803070),(1,NULL,'1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803099),(1,NULL,'zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803114),(1,NULL,'tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803200),(1,NULL,'GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803205),(1,NULL,'tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803213),(1,NULL,'vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803217),(1,NULL,'hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803234),(1,NULL,'eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803238),(1,NULL,'5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803244),(1,NULL,'rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803249),(1,NULL,'V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803253),(1,NULL,'nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803258),(1,NULL,'y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803264),(1,NULL,'vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803302),(1,NULL,'lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803309),(1,NULL,'huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803313),(1,NULL,'9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803338),(1,NULL,'yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803342),(1,NULL,'pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803347),(1,NULL,'71e17KeduiXgODLMlUxiow','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803352),(1,NULL,'xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803378),(1,NULL,'0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803383),(1,NULL,'taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803387),(1,NULL,'K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803391),(1,NULL,'fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803395),(1,NULL,'oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803399),(1,NULL,'9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803405),(1,NULL,'_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803409),(1,NULL,'Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803478),(1,NULL,'NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803638),(1,NULL,'AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803665),(1,NULL,'F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803673),(1,NULL,'Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803760),(1,NULL,'BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803871),(1,NULL,'X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804045),(1,NULL,'iLzlwGmwrvzlGHXKzaDyjA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804090),(1,NULL,'UL-ItI4L1Z6-WSuhuXVvsQ','stevestyle000000000003','PBtmpl0000000000000111',1225139673),(1,NULL,'7.0-style0000000000049','PBtmpl0000000000000060','PBtmpl0000000000000060',1224117144),(0,NULL,'jVKLVakT_iA2010_oEuAwg','PBtmpl0000000000000060','PBtmpl0000000000000060',1224116526),(1,'

             

            ','QpmlAiYZz6VsKBM-_0wXaw','stevestyle000000000003','PBtmpl0000000000000111',1224616691),(1,NULL,'QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227080251),(1,NULL,'HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000060','PBtmpl0000000000000111',1225404573),(1,NULL,'IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1226011853),(1,NULL,'K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074310),(1,NULL,'_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000060','PBtmpl0000000000000111',1226643205),(1,NULL,'AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000060','PBtmpl0000000000000111',1226659753),(1,NULL,'qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074362),(1,NULL,'5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000060','PBtmpl0000000000000060',1227540002),(1,NULL,'LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000060','PBtmpl0000000000000060',1232673968),(1,NULL,'Vch1Ww7G_JpBhOhXX07RDg','PBtmpl0000000000000060','PBtmpl0000000000000111',1232664082); -INSERT INTO webguiVersion (webguiVersion,versionType,dateApplied) VALUES ('7.6.10','Initial Install',UNIX_TIMESTAMP()); +INSERT INTO `wobject` VALUES (1,'

            Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with hosting, online support is included!

            ','iCYOjohB9SKvAPr6bXElKA','stevestyle000000000003','stevestyle000000000003',1147642516),(1,'

            What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to custom single sign on systems, to applications that will manage your entire company, our team can do it.

            ','4Yfz9hqBqM8OYMGuQK8oLw','stevestyle000000000003','stevestyle000000000003',1147642516),(0,'\n

            \nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n

            \n

            \nNow that you\'re logged in, we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account. Don\'t worry if you lock yourself out, you can always contact Plain Black® support to get instructions to get back in.\n

            NOTE: If you appear to be get logged out while moving between pages, this is most likely your browser displaying a cached version of the page. Click on your browser\'s refresh button to correct the problem.

            \n

            \nNo doubt after you enabled admin mode you saw a menu along the left side of the screen, that\'s called the Admin Bar. Use that to add content and access administrative functions. You\'re now ready to begin exploring your new WebGUI site.

            \n

            \nFor more information about services related to WebGUI click here.\n

            \n

            \nEnjoy your new WebGUI site!\n

            \n','NK8bqlwVRILJknqeCDPBHg','stevestyle000000000003','stevestyle000000000003',1147642515),(1,'

            Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us today to see how we can help you.

            ','6QuS-0rosuZTdTv11fobig','stevestyle000000000003','stevestyle000000000003',1147642515),(1,'

            Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of support you purchase, you get WebGUI Documentation included in your purchase.

            ','ix1p0AbwKAz8QWB-T-HHfg','stevestyle000000000003','stevestyle000000000003',1147642516),(1,'\n

            \nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n

            \n

            \nWorkflow & Versioning - Never again worry about content getting put on your site that you don\'t want there. Never again lose your old content after making an edit. And never again push out new changes until you\'re absolutely ready to release them. WebGUI\'s workflow and versioning system is fast, flexible, powerful, and easy to use.\n

            \n

            \nEverything\'s a Template - Worry nevermore about your CMS forcing you into a mould that doesn\'t suit you. With WebGUI everything a site visitor can see is a customizable template, so you can make it look exactly how you want. Moreover if you\'re the type that strives for excellence rest in the knowledge that all the templates that come with WebGUI are XHTML 1.0 strict compliant.\n

            \n

            \nLocalization - WebGUI\'s entire user interface is set up to be internationalized. Visit one of the WebGUI Worldwide member sites to get translations for your language. Stay there to get support and services in your native language. Feel confident in the knowledge that WebGUI will work with your native characters because it\'s UTF-8 compliant. On top of that WebGUI allows you to customize dates, currency, and weights to match your locale. \n

            \n

            \nPluggable By Design - With WebGUI 7 you have many plug-in points to add your own functionality. And best of all, the API is stable and standardized. Write it today and it will still work years from now and survive all upgrades.\n

            \n','IWFxZDyGhQ3-SLZhELa3qw','stevestyle000000000003','stevestyle000000000003',1147642514),(1,'

            The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy enough for the average business user, but powerful enough for any large enterprise.

            \n\n

            There are thousands of small and large businesses, schools, universities, governments, associations, clubs, churches, projects, and communities using WebGUI all over the world today. A brief list of some of them can be found here. Your site should be on that list.

            \n\n

            If you\'re new to WebGUI, click here to learn how to get started. If you\'re getting up to speed, check out some ways you can do more faster. If this is all old hat to you, then check out the latest news. No matter what level you\'re at tell your friends about WebGUI.

            ','OhdaFLE7sXOzo_SIP2ZUgA','stevestyle000000000003','stevestyle000000000003',1147642513),(0,'This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','fK-HMSboA3uu0c1KYkYspA','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'pJd5TLAjfWMVXD6sCRLwUg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'68sKwDgf9cGH58-NZcU4lg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'_iHetEvMQUOoxS-T2CM0sQ','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'8Bb8gu-me2mhL3ljFyiWLg','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'2TqQc4OISddWCZmRY1_m8A','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'Swf6L8poXKc7hUaNPkBevw','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(0,NULL,'x3OFY6OJh_qsXkZfPwug4A','stevestyle000000000003','PBtmpl0000000000000111',1124395696),(1,NULL,'PBasset000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'7-0-style0000000000026','PBtmpl0000000000000060','',1147642499),(0,NULL,'PBnav00000000000000001','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000014','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000015','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000016','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000017','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000018','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000019','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000020','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000021','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000006','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000007','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000008','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000009','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000010','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000011','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000012','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(0,NULL,'PBnav00000000000000013','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696),(1,'

            Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site.

            ','Wl8WZ43g2rK5AYr9o4zY7w','stevestyle000000000003','stevestyle000000000003',1147642516),(0,NULL,'7-0-style0000000000070','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642510),(1,'

            Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of experience reading, writing, and speaking many languages.

            ','LBuiKzg2mWwmOPS9AgV3bg','stevestyle000000000003','stevestyle000000000003',1147642517),(1,'

            Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate programs to ensure your site gets the traffic it needs.

            ','jTNggl7AoVSUc_ZzrvuCmw','stevestyle000000000003','stevestyle000000000003',1147642517),(1,NULL,'7-0-style0000000000001','PBtmpl0000000000000060','',1147642492),(1,'\n

            \nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n

            \n

            NOTE: Click on the green start icon on the video to begin your tutorial.

            ','bX5rYxb6tZ9docY6sUhBlw','stevestyle000000000003','stevestyle000000000003',1147642514),(1,NULL,'7-0-style0000000000031','PBtmpl0000000000000060','',1147642500),(0,NULL,'7-0-style0000000000025','PBtmpl0000000000000060','',1147642498),(1,NULL,'PBasset000000000000003','PBtmpl0000000000000060','PBtmpl0000000000000111',1147642437),(1,NULL,'nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000060','',1147642465),(1,NULL,'TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000060','',1147642465),(1,NULL,'GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642466),(1,NULL,'S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000060','',1147642468),(1,NULL,'tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000060','',1147642469),(1,NULL,'GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000060','',1147642470),(1,NULL,'N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000060','',1147642470),(1,NULL,'tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000060','',1147642470),(1,NULL,'-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803056),(1,NULL,'3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000060','',1147642470),(1,NULL,'cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000060','',1147642475),(1,NULL,'bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000060','',1147642475),(1,NULL,'BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000060','',1147642475),(1,NULL,'jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000060','',1147642477),(1,NULL,'VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000060','',1147642477),(1,NULL,'f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000060','',1147642479),(1,NULL,'Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000060','',1147642479),(0,'Tell a friend about WebGUI.','Szs5eev3OMssmnsyLRZmWA','stevestyle000000000003','PBtmpl0000000000000111',1213317790),(1,NULL,'bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000060','',1147642480),(1,NULL,'Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000060','',1147642480),(1,NULL,'RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000060','',1147642480),(1,NULL,'oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000060','',1147642482),(1,NULL,'9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000060','',1147642483),(1,NULL,'CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000060','',1147642484),(1,NULL,'TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000060','',1147642484),(1,NULL,'pbproto000000000000002','PBtmpl0000000000000060','',1163019036),(1,NULL,'tempspace0000000000000','PBtmpl0000000000000060','PBtmpl0000000000000060',1185754574),(1,NULL,'kaPRSaf8UKiskiGEgJgLAw','2p9ygcqH_Z11qOUvQ1uBvw','PBtmpl0000000000000111',1197330678),(1,'

            WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization.

            ','FOvmwGC0GtZo5VTxJIL3OA','stevestyle000000000003','stevestyle000000000003',1207068851),(1,NULL,'Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000060','PBtmpl0000000000000111',1213244777),(1,'

             

            ','-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1209325764),(1,'

             

            ','4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000060','PBtmpl0000000000000111',1208725439),(1,NULL,'aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000060','PBtmpl0000000000000060',1213283425),(1,NULL,'TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1211664878),(1,NULL,'6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1210777115),(1,NULL,'gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1212086102),(1,NULL,'6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000060','PBtmpl0000000000000111',1209509389),(1,NULL,'C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1212160830),(1,NULL,'aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000060','PBtmpl0000000000000060',1213122695),(1,'

             

            ','gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000060','PBtmpl0000000000000111',1213734379),(1,'

            There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction.

            \n

            \n

            \n
              \n
            • Primer - A downloadable PDF that shows you the basics of publishing content in WebGUI.
            • \n
            • Wiki - Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials.
            • \n
            • Worldwide - A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI.
            • \n
            • API Docs - The documentation of all of the WebGUI source code.
            • \n
            • Template Help - The documentation of all of WebGUI\'s template variables.
            • \n
            \n

             

            ','j_1qEqM6iLfQLiR6VKy0aA','stevestyle000000000003','PBtmpl0000000000000111',1215718151),(1,'

            Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of the latest WebGUI features. Visit the book store today to stock your WebGUI library. Other than hands on training, there is no better way to hone your WebGUI skills. No matter what your need, Plain Black has created a book that\'s right for you and is creating new books each year.

            ','diZvW4bSgZWwyyGP3qXi1g','stevestyle000000000003','PBtmpl0000000000000111',1215717972),(1,NULL,'jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000060','PBtmpl0000000000000111',1216250666),(1,'

            With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation.

            ','mTOiwwk3q4k9g5-XykXhPA','stevestyle000000000003','PBtmpl0000000000000111',1218149728),(1,NULL,'2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803070),(1,NULL,'1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803099),(1,NULL,'zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803114),(1,NULL,'tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803200),(1,NULL,'GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803205),(1,NULL,'tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803213),(1,NULL,'vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803217),(1,NULL,'hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803234),(1,NULL,'eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803238),(1,NULL,'5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803244),(1,NULL,'rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803249),(1,NULL,'V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803253),(1,NULL,'nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803258),(1,NULL,'y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803264),(1,NULL,'vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803302),(1,NULL,'lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803309),(1,NULL,'huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803313),(1,NULL,'9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803338),(1,NULL,'yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803342),(1,NULL,'pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803347),(1,NULL,'71e17KeduiXgODLMlUxiow','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803352),(1,NULL,'xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803378),(1,NULL,'0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803383),(1,NULL,'taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803387),(1,NULL,'K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803391),(1,NULL,'fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803395),(1,NULL,'oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803399),(1,NULL,'9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803405),(1,NULL,'_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803409),(1,NULL,'Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803478),(1,NULL,'NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803638),(1,NULL,'AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803665),(1,NULL,'F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803673),(1,NULL,'Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803760),(1,NULL,'BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803871),(1,NULL,'X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804045),(1,NULL,'UL-ItI4L1Z6-WSuhuXVvsQ','stevestyle000000000003','PBtmpl0000000000000111',1225139673),(1,NULL,'7-0-style0000000000049','PBtmpl0000000000000060','PBtmpl0000000000000060',1224117144),(0,NULL,'jVKLVakT_iA2010_oEuAwg','PBtmpl0000000000000060','PBtmpl0000000000000060',1224116526),(1,'

             

            ','QpmlAiYZz6VsKBM-_0wXaw','stevestyle000000000003','PBtmpl0000000000000111',1224616691),(1,NULL,'HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000060','PBtmpl0000000000000111',1225404573),(1,NULL,'IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1226011853),(1,NULL,'K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074310),(1,NULL,'_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000060','PBtmpl0000000000000111',1226643205),(1,NULL,'AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000060','PBtmpl0000000000000111',1226659753),(1,NULL,'qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074362),(1,NULL,'5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000060','PBtmpl0000000000000060',1227540002),(1,NULL,'LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000060','PBtmpl0000000000000060',1232673968),(1,NULL,'QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000060','PBtmpl0000000000000111',1233173545),(1,NULL,'HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227634350),(1,NULL,'Vch1Ww7G_JpBhOhXX07RDg','PBtmpl0000000000000060','PBtmpl0000000000000111',1235705952); +INSERT INTO webguiVersion (webguiVersion,versionType,dateApplied) VALUES ('7.6.14','Initial Install',UNIX_TIMESTAMP()); diff --git a/docs/upgrades/_upgrade.skeleton b/docs/upgrades/_upgrade.skeleton index 2591a1187..d438b97b7 100644 --- a/docs/upgrades/_upgrade.skeleton +++ b/docs/upgrades/_upgrade.skeleton @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/packages-7.6.12/default_post_form.wgpkg b/docs/upgrades/packages-7.6.12/default_post_form.wgpkg new file mode 100644 index 000000000..28e531cd9 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/default_post_form.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/default_submission_form.wgpkg b/docs/upgrades/packages-7.6.12/default_submission_form.wgpkg new file mode 100644 index 000000000..625ec3f5f Binary files /dev/null and b/docs/upgrades/packages-7.6.12/default_submission_form.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/faq_submission_form.wgpkg b/docs/upgrades/packages-7.6.12/faq_submission_form.wgpkg new file mode 100644 index 000000000..2b01ed992 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/faq_submission_form.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/job_submission_form.wgpkg b/docs/upgrades/packages-7.6.12/job_submission_form.wgpkg new file mode 100644 index 000000000..a0785faa5 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/job_submission_form.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/link_list_submission_form.wgpkg b/docs/upgrades/packages-7.6.12/link_list_submission_form.wgpkg new file mode 100644 index 000000000..6f369f0bf Binary files /dev/null and b/docs/upgrades/packages-7.6.12/link_list_submission_form.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/request-tracker-template2.wgpkg b/docs/upgrades/packages-7.6.12/request-tracker-template2.wgpkg new file mode 100644 index 000000000..0ebaa7c8b Binary files /dev/null and b/docs/upgrades/packages-7.6.12/request-tracker-template2.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_account_account.css.wgpkg b/docs/upgrades/packages-7.6.12/root_import_account_account.css.wgpkg new file mode 100644 index 000000000..628607b9b Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_account_account.css.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_account_contributions_default-contributions-view.wgpkg b/docs/upgrades/packages-7.6.12/root_import_account_contributions_default-contributions-view.wgpkg new file mode 100644 index 000000000..a1310d78c Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_account_contributions_default-contributions-view.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_account_inbox_default-inbox-view-template.wgpkg b/docs/upgrades/packages-7.6.12/root_import_account_inbox_default-inbox-view-template.wgpkg new file mode 100644 index 000000000..68793ae57 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_account_inbox_default-inbox-view-template.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-delete-album.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-delete-album.wgpkg new file mode 100644 index 000000000..dcb26da30 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-delete-album.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-delete-file.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-delete-file.wgpkg new file mode 100644 index 000000000..4c35daf10 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-delete-file.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-edit-comment.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-edit-comment.wgpkg new file mode 100644 index 000000000..5209c3608 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-edit-comment.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-list-albums-view.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-list-albums-view.wgpkg new file mode 100644 index 000000000..35b4d1c7c Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-list-albums-view.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-list-files-for-user.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-list-files-for-user.wgpkg new file mode 100644 index 000000000..c7f19de93 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-list-files-for-user.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-search.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-search.wgpkg new file mode 100644 index 000000000..419b68adc Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-search.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-album-thumbnails.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-album-thumbnails.wgpkg new file mode 100644 index 000000000..57734e226 Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-album-thumbnails.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-album.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-album.wgpkg new file mode 100644 index 000000000..b8963796e Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-album.wgpkg differ diff --git a/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-photo.wgpkg b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-photo.wgpkg new file mode 100644 index 000000000..c1c8f3aae Binary files /dev/null and b/docs/upgrades/packages-7.6.12/root_import_gallery-templates_default-gallery-view-photo.wgpkg differ diff --git a/docs/upgrades/packages-7.6.13/root_import_account_inbox_default-inbox-view-template.wgpkg b/docs/upgrades/packages-7.6.13/root_import_account_inbox_default-inbox-view-template.wgpkg new file mode 100644 index 000000000..a6449c0ae Binary files /dev/null and b/docs/upgrades/packages-7.6.13/root_import_account_inbox_default-inbox-view-template.wgpkg differ diff --git a/docs/upgrades/packages-7.6.14/matrix-default-compare-template.wgpkg b/docs/upgrades/packages-7.6.14/matrix-default-compare-template.wgpkg new file mode 100644 index 000000000..df8544d03 Binary files /dev/null and b/docs/upgrades/packages-7.6.14/matrix-default-compare-template.wgpkg differ diff --git a/docs/upgrades/packages-7.6.14/matrix-default-detailed-listing.wgpkg b/docs/upgrades/packages-7.6.14/matrix-default-detailed-listing.wgpkg new file mode 100644 index 000000000..0fb429be8 Binary files /dev/null and b/docs/upgrades/packages-7.6.14/matrix-default-detailed-listing.wgpkg differ diff --git a/docs/upgrades/packages-7.6.14/matrix-default-view-template.wgpkg b/docs/upgrades/packages-7.6.14/matrix-default-view-template.wgpkg new file mode 100644 index 000000000..d71fad48f Binary files /dev/null and b/docs/upgrades/packages-7.6.14/matrix-default-view-template.wgpkg differ diff --git a/docs/upgrades/packages-7.6.14/matrix-search-template.wgpkg b/docs/upgrades/packages-7.6.14/matrix-search-template.wgpkg new file mode 100644 index 000000000..442b1c616 Binary files /dev/null and b/docs/upgrades/packages-7.6.14/matrix-search-template.wgpkg differ diff --git a/docs/upgrades/packages-7.6.14/matrix_equal-cols.js.wgpkg b/docs/upgrades/packages-7.6.14/matrix_equal-cols.js.wgpkg new file mode 100644 index 000000000..e68679472 Binary files /dev/null and b/docs/upgrades/packages-7.6.14/matrix_equal-cols.js.wgpkg differ diff --git a/docs/upgrades/packages-7.6.14/new-matrix_matrix-nav-tmpl.wgpkg b/docs/upgrades/packages-7.6.14/new-matrix_matrix-nav-tmpl.wgpkg new file mode 100644 index 000000000..cf62c9bed Binary files /dev/null and b/docs/upgrades/packages-7.6.14/new-matrix_matrix-nav-tmpl.wgpkg differ diff --git a/docs/upgrades/packages-7.6.14/new-matrix_matrix-nav.wgpkg b/docs/upgrades/packages-7.6.14/new-matrix_matrix-nav.wgpkg new file mode 100644 index 000000000..716674912 Binary files /dev/null and b/docs/upgrades/packages-7.6.14/new-matrix_matrix-nav.wgpkg differ diff --git a/docs/upgrades/packages-7.6.14/new-matrix_matrix.css.wgpkg b/docs/upgrades/packages-7.6.14/new-matrix_matrix.css.wgpkg new file mode 100644 index 000000000..6d514f720 Binary files /dev/null and b/docs/upgrades/packages-7.6.14/new-matrix_matrix.css.wgpkg differ diff --git a/docs/upgrades/packages-7.7.0/matrix-default-detailed-listing.wgpkg b/docs/upgrades/packages-7.7.0/matrix-default-detailed-listing.wgpkg new file mode 100644 index 000000000..6b9905fac Binary files /dev/null and b/docs/upgrades/packages-7.7.0/matrix-default-detailed-listing.wgpkg differ diff --git a/docs/upgrades/packages-7.7.0/matrix-default-screenshots-config.wgpkg b/docs/upgrades/packages-7.7.0/matrix-default-screenshots-config.wgpkg new file mode 100644 index 000000000..c461d01b3 Binary files /dev/null and b/docs/upgrades/packages-7.7.0/matrix-default-screenshots-config.wgpkg differ diff --git a/docs/upgrades/packages-7.7.0/matrix-default-screenshots.wgpkg b/docs/upgrades/packages-7.7.0/matrix-default-screenshots.wgpkg new file mode 100644 index 000000000..9f8239915 Binary files /dev/null and b/docs/upgrades/packages-7.7.0/matrix-default-screenshots.wgpkg differ diff --git a/docs/upgrades/packages-7.7.0/matrix-default-view-template.wgpkg b/docs/upgrades/packages-7.7.0/matrix-default-view-template.wgpkg new file mode 100644 index 000000000..15e25687b Binary files /dev/null and b/docs/upgrades/packages-7.7.0/matrix-default-view-template.wgpkg differ diff --git a/docs/upgrades/packages-7.7.0/root_import_gallery-templates_default-gallery-view-album.wgpkg b/docs/upgrades/packages-7.7.0/root_import_gallery-templates_default-gallery-view-album.wgpkg new file mode 100644 index 000000000..e1db1a738 Binary files /dev/null and b/docs/upgrades/packages-7.7.0/root_import_gallery-templates_default-gallery-view-album.wgpkg differ diff --git a/docs/upgrades/upgrade_7.5.24-7.6.0.pl b/docs/upgrades/upgrade_7.5.24-7.6.0.pl index 403174ddb..b19ffe5ed 100644 --- a/docs/upgrades/upgrade_7.5.24-7.6.0.pl +++ b/docs/upgrades/upgrade_7.5.24-7.6.0.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.5.40-7.6.10.pl b/docs/upgrades/upgrade_7.5.40-7.6.10.pl index 6d35a8bf1..3d368a284 100644 --- a/docs/upgrades/upgrade_7.5.40-7.6.10.pl +++ b/docs/upgrades/upgrade_7.5.40-7.6.10.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -254,7 +254,7 @@ sub upgradeMatrix { my $session = shift; print "\tUpgrading matrix assets... \n" unless $quiet; my $db = $session->db; - $db->write("alter table Matrix drop column groupToRate, drop column groupToAdd, drop column privilegedGroup, + $db->write("alter table Matrix drop column groupToRate, drop column privilegedGroup, drop column ratingTimeout, drop column ratingTimeoutPrivileged, drop column ratingDetailTemplateId, drop column visitorCacheTimeout"); $db->write("alter table Matrix add column defaultSort char(22) not null default 'score', @@ -295,7 +295,8 @@ sub upgradeMatrix { $db->write("alter table Matrix_rating rename MatrixListing_rating"); $db->write("alter table Matrix_ratingSummary rename MatrixListing_ratingSummary"); $db->write("alter table Matrix_field rename Matrix_attribute"); - $db->write("alter table Matrix_attribute drop column label"); + $db->write("alter table Matrix_attribute drop column name"); + $db->write("alter table Matrix_attribute change label name char(255)"); $db->write("alter table Matrix_attribute add column options text"); $db->write("alter table Matrix_attribute change fieldType fieldType char(255) not null default 'MatrixCompare'"); $db->write("alter table Matrix_attribute change fieldId attributeId char(22) not null"); @@ -336,6 +337,7 @@ sub upgradeMatrix { $listing->{title} = $listing->{productName}; $listing->{version} = $listing->{versionNumber}; $listing->{screenshots} = $listing->{storageId}; + $listing->{ownerUserId} = $listing->{maintainerId}; $listing->{productURL} = $listing->{productUrl}; $listing->{manufacturerURL} = $listing->{manufacturerUrl}; my $newMatrixListing = $matrix->addChild($listing,undef,undef,{skipAutoCommitWorkflows=>1}); diff --git a/docs/upgrades/upgrade_7.6.0-7.6.1.pl b/docs/upgrades/upgrade_7.6.0-7.6.1.pl index 7d694ab64..a15306df6 100644 --- a/docs/upgrades/upgrade_7.6.0-7.6.1.pl +++ b/docs/upgrades/upgrade_7.6.0-7.6.1.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.6.1-7.6.2.pl b/docs/upgrades/upgrade_7.6.1-7.6.2.pl index a2924cade..d18039665 100644 --- a/docs/upgrades/upgrade_7.6.1-7.6.2.pl +++ b/docs/upgrades/upgrade_7.6.1-7.6.2.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.6.10-7.6.11.pl b/docs/upgrades/upgrade_7.6.10-7.6.11.pl index dfb0afc00..06f8e54e3 100644 --- a/docs/upgrades/upgrade_7.6.10-7.6.11.pl +++ b/docs/upgrades/upgrade_7.6.10-7.6.11.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -35,8 +35,7 @@ removeBrokenWorkflowInstances($session); undotBinaryExtensions($session); removeProcessRecurringPaymentsFromConfig($session); noSessionSwitch($session); -surveyDoAfterTimeLimit($session); -surveyRemoveResponseTemplate($session); +addReCaptchaSettings($session); fixDottedAssetIds($session); ##This one should run last finish($session); # this line required @@ -61,6 +60,27 @@ sub removeProcessRecurringPaymentsFromConfig { print "Done.\n" unless $quiet; } +#---------------------------------------------------------------------------- +sub addReCaptchaSettings { + my $session = shift; + print "\tAdding settings for reCAPTCHA..." unless $quiet; + my $currentSetting; + + $currentSetting = $session->setting->get('useRecaptcha'); + $session->setting->remove('useRecaptcha'); + $session->setting->add('useRecaptcha', $currentSetting); + + $currentSetting = $session->setting->get('recaptchaPublicKey'); + $session->setting->remove('recaptchaPublicKey'); + $session->setting->add('recaptchaPublicKey', $currentSetting); + + $currentSetting = $session->setting->get('recaptchaPrivateKey'); + $session->setting->remove('recaptchaPrivateKey'); + $session->setting->add('recaptchaPrivateKey', $currentSetting); + + print "Done.\n" unless $quiet; +} + #---------------------------------------------------------------------------- sub hideGalleryAlbums { my $session = shift; @@ -84,26 +104,6 @@ sub undotBinaryExtensions { print "DONE!\n" unless $quiet; } -#---------------------------------------------------------------------------- -sub surveyDoAfterTimeLimit { - my $session = shift; - print "\tAdding column doAfterTimeLimit to Survey table... " unless $quiet; - $session->db->write('alter table Survey add doAfterTimeLimit char(22)'); - print "DONE!\n" unless $quiet; - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub surveyRemoveResponseTemplate { - my $session = shift; - print "\tRemoving responseTemplate... " unless $quiet; - $session->db->write('alter table Survey drop responseTemplateId'); - if (my $template = WebGUI::Asset->new($session, 'PBtmpl0000000000000064')) { - $template->purge(); - } - print "DONE!\n" unless $quiet; -} - #---------------------------------------------------------------------------- sub fixDottedAssetIds { my $session = shift; diff --git a/docs/upgrades/upgrade_7.6.11-7.6.12.pl b/docs/upgrades/upgrade_7.6.11-7.6.12.pl new file mode 100644 index 000000000..14f5388b2 --- /dev/null +++ b/docs/upgrades/upgrade_7.6.11-7.6.12.pl @@ -0,0 +1,185 @@ +#!/usr/bin/env perl + +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------- +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------- + +our ($webguiRoot); + +BEGIN { + $webguiRoot = "../.."; + unshift (@INC, $webguiRoot."/lib"); +} + +use strict; +use Getopt::Long; +use WebGUI::Session; +use WebGUI::Storage; +use WebGUI::Asset; +use WebGUI::Utility qw/isIn/; + + +my $toVersion = '7.6.12'; +my $quiet; # this line required + + +my $session = start(); # this line required +addAssetDiscoveryServiceAgain( $session ); +changeMatrixAttributeIndexing( $session ); +fixCollaborationGroupToEditPost( $session ); +convertLongVarcharsToText( $session ); + +# upgrade functions go here + +finish($session); # this line required + + +#---------------------------------------------------------------------------- +# Describe what our function does +#sub exampleFunction { +# my $session = shift; +# print "\tWe're doing some stuff here that you should know about... " unless $quiet; +# # and here's our code +# print "DONE!\n" unless $quiet; +#} + +#---------------------------------------------------------------------------- +sub convertLongVarcharsToText { + my $session = shift; + print "\tConverting Survey VARCHAR fields to TEXT... " unless $quiet; + $session->db->write("ALTER TABLE Survey MODIFY COLUMN exitURL TEXT"); + $session->db->write("ALTER TABLE Survey_tempReport MODIFY COLUMN sectionName TEXT"); + $session->db->write("ALTER TABLE Survey_tempReport MODIFY COLUMN questionName TEXT"); + # and here's our code + print "Done.\n" unless $quiet; +} + +#---------------------------------------------------------------------------- +sub addAssetDiscoveryServiceAgain { + my $session = shift; + print "\tAdding asset discovery service..." unless $quiet; + my @handlers = @{ $session->config->get('contentHandlers') }; + if (isIn( 'WebGUI::Content::AssetDiscovery', @handlers) ) { + print "Done.\n" unless $quiet; + return; + } + my @newHandlers = (); + foreach my $handler (@handlers) { + if ($handler eq 'WebGUI::Content::Operation') { + push @newHandlers, 'WebGUI::Content::AssetDiscovery'; + } + push @newHandlers, $handler; + } + $session->config->set('contentHandlers', \@newHandlers); + print "Done.\n" unless $quiet; +} + +#---------------------------------------------------------------------------- +sub changeMatrixAttributeIndexing { + my $session = shift; + print "\tChanging Matrix attribute indexing..." unless $quiet; + $session->db->write("alter table MatrixListing_attribute drop primary key, add primary key(attributeId,matrixListingId)"); + print "Done.\n" unless $quiet; +} + +#---------------------------------------------------------------------------- +# Fix the groupToEditPost in the Collaboration (should not be "") +sub fixCollaborationGroupToEditPost { + my $session = shift; + print "\tFixing group to edit post in Collaboration..." unless $quiet; + # and here's our code + $session->db->write(<<'SQL'); +UPDATE Collaboration +SET groupToEditPost= ( + SELECT groupIdEdit FROM assetData + WHERE assetData.assetId=Collaboration.assetId + AND assetData.revisionDate = Collaboration.revisionDate +) +WHERE groupToEditPost = ""; +SQL + print "DONE!\n" unless $quiet; +} +# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- + +#---------------------------------------------------------------------------- +# Add a package to the import node +sub addPackage { + my $session = shift; + my $file = shift; + + # Make a storage location for the package + my $storage = WebGUI::Storage->createTemp( $session ); + $storage->addFileFromFilesystem( $file ); + + # Import the package into the import node + my $package = WebGUI::Asset->getImportNode($session)->importPackage( $storage ); + + # Make the package not a package anymore + $package->update({ isPackage => 0 }); + + # Set the default flag for templates added + my $assetIds + = $package->getLineage( ['self','descendants'], { + includeOnlyClasses => [ 'WebGUI::Asset::Template' ], + } ); + for my $assetId ( @{ $assetIds } ) { + my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId ); + if ( !$asset ) { + print "Couldn't instantiate asset with ID '$assetId'. Please check package '$file' for corruption.\n"; + next; + } + $asset->update( { isDefault => 1 } ); + } + + return; +} + +#------------------------------------------------- +sub start { + my $configFile; + $|=1; #disable output buffering + GetOptions( + 'configFile=s'=>\$configFile, + 'quiet'=>\$quiet + ); + my $session = WebGUI::Session->open($webguiRoot,$configFile); + $session->user({userId=>3}); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->set({name=>"Upgrade to ".$toVersion}); + return $session; +} + +#------------------------------------------------- +sub finish { + my $session = shift; + updateTemplates($session); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->commit; + $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".$session->datetime->time().")"); + $session->close(); +} + +#------------------------------------------------- +sub updateTemplates { + my $session = shift; + return undef unless (-d "packages-".$toVersion); + print "\tUpdating packages.\n" unless ($quiet); + opendir(DIR,"packages-".$toVersion); + my @files = readdir(DIR); + closedir(DIR); + my $newFolder = undef; + foreach my $file (@files) { + next unless ($file =~ /\.wgpkg$/); + # Fix the filename to include a path + $file = "packages-" . $toVersion . "/" . $file; + addPackage( $session, $file ); + } +} + +#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.6.12-7.6.13.pl b/docs/upgrades/upgrade_7.6.12-7.6.13.pl new file mode 100644 index 000000000..bafa016ce --- /dev/null +++ b/docs/upgrades/upgrade_7.6.12-7.6.13.pl @@ -0,0 +1,125 @@ +#!/usr/bin/env perl + +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------- +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------- + +our ($webguiRoot); + +BEGIN { + $webguiRoot = "../.."; + unshift (@INC, $webguiRoot."/lib"); +} + +use strict; +use Getopt::Long; +use WebGUI::Session; +use WebGUI::Storage; +use WebGUI::Asset; + + +my $toVersion = '7.6.13'; +my $quiet; # this line required + + +my $session = start(); # this line required + +# upgrade functions go here + +finish($session); # this line required + + +#---------------------------------------------------------------------------- +# Describe what our function does +#sub exampleFunction { +# my $session = shift; +# print "\tWe're doing some stuff here that you should know about... " unless $quiet; +# # and here's our code +# print "DONE!\n" unless $quiet; +#} + + +# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- + +#---------------------------------------------------------------------------- +# Add a package to the import node +sub addPackage { + my $session = shift; + my $file = shift; + + # Make a storage location for the package + my $storage = WebGUI::Storage->createTemp( $session ); + $storage->addFileFromFilesystem( $file ); + + # Import the package into the import node + my $package = WebGUI::Asset->getImportNode($session)->importPackage( $storage ); + + # Make the package not a package anymore + $package->update({ isPackage => 0 }); + + # Set the default flag for templates added + my $assetIds + = $package->getLineage( ['self','descendants'], { + includeOnlyClasses => [ 'WebGUI::Asset::Template' ], + } ); + for my $assetId ( @{ $assetIds } ) { + my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId ); + if ( !$asset ) { + print "Couldn't instantiate asset with ID '$assetId'. Please check package '$file' for corruption.\n"; + next; + } + $asset->update( { isDefault => 1 } ); + } + + return; +} + +#------------------------------------------------- +sub start { + my $configFile; + $|=1; #disable output buffering + GetOptions( + 'configFile=s'=>\$configFile, + 'quiet'=>\$quiet + ); + my $session = WebGUI::Session->open($webguiRoot,$configFile); + $session->user({userId=>3}); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->set({name=>"Upgrade to ".$toVersion}); + return $session; +} + +#------------------------------------------------- +sub finish { + my $session = shift; + updateTemplates($session); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->commit; + $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".$session->datetime->time().")"); + $session->close(); +} + +#------------------------------------------------- +sub updateTemplates { + my $session = shift; + return undef unless (-d "packages-".$toVersion); + print "\tUpdating packages.\n" unless ($quiet); + opendir(DIR,"packages-".$toVersion); + my @files = readdir(DIR); + closedir(DIR); + my $newFolder = undef; + foreach my $file (@files) { + next unless ($file =~ /\.wgpkg$/); + # Fix the filename to include a path + $file = "packages-" . $toVersion . "/" . $file; + addPackage( $session, $file ); + } +} + +#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.6.13-7.6.14.pl b/docs/upgrades/upgrade_7.6.13-7.6.14.pl new file mode 100644 index 000000000..436e9ff4e --- /dev/null +++ b/docs/upgrades/upgrade_7.6.13-7.6.14.pl @@ -0,0 +1,125 @@ +#!/usr/bin/env perl + +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------- +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------- + +our ($webguiRoot); + +BEGIN { + $webguiRoot = "../.."; + unshift (@INC, $webguiRoot."/lib"); +} + +use strict; +use Getopt::Long; +use WebGUI::Session; +use WebGUI::Storage; +use WebGUI::Asset; + + +my $toVersion = '7.6.14'; +my $quiet; # this line required + + +my $session = start(); # this line required + +# upgrade functions go here + +finish($session); # this line required + + +#---------------------------------------------------------------------------- +# Describe what our function does +#sub exampleFunction { +# my $session = shift; +# print "\tWe're doing some stuff here that you should know about... " unless $quiet; +# # and here's our code +# print "DONE!\n" unless $quiet; +#} + + +# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- + +#---------------------------------------------------------------------------- +# Add a package to the import node +sub addPackage { + my $session = shift; + my $file = shift; + + # Make a storage location for the package + my $storage = WebGUI::Storage->createTemp( $session ); + $storage->addFileFromFilesystem( $file ); + + # Import the package into the import node + my $package = WebGUI::Asset->getImportNode($session)->importPackage( $storage ); + + # Make the package not a package anymore + $package->update({ isPackage => 0 }); + + # Set the default flag for templates added + my $assetIds + = $package->getLineage( ['self','descendants'], { + includeOnlyClasses => [ 'WebGUI::Asset::Template' ], + } ); + for my $assetId ( @{ $assetIds } ) { + my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId ); + if ( !$asset ) { + print "Couldn't instantiate asset with ID '$assetId'. Please check package '$file' for corruption.\n"; + next; + } + $asset->update( { isDefault => 1 } ); + } + + return; +} + +#------------------------------------------------- +sub start { + my $configFile; + $|=1; #disable output buffering + GetOptions( + 'configFile=s'=>\$configFile, + 'quiet'=>\$quiet + ); + my $session = WebGUI::Session->open($webguiRoot,$configFile); + $session->user({userId=>3}); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->set({name=>"Upgrade to ".$toVersion}); + return $session; +} + +#------------------------------------------------- +sub finish { + my $session = shift; + updateTemplates($session); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->commit; + $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".$session->datetime->time().")"); + $session->close(); +} + +#------------------------------------------------- +sub updateTemplates { + my $session = shift; + return undef unless (-d "packages-".$toVersion); + print "\tUpdating packages.\n" unless ($quiet); + opendir(DIR,"packages-".$toVersion); + my @files = readdir(DIR); + closedir(DIR); + my $newFolder = undef; + foreach my $file (@files) { + next unless ($file =~ /\.wgpkg$/); + # Fix the filename to include a path + $file = "packages-" . $toVersion . "/" . $file; + addPackage( $session, $file ); + } +} + +#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.6.14-7.7.0.pl b/docs/upgrades/upgrade_7.6.14-7.7.0.pl new file mode 100644 index 000000000..65e25aa6c --- /dev/null +++ b/docs/upgrades/upgrade_7.6.14-7.7.0.pl @@ -0,0 +1,151 @@ +#!/usr/bin/env perl + +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------- +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------- + +our ($webguiRoot); + +BEGIN { + $webguiRoot = "../.."; + unshift (@INC, $webguiRoot."/lib"); +} + +use strict; +use Getopt::Long; +use WebGUI::Session; +use WebGUI::Storage; +use WebGUI::Asset; + + +my $toVersion = '7.7.0'; +my $quiet; # this line required + + +my $session = start(); # this line required + +# upgrade functions go here + +addGroupToAddToMatrix( $session ); +addScreenshotTemplatesToMatrix( $session ); + +finish($session); # this line required + +#---------------------------------------------------------------------------- +sub addGroupToAddToMatrix { + my $session = shift; + print "\tAdding groupToAdd to Matrix table, if needed... \n" unless $quiet; + my $sth = $session->db->read('describe Matrix groupToAdd'); + if (! defined $sth->hashRef) { + $session->db->write("alter table Matrix add column groupToAdd char(22) default 2"); + } + print "Done.\n" unless $quiet; +} + +#---------------------------------------------------------------------------- +sub addScreenshotTemplatesToMatrix { + my $session = shift; + print "\tAdding screenshot templates to Matrix table \n" unless $quiet; + + $session->db->write("alter table Matrix add screenshotsConfigTemplateId char(22);"); + $session->db->write("update Matrix set screenshotsConfigTemplateId = 'matrixtmpl000000000007';"); + $session->db->write("alter table Matrix add screenshotsTemplateId char(22);"); + $session->db->write("update Matrix set screenshotsTemplateId = 'matrixtmpl000000000006';"); + + print "Done.\n" unless $quiet; +} + +#---------------------------------------------------------------------------- +# Describe what our function does +#sub exampleFunction { +# my $session = shift; +# print "\tWe're doing some stuff here that you should know about... " unless $quiet; +# # and here's our code +# print "DONE!\n" unless $quiet; +#} + + +# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- + +#---------------------------------------------------------------------------- +# Add a package to the import node +sub addPackage { + my $session = shift; + my $file = shift; + + # Make a storage location for the package + my $storage = WebGUI::Storage->createTemp( $session ); + $storage->addFileFromFilesystem( $file ); + + # Import the package into the import node + my $package = WebGUI::Asset->getImportNode($session)->importPackage( $storage ); + + # Make the package not a package anymore + $package->update({ isPackage => 0 }); + + # Set the default flag for templates added + my $assetIds + = $package->getLineage( ['self','descendants'], { + includeOnlyClasses => [ 'WebGUI::Asset::Template' ], + } ); + for my $assetId ( @{ $assetIds } ) { + my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId ); + if ( !$asset ) { + print "Couldn't instantiate asset with ID '$assetId'. Please check package '$file' for corruption.\n"; + next; + } + $asset->update( { isDefault => 1 } ); + } + + return; +} + +#------------------------------------------------- +sub start { + my $configFile; + $|=1; #disable output buffering + GetOptions( + 'configFile=s'=>\$configFile, + 'quiet'=>\$quiet + ); + my $session = WebGUI::Session->open($webguiRoot,$configFile); + $session->user({userId=>3}); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->set({name=>"Upgrade to ".$toVersion}); + return $session; +} + +#------------------------------------------------- +sub finish { + my $session = shift; + updateTemplates($session); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->commit; + $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".$session->datetime->time().")"); + $session->close(); +} + +#------------------------------------------------- +sub updateTemplates { + my $session = shift; + return undef unless (-d "packages-".$toVersion); + print "\tUpdating packages.\n" unless ($quiet); + opendir(DIR,"packages-".$toVersion); + my @files = readdir(DIR); + closedir(DIR); + my $newFolder = undef; + foreach my $file (@files) { + next unless ($file =~ /\.wgpkg$/); + # Fix the filename to include a path + $file = "packages-" . $toVersion . "/" . $file; + addPackage( $session, $file ); + } +} + +#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.6.2-7.6.3.pl b/docs/upgrades/upgrade_7.6.2-7.6.3.pl index 582fb29ec..950f95c55 100644 --- a/docs/upgrades/upgrade_7.6.2-7.6.3.pl +++ b/docs/upgrades/upgrade_7.6.2-7.6.3.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.6.3-7.6.4.pl b/docs/upgrades/upgrade_7.6.3-7.6.4.pl index 7cbc9da42..7a850c9eb 100644 --- a/docs/upgrades/upgrade_7.6.3-7.6.4.pl +++ b/docs/upgrades/upgrade_7.6.3-7.6.4.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -61,7 +61,7 @@ sub upgradeMatrix { my $session = shift; print "\tUpgrading matrix assets... \n" unless $quiet; my $db = $session->db; - $db->write("alter table Matrix drop column groupToRate, drop column groupToAdd, drop column privilegedGroup, + $db->write("alter table Matrix drop column groupToRate, drop column privilegedGroup, drop column ratingTimeout, drop column ratingTimeoutPrivileged, drop column ratingDetailTemplateId, drop column visitorCacheTimeout"); $db->write("alter table Matrix add column defaultSort char(22) not null default 'score', @@ -102,7 +102,8 @@ sub upgradeMatrix { $db->write("alter table Matrix_rating rename MatrixListing_rating"); $db->write("alter table Matrix_ratingSummary rename MatrixListing_ratingSummary"); $db->write("alter table Matrix_field rename Matrix_attribute"); - $db->write("alter table Matrix_attribute drop column label"); + $db->write("alter table Matrix_attribute drop column name"); + $db->write("alter table Matrix_attribute change label name char(255)"); $db->write("alter table Matrix_attribute add column options text"); $db->write("alter table Matrix_attribute change fieldType fieldType char(255) not null default 'MatrixCompare'"); $db->write("alter table Matrix_attribute change fieldId attributeId char(22) not null"); @@ -143,6 +144,7 @@ sub upgradeMatrix { $listing->{title} = $listing->{productName}; $listing->{version} = $listing->{versionNumber}; $listing->{screenshots} = $listing->{storageId}; + $listing->{ownerUserId} = $listing->{maintainerId}; $listing->{productURL} = $listing->{productUrl}; $listing->{manufacturerURL} = $listing->{manufacturerUrl}; my $newMatrixListing = $matrix->addChild($listing,undef,undef,{skipAutoCommitWorkflows=>1}); diff --git a/docs/upgrades/upgrade_7.6.4-7.6.5.pl b/docs/upgrades/upgrade_7.6.4-7.6.5.pl index 24a3a3ffa..433539117 100644 --- a/docs/upgrades/upgrade_7.6.4-7.6.5.pl +++ b/docs/upgrades/upgrade_7.6.4-7.6.5.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.6.5-7.6.6.pl b/docs/upgrades/upgrade_7.6.5-7.6.6.pl index f23ca8ee7..2bc8956e4 100644 --- a/docs/upgrades/upgrade_7.6.5-7.6.6.pl +++ b/docs/upgrades/upgrade_7.6.5-7.6.6.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.6.6-7.6.7.pl b/docs/upgrades/upgrade_7.6.6-7.6.7.pl index bf42a72ca..92a6b43bf 100644 --- a/docs/upgrades/upgrade_7.6.6-7.6.7.pl +++ b/docs/upgrades/upgrade_7.6.6-7.6.7.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.6.7-7.6.8.pl b/docs/upgrades/upgrade_7.6.7-7.6.8.pl index ef79130f9..09cd0d555 100644 --- a/docs/upgrades/upgrade_7.6.7-7.6.8.pl +++ b/docs/upgrades/upgrade_7.6.7-7.6.8.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.6.8-7.6.9.pl b/docs/upgrades/upgrade_7.6.8-7.6.9.pl index 3da43274c..a1ea626a1 100644 --- a/docs/upgrades/upgrade_7.6.8-7.6.9.pl +++ b/docs/upgrades/upgrade_7.6.8-7.6.9.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/docs/upgrades/upgrade_7.6.9-7.6.10.pl b/docs/upgrades/upgrade_7.6.9-7.6.10.pl index 05f291457..cfb040fa7 100644 --- a/docs/upgrades/upgrade_7.6.9-7.6.10.pl +++ b/docs/upgrades/upgrade_7.6.9-7.6.10.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/Spectre/Admin.pm b/lib/Spectre/Admin.pm index 3661ef4f0..0f23aa036 100644 --- a/lib/Spectre/Admin.pm +++ b/lib/Spectre/Admin.pm @@ -3,7 +3,7 @@ package Spectre::Admin; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/Spectre/Cron.pm b/lib/Spectre/Cron.pm index aaf43c0af..6bdf3fe8f 100644 --- a/lib/Spectre/Cron.pm +++ b/lib/Spectre/Cron.pm @@ -3,7 +3,7 @@ package Spectre::Cron; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/Spectre/Workflow.pm b/lib/Spectre/Workflow.pm index f7aa3cf9f..fccb983f3 100644 --- a/lib/Spectre/Workflow.pm +++ b/lib/Spectre/Workflow.pm @@ -3,7 +3,7 @@ package Spectre::Workflow; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI.pm b/lib/WebGUI.pm index 1cfae126f..669c440b3 100644 --- a/lib/WebGUI.pm +++ b/lib/WebGUI.pm @@ -1,14 +1,14 @@ package WebGUI; -our $VERSION = '7.6.11'; -our $STATUS = "beta"; +our $VERSION = '7.7.0'; +our $STATUS = 'beta'; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Account/Contributions.pm b/lib/WebGUI/Account/Contributions.pm index 6b74d1280..d143b3598 100644 --- a/lib/WebGUI/Account/Contributions.pm +++ b/lib/WebGUI/Account/Contributions.pm @@ -145,6 +145,7 @@ sub www_view { #Set the uid just in case; #$self->uid($userId); + #Deal with sort order my $sortBy = $session->form->get("sortBy") || "creationDate"; my $sort_url = ($sortBy)?";sortBy=$sortBy":""; @@ -158,7 +159,7 @@ sub www_view { my $rpp_url = ";rpp=$rpp"; #Cache the base url - my $contribsUrl = $self->getUrl("module=contributions;do=view;uid=$userId"); + my $contribsUrl = $self->getUrl(undef, 'appendUID'); #Create sortBy headers $var->{'title_url' } = $contribsUrl.";sortBy=title".$sortDir_url.$rpp_url; @@ -198,6 +199,7 @@ sub www_view { my $assetId = $row->{assetId}; my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId ); my $props = $asset->get; + $props->{url} = $asset->getUrl; if (ref $asset eq "WebGUI::Asset::Post") { $asset = $asset->getThread; $props = $asset->get; diff --git a/lib/WebGUI/Account/Friends.pm b/lib/WebGUI/Account/Friends.pm index c0cfa2b5e..7b7f7c83e 100644 --- a/lib/WebGUI/Account/Friends.pm +++ b/lib/WebGUI/Account/Friends.pm @@ -328,7 +328,7 @@ sub www_removeFriend { #------------------------------------------------------------------- -=head2 www_removeFriend ( ) +=head2 www_removeFriendConfirm ( ) This is a confirmation page of whether or not the user wishes to remove the selected user from friend diff --git a/lib/WebGUI/AdSpace.pm b/lib/WebGUI/AdSpace.pm index c015f53cf..c113de56b 100644 --- a/lib/WebGUI/AdSpace.pm +++ b/lib/WebGUI/AdSpace.pm @@ -3,7 +3,7 @@ package WebGUI::AdSpace; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -52,6 +52,7 @@ sub countClick { my $session = shift; my $id = shift; my ($url) = $session->db->quickArray("select url from advertisement where adId=?",[$id]); + return $url if $session->env->requestNotViewed(); $session->db->write("update advertisement set clicks=clicks+1 where adId=?",[$id]); return $url; } @@ -131,6 +132,7 @@ A boolean that tells the ad system not to count this impression if true. sub displayImpression { my $self = shift; my $dontCount = shift; + return '' if $self->session->env->requestNotViewed(); my ($id, $ad, $priority, $clicks, $clicksBought, $impressions, $impressionsBought) = $self->session->db->quickArray("select adId, renderedAd, priority, clicks, clicksBought, impressions, impressionsBought from advertisement where adSpaceId=? and isActive=1 order by nextInPriority asc limit 1",[$self->getId]); unless ($dontCount) { my $isActive = 1; diff --git a/lib/WebGUI/AdSpace/Ad.pm b/lib/WebGUI/AdSpace/Ad.pm index 46ec12f9e..9f97cf870 100644 --- a/lib/WebGUI/AdSpace/Ad.pm +++ b/lib/WebGUI/AdSpace/Ad.pm @@ -3,7 +3,7 @@ package WebGUI::AdSpace::Ad; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -261,12 +261,32 @@ sub set { $self->{_properties}{priority} = exists $properties->{priority} ? $properties->{priority} : $self->{_properties}{priority}; # prerender the ad for faster display my $adSpace = WebGUI::AdSpace->new($self->session, $self->get("adSpaceId")); - if ($self->get("type") eq "text") { - $self->{_properties}{renderedAd} = ''; - } elsif ($self->get("type") eq "image") { - my $storage = WebGUI::Storage->get($self->session, $self->get("storageId")); - $self->{_properties}{renderedAd} = ''; - } elsif ($self->get("type") eq "rich") { + if ($self->get("type") eq "text") { + $self->{_properties}{renderedAd} = + q{}; + } + elsif ($self->get("type") eq "image") { + my $storage = WebGUI::Storage->get($self->session, $self->get("storageId")); + $self->{_properties}{renderedAd} = + q{}; + } + elsif ($self->get("type") eq "rich") { my $ad = $self->get("richMedia"); WebGUI::Macro::process($self->session, \$ad); $self->{_properties}{renderedAd} = $ad; diff --git a/lib/WebGUI/AdminConsole.pm b/lib/WebGUI/AdminConsole.pm index a896989a2..29a6bc807 100644 --- a/lib/WebGUI/AdminConsole.pm +++ b/lib/WebGUI/AdminConsole.pm @@ -3,7 +3,7 @@ package WebGUI::AdminConsole; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -215,17 +215,27 @@ A reference to the current session. If supplied, provides a list of defaults such as title and icons for the admin console. +=head3 options + +A hash reference of options with the following keys + +=head4 showAdminBar + +If true, will show the admin bar on this admin console page + =cut sub new { my $class = shift; my $session = shift; my $id = shift; + my $options = shift; my $self; $self->{_session} = $session; bless $self, $class; $self->{_function} = {}; $self->{_functionId} = $id; + $self->{_options} = $options; return $self; } @@ -289,7 +299,17 @@ sub render { } $var{"backtosite.url"} = $self->session->url->getBackToSiteURL(); - return $self->session->style->process(WebGUI::Asset::Template->new($self->session,$self->session->setting->get("AdminConsoleTemplate"))->process(\%var),"PBtmpl0000000000000137"); + my $template + = WebGUI::Asset::Template->new( + $self->session, + $self->session->setting->get("AdminConsoleTemplate") + ); + if ( $self->{_options}->{showAdminBar} ) { + $var{adminBar} + = WebGUI::Macro::AdminBar::process($self->session); + } + my $output = $template->process(\%var); + return $self->session->style->process($output,"PBtmpl0000000000000137"); } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Affiliate.pm b/lib/WebGUI/Affiliate.pm index 9af5e16de..a4de4a072 100644 --- a/lib/WebGUI/Affiliate.pm +++ b/lib/WebGUI/Affiliate.pm @@ -5,7 +5,7 @@ use strict; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset.pm b/lib/WebGUI/Asset.pm index 97887aced..585a84ccf 100644 --- a/lib/WebGUI/Asset.pm +++ b/lib/WebGUI/Asset.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -1948,13 +1948,12 @@ sub outputWidgetMarkup { # we'll be serializing the content of the asset which is being widgetized. my $storage = WebGUI::Storage->get($session, $assetId); my $content = $self->view; - if($styleTemplateId eq '' or $styleTemplateId eq 'none'){ - $content = $self->session->style->userStyle($content); - }else{ + if($styleTemplateId ne '' && $styleTemplateId ne 'none'){ $content = $self->session->style->process($content,$styleTemplateId); } WebGUI::Macro::process($session, \$content); - my $jsonContent = to_json( { "asset$assetId" => { content => $content } } ); + my ($headTags, $body) = WebGUI::HTML::splitHeadBody($content); + my $jsonContent = to_json( { "asset$assetId" => { content => $body } } ); $storage->addFileFromScalar("$assetId.js", "data = $jsonContent"); my $jsonUrl = $storage->getUrl("$assetId.js"); @@ -1985,6 +1984,7 @@ sub outputWidgetMarkup { } YAHOO.util.Event.addListener(window, 'load', setupPage); + $headTags \${asset$assetId.content} diff --git a/lib/WebGUI/Asset/Event.pm b/lib/WebGUI/Asset/Event.pm index f183c1bc8..76508dc78 100644 --- a/lib/WebGUI/Asset/Event.pm +++ b/lib/WebGUI/Asset/Event.pm @@ -5,7 +5,7 @@ use strict; our $VERSION = "0.0.0"; #################################################################### -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #################################################################### # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -116,7 +116,7 @@ sub definition { }, 'storageId' => { fieldType => "Image", - defaultValue => undef, + defaultValue => '', maxAttachments => 1, }, 'feedUid' => { diff --git a/lib/WebGUI/Asset/File.pm b/lib/WebGUI/Asset/File.pm index 1683a6df6..214f264c5 100644 --- a/lib/WebGUI/Asset/File.pm +++ b/lib/WebGUI/Asset/File.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::File; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -116,12 +116,12 @@ sub definition { filename=>{ noFormPost=>1, fieldType=>'hidden', - defaultValue=>undef + defaultValue=>'', }, storageId=>{ noFormPost=>1, fieldType=>'hidden', - defaultValue=>undef + defaultValue=>'', }, templateId=>{ fieldType=>'template', diff --git a/lib/WebGUI/Asset/File/GalleryFile.pm b/lib/WebGUI/Asset/File/GalleryFile.pm index 6767f831d..05afa6560 100644 --- a/lib/WebGUI/Asset/File/GalleryFile.pm +++ b/lib/WebGUI/Asset/File/GalleryFile.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::File::GalleryFile; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/File/GalleryFile/Photo.pm b/lib/WebGUI/Asset/File/GalleryFile/Photo.pm index d21c501ce..39f04b217 100644 --- a/lib/WebGUI/Asset/File/GalleryFile/Photo.pm +++ b/lib/WebGUI/Asset/File/GalleryFile/Photo.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::File::GalleryFile::Photo; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/File/Image.pm b/lib/WebGUI/Asset/File/Image.pm index fa1984e9a..9e639d746 100644 --- a/lib/WebGUI/Asset/File/Image.pm +++ b/lib/WebGUI/Asset/File/Image.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::File::Image; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/File/ZipArchive.pm b/lib/WebGUI/Asset/File/ZipArchive.pm index a08e7dd4e..cc1303a07 100644 --- a/lib/WebGUI/Asset/File/ZipArchive.pm +++ b/lib/WebGUI/Asset/File/ZipArchive.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::File::ZipArchive; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/FilePile.pm b/lib/WebGUI/Asset/FilePile.pm index b7c76b2aa..c9e8caaae 100644 --- a/lib/WebGUI/Asset/FilePile.pm +++ b/lib/WebGUI/Asset/FilePile.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::FilePile; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/MatrixListing.pm b/lib/WebGUI/Asset/MatrixListing.pm index eb63a433d..eaf913ee7 100644 --- a/lib/WebGUI/Asset/MatrixListing.pm +++ b/lib/WebGUI/Asset/MatrixListing.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::MatrixListing; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -58,6 +58,43 @@ sub addRevision { return $newSelf; } +#---------------------------------------------------------------------------- + +=head2 canAdd ( ) + +Override canAdd to ignore its permissions check. Permissions are handled +by the parent Matrix. + +=cut + +sub canAdd { + return 1; +} + +#---------------------------------------------------------------------------- + +=head2 canEdit ( ) + +Returns true if the user can edit this asset. C is a WebGUI user ID. + +Users can edit this Matrix listing if they are the owner, or if they can edit +the parent Matrix. + +=cut + +sub canEdit { + my $self = shift; + + if ( $self->session->form->process("assetId") eq "new" ) { + return $self->getParent->canAddMatrixListing(); + } + else { + return 1 if $self->session->user->userId eq $self->get("ownerUserId"); + + return $self->getParent->canEdit(); + } +} + #------------------------------------------------------------------- =head2 definition ( session, definition ) @@ -304,20 +341,36 @@ sub getEditForm { [$category,$matrixId]); } else{ - $attributes = $db->read("select * from Matrix_attribute as a - left join MatrixListing_attribute as l on (a.attributeId = l.attributeId and l.matrixListingId = ?) - where category =? and a.assetId = ?", + $attributes = $db->read("select * from Matrix_attribute as attribute + left join MatrixListing_attribute as listing using(attributeId) + where listing.matrixListingId = ? and category =? and attribute.assetId = ?", [$self->getId,$category,$matrixId]); } while (my $attribute = $attributes->hashRef) { $attribute->{label} = $attribute->{name}; $attribute->{subtext} = $attribute->{description}; $attribute->{name} = 'attribute_'.$attribute->{attributeId}; + if($attribute->{fieldType} eq 'Combo'){ + my %options; + tie %options, 'Tie::IxHash'; + %options = $db->buildHash("select value, value from MatrixListing_attribute + where attributeId = ? and value != '' order by value",[$attribute->{attributeId}]); + $attribute->{options} = \%options; + $attribute->{extras} = "style='width:120px'"; + } $form->dynamicField(%{$attribute}); } } - $form->submit(); + $form->raw( + ''. + WebGUI::Form::Submit($session, {}). + WebGUI::Form::Button($session, { + -value => $i18n->get('cancel', 'WebGUI'), + -extras => q|onclick="history.go(-1);" class="backwardButton"| + }). + '' + ); return $form; } @@ -556,7 +609,7 @@ sub view { my $db = $session->db; my $i18n = WebGUI::International->new($self->session, "Asset_MatrixListing"); my @categories = keys %{$self->getParent->getCategories}; - + # Increment views before getting template var hash so that the views tmpl_var has the incremented value. $self->incrementCounter("views"); @@ -564,6 +617,16 @@ sub view { if ($emailSent){ $var->{emailSent} = 1; } + + unless($self->hasBeenCommitted){ + my $workflowInstanceId = $db->quickScalar("select workflowInstanceId from assetVersionTag where tagId =?" + ,[$self->get('tagId')]); + $var->{canApprove} = $self->getParent->canEdit; + $var->{approveOrDenyUrl} = $self->getUrl("op=manageRevisionsInTag;workflowInstanceId=".$workflowInstanceId + .";tagId=".$self->get('tagId')); + } + $var->{canEdit} = $self->canEdit; + $var->{editUrl} = $self->getUrl("func=edit"); $var->{controls} = $self->getToolbar; $var->{comments} = $self->getFormattedComments(); $var->{productName} = $var->{title}; @@ -599,14 +662,14 @@ sub view { {type =>'text/css', rel=>'stylesheet'}); # Attributes - + foreach my $category (@categories) { my $attributes; my @attribute_loop; my $categoryLoopName = $session->url->urlize($category)."_loop"; - $attributes = $db->read("select * from Matrix_attribute as a - left join MatrixListing_attribute as l on (a.attributeId = l.attributeId and l.matrixListingId = ?) - where category =? and a.assetId = ?", + $attributes = $db->read("select * from Matrix_attribute as attribute + left join MatrixListing_attribute as listing using(attributeId) + where listing.matrixListingId = ? and category =? and attribute.assetId = ?", [$self->getId,$category,$self->getParent->getId]); while (my $attribute = $attributes->hashRef) { $attribute->{label} = $attribute->{name}; @@ -629,58 +692,10 @@ sub view { my $storage = $file->getStorageLocation; my @files; @files = @{ $storage->getFiles } if (defined $storage); + $var->{screenshotsUrl} = $self->getUrl('func=viewScreenshots'); + $var->{screenshotThumbnail} = $storage->getUrl('thumb-'.$files[0]); + } - $var->{screenshots} = qq| - - - - -|; - } - # Rating form my %rating; @@ -784,7 +799,8 @@ pluginspage="http://www.macromedia.com/go/getflashplayer" /> ); $var->{emailForm} = $mailForm->print; - return $self->getParent->processStyle($self->processTemplate($var,undef, $self->{_viewTemplate})); + my $template = $self->processTemplate($var,undef, $self->{_viewTemplate}); + return $self->getParent->processStyle($template); } @@ -841,12 +857,14 @@ Web facing method which is the default edit page sub www_edit { my $self = shift; - - return $self->session->privilege->noAccess() unless $self->getParent->canAddMatrixListing(); - my $i18n = WebGUI::International->new($self->session, "Asset_MatrixListing"); - return $self->session->privilege->insufficient() unless $self->canEdit; - return $self->session->privilege->locked() unless $self->canEditIfLocked; + + if($self->session->form->process('func') eq 'add'){ + return $self->session->privilege->noAccess() unless $self->getParent->canAddMatrixListing(); + }else{ + return $self->session->privilege->insufficient() unless $self->canEdit; + return $self->session->privilege->locked() unless $self->canEditIfLocked; + } my $var = $self->get; my $matrix = $self->getParent; @@ -879,9 +897,9 @@ sub www_getAttributes { push(@results,{label=>$category,fieldType=>'category'}); my $attributes; my @attribute_loop; - $attributes = $db->read("select * from Matrix_attribute as a - left join MatrixListing_attribute as l on (a.attributeId = l.attributeId and l.matrixListingId = ?) - where category =? and a.assetId = ?", + $attributes = $db->read("select * from Matrix_attribute as attribute + left join MatrixListing_attribute as listing using(attributeId) + where listing.matrixListingId = ? and category =? and attribute.assetId = ?", [$self->getId,$category,$self->getParent->getId]); while (my $attribute = $attributes->hashRef) { $attribute->{label} = $attribute->{name}; @@ -902,7 +920,7 @@ sub www_getAttributes { my $jsonOutput; $jsonOutput->{ResultSet} = {Result=>\@results}; - return JSON->new->utf8->encode($jsonOutput); + return JSON->new->encode($jsonOutput); } #------------------------------------------------------------------- @@ -936,9 +954,7 @@ sub www_getScreenshots { my $thumb = 'thumb-'.$file; $xml .= " - 400 - 300 - <![CDATA[<b>Slide</b> One]]> + ".$storage->getUrl($file)." 5 @@ -966,56 +982,14 @@ Returns the xml config file for the ukplayer that displays the screenshots. =cut sub www_getScreenshotsConfig { - my $self = shift; + my $self = shift; + my $var = $self->get; return $self->session->privilege->noAccess() unless $self->canView; $self->session->http->setMimeType('text/xml'); - my $xml = qq| - - - ?func=getScreenshots - - 400 - 300 - 0xDDDDEE - 20 - 100 - 100 - - Verdana - 12 - 0xCCCCCC - 0xCCCCCC - 0x000000 - true - - 0xCCCCCC - 0xCCCCCC - 0x000000 - false - - 48 - 36 - 0x000000 - true - 100 - 5 - - false - true - false - false - - - - -|; - - return $xml; + return $self->processTemplate($var,$self->getParent->get("screenshotsConfigTemplateId")); } #------------------------------------------------------------------- @@ -1123,7 +1097,24 @@ sub www_view { return $self->view; } +#------------------------------------------------------------------- +=head2 www_viewScreenshots ( ) + +Returns this listing's screenshots in a ukplayer. + +=cut + +sub www_viewScreenshots { + my $self = shift; + my $var = $self->get; + + $var->{configUrl} = 'config='.$self->getUrl("func=getScreenshotsConfig"); + + return $self->session->privilege->noAccess() unless $self->canView; + + return $self->processTemplate($var,$self->getParent->get("screenshotsTemplateId")); +} 1; #vim:ft=perl diff --git a/lib/WebGUI/Asset/Post.pm b/lib/WebGUI/Asset/Post.pm index 5b8d35aac..fa68b8624 100644 --- a/lib/WebGUI/Asset/Post.pm +++ b/lib/WebGUI/Asset/Post.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Post; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -243,13 +243,13 @@ sub definition { my $properties = { storageId => { fieldType=>"image", - defaultValue=>undef, + defaultValue=>'', enforceSizeLimits => 0, }, threadId => { noFormPost=>1, fieldType=>"hidden", - defaultValue=>undef + defaultValue=>'', }, originalEmail => { noFormPost=>1, @@ -929,30 +929,32 @@ sub paste { sub processPropertiesFromFormPost { my $self = shift; $self->SUPER::processPropertiesFromFormPost; - my $i18n = WebGUI::International->new($self->session); - if ($self->session->form->process("assetId") eq "new") { + my $session = $self->session; + my $form = $session->form; + my $i18n = WebGUI::International->new($session); + if ($form->process("assetId") eq "new") { my %data = ( - ownerUserId => $self->session->user->userId, - username => $self->session->form->process("visitorName") || $self->session->user->profileField("alias") || $self->session->user->username, + ownerUserId => $session->user->userId, + username => $form->process("visitorName") || $session->user->profileField("alias") || $session->user->username, ); $self->update(\%data); - if ($self->getThread->getParent->canEdit) { - $self->getThread->lock if ($self->session->form->process('lock')); - $self->getThread->stick if ($self->session->form->process("stick")); - } } # force the value to be empty so it gets updated properly by content - $self->update({synopsis => ($self->session->form->process("synopsis") || "")}); - if ($self->session->form->process("archive") && $self->getThread->getParent->canModerate) { + $self->update({synopsis => ($form->process("synopsis") || "")}); + if ($form->process("archive") && $self->getThread->getParent->canModerate) { $self->getThread->archive; } elsif ($self->getThread->get("status") eq "archived") { $self->getThread->unarchive; } - if ($self->session->form->process("subscribe")) { + if ($form->process("subscribe")) { $self->getThread->subscribe; } else { $self->getThread->unsubscribe; + } + if ($self->getThread->getParent->canEdit) { + $form->process('isLocked') ? $self->getThread->lock : $self->getThread->unlock; + $form->process('isSticky') ? $self->getThread->stick : $self->getThread->unstick; } delete $self->{_storageLocation}; $self->postProcess; @@ -1229,14 +1231,16 @@ sub www_edit { my (%var, $content, $title, $synopsis); my $i18n = WebGUI::International->new($session); + + + my $className = $form->process("class","className") || $self->get('className'); if ($func eq "add" || ($func eq "editSave" && $form->process("assetId") eq "new")) { # new post - #Add Form Header for all new posts - my $className = $form->process("class","className"); #Post to the parent if this is a new request my $action = $self->getParent->getUrl; #Post to self if there was an error Posting to a Thread (not a Collaboration) $action = $self->getUrl if($func eq "editSave" && $className ne "WebGUI::Asset::Post::Thread"); + #Add Form Header for all new posts $var{'form.header'} = WebGUI::Form::formHeader($session,{ action=>$action }); @@ -1304,16 +1308,6 @@ sub www_edit { return $privilege->insufficient() unless ($self->getThread->getParent->canPost); $var{'isThread' } = 1; $var{'isNewThread' } = 1; - if ($self->getThread->getParent->canEdit) { - $var{'sticky.form'} = WebGUI::Form::yesNo($session, { - name=>'stick', - value=>$form->process("stick") - }); - $var{'lock.form' } = WebGUI::Form::yesNo($session, { - name=>'lock', - value=>$form->process('lock') - }); - } my $subscribe = $form->process("subscribe"); $var{'subscribe.form'} = WebGUI::Form::yesNo($session, { name=>"subscribe", @@ -1429,6 +1423,19 @@ sub www_edit { value=>$content, richEditId=>$self->getThread->getParent->get("richEditor") }); + ##Edit variables just for Threads + $session->log->warn("className: $className"); + $session->log->warn("canEdit parent: ". $self->getThread->getParent->canEdit); + if ($className eq 'WebGUI::Asset::Post::Thread' && $self->getThread->getParent->canEdit) { + $var{'sticky.form'} = WebGUI::Form::yesNo($session, { + name=>'isSticky', + value=>$form->process('isSticky') || $self->get('isSticky'), + }); + $var{'lock.form' } = WebGUI::Form::yesNo($session, { + name=>'isLocked', + value=>$form->process('isLocked') || $self->get('isLocked'), + }); + } $var{'form.submit'} = WebGUI::Form::submit($session, { extras=>"onclick=\"this.value='".$i18n->get(452)."'; this.form.func.value='editSave';return true;\"" }); diff --git a/lib/WebGUI/Asset/Post/Thread.pm b/lib/WebGUI/Asset/Post/Thread.pm index ff6dc6110..cee9574c0 100644 --- a/lib/WebGUI/Asset/Post/Thread.pm +++ b/lib/WebGUI/Asset/Post/Thread.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Post::Thread; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -118,12 +118,12 @@ sub definition { subscriptionGroupId => { noFormPost=>1, fieldType=>"hidden", - defaultValue=>undef + defaultValue=>'', }, replies => { noFormPost=>1, fieldType=>"hidden", - defaultValue=>undef + defaultValue=>0, }, isSticky => { fieldType=>"yesNo", @@ -131,12 +131,12 @@ sub definition { }, isLocked => { fieldType=>"yesNo", - defaultValue=>0 + defaultValue=>0, }, lastPostId => { noFormPost=>1, fieldType=>"hidden", - defaultValue=>undef + defaultValue=>'', }, lastPostDate => { noFormPost=>1, diff --git a/lib/WebGUI/Asset/RSSCapable.pm b/lib/WebGUI/Asset/RSSCapable.pm index ff9a01416..d75af0d9c 100644 --- a/lib/WebGUI/Asset/RSSCapable.pm +++ b/lib/WebGUI/Asset/RSSCapable.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::RSSCapable; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/RSSFromParent.pm b/lib/WebGUI/Asset/RSSFromParent.pm index f0effbeca..edb052db4 100644 --- a/lib/WebGUI/Asset/RSSFromParent.pm +++ b/lib/WebGUI/Asset/RSSFromParent.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::RSSFromParent; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Redirect.pm b/lib/WebGUI/Asset/Redirect.pm index e63a033b7..88e1e0f92 100644 --- a/lib/WebGUI/Asset/Redirect.pm +++ b/lib/WebGUI/Asset/Redirect.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Redirect; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/RichEdit.pm b/lib/WebGUI/Asset/RichEdit.pm index 3d0d263b4..40eae7a86 100644 --- a/lib/WebGUI/Asset/RichEdit.pm +++ b/lib/WebGUI/Asset/RichEdit.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::RichEdit; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -561,7 +561,7 @@ sub getRichEditor { while (my ($plugin, $path) = each %loadPlugins) { $out .= "tinymce.PluginManager.load('$plugin', '$path');\n"; } - $out .= "\ttinyMCE.init(" . JSON->new->utf8->pretty->encode(\%config) . " )\n" + $out .= "\ttinyMCE.init(" . JSON->new->pretty->encode(\%config) . " )\n" . ""; } diff --git a/lib/WebGUI/Asset/Shortcut.pm b/lib/WebGUI/Asset/Shortcut.pm index 338c77c10..d37b86b28 100644 --- a/lib/WebGUI/Asset/Shortcut.pm +++ b/lib/WebGUI/Asset/Shortcut.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Shortcut; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Sku.pm b/lib/WebGUI/Asset/Sku.pm index 9b01d9afe..b2221d28e 100644 --- a/lib/WebGUI/Asset/Sku.pm +++ b/lib/WebGUI/Asset/Sku.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Sku; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Sku/Donation.pm b/lib/WebGUI/Asset/Sku/Donation.pm index 328744ffb..c748feb7b 100644 --- a/lib/WebGUI/Asset/Sku/Donation.pm +++ b/lib/WebGUI/Asset/Sku/Donation.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Sku::Donation; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Sku/EMSBadge.pm b/lib/WebGUI/Asset/Sku/EMSBadge.pm index 14181b1de..fd45a68ca 100644 --- a/lib/WebGUI/Asset/Sku/EMSBadge.pm +++ b/lib/WebGUI/Asset/Sku/EMSBadge.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Sku::EMSBadge; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -377,7 +377,7 @@ sub view { . WebGUI::Form::hidden($session, { name => "callback", - value => JSON->new->utf8->encode({ url => $self->getUrl}) + value => JSON->new->encode({ url => $self->getUrl}) }) . WebGUI::Form::submit($session, {value => $i18n->get("populate from address book")}) . WebGUI::Form::formFooter($session) diff --git a/lib/WebGUI/Asset/Sku/EMSRibbon.pm b/lib/WebGUI/Asset/Sku/EMSRibbon.pm index 3d6f0afd4..81b3fc524 100644 --- a/lib/WebGUI/Asset/Sku/EMSRibbon.pm +++ b/lib/WebGUI/Asset/Sku/EMSRibbon.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Sku::EMSRibbon; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Sku/EMSTicket.pm b/lib/WebGUI/Asset/Sku/EMSTicket.pm index 512483ef0..96fe5178b 100644 --- a/lib/WebGUI/Asset/Sku/EMSTicket.pm +++ b/lib/WebGUI/Asset/Sku/EMSTicket.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Sku::EMSTicket; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -17,7 +17,7 @@ package WebGUI::Asset::Sku::EMSTicket; use strict; use base 'WebGUI::Asset::Sku'; use Tie::IxHash; -use JSON; +use JSON (); use WebGUI::Utility; =head1 NAME @@ -293,7 +293,7 @@ If specified, returns a single value for the key specified. sub getEventMetaData { my $self = shift; my $key = shift; - my $metadata = JSON->new->utf8->decode($self->get("eventMetaData") || '{}'); + my $metadata = JSON->new->decode($self->get("eventMetaData") || '{}'); if (defined $key) { return $metadata->{$key}; } @@ -438,7 +438,7 @@ sub processPropertiesFromFormPost { my $date = WebGUI::DateTime->new($self->session, time())->toDatabase; my $startDate = $form->process('startDate', "dateTime", $date, { defaultValue => $date, timeZone => $self->getParent->get("timezone")}); - $self->update({eventMetaData => JSON->new->utf8->encode(\%metadata), startDate => $startDate}); + $self->update({eventMetaData => JSON->new->encode(\%metadata), startDate => $startDate}); } #------------------------------------------------------------------- @@ -470,7 +470,7 @@ A hash reference containing all the metadata properties to set. sub setEventMetaData { my $self = shift; my $properties = shift; - $self->update({eventMetaData => JSON->new->utf8->encode($properties)}); + $self->update({eventMetaData => JSON->new->encode($properties)}); } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Asset/Sku/EMSToken.pm b/lib/WebGUI/Asset/Sku/EMSToken.pm index a76e3a460..41f9e7bcc 100644 --- a/lib/WebGUI/Asset/Sku/EMSToken.pm +++ b/lib/WebGUI/Asset/Sku/EMSToken.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Sku::EMSToken; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Sku/FlatDiscount.pm b/lib/WebGUI/Asset/Sku/FlatDiscount.pm index d49cd2177..f67c06382 100644 --- a/lib/WebGUI/Asset/Sku/FlatDiscount.pm +++ b/lib/WebGUI/Asset/Sku/FlatDiscount.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Sku::FlatDiscount; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Sku/Product.pm b/lib/WebGUI/Asset/Sku/Product.pm index 2860dde9e..788003407 100644 --- a/lib/WebGUI/Asset/Sku/Product.pm +++ b/lib/WebGUI/Asset/Sku/Product.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Sku::Product; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Sku/Subscription.pm b/lib/WebGUI/Asset/Sku/Subscription.pm index b550ee8e9..53407f836 100644 --- a/lib/WebGUI/Asset/Sku/Subscription.pm +++ b/lib/WebGUI/Asset/Sku/Subscription.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Sku::Subscription; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Snippet.pm b/lib/WebGUI/Asset/Snippet.pm index c028463b2..013cdfd73 100644 --- a/lib/WebGUI/Asset/Snippet.pm +++ b/lib/WebGUI/Asset/Snippet.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Snippet; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Template.pm b/lib/WebGUI/Asset/Template.pm index 6329c1475..4374bd6bb 100644 --- a/lib/WebGUI/Asset/Template.pm +++ b/lib/WebGUI/Asset/Template.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Template; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -88,7 +88,7 @@ sub definition { }, parser => { noFormPost => 1, - fieldType => 'selectList', + fieldType => 'selectBox', defaultValue => [$session->config->get("defaultTemplateParser")], }, namespace => { @@ -144,6 +144,7 @@ sub processPropertiesFromFormPost { my %data; my $needsUpdate = 0; if ($self->getValue("parser") ne $self->session->form->process("parser","className") && ($self->session->form->process("parser","className") ne "")) { + $needsUpdate = 1; if (isIn($self->session->form->process("parser","className"),@{$self->session->config->get("templateParsers")})) { %data = ( parser => $self->session->form->process("parser","className") ); } else { diff --git a/lib/WebGUI/Asset/Template/HTMLTemplate.pm b/lib/WebGUI/Asset/Template/HTMLTemplate.pm index 840cd2c6e..c31851ed6 100644 --- a/lib/WebGUI/Asset/Template/HTMLTemplate.pm +++ b/lib/WebGUI/Asset/Template/HTMLTemplate.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Template::HTMLTemplate; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Template/HTMLTemplateExpr.pm b/lib/WebGUI/Asset/Template/HTMLTemplateExpr.pm index 5b6b6661d..9b1ca3d27 100644 --- a/lib/WebGUI/Asset/Template/HTMLTemplateExpr.pm +++ b/lib/WebGUI/Asset/Template/HTMLTemplateExpr.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Template::HTMLTemplateExpr; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Template/Parser.pm b/lib/WebGUI/Asset/Template/Parser.pm index 171ea73e4..47bb94511 100644 --- a/lib/WebGUI/Asset/Template/Parser.pm +++ b/lib/WebGUI/Asset/Template/Parser.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Template::Parser; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Template/TemplateToolkit.pm b/lib/WebGUI/Asset/Template/TemplateToolkit.pm index db4d97bf0..2de1989a1 100644 --- a/lib/WebGUI/Asset/Template/TemplateToolkit.pm +++ b/lib/WebGUI/Asset/Template/TemplateToolkit.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Template::TemplateToolkit; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Template/_parser.skeleton b/lib/WebGUI/Asset/Template/_parser.skeleton index 23d70baa0..321db6508 100644 --- a/lib/WebGUI/Asset/Template/_parser.skeleton +++ b/lib/WebGUI/Asset/Template/_parser.skeleton @@ -3,7 +3,7 @@ package WebGUI::Asset::Template::SomeTemplateType; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/WikiPage.pm b/lib/WebGUI/Asset/WikiPage.pm index 6f3e5f4f1..be1b20fde 100644 --- a/lib/WebGUI/Asset/WikiPage.pm +++ b/lib/WebGUI/Asset/WikiPage.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::WikiPage; # ------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. # ------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -96,13 +96,13 @@ sub definition { }, actionTaken => { fieldType => "text", - defaultValue => undef, - noFormPost => 1 + defaultValue => '', + noFormPost => 1, }, actionTakenBy => { fieldType => "user", - defaultValue => undef, - noFormPost => 1 + defaultValue => '', + noFormPost => 1, }, ); diff --git a/lib/WebGUI/Asset/Wobject.pm b/lib/WebGUI/Asset/Wobject.pm index 56fb93a64..54871e1e3 100644 --- a/lib/WebGUI/Asset/Wobject.pm +++ b/lib/WebGUI/Asset/Wobject.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Article.pm b/lib/WebGUI/Asset/Wobject/Article.pm index 95ff92f90..d2d0c4181 100644 --- a/lib/WebGUI/Asset/Wobject/Article.pm +++ b/lib/WebGUI/Asset/Wobject/Article.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Article; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Calendar.pm b/lib/WebGUI/Asset/Wobject/Calendar.pm index 72433d504..049f73e88 100644 --- a/lib/WebGUI/Asset/Wobject/Calendar.pm +++ b/lib/WebGUI/Asset/Wobject/Calendar.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::Calendar; use strict; #---------------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #---------------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Collaboration.pm b/lib/WebGUI/Asset/Wobject/Collaboration.pm index f5608e40e..db0b0a6cd 100644 --- a/lib/WebGUI/Asset/Wobject/Collaboration.pm +++ b/lib/WebGUI/Asset/Wobject/Collaboration.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Collaboration; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Collaboration/Newsletter.pm b/lib/WebGUI/Asset/Wobject/Collaboration/Newsletter.pm index b22cd15d0..68c74a712 100644 --- a/lib/WebGUI/Asset/Wobject/Collaboration/Newsletter.pm +++ b/lib/WebGUI/Asset/Wobject/Collaboration/Newsletter.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Collaboration::Newsletter; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Dashboard.pm b/lib/WebGUI/Asset/Wobject/Dashboard.pm index 3fc27c02f..b59d80b15 100644 --- a/lib/WebGUI/Asset/Wobject/Dashboard.pm +++ b/lib/WebGUI/Asset/Wobject/Dashboard.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Dashboard; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/DataForm.pm b/lib/WebGUI/Asset/Wobject/DataForm.pm index 2b4810d59..db9f10e31 100644 --- a/lib/WebGUI/Asset/Wobject/DataForm.pm +++ b/lib/WebGUI/Asset/Wobject/DataForm.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::DataForm; =head1 LEGAL ------------------------------------------------------------------- -WebGUI is Copyright 2001-2008 Plain Black Corporation. +WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -484,9 +484,7 @@ sub deleteAttachedFiles { my $form = $self->_createForm($fieldConfig->{$field}, $entryData->{$field}); if ($form->can('getStorageLocation')) { my $storage = $form->getStorageLocation; - if ($storage) { - $storage->delete; - } + $storage->delete if $storage; } } } @@ -498,7 +496,7 @@ sub deleteAttachedFiles { my $form = $self->_createForm($fieldConfig->{$field}, $entryData->{$field}); if ($form->can('getStorageLocation')) { my $storage = $form->getStorageLocation; - $storage->delete; + $storage->delete if $storage; } } } @@ -512,7 +510,7 @@ sub getAttachedFiles { my $fieldConfig = $self->getFieldConfig; my @paths; for my $field ( values %{$fieldConfig} ) { - my $form = $self->_createForm($field, $entryData->{$field->{name}}); + my $form = $self->_createForm($field, $entryData->field($field->{name})); if ($form->can('getStorageLocation')) { my $storage = $form->getStorageLocation; if ($storage) { @@ -648,6 +646,7 @@ sub getRecordTemplateVars { $var->{'edit.URL' } = $self->getFormUrl('entryId=' . $entryId); $var->{'delete.url' } = $self->getUrl('func=deleteEntry;entryId=' . $entryId); $var->{'delete.label' } = $i18n->get(90); + $var->{'entryId' } = $entryId; } my $func = $session->form->process('func'); my $ignoreForm = $func eq 'editSave' || $func eq 'editFieldSave'; @@ -1521,8 +1520,8 @@ sub www_process { unless $self->canView; my $session = $self->session; my $i18n = WebGUI::International->new($session,"Asset_DataForm"); - my $entryId = $self->session->form->process('entryId'); - my $entry = $self->entryClass->new($self, ( $entryId ? $entryId : () ) ); + my $entryId = $session->form->process('entryId'); + my $entry = $self->entryClass->new($self, ( $entryId ? $entryId : () ) ); my $var = $self->getTemplateVars; diff --git a/lib/WebGUI/Asset/Wobject/DataTable.pm b/lib/WebGUI/Asset/Wobject/DataTable.pm index 6e6a96686..e8f25fd93 100644 --- a/lib/WebGUI/Asset/Wobject/DataTable.pm +++ b/lib/WebGUI/Asset/Wobject/DataTable.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::DataTable; $VERSION = "1.0.0"; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/EventManagementSystem.pm b/lib/WebGUI/Asset/Wobject/EventManagementSystem.pm index cd0f42fb7..dea3db6de 100644 --- a/lib/WebGUI/Asset/Wobject/EventManagementSystem.pm +++ b/lib/WebGUI/Asset/Wobject/EventManagementSystem.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::EventManagementSystem; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -573,7 +573,7 @@ sub www_editBadgeGroup { my ($form, $db) = $self->session->quick(qw(form db)); my $f = WebGUI::HTMLForm->new($self->session, action=>$self->getUrl); my $badgeGroup = $db->getRow("EMSBadgeGroup","badgeGroupId",$form->get('badgeGroupId')); - $badgeGroup->{badgeList} = ($badgeGroup->{badgeList} ne "") ? JSON::decode_json($badgeGroup->{badgeList}) : []; + $badgeGroup->{badgeList} = ($badgeGroup->{badgeList} ne "") ? JSON::from_json($badgeGroup->{badgeList}) : []; my $i18n = WebGUI::International->new($self->session, "Asset_EventManagementSystem"); $f->hidden(name=>'func', value=>'editBadgeGroupSave'); $f->hidden(name=>'badgeGroupId', value=>$form->get('badgeGroupId')); @@ -842,7 +842,7 @@ sub www_getBadgesAsJson { $results{'sort'} = undef; $results{'dir'} = "asc"; $session->http->setMimeType('application/json'); - return JSON->new->utf8->encode(\%results); + return JSON->new->encode(\%results); } #------------------------------------------------------------------- @@ -974,7 +974,7 @@ sub www_getRegistrantAsJson { $badgeInfo->{ribbons} = \@ribbons; # build json datasource - return JSON->new->utf8->encode($badgeInfo); + return JSON->new->encode($badgeInfo); } #------------------------------------------------------------------- @@ -1038,7 +1038,7 @@ sub www_getRegistrantsAsJson { # build json datasource $session->http->setMimeType('application/json'); - return JSON->new->utf8->encode(\%results); + return JSON->new->encode(\%results); } @@ -1073,7 +1073,7 @@ sub www_getRibbonsAsJson { $results{'sort'} = undef; $results{'dir'} = "asc"; $session->http->setMimeType('application/json'); - return JSON->new->utf8->encode(\%results); + return JSON->new->encode(\%results); } @@ -1184,7 +1184,7 @@ className='WebGUI::Asset::Sku::EMSTicket' and state='published' and revisionDate my $description = $ticket->get('description'); my $data = $ticket->get('eventMetaData'); $data = '{}' if ($data eq ""); - my $meta = JSON->new->utf8->decode($data); + my $meta = JSON->new->decode($data); foreach my $field (@{$self->getEventMetaFields}) { my $label = $field->{label}; if ($field->{visible} && $meta->{$label} ne "") { @@ -1228,7 +1228,7 @@ className='WebGUI::Asset::Sku::EMSTicket' and state='published' and revisionDate $results{'sort'} = undef; $results{'dir'} = "asc"; $session->http->setMimeType('application/json'); - return JSON->new->utf8->encode(\%results); + return JSON->new->encode(\%results); } @@ -1263,7 +1263,7 @@ sub www_getTokensAsJson { $results{'sort'} = undef; $results{'dir'} = "asc"; $session->http->setMimeType('application/json'); - return JSON->new->utf8->encode(\%results); + return JSON->new->encode(\%results); } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Asset/Wobject/Folder.pm b/lib/WebGUI/Asset/Wobject/Folder.pm index fa0dc949d..2ce3cf4e1 100644 --- a/lib/WebGUI/Asset/Wobject/Folder.pm +++ b/lib/WebGUI/Asset/Wobject/Folder.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::Folder; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Gallery.pm b/lib/WebGUI/Asset/Wobject/Gallery.pm index 375199dbc..a8110175b 100644 --- a/lib/WebGUI/Asset/Wobject/Gallery.pm +++ b/lib/WebGUI/Asset/Wobject/Gallery.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Gallery; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -1104,6 +1104,7 @@ sub www_addAlbumService { description => $form->get('synopsis','textarea'), synopsis => $form->get('synopsis','textarea'), othersCanAdd => $form->get('othersCanAdd','yesNo'), + ownerUserId => $session->user->userId, }); $album->requestAutoCommit; diff --git a/lib/WebGUI/Asset/Wobject/GalleryAlbum.pm b/lib/WebGUI/Asset/Wobject/GalleryAlbum.pm index 88ab9d778..ce9ebe02d 100644 --- a/lib/WebGUI/Asset/Wobject/GalleryAlbum.pm +++ b/lib/WebGUI/Asset/Wobject/GalleryAlbum.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::GalleryAlbum; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -537,7 +537,7 @@ sub getTemplateVars { # Add some specific vars from the Gallery my $galleryVar = $gallery->getTemplateVars; - for my $key ( qw{ title menuTitle url } ) { + for my $key ( qw{ title menuTitle url displayTitle } ) { $var->{ "gallery_" . $key } = $galleryVar->{ $key }; } @@ -647,7 +647,8 @@ sub prepareView { = WebGUI::Asset::Template->new($self->session, $templateId); $template->prepare($self->getMetaDataAsTemplateVariables); - $self->{_viewTemplate} = $template; + $self->{_viewTemplate} = $template; + $self->{_viewVariables} = $self->getTemplateVars; } #---------------------------------------------------------------------------- @@ -776,7 +777,7 @@ to be displayed within the page style. sub view { my $self = shift; my $session = $self->session; - my $var = $self->getTemplateVars; + my $var = delete $self->{_viewVariables}; my $p = $self->getFilePaginator; $p->appendTemplateVars( $var ); @@ -1018,6 +1019,7 @@ sub www_addFileService { title => $form->get('title','text'), description => $form->get('synopsis','textarea'), synopsis => $form->get('synopsis','textarea'), + ownerUserId => $session->user->userId, }); my $storage = $file->getStorageLocation; diff --git a/lib/WebGUI/Asset/Wobject/HttpProxy.pm b/lib/WebGUI/Asset/Wobject/HttpProxy.pm index 4b02bd944..515a5439f 100644 --- a/lib/WebGUI/Asset/Wobject/HttpProxy.pm +++ b/lib/WebGUI/Asset/Wobject/HttpProxy.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::HttpProxy; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/HttpProxy/Parse.pm b/lib/WebGUI/Asset/Wobject/HttpProxy/Parse.pm index bec18df84..4106e36b5 100644 --- a/lib/WebGUI/Asset/Wobject/HttpProxy/Parse.pm +++ b/lib/WebGUI/Asset/Wobject/HttpProxy/Parse.pm @@ -5,7 +5,7 @@ use strict; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Layout.pm b/lib/WebGUI/Asset/Wobject/Layout.pm index 77f9fa66d..5965308ed 100644 --- a/lib/WebGUI/Asset/Wobject/Layout.pm +++ b/lib/WebGUI/Asset/Wobject/Layout.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::Layout; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Matrix.pm b/lib/WebGUI/Asset/Wobject/Matrix.pm index 0d97bb3d8..4e4075dfe 100644 --- a/lib/WebGUI/Asset/Wobject/Matrix.pm +++ b/lib/WebGUI/Asset/Wobject/Matrix.pm @@ -4,7 +4,7 @@ use strict; our $VERSION = "2.0.0"; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -30,10 +30,46 @@ Returns true if able to add MatrixListings. sub canAddMatrixListing { my $self = shift; + my $user = $self->session->user; - return 0 if $self->session->user->isVisitor; + # Users in the groupToAdd group can add listings + if ( $user->isInGroup( $self->get("groupToAdd") ) ) { + return 1; + } + # Users who can edit matrix can add listings + else { + return $self->canEdit; + } - return 1; +} + +#---------------------------------------------------------------------------- + +=head2 canEdit ( [userId] ) + +Returns true if the user can edit this Matrix. + +Also checks if a user is adding a Matrix Listing and allows them to if they are +part of the C group. + +=cut + +sub canEdit { + my $self = shift; + my $userId = shift || $self->session->user->userId; + + my $form = $self->session->form; + if ( $form->get('func') eq "editSave" && $form->get('assetId') eq "new" && $form->get( 'class' )->isa( +'WebGUI::Asset::MatrixListing' ) ) { + return $self->canAddMatrixListing(); + } + else { + if ($userId eq $self->get("ownerUserId")) { + return 1; + } + my $user = WebGUI::User->new($self->session, $userId); + return $user->isInGroup($self->get("groupIdEdit")); + } } #------------------------------------------------------------------- @@ -94,6 +130,22 @@ sub definition { hoverHelp =>$i18n->get('edit listing template description'), label =>$i18n->get('edit listing template label'), }, + screenshotsTemplateId=>{ + defaultValue =>"matrixtmpl000000000006", + fieldType =>"template", + tab =>"display", + namespace =>"Matrix/Screenshots", + hoverHelp =>$i18n->get('screenshots template description'), + label =>$i18n->get('screenshots template label'), + }, + screenshotsConfigTemplateId=>{ + defaultValue =>"matrixtmpl000000000007", + fieldType =>"template", + tab =>"display", + namespace =>"Matrix/ScreenshotsConfig", + hoverHelp =>$i18n->get('screenshots config template description'), + label =>$i18n->get('screenshots config template label'), + }, defaultSort=>{ fieldType =>"selectBox", tab =>"display", @@ -101,7 +153,7 @@ sub definition { score => $i18n->get('sort by score label'), title => $i18n->get('sort alpha numeric label'), lineage => $i18n->get('sort by asset rank label'), - revisionDate => $i18n->get('sort by last updated label'), + lastUpdated => $i18n->get('sort by last updated label'), }, defaultValue =>"score", hoverHelp =>$i18n->get('default sort description'), @@ -164,6 +216,13 @@ sub definition { hoverHelp =>$i18n->get('max comparisons privileged description'), label =>$i18n->get('max comparisons privileged label'), }, + groupToAdd=>{ + fieldType =>"group", + tab =>"security", + defaultValue =>2, + hoverHelp =>$i18n->get('group to add description'), + label =>$i18n->get('group to add label'), + }, submissionApprovalWorkflowId=>{ fieldType =>"workflow", tab =>"security", @@ -442,6 +501,8 @@ sub view { # javascript and css files for compare form datatable $self->session->style->setLink($self->session->url->extras('yui/build/datatable/assets/skins/sam/datatable.css'), {type =>'text/css', rel=>'stylesheet'}); + $self->session->style->setScript($self->session->url->extras('yui/build/yahoo-dom-event/yahoo-dom-event.js'), {type => + 'text/javascript'}); $self->session->style->setScript($self->session->url->extras('yui/build/json/json-min.js'), {type => 'text/javascript'}); $self->session->style->setScript($self->session->url->extras('yui/build/connection/connection-min.js'), {type => @@ -516,7 +577,8 @@ sub view { my @lastUpdatedListings = @{ $self->getLineage(['descendants'], { includeOnlyClasses => ['WebGUI::Asset::MatrixListing'], - orderByClause => "revisionDate desc", + joinClass => "WebGUI::Asset::MatrixListing", + orderByClause => "lastUpdated desc", limit => 5, returnObjects => 1, }) }; @@ -524,7 +586,7 @@ sub view { push (@{ $var->{last_updated_loop} }, { url => $lastUpdatedListing->getUrl, name => $lastUpdatedListing->get('title'), - lastUpdated => $self->session->datetime->epochToHuman($lastUpdatedListing->get('revisionDate'),"%z") + lastUpdated => $self->session->datetime->epochToHuman($lastUpdatedListing->get('lastUpdated'),"%z") }); } $var->{lastUpdated_sortButton} = "
            "; @@ -540,7 +602,8 @@ sub view { }) }; foreach my $pendingListing (@pendingListings){ push (@{ $var->{pending_loop} }, { - url => $pendingListing->getUrl, + url => $pendingListing->getUrl + ."?func=view;revision=".$pendingListing->get('revisionDate'), name => $pendingListing->get('title'), }); } @@ -931,57 +994,57 @@ sub www_getCompareFormData { listing.compares, listing.clicks, listing.lastUpdated - from MatrixListing as listing - left join asset on listing.assetId = asset.assetId - left join assetData on assetData.assetId = listing.assetId and listing.revisionDate = + from asset + left join assetData using(assetId) + left join MatrixListing as listing on listing.assetId = assetData.assetId and listing.revisionDate = assetData.revisionDate where asset.parentId=? and asset.state='published' and asset.className='WebGUI::Asset::MatrixListing' - and assetData.revisionDate=( - select - max(revisionDate) - from - assetData - where - assetData.assetId=asset.assetId - and (status='approved' or status='archived') - ) + and assetData.revisionDate = (SELECT max(revisionDate) from assetData where assetId=asset.assetId and status='approved') and status='approved' - group by - assetData.assetId order by ".$sort.$sortDirection; @results = @{ $session->db->buildArrayRefOfHashRefs($sql,[$self->getId]) }; + + my (@searchParams,@searchParams_sorted); + if($form->process("search")){ + foreach my $param ($form->param) { + if($param =~ m/^search_/){ + my $parameter; + $parameter->{name} = $param; + $parameter->{value} = $form->process($param); + my $attributeId = $param; + $attributeId =~ s/^search_//; + $attributeId =~ s/_____/-/g; + $parameter->{attributeId} = $attributeId; + push(@searchParams,$parameter); + } + } + } + @searchParams_sorted = sort { $b->{value} <=> $a->{value} } @searchParams; foreach my $result (@results){ if($form->process("search")){ - # $self->session->errorHandler->warn("checking listing: ".$result->{title}); my $matrixListing_attributes = $session->db->buildHashRefOfHashRefs(" - select value, fieldType, attributeId from MatrixListing_attribute as listing - left join Matrix_attribute using(attributeId) - where listing.matrixListingId = ? - ",[$result->{assetId}],'attributeId'); - foreach my $param ($form->param) { - if($param =~ m/^search_/){ - my $attributeId = $param; - $attributeId =~ s/^search_//; - $attributeId =~ s/_____/-/; - my $fieldType = $matrixListing_attributes->{$attributeId}->{fieldType}; - my $listingValue = $matrixListing_attributes->{$attributeId}->{value}; - # $self->session->errorHandler->warn("fieldType:".$fieldType.", attributeValue: ".$form->process($param).", listingvalue: ".$listingValue); - if(($fieldType eq 'MatrixCompare') && ($listingValue < $form->process($param))){ + select value, fieldType, attributeId from Matrix_attribute + left join MatrixListing_attribute as listing using(attributeId) + where listing.matrixListingId = ? order by value asc", + [$result->{assetId}],'attributeId'); + PARAM: foreach my $param (@searchParams_sorted) { + my $fieldType = $matrixListing_attributes->{$param->{attributeId}}->{fieldType}; + my $listingValue = $matrixListing_attributes->{$param->{attributeId}}->{value}; + if(($fieldType eq 'MatrixCompare') && ($listingValue < $param->{value})){ $result->{checked} = ''; - last; + last PARAM; } - elsif(($fieldType ne 'MatrixCompare') && ($form->process($param) ne $listingValue)){ + elsif(($fieldType ne 'MatrixCompare' && $fieldType ne '') && ($param->{value} ne $listingValue)){ $result->{checked} = ''; - last; + last PARAM; } else{ $result->{checked} = 'checked'; } - } } } else{ @@ -993,11 +1056,11 @@ assetData.revisionDate $result->{assetId} =~ s/-/_____/g; $result->{url} = $session->url->gateway($result->{url}); } - my $jsonOutput; $jsonOutput->{ResultSet} = {Result=>\@results}; - return JSON->new->utf8->encode($jsonOutput); + my $encodedOutput = JSON->new->encode($jsonOutput); + return $encodedOutput; } #------------------------------------------------------------------- @@ -1023,8 +1086,8 @@ sub www_getCompareListData { unless (scalar(@listingIds)) { @listingIds = $self->session->form->checkList("listingId"); } - - + my @responseFields = ("attributeId", "name", "description","fieldType", "checked"); + foreach my $listingId (@listingIds){ $listingId =~ s/_____/-/g; my $listing = WebGUI::Asset::MatrixListing->new($session,$listingId); @@ -1038,30 +1101,34 @@ sub www_getCompareListData { url =>$listing->getUrl, lastUpdated =>$session->datetime->epochToHuman( $listing->get('revisonDate'),"%z" ), }); + push(@responseFields, $listingId_safe, $listingId_safe."_compareColor"); } push(@results,{name=>$i18n->get('last updated label'),fieldType=>'lastUpdated'}); my $jsonOutput; - $jsonOutput->{ColumnDefs} = \@columnDefs; + $jsonOutput->{ColumnDefs} = \@columnDefs; + $jsonOutput->{ResponseFields} = \@responseFields; foreach my $category (keys %{$self->getCategories}) { push(@results,{name=>$category,fieldType=>'category'}); my $fields = " a.name, a.fieldType, a.attributeId, a.description "; my $from = "from Matrix_attribute a"; my $tableCount = "b"; + my $where; foreach my $listingId (@listingIds) { my $listingId_safe = $listingId; $listingId_safe =~ s/-/_____/g; $fields .= ", ".$tableCount.".value as `$listingId_safe`"; - $from .= " left join MatrixListing_attribute ".$tableCount." on a.attributeId=" - .$tableCount.".attributeId and ".$tableCount.".matrixListingId=? "; + $from .= " left join MatrixListing_attribute ".$tableCount." on a.attributeId=".$tableCount.".attributeId"; + $where .= "and ".$tableCount.".matrixListingId=?"; $tableCount++; } push(@results, @{ $self->session->db->buildArrayRefOfHashRefs( - "select $fields $from where a.category=? and a.assetId=? order by a.name", - [@listingIds,$category,$self->getId] + "select $fields $from where a.category=? and a.assetId=? ".$where." order by a.name", + [$category,$self->getId,@listingIds] ) }); } + foreach my $result (@results){ if($result->{fieldType} eq 'category'){ # Row starting with a category label shows the listing name in each column @@ -1097,10 +1164,9 @@ sub www_getCompareListData { } $jsonOutput->{ResultSet} = {Result=>\@results}; - $session->http->setMimeType("application/json"); - return JSON->new->utf8->encode($jsonOutput); + return JSON->new->encode($jsonOutput); } #------------------------------------------------------------------- @@ -1143,6 +1209,7 @@ sub www_search { my $self = shift; my $var = $self->get; + my $db = $self->session->db; $var->{compareForm} = $self->getCompareForm; $self->session->style->setScript($self->session->url->extras('yui/build/yahoo/yahoo-min.js'), @@ -1174,7 +1241,7 @@ sub www_search { my $attributes; my @attribute_loop; my $categoryLoopName = $self->session->url->urlize($category)."_loop"; - $attributes = $self->session->db->read("select * from Matrix_attribute where category =? and assetId = ?", + $attributes = $db->read("select * from Matrix_attribute where category =? and assetId = ?", [$category,$self->getId]); while (my $attribute = $attributes->hashRef) { $attribute->{label} = $attribute->{name}; @@ -1183,10 +1250,14 @@ sub www_search { $attribute->{extras} = " class='attributeSelect'"; if($attribute->{fieldType} eq 'Combo'){ $attribute->{fieldType} = 'SelectBox'; - } - if($attribute->{fieldType} eq 'SelectBox'){ - $attribute->{options} = "blank\n".$attribute->{options}; + my %options; + tie %options, 'Tie::IxHash'; + %options = $db->buildHash('select value, value from MatrixListing_attribute + where attributeId = ? order by value',[$attribute->{attributeId}]); + $options{'blank'} = 'blank'; + $attribute->{options} = \%options; $attribute->{value} = 'blank'; + $attribute->{extras} = "style='width:120px'"; } $attribute->{form} = WebGUI::Form::DynamicField->new($self->session,%{$attribute})->toHtml; push(@attribute_loop,$attribute); diff --git a/lib/WebGUI/Asset/Wobject/MessageBoard.pm b/lib/WebGUI/Asset/Wobject/MessageBoard.pm index cd697ccc2..b55238e45 100644 --- a/lib/WebGUI/Asset/Wobject/MessageBoard.pm +++ b/lib/WebGUI/Asset/Wobject/MessageBoard.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::MessageBoard; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/MultiSearch.pm b/lib/WebGUI/Asset/Wobject/MultiSearch.pm index b576918a0..80e9472da 100644 --- a/lib/WebGUI/Asset/Wobject/MultiSearch.pm +++ b/lib/WebGUI/Asset/Wobject/MultiSearch.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::MultiSearch; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Navigation.pm b/lib/WebGUI/Asset/Wobject/Navigation.pm index d653538e1..bb491c591 100644 --- a/lib/WebGUI/Asset/Wobject/Navigation.pm +++ b/lib/WebGUI/Asset/Wobject/Navigation.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Navigation; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Poll.pm b/lib/WebGUI/Asset/Wobject/Poll.pm index 25d38b10d..767117aa3 100644 --- a/lib/WebGUI/Asset/Wobject/Poll.pm +++ b/lib/WebGUI/Asset/Wobject/Poll.pm @@ -2,7 +2,7 @@ package WebGUI::Asset::Wobject::Poll; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/ProjectManager.pm b/lib/WebGUI/Asset/Wobject/ProjectManager.pm index 79e093c49..274799e6e 100644 --- a/lib/WebGUI/Asset/Wobject/ProjectManager.pm +++ b/lib/WebGUI/Asset/Wobject/ProjectManager.pm @@ -4,7 +4,7 @@ use strict; our $VERSION = "1.0.0"; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/SQLReport.pm b/lib/WebGUI/Asset/Wobject/SQLReport.pm index ac7aabb90..286dabd79 100644 --- a/lib/WebGUI/Asset/Wobject/SQLReport.pm +++ b/lib/WebGUI/Asset/Wobject/SQLReport.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::SQLReport; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Search.pm b/lib/WebGUI/Asset/Wobject/Search.pm index d6550e8e5..d2add1086 100644 --- a/lib/WebGUI/Asset/Wobject/Search.pm +++ b/lib/WebGUI/Asset/Wobject/Search.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Search; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Shelf.pm b/lib/WebGUI/Asset/Wobject/Shelf.pm index 633025e69..f00b00954 100644 --- a/lib/WebGUI/Asset/Wobject/Shelf.pm +++ b/lib/WebGUI/Asset/Wobject/Shelf.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Shelf; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/StockData.pm b/lib/WebGUI/Asset/Wobject/StockData.pm index 0cb3fdcf7..120cc66d1 100644 --- a/lib/WebGUI/Asset/Wobject/StockData.pm +++ b/lib/WebGUI/Asset/Wobject/StockData.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::StockData; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Survey.pm b/lib/WebGUI/Asset/Wobject/Survey.pm index 4f4befd74..ae65c3f5a 100644 --- a/lib/WebGUI/Asset/Wobject/Survey.pm +++ b/lib/WebGUI/Asset/Wobject/Survey.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Survey; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Survey/ResponseJSON.pm b/lib/WebGUI/Asset/Wobject/Survey/ResponseJSON.pm index bd810df4e..fa0de8c4a 100644 --- a/lib/WebGUI/Asset/Wobject/Survey/ResponseJSON.pm +++ b/lib/WebGUI/Asset/Wobject/Survey/ResponseJSON.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::Survey::ResponseJSON; =head1 LEGAL ------------------------------------------------------------------- -WebGUI is Copyright 2001-2008 Plain Black Corporation. +WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Survey/SurveyJSON.pm b/lib/WebGUI/Asset/Wobject/Survey/SurveyJSON.pm index d440466f4..701327de6 100644 --- a/lib/WebGUI/Asset/Wobject/Survey/SurveyJSON.pm +++ b/lib/WebGUI/Asset/Wobject/Survey/SurveyJSON.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::Survey::SurveyJSON; =head1 LEGAL ------------------------------------------------------------------- -WebGUI is Copyright 2001-2008 Plain Black Corporation. +WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -89,7 +89,7 @@ my %MULTI_CHOICE_BUNDLES = ( Likelihood => [ 'Not at all likely', (q{}) x 9, 'Extremely likely' ], 'Oppose/Support' => [ 'Strongly oppose', (q{}) x 5, 'Strongly support' ], Party => - [ 'Democratic party', 'Republican party (or GOP)', 'Independant party', 'Other party (verbatim)' ], + [ 'Democratic party', 'Republican party (or GOP)', 'Independent party', 'Other party (verbatim)' ], Race => [ 'American Indian', 'Asian', 'Black', 'Hispanic', 'White non-Hispanic', 'Something else (verbatim)' ], Risk => [ 'No risk', (q{}) x 9, 'Extreme risk' ], diff --git a/lib/WebGUI/Asset/Wobject/SyndicatedContent.pm b/lib/WebGUI/Asset/Wobject/SyndicatedContent.pm index d353cde91..0c209dc9f 100644 --- a/lib/WebGUI/Asset/Wobject/SyndicatedContent.pm +++ b/lib/WebGUI/Asset/Wobject/SyndicatedContent.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::SyndicatedContent; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/Thingy.pm b/lib/WebGUI/Asset/Wobject/Thingy.pm index 188dc2baa..af0dcaa6d 100644 --- a/lib/WebGUI/Asset/Wobject/Thingy.pm +++ b/lib/WebGUI/Asset/Wobject/Thingy.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::Thingy; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -130,13 +130,13 @@ sub addThing { } $db->write("create table ".$db->dbh->quote_identifier("Thingy_".$newThingId)."( - thingDataId varchar(22) binary not null, + thingDataId CHAR(22) binary not null, dateCreated int not null, - createdById varchar(22) not null, - updatedById varchar(22) not null, - updatedByName varchar(255) not null, + createdById CHAR(22) not null, + updatedById CHAR(22) not null, + updatedByName CHAR(255) not null, lastUpdated int not null, - ipAddress varchar(255), + ipAddress CHAR(255), primary key (thingDataId) ) ENGINE=MyISAM DEFAULT CHARSET=utf8"); @@ -591,7 +591,7 @@ sub _getDbDataType { my ($dbDataType, $formClass); if ($fieldType =~ m/^otherThing/x){ - $dbDataType = "varchar(22)"; + $dbDataType = "CHAR(22)"; } else{ $formClass = 'WebGUI::Form::' . ucfirst $fieldType; @@ -1517,7 +1517,7 @@ sub www_deleteThingDataViaAjax { unless ($thingId && $thingDataId) { $session->http->setStatus("400", "Bad Request"); - return JSON->new->utf8->encode({message => "Can't get thing data without a thingId and a thingDataId."}); + return JSON->new->encode({message => "Can't get thing data without a thingId and a thingDataId."}); } my $thingProperties = $self->getThing($thingId); @@ -1528,11 +1528,11 @@ sub www_deleteThingDataViaAjax { $self->deleteThingData($thingId,$thingDataId); $session->http->setMimeType("application/json"); - return JSON->new->utf8->encode({message => "Data with thingDataId $thingDataId was deleted."}); + return JSON->new->encode({message => "Data with thingDataId $thingDataId was deleted."}); } else { $session->http->setStatus("404", "Not Found"); - return JSON->new->utf8->encode({message => "The thingId you specified can not be found."}); + return JSON->new->encode({message => "The thingId you specified can not be found."}); } } @@ -2455,7 +2455,7 @@ sub www_editThingDataSaveViaAjax { unless ($thingId && $thingDataId) { $session->http->setStatus("400", "Bad Request"); - return JSON->new->utf8->encode({message => "Can't get thing data without a thingId and a thingDataId."}); + return JSON->new->encode({message => "Can't get thing data without a thingId and a thingDataId."}); } my $thingProperties = $self->getThing($thingId); @@ -2467,19 +2467,19 @@ sub www_editThingDataSaveViaAjax { if($thingDataId eq 'new' && $self->hasEnteredMaxPerUser($thingId)){ $session->http->setStatus("400", "Bad Request"); - return JSON->new->utf8->encode({message => $i18n->get("has entered max per user message")}); + return JSON->new->encode({message => $i18n->get("has entered max per user message")}); } my ($newThingDataId,$errors) = $self->editThingDataSave($thingId,$thingDataId); if ($errors){ $session->http->setStatus("400", "Bad Request"); - return JSON->new->utf8->encode($errors); + return JSON->new->encode($errors); } } else { $session->http->setStatus("404", "Not Found"); - return JSON->new->utf8->encode({message => "The thingId you requested can not be found."}); + return JSON->new->encode({message => "The thingId you requested can not be found."}); } } @@ -2568,7 +2568,7 @@ sub www_getThingViaAjax { unless ($thingId) { $session->http->setStatus("400", "Bad Request"); - return JSON->new->utf8->encode({message => "Can't return thing properties without a thingId."}); + return JSON->new->encode({message => "Can't return thing properties without a thingId."}); } my $thingProperties = $self->getThing($thingId); @@ -2586,11 +2586,11 @@ sub www_getThingViaAjax { $thingProperties->{field_loop} = \@field_loop; $session->http->setMimeType("application/json"); - return JSON->new->utf8->encode($thingProperties); + return JSON->new->encode($thingProperties); } else { $session->http->setStatus("404", "Not Found"); - return JSON->new->utf8->encode({message => "The thingId you requested can not be found."}); + return JSON->new->encode({message => "The thingId you requested can not be found."}); } } @@ -2620,11 +2620,11 @@ sub www_getThingsViaAjax { } } if (scalar @visibleThings > 0){ - return JSON->new->utf8->encode(\@visibleThings); + return JSON->new->encode(\@visibleThings); } else { $session->http->setStatus("404", "Not Found"); - return JSON->new->utf8->encode({message => "No visible Things were found in this Thingy."}); + return JSON->new->encode({message => "No visible Things were found in this Thingy."}); } } @@ -2982,7 +2982,7 @@ sub www_searchViaAjax { unless ($thingId) { $session->http->setStatus("400", "Bad Request"); - return JSON->new->utf8->encode({message => "Can't perform search without a thingId."}); + return JSON->new->encode({message => "Can't perform search without a thingId."}); } if ($thingProperties->{thingId}){ @@ -2993,11 +2993,11 @@ sub www_searchViaAjax { my $var = $self->getSearchTemplateVars($thingId,$thingProperties); $session->http->setMimeType("application/json"); - return JSON->new->utf8->encode($var); + return JSON->new->encode($var); } else { $session->http->setStatus("404", "Not Found"); - return JSON->new->utf8->encode({message => "The thingId you requested can not be found."}); + return JSON->new->encode({message => "The thingId you requested can not be found."}); } } @@ -3154,7 +3154,7 @@ sequenceNumber'); WebGUI::Cache->new($self->session,"query_".$thingId)->set($query,30*60); $paginatePage = $self->session->form->param('pn') || 1; - $currentUrl .= ";orderBy=".$orderBy if ($orderBy); + $currentUrl = $self->session->url->append($currentUrl, "orderBy=".$orderBy) if $orderBy; $p = WebGUI::Paginator->new($self->session,$currentUrl,$thingProperties->{thingsPerPage}, undef, $paginatePage); @@ -3393,7 +3393,7 @@ sub www_viewThingDataViaAjax { unless ($thingId && $thingDataId) { $session->http->setStatus("400", "Bad Request"); - return JSON->new->utf8->encode({message => "Can't get thing data without a thingId and a thingDataId."}); + return JSON->new->encode({message => "Can't get thing data without a thingId and a thingDataId."}); } my $thingProperties = $self->getThing($thingId); @@ -3404,16 +3404,16 @@ sub www_viewThingDataViaAjax { my $output = $self->getViewThingVars($thingId,$thingDataId); if ($output){ - return JSON->new->utf8->encode($output); + return JSON->new->encode($output); } else{ $session->http->setStatus("404", "Not Found"); - return JSON->new->utf8->encode({message => "The thingDataId you requested can not be found."}); + return JSON->new->encode({message => "The thingDataId you requested can not be found."}); } } else { $session->http->setStatus("404", "Not Found"); - return JSON->new->utf8->encode({message => "The thingId you requested can not be found."}); + return JSON->new->encode({message => "The thingId you requested can not be found."}); } } diff --git a/lib/WebGUI/Asset/Wobject/TimeTracking.pm b/lib/WebGUI/Asset/Wobject/TimeTracking.pm index 3ca4482a3..21f42f18d 100644 --- a/lib/WebGUI/Asset/Wobject/TimeTracking.pm +++ b/lib/WebGUI/Asset/Wobject/TimeTracking.pm @@ -4,7 +4,7 @@ use strict; our $VERSION = "1.0.0"; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/UserList.pm b/lib/WebGUI/Asset/Wobject/UserList.pm index 01fb4cadd..bbb4c77ca 100644 --- a/lib/WebGUI/Asset/Wobject/UserList.pm +++ b/lib/WebGUI/Asset/Wobject/UserList.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::UserList; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/WeatherData.pm b/lib/WebGUI/Asset/Wobject/WeatherData.pm index ebcf9c194..7ef165c53 100644 --- a/lib/WebGUI/Asset/Wobject/WeatherData.pm +++ b/lib/WebGUI/Asset/Wobject/WeatherData.pm @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::WeatherData; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/WikiMaster.pm b/lib/WebGUI/Asset/Wobject/WikiMaster.pm index 9847a079e..9a4d2ca44 100644 --- a/lib/WebGUI/Asset/Wobject/WikiMaster.pm +++ b/lib/WebGUI/Asset/Wobject/WikiMaster.pm @@ -1,7 +1,7 @@ package WebGUI::Asset::Wobject::WikiMaster; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/Wobject/_NewWobject.skeleton b/lib/WebGUI/Asset/Wobject/_NewWobject.skeleton index 11eba08f3..1a36e0163 100644 --- a/lib/WebGUI/Asset/Wobject/_NewWobject.skeleton +++ b/lib/WebGUI/Asset/Wobject/_NewWobject.skeleton @@ -3,7 +3,7 @@ package WebGUI::Asset::Wobject::NewWobject; $VERSION = "1.0.0"; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Asset/_NewAsset.skeleton b/lib/WebGUI/Asset/_NewAsset.skeleton index ae49a4647..ad9cb921c 100644 --- a/lib/WebGUI/Asset/_NewAsset.skeleton +++ b/lib/WebGUI/Asset/_NewAsset.skeleton @@ -3,7 +3,7 @@ package WebGUI::Asset::NewAsset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -212,6 +212,7 @@ sub purgeRevision { } #------------------------------------------------------------------- + =head2 view ( ) method called by the container www_view method. @@ -261,6 +262,7 @@ our @EXPORT = qw(install uninstall); use WebGUI::Session; #------------------------------------------------------------------- + sub install { my $config = $ARGV[0]; my $home = $ARGV[1] || "/data/WebGUI"; @@ -279,6 +281,7 @@ sub install { } #------------------------------------------------------------------- + sub uninstall { my $config = $ARGV[0]; my $home = $ARGV[1] || "/data/WebGUI"; diff --git a/lib/WebGUI/AssetAspect/Comments.pm b/lib/WebGUI/AssetAspect/Comments.pm index 3a2023633..bf26fefd6 100644 --- a/lib/WebGUI/AssetAspect/Comments.pm +++ b/lib/WebGUI/AssetAspect/Comments.pm @@ -3,7 +3,7 @@ package WebGUI::AssetAspect::Comments; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/AssetAspect/Installable.pm b/lib/WebGUI/AssetAspect/Installable.pm index d1c105102..e51b08f77 100644 --- a/lib/WebGUI/AssetAspect/Installable.pm +++ b/lib/WebGUI/AssetAspect/Installable.pm @@ -64,7 +64,7 @@ sub install { my $sql = q{CREATE TABLE `} . $installDef->{tableName} . q{` ( } - . q{`assetId` VARCHAR(22) BINARY NOT NULL, } + . q{`assetId` CHAR(22) BINARY NOT NULL, } . q{`revisionDate` BIGINT NOT NULL, }; for my $column ( keys %{ $installDef->{properties} } ) { my $control = WebGUI::Form::DynamicField->new( $session, %{ $installDef->{properties}->{$column} } ); diff --git a/lib/WebGUI/AssetBranch.pm b/lib/WebGUI/AssetBranch.pm index 300cdf855..e9d336b19 100644 --- a/lib/WebGUI/AssetBranch.pm +++ b/lib/WebGUI/AssetBranch.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/AssetClipboard.pm b/lib/WebGUI/AssetClipboard.pm index 7763222b5..8da7ff7b6 100644 --- a/lib/WebGUI/AssetClipboard.pm +++ b/lib/WebGUI/AssetClipboard.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/AssetExportHtml.pm b/lib/WebGUI/AssetExportHtml.pm index 3a6b8370f..9ded76b92 100644 --- a/lib/WebGUI/AssetExportHtml.pm +++ b/lib/WebGUI/AssetExportHtml.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/AssetLineage.pm b/lib/WebGUI/AssetLineage.pm index bd0fb1669..0e973ce1b 100644 --- a/lib/WebGUI/AssetLineage.pm +++ b/lib/WebGUI/AssetLineage.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/AssetMetaData.pm b/lib/WebGUI/AssetMetaData.pm index 51e4d6d2e..a6fc3469a 100644 --- a/lib/WebGUI/AssetMetaData.pm +++ b/lib/WebGUI/AssetMetaData.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/AssetPackage.pm b/lib/WebGUI/AssetPackage.pm index 71717536d..d6d884a9a 100644 --- a/lib/WebGUI/AssetPackage.pm +++ b/lib/WebGUI/AssetPackage.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/AssetTrash.pm b/lib/WebGUI/AssetTrash.pm index 72e8e4f4f..ada730399 100644 --- a/lib/WebGUI/AssetTrash.pm +++ b/lib/WebGUI/AssetTrash.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/AssetVersioning.pm b/lib/WebGUI/AssetVersioning.pm index f76f3b399..9ee3f9422 100644 --- a/lib/WebGUI/AssetVersioning.pm +++ b/lib/WebGUI/AssetVersioning.pm @@ -3,7 +3,7 @@ package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Auth.pm b/lib/WebGUI/Auth.pm index dc012c9a1..b39f72804 100644 --- a/lib/WebGUI/Auth.pm +++ b/lib/WebGUI/Auth.pm @@ -3,7 +3,7 @@ package WebGUI::Auth; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2007 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Auth/LDAP.pm b/lib/WebGUI/Auth/LDAP.pm index c30e4381b..a254d3ae0 100644 --- a/lib/WebGUI/Auth/LDAP.pm +++ b/lib/WebGUI/Auth/LDAP.pm @@ -1,7 +1,7 @@ package WebGUI::Auth::LDAP; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Auth/WebGUI.pm b/lib/WebGUI/Auth/WebGUI.pm index eeb308e06..600286f2a 100644 --- a/lib/WebGUI/Auth/WebGUI.pm +++ b/lib/WebGUI/Auth/WebGUI.pm @@ -1,7 +1,7 @@ package WebGUI::Auth::WebGUI; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -21,6 +21,7 @@ use WebGUI::Mail::Send; use WebGUI::Storage; use WebGUI::User; use WebGUI::Utility; +use WebGUI::Form::Captcha; use Encode (); our @ISA = qw(WebGUI::Auth); @@ -224,8 +225,9 @@ sub createAccountSave { my $error; $error = $self->error unless($self->validUsername($username)); if ($setting->get("webguiUseCaptcha")) { - unless ($form->process('authWebGUI.captcha', "Captcha")) { - $error .= '
          • '.$i18n->get("captcha failure","AuthWebGUI").'
          • '; + my $form = WebGUI::Form::Captcha->new($session, {name => 'authWebGUI.captcha'}); + if (! $form->getValue) { + $error .= '
          • ' . $form->getErrorMessage . '
          • '; } } $error .= $self->error unless($self->_isValidPassword($password,$passConfirm)); diff --git a/lib/WebGUI/Cache.pm b/lib/WebGUI/Cache.pm index 2dc94f012..05f7cfb2f 100644 --- a/lib/WebGUI/Cache.pm +++ b/lib/WebGUI/Cache.pm @@ -3,7 +3,7 @@ package WebGUI::Cache; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Cache/Database.pm b/lib/WebGUI/Cache/Database.pm index df15d06bf..b292ffb2b 100644 --- a/lib/WebGUI/Cache/Database.pm +++ b/lib/WebGUI/Cache/Database.pm @@ -3,7 +3,7 @@ package WebGUI::Cache::Database; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Cache/FileCache.pm b/lib/WebGUI/Cache/FileCache.pm index 41544e5b0..1c8e3f1f7 100644 --- a/lib/WebGUI/Cache/FileCache.pm +++ b/lib/WebGUI/Cache/FileCache.pm @@ -3,7 +3,7 @@ package WebGUI::Cache::FileCache; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Config.pm b/lib/WebGUI/Config.pm index ce8c6f639..486406e12 100644 --- a/lib/WebGUI/Config.pm +++ b/lib/WebGUI/Config.pm @@ -3,7 +3,7 @@ package WebGUI::Config; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/Account.pm b/lib/WebGUI/Content/Account.pm index 2e67608db..83804c683 100644 --- a/lib/WebGUI/Content/Account.pm +++ b/lib/WebGUI/Content/Account.pm @@ -3,7 +3,7 @@ package WebGUI::Content::Account; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/AjaxI18N.pm b/lib/WebGUI/Content/AjaxI18N.pm index 58effaa4d..5712b9625 100644 --- a/lib/WebGUI/Content/AjaxI18N.pm +++ b/lib/WebGUI/Content/AjaxI18N.pm @@ -3,7 +3,7 @@ package WebGUI::Content::AjaxI18N; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/Asset.pm b/lib/WebGUI/Content/Asset.pm index 2e56d825a..3d5e6ba74 100644 --- a/lib/WebGUI/Content/Asset.pm +++ b/lib/WebGUI/Content/Asset.pm @@ -3,7 +3,7 @@ package WebGUI::Content::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/AssetDiscovery.pm b/lib/WebGUI/Content/AssetDiscovery.pm index 951d49e4e..4a2443253 100644 --- a/lib/WebGUI/Content/AssetDiscovery.pm +++ b/lib/WebGUI/Content/AssetDiscovery.pm @@ -3,7 +3,7 @@ package WebGUI::Content::AssetDiscovery; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/AssetManager.pm b/lib/WebGUI/Content/AssetManager.pm index cdb2ede8d..6a635402c 100644 --- a/lib/WebGUI/Content/AssetManager.pm +++ b/lib/WebGUI/Content/AssetManager.pm @@ -323,7 +323,9 @@ JavaScript that will take over if the browser has the cojones. sub www_manage { my ( $session ) = @_; - my $ac = WebGUI::AdminConsole->new( $session, "assets" ); + my $ac = WebGUI::AdminConsole->new( $session, "assets", { + showAdminBar => 1 + } ); my $currentAsset = getCurrentAsset( $session ); my $i18n = WebGUI::International->new( $session, "Asset" ); @@ -413,7 +415,7 @@ sub www_manage { YAHOO.util.Event.onDOMReady( WebGUI.AssetManager.initManager ); ENDHTML - my $output = WebGUI::Macro::AdminBar::process($session).'
            ' . getHeader( $session ); + my $output = '
            ' . getHeader( $session ); ### Crumbtrail my $crumb_markup = '
          • %s >
          • '; @@ -428,15 +430,16 @@ ENDHTML } # And ourself - $output .= sprintf q{
          • %s
          • }, + $output .= sprintf q{
          • %s
          • }, $currentAsset->getUrl, + ($currentAsset->canEdit && $currentAsset->canEditIfLocked ? 1 : 0), $currentAsset->get( "menuTitle" ), ; $output .= ''; ### The page of assets $output .= q{
            } - . q{
            } + . q{} . q{} . q{} . q{
            } @@ -620,7 +623,7 @@ sub www_search { } else { ### Display the search results - $output .= q{} + $output .= q{} . q{} . q{} . q{} diff --git a/lib/WebGUI/Content/Maintenance.pm b/lib/WebGUI/Content/Maintenance.pm index ea0f99043..e4379d2db 100644 --- a/lib/WebGUI/Content/Maintenance.pm +++ b/lib/WebGUI/Content/Maintenance.pm @@ -3,7 +3,7 @@ package WebGUI::Content::Maintenance; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/NotFound.pm b/lib/WebGUI/Content/NotFound.pm index f317a80a0..b42c49fbf 100644 --- a/lib/WebGUI/Content/NotFound.pm +++ b/lib/WebGUI/Content/NotFound.pm @@ -3,7 +3,7 @@ package WebGUI::Content::NotFound; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/Operation.pm b/lib/WebGUI/Content/Operation.pm index 3e11be822..77a610c8c 100644 --- a/lib/WebGUI/Content/Operation.pm +++ b/lib/WebGUI/Content/Operation.pm @@ -3,7 +3,7 @@ package WebGUI::Content::Operation; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/Prefetch.pm b/lib/WebGUI/Content/Prefetch.pm index b4f7fa497..7350275f4 100644 --- a/lib/WebGUI/Content/Prefetch.pm +++ b/lib/WebGUI/Content/Prefetch.pm @@ -3,7 +3,7 @@ package WebGUI::Content::Prefetch; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/Referral.pm b/lib/WebGUI/Content/Referral.pm index 79a57897c..37e3c153a 100644 --- a/lib/WebGUI/Content/Referral.pm +++ b/lib/WebGUI/Content/Referral.pm @@ -3,7 +3,7 @@ package WebGUI::Content::Referral; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/Setup.pm b/lib/WebGUI/Content/Setup.pm index e4a9e07e7..42a476006 100644 --- a/lib/WebGUI/Content/Setup.pm +++ b/lib/WebGUI/Content/Setup.pm @@ -3,7 +3,7 @@ package WebGUI::Content::Setup; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/Shop.pm b/lib/WebGUI/Content/Shop.pm index ed5775f60..f52b4c8a9 100644 --- a/lib/WebGUI/Content/Shop.pm +++ b/lib/WebGUI/Content/Shop.pm @@ -3,7 +3,7 @@ package WebGUI::Content::Shop; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/SiteIndex.pm b/lib/WebGUI/Content/SiteIndex.pm index 47016e94b..5e5ff3ce4 100644 --- a/lib/WebGUI/Content/SiteIndex.pm +++ b/lib/WebGUI/Content/SiteIndex.pm @@ -3,7 +3,7 @@ package WebGUI::Content::SiteIndex; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Content/_content.skeleton b/lib/WebGUI/Content/_content.skeleton index 5bfa10ddd..61f1b66b9 100644 --- a/lib/WebGUI/Content/_content.skeleton +++ b/lib/WebGUI/Content/_content.skeleton @@ -3,7 +3,7 @@ package WebGUI::Content::MyHandler; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Crud.pm b/lib/WebGUI/Crud.pm index 0f548065f..54c2163c4 100644 --- a/lib/WebGUI/Crud.pm +++ b/lib/WebGUI/Crud.pm @@ -4,7 +4,7 @@ package WebGUI::Crud; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -209,7 +209,7 @@ sub crud_createTable { my $tableName = $class->crud_getTableName($session); $class->crud_dropTable($session); $db->write('create table '.$dbh->quote_identifier($tableName).' ( - '.$dbh->quote_identifier($class->crud_getTableKey($session)).' varchar(22) binary not null primary key, + '.$dbh->quote_identifier($class->crud_getTableKey($session)).' CHAR(22) binary not null primary key, sequenceNumber int not null default 1, dateCreated datetime, lastUpdated datetime diff --git a/lib/WebGUI/DatabaseLink.pm b/lib/WebGUI/DatabaseLink.pm index e0473b89c..4230f0000 100644 --- a/lib/WebGUI/DatabaseLink.pm +++ b/lib/WebGUI/DatabaseLink.pm @@ -3,7 +3,7 @@ package WebGUI::DatabaseLink; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/DateTime.pm b/lib/WebGUI/DateTime.pm index 89f8a7fe5..544052acf 100644 --- a/lib/WebGUI/DateTime.pm +++ b/lib/WebGUI/DateTime.pm @@ -3,7 +3,7 @@ package WebGUI::DateTime; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Exception.pm b/lib/WebGUI/Exception.pm index 870ebaa42..107b24624 100644 --- a/lib/WebGUI/Exception.pm +++ b/lib/WebGUI/Exception.pm @@ -3,7 +3,7 @@ package WebGUI::Exception; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Exception/Shop.pm b/lib/WebGUI/Exception/Shop.pm index 6e8e26a8e..5fb899dbf 100644 --- a/lib/WebGUI/Exception/Shop.pm +++ b/lib/WebGUI/Exception/Shop.pm @@ -3,7 +3,7 @@ package WebGUI::Exception::Shop; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form.pm b/lib/WebGUI/Form.pm index d297bc61b..56584a4bb 100644 --- a/lib/WebGUI/Form.pm +++ b/lib/WebGUI/Form.pm @@ -3,7 +3,7 @@ package WebGUI::Form; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Asset.pm b/lib/WebGUI/Form/Asset.pm index 6382b746b..b4e632626 100644 --- a/lib/WebGUI/Form/Asset.pm +++ b/lib/WebGUI/Form/Asset.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Asset; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Attachments.pm b/lib/WebGUI/Form/Attachments.pm index aec722f87..7d551f926 100644 --- a/lib/WebGUI/Form/Attachments.pm +++ b/lib/WebGUI/Form/Attachments.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Attachments; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -102,12 +102,12 @@ sub definition { =head2 getDatabaseFieldType ( ) -Returns "VARCHAR(22) BINARY". +Returns "CHAR(22) BINARY". =cut sub getDatabaseFieldType { - return "VARCHAR(22) BINARY"; + return "CHAR(22) BINARY"; } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Form/Button.pm b/lib/WebGUI/Form/Button.pm index c89473be1..9d9b66597 100644 --- a/lib/WebGUI/Form/Button.pm +++ b/lib/WebGUI/Form/Button.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Button; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Captcha.pm b/lib/WebGUI/Form/Captcha.pm index c03d7a282..5147b0788 100644 --- a/lib/WebGUI/Form/Captcha.pm +++ b/lib/WebGUI/Form/Captcha.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Captcha; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -18,6 +18,7 @@ use strict; use base 'WebGUI::Form::Text'; use WebGUI::International; use WebGUI::Storage; +use LWP::UserAgent; =head1 NAME @@ -101,6 +102,27 @@ Returns a boolean indicating whether the string typed matched the image. sub getValue { my $self = shift; + + if ($self->session->setting->get('useRecaptcha')) { + my $privKey = $self->session->setting->get('recaptchaPrivateKey'); + my $challenge = $self->session->form->param('recaptcha_challenge_field'); + my $response = $self->session->form->param('recaptcha_response_field'); + + my $ua = LWP::UserAgent->new; + my $res = $ua->post('http://api-verify.recaptcha.net/verify', { + privatekey => $privKey, + remoteip => $self->session->env->getIp, + challenge => $challenge, + response => $response, + }); + if ($res->is_success) { + my ($answer, $error) = split /\n/, $res->content, 2; + $self->{_error} = $error; + return $answer eq 'true'; + } + return undef; + } + my $value = $self->SUPER::getValue(@_); my $challenge = $self->session->scratch->get("captcha_".$self->get("name")); $self->session->scratch->delete("captcha_".$self->get("name")); @@ -133,14 +155,43 @@ Renders a captcha field. =cut sub toHtml { - my $self = shift; - my $storage = WebGUI::Storage->createTemp($self->session); - my ($filename, $challenge) = $storage->addFileFromCaptcha; - $self->set("size", 6); - $self->set("maxlength", 6); - $self->session->scratch->set("captcha_".$self->get("name"), $challenge); - return $self->SUPER::toHtml.'

            captcha

            '; + my $self = shift; + + if ($self->session->setting->get('useRecaptcha')) { + my $env = $self->session->env; + my $pubKey = $self->session->setting->get('recaptchaPublicKey'); + my $server = "http://api.recaptcha.net"; + if ($env->get("HTTPS") eq "on" || $env->get("SSLPROXY")) { + $server = "http://api-secure.recaptcha.net"; + } + return + '' + . ''; + } + + my $storage = WebGUI::Storage->createTemp($self->session); + my ($filename, $challenge) = $storage->addFileFromCaptcha; + $self->set("size", 6); + $self->set("maxlength", 6); + $self->session->scratch->set("captcha_".$self->get("name"), $challenge); + return $self->SUPER::toHtml.'

            captcha

            '; } +sub getErrorMessage { + my $self = shift; + my $session = $self->session; + my $i18n = WebGUI::International->new($session,"Form_Captcha"); + if ($session->setting->get('useRecaptcha')) { + return $i18n->get("recaptcha failure"); + } + return $i18n->get("captcha failure"); +} + + 1; diff --git a/lib/WebGUI/Form/CheckList.pm b/lib/WebGUI/Form/CheckList.pm index c17247fb9..2d9163661 100644 --- a/lib/WebGUI/Form/CheckList.pm +++ b/lib/WebGUI/Form/CheckList.pm @@ -3,7 +3,7 @@ package WebGUI::Form::CheckList; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Checkbox.pm b/lib/WebGUI/Form/Checkbox.pm index ee486e33f..f35a76a4a 100644 --- a/lib/WebGUI/Form/Checkbox.pm +++ b/lib/WebGUI/Form/Checkbox.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Checkbox; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/ClassName.pm b/lib/WebGUI/Form/ClassName.pm index ca4f3c05e..c8cb6792e 100644 --- a/lib/WebGUI/Form/ClassName.pm +++ b/lib/WebGUI/Form/ClassName.pm @@ -3,7 +3,7 @@ package WebGUI::Form::ClassName; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Codearea.pm b/lib/WebGUI/Form/Codearea.pm index 0e19ce0d4..00fad717e 100644 --- a/lib/WebGUI/Form/Codearea.pm +++ b/lib/WebGUI/Form/Codearea.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Codearea; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Color.pm b/lib/WebGUI/Form/Color.pm index 482369dac..43b3e4c25 100644 --- a/lib/WebGUI/Form/Color.pm +++ b/lib/WebGUI/Form/Color.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Color; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -40,12 +40,12 @@ The following methods are specifically available from this class. Check the supe =head2 getDatabaseFieldType ( ) -Returns "VARCHAR(7)". +Returns "CHAR(7)". =cut sub getDatabaseFieldType { - return "VARCHAR(7)"; + return "CHAR(7)"; } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Form/Combo.pm b/lib/WebGUI/Form/Combo.pm index b31dad896..064fca39c 100644 --- a/lib/WebGUI/Form/Combo.pm +++ b/lib/WebGUI/Form/Combo.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Combo; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/CommentRating.pm b/lib/WebGUI/Form/CommentRating.pm index c5f56bfdb..6fe72ccfb 100644 --- a/lib/WebGUI/Form/CommentRating.pm +++ b/lib/WebGUI/Form/CommentRating.pm @@ -3,7 +3,7 @@ package WebGUI::Form::CommentRating; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/ContentType.pm b/lib/WebGUI/Form/ContentType.pm index 7b9fd84b4..aaaa3d37b 100644 --- a/lib/WebGUI/Form/ContentType.pm +++ b/lib/WebGUI/Form/ContentType.pm @@ -3,7 +3,7 @@ package WebGUI::Form::ContentType; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Control.pm b/lib/WebGUI/Form/Control.pm index d9de1fdce..270b02a34 100644 --- a/lib/WebGUI/Form/Control.pm +++ b/lib/WebGUI/Form/Control.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Control; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -358,12 +358,12 @@ sub get { =head2 getDatabaseFieldType ( ) -A class method that tells you what database field type this form field should be stored in. Defaults to "VARCHAR(255)". +A class method that tells you what database field type this form field should be stored in. Defaults to "CHAR(255)". =cut sub getDatabaseFieldType { - return "VARCHAR(255)"; + return "CHAR(255)"; } diff --git a/lib/WebGUI/Form/Country.pm b/lib/WebGUI/Form/Country.pm index 06d8ace64..8e1761d7e 100644 --- a/lib/WebGUI/Form/Country.pm +++ b/lib/WebGUI/Form/Country.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Country; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/DataTable.pm b/lib/WebGUI/Form/DataTable.pm index 06401e240..3ebe5678a 100644 --- a/lib/WebGUI/Form/DataTable.pm +++ b/lib/WebGUI/Form/DataTable.pm @@ -3,7 +3,7 @@ package WebGUI::Form::DataTable; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/DatabaseLink.pm b/lib/WebGUI/Form/DatabaseLink.pm index 931fa56e3..1a4a841eb 100644 --- a/lib/WebGUI/Form/DatabaseLink.pm +++ b/lib/WebGUI/Form/DatabaseLink.pm @@ -3,7 +3,7 @@ package WebGUI::Form::DatabaseLink; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Date.pm b/lib/WebGUI/Form/Date.pm index 1f18905e3..311e56dcc 100644 --- a/lib/WebGUI/Form/Date.pm +++ b/lib/WebGUI/Form/Date.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Date; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/DateTime.pm b/lib/WebGUI/Form/DateTime.pm index 4c325d434..410d2313a 100644 --- a/lib/WebGUI/Form/DateTime.pm +++ b/lib/WebGUI/Form/DateTime.pm @@ -3,7 +3,7 @@ package WebGUI::Form::DateTime; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/DynamicField.pm b/lib/WebGUI/Form/DynamicField.pm index 00810c30c..25a5e3254 100644 --- a/lib/WebGUI/Form/DynamicField.pm +++ b/lib/WebGUI/Form/DynamicField.pm @@ -3,7 +3,7 @@ package WebGUI::Form::DynamicField; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Email.pm b/lib/WebGUI/Form/Email.pm index c4cb15670..c9831ef93 100644 --- a/lib/WebGUI/Form/Email.pm +++ b/lib/WebGUI/Form/Email.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Email; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/FieldType.pm b/lib/WebGUI/Form/FieldType.pm index a08c295ef..d0bff2b5a 100644 --- a/lib/WebGUI/Form/FieldType.pm +++ b/lib/WebGUI/Form/FieldType.pm @@ -3,7 +3,7 @@ package WebGUI::Form::FieldType; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/File.pm b/lib/WebGUI/Form/File.pm index 5dc14984e..f3946e316 100644 --- a/lib/WebGUI/Form/File.pm +++ b/lib/WebGUI/Form/File.pm @@ -3,7 +3,7 @@ package WebGUI::Form::File; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -92,12 +92,12 @@ sub definition { =head2 getDatabaseFieldType ( ) -Returns "VARCHAR(22) BINARY". +Returns "CHAR(22) BINARY". =cut sub getDatabaseFieldType { - return "VARCHAR(22) BINARY"; + return "CHAR(22) BINARY"; } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Form/FilterContent.pm b/lib/WebGUI/Form/FilterContent.pm index 9996c3d53..c5e620b1c 100644 --- a/lib/WebGUI/Form/FilterContent.pm +++ b/lib/WebGUI/Form/FilterContent.pm @@ -3,7 +3,7 @@ package WebGUI::Form::FilterContent; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -96,12 +96,12 @@ sub definition { =head2 getDatabaseFieldType ( ) -Returns "VARCHAR(16)". +Returns "CHAR(16)". =cut sub getDatabaseFieldType { - return "VARCHAR(16)"; + return "CHAR(16)"; } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Form/Float.pm b/lib/WebGUI/Form/Float.pm index 721098427..2e1866420 100644 --- a/lib/WebGUI/Form/Float.pm +++ b/lib/WebGUI/Form/Float.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Float; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Group.pm b/lib/WebGUI/Form/Group.pm index ab50921f1..6f6da33bc 100644 --- a/lib/WebGUI/Form/Group.pm +++ b/lib/WebGUI/Form/Group.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Group; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Guid.pm b/lib/WebGUI/Form/Guid.pm index b12340ac3..4f45334f5 100644 --- a/lib/WebGUI/Form/Guid.pm +++ b/lib/WebGUI/Form/Guid.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Guid; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/HTMLArea.pm b/lib/WebGUI/Form/HTMLArea.pm index ae2bd1d50..c7b2fc882 100644 --- a/lib/WebGUI/Form/HTMLArea.pm +++ b/lib/WebGUI/Form/HTMLArea.pm @@ -3,7 +3,7 @@ package WebGUI::Form::HTMLArea; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/HexSlider.pm b/lib/WebGUI/Form/HexSlider.pm index 5b46aebbb..a2717c20a 100644 --- a/lib/WebGUI/Form/HexSlider.pm +++ b/lib/WebGUI/Form/HexSlider.pm @@ -3,7 +3,7 @@ package WebGUI::Form::HexSlider; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Hexadecimal.pm b/lib/WebGUI/Form/Hexadecimal.pm index 5462b742f..ce4062c52 100644 --- a/lib/WebGUI/Form/Hexadecimal.pm +++ b/lib/WebGUI/Form/Hexadecimal.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Hexadecimal; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Hidden.pm b/lib/WebGUI/Form/Hidden.pm index cc2db8846..179f79338 100644 --- a/lib/WebGUI/Form/Hidden.pm +++ b/lib/WebGUI/Form/Hidden.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Hidden; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/HiddenList.pm b/lib/WebGUI/Form/HiddenList.pm index 2d5d64b22..5e6d984eb 100644 --- a/lib/WebGUI/Form/HiddenList.pm +++ b/lib/WebGUI/Form/HiddenList.pm @@ -3,7 +3,7 @@ package WebGUI::Form::HiddenList; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Image.pm b/lib/WebGUI/Form/Image.pm index b72b10c09..3a33e2bf3 100644 --- a/lib/WebGUI/Form/Image.pm +++ b/lib/WebGUI/Form/Image.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Image; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/IntSlider.pm b/lib/WebGUI/Form/IntSlider.pm index 329751635..c12e8c90a 100644 --- a/lib/WebGUI/Form/IntSlider.pm +++ b/lib/WebGUI/Form/IntSlider.pm @@ -3,7 +3,7 @@ package WebGUI::Form::IntSlider; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Integer.pm b/lib/WebGUI/Form/Integer.pm index 6cca40746..4a248d3f4 100644 --- a/lib/WebGUI/Form/Integer.pm +++ b/lib/WebGUI/Form/Integer.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Integer; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Interval.pm b/lib/WebGUI/Form/Interval.pm index 71d07c7d3..20afedf28 100644 --- a/lib/WebGUI/Form/Interval.pm +++ b/lib/WebGUI/Form/Interval.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Interval; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/LdapLink.pm b/lib/WebGUI/Form/LdapLink.pm index ad780c80f..8adf4b531 100644 --- a/lib/WebGUI/Form/LdapLink.pm +++ b/lib/WebGUI/Form/LdapLink.pm @@ -3,7 +3,7 @@ package WebGUI::Form::LdapLink; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/List.pm b/lib/WebGUI/Form/List.pm index a70b7bff5..a10765b15 100644 --- a/lib/WebGUI/Form/List.pm +++ b/lib/WebGUI/Form/List.pm @@ -3,7 +3,7 @@ package WebGUI::Form::List; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/MatrixCompare.pm b/lib/WebGUI/Form/MatrixCompare.pm index e11554afc..e117c8824 100644 --- a/lib/WebGUI/Form/MatrixCompare.pm +++ b/lib/WebGUI/Form/MatrixCompare.pm @@ -3,7 +3,7 @@ package WebGUI::Form::MatrixCompare; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/MatrixFieldType.pm b/lib/WebGUI/Form/MatrixFieldType.pm index 9ba1292c8..6da045d9e 100644 --- a/lib/WebGUI/Form/MatrixFieldType.pm +++ b/lib/WebGUI/Form/MatrixFieldType.pm @@ -3,7 +3,7 @@ package WebGUI::Form::MatrixFieldType; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/MimeType.pm b/lib/WebGUI/Form/MimeType.pm index 0c972197c..435a3ce8e 100644 --- a/lib/WebGUI/Form/MimeType.pm +++ b/lib/WebGUI/Form/MimeType.pm @@ -3,7 +3,7 @@ package WebGUI::Form::MimeType; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Password.pm b/lib/WebGUI/Form/Password.pm index 62be99b74..a140cc164 100644 --- a/lib/WebGUI/Form/Password.pm +++ b/lib/WebGUI/Form/Password.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Password; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Phone.pm b/lib/WebGUI/Form/Phone.pm index e96c3943f..ad9429102 100644 --- a/lib/WebGUI/Form/Phone.pm +++ b/lib/WebGUI/Form/Phone.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Phone; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Radio.pm b/lib/WebGUI/Form/Radio.pm index 9f18ce308..92584ed51 100644 --- a/lib/WebGUI/Form/Radio.pm +++ b/lib/WebGUI/Form/Radio.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Radio; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/RadioList.pm b/lib/WebGUI/Form/RadioList.pm index 5aadf0dde..c6e2b622c 100644 --- a/lib/WebGUI/Form/RadioList.pm +++ b/lib/WebGUI/Form/RadioList.pm @@ -3,7 +3,7 @@ package WebGUI::Form::RadioList; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/ReadOnly.pm b/lib/WebGUI/Form/ReadOnly.pm index 8f9880c5e..417a166e2 100644 --- a/lib/WebGUI/Form/ReadOnly.pm +++ b/lib/WebGUI/Form/ReadOnly.pm @@ -3,7 +3,7 @@ package WebGUI::Form::ReadOnly; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/SelectBox.pm b/lib/WebGUI/Form/SelectBox.pm index bd61989e7..f101ff57b 100644 --- a/lib/WebGUI/Form/SelectBox.pm +++ b/lib/WebGUI/Form/SelectBox.pm @@ -3,7 +3,7 @@ package WebGUI::Form::SelectBox; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -71,12 +71,12 @@ sub definition { =head2 getDatabaseFieldType ( ) -Returns "VARCHAR(255)". +Returns "CHAR(255)". =cut sub getDatabaseFieldType { - return "VARCHAR(255)"; + return "CHAR(255)"; } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Form/SelectList.pm b/lib/WebGUI/Form/SelectList.pm index f2f1693ea..57173ed33 100644 --- a/lib/WebGUI/Form/SelectList.pm +++ b/lib/WebGUI/Form/SelectList.pm @@ -3,7 +3,7 @@ package WebGUI::Form::SelectList; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/SelectRichEditor.pm b/lib/WebGUI/Form/SelectRichEditor.pm index 25cb8e07a..a6f8d1ab9 100644 --- a/lib/WebGUI/Form/SelectRichEditor.pm +++ b/lib/WebGUI/Form/SelectRichEditor.pm @@ -3,7 +3,7 @@ package WebGUI::Form::SelectRichEditor; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/SelectSlider.pm b/lib/WebGUI/Form/SelectSlider.pm index 1989063c4..5b5458190 100644 --- a/lib/WebGUI/Form/SelectSlider.pm +++ b/lib/WebGUI/Form/SelectSlider.pm @@ -3,7 +3,7 @@ package WebGUI::Form::SelectSlider; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Slider.pm b/lib/WebGUI/Form/Slider.pm index 3724d587d..1e1577d4c 100644 --- a/lib/WebGUI/Form/Slider.pm +++ b/lib/WebGUI/Form/Slider.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Slider; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Submit.pm b/lib/WebGUI/Form/Submit.pm index ea14b9ec1..5064f8ced 100644 --- a/lib/WebGUI/Form/Submit.pm +++ b/lib/WebGUI/Form/Submit.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Submit; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/SubscriptionGroup.pm b/lib/WebGUI/Form/SubscriptionGroup.pm index 903ec263a..b022664d9 100644 --- a/lib/WebGUI/Form/SubscriptionGroup.pm +++ b/lib/WebGUI/Form/SubscriptionGroup.pm @@ -3,7 +3,7 @@ package WebGUI::Form::SubscriptionGroup; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Template.pm b/lib/WebGUI/Form/Template.pm index 84da377bb..e95bed1ef 100644 --- a/lib/WebGUI/Form/Template.pm +++ b/lib/WebGUI/Form/Template.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Template; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Text.pm b/lib/WebGUI/Form/Text.pm index 3f90aafb3..90df2980f 100644 --- a/lib/WebGUI/Form/Text.pm +++ b/lib/WebGUI/Form/Text.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Text; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Textarea.pm b/lib/WebGUI/Form/Textarea.pm index 88db88d73..10b726ccd 100644 --- a/lib/WebGUI/Form/Textarea.pm +++ b/lib/WebGUI/Form/Textarea.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Textarea; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/TimeField.pm b/lib/WebGUI/Form/TimeField.pm index dafd58fd3..e31c41f05 100644 --- a/lib/WebGUI/Form/TimeField.pm +++ b/lib/WebGUI/Form/TimeField.pm @@ -3,7 +3,7 @@ package WebGUI::Form::TimeField; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/TimeZone.pm b/lib/WebGUI/Form/TimeZone.pm index 7a6ef9bbc..bf9217adc 100644 --- a/lib/WebGUI/Form/TimeZone.pm +++ b/lib/WebGUI/Form/TimeZone.pm @@ -3,7 +3,7 @@ package WebGUI::Form::TimeZone; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Url.pm b/lib/WebGUI/Form/Url.pm index 5545bc796..528928260 100644 --- a/lib/WebGUI/Form/Url.pm +++ b/lib/WebGUI/Form/Url.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Url; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/User.pm b/lib/WebGUI/Form/User.pm index ce09d7cd3..413a6f135 100644 --- a/lib/WebGUI/Form/User.pm +++ b/lib/WebGUI/Form/User.pm @@ -3,7 +3,7 @@ package WebGUI::Form::User; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -86,12 +86,12 @@ sub definition { =head2 getDatabaseFieldType ( ) -Returns "VARCHAR(22) BINARY". +Returns "CHAR(22) BINARY". =cut sub getDatabaseFieldType { - return "VARCHAR(22) BINARY"; + return "CHAR(22) BINARY"; } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Form/Vendor.pm b/lib/WebGUI/Form/Vendor.pm index 2900cfd72..367268cbe 100644 --- a/lib/WebGUI/Form/Vendor.pm +++ b/lib/WebGUI/Form/Vendor.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Vendor; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -88,12 +88,12 @@ sub definition { =head2 getDatabaseFieldType ( ) -Returns "VARCHAR(22) BINARY". +Returns "CHAR(22) BINARY". =cut sub getDatabaseFieldType { - return "VARCHAR(22) BINARY"; + return "CHAR(22) BINARY"; } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Form/WhatNext.pm b/lib/WebGUI/Form/WhatNext.pm index e119c7326..b2cc7339b 100644 --- a/lib/WebGUI/Form/WhatNext.pm +++ b/lib/WebGUI/Form/WhatNext.pm @@ -3,7 +3,7 @@ package WebGUI::Form::WhatNext; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Workflow.pm b/lib/WebGUI/Form/Workflow.pm index e3a39dc94..5c9f63707 100644 --- a/lib/WebGUI/Form/Workflow.pm +++ b/lib/WebGUI/Form/Workflow.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Workflow; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/YesNo.pm b/lib/WebGUI/Form/YesNo.pm index 0ce827a9d..7ddba081e 100644 --- a/lib/WebGUI/Form/YesNo.pm +++ b/lib/WebGUI/Form/YesNo.pm @@ -3,7 +3,7 @@ package WebGUI::Form::YesNo; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/Zipcode.pm b/lib/WebGUI/Form/Zipcode.pm index 65e65dfdf..f47e25de0 100644 --- a/lib/WebGUI/Form/Zipcode.pm +++ b/lib/WebGUI/Form/Zipcode.pm @@ -3,7 +3,7 @@ package WebGUI::Form::Zipcode; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Form/_control.skeleton b/lib/WebGUI/Form/_control.skeleton index 69a1ac199..b0955f314 100644 --- a/lib/WebGUI/Form/_control.skeleton +++ b/lib/WebGUI/Form/_control.skeleton @@ -3,7 +3,7 @@ package WebGUI::Form::MyControl; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/FormValidator.pm b/lib/WebGUI/FormValidator.pm index b411808d8..6c465c382 100644 --- a/lib/WebGUI/FormValidator.pm +++ b/lib/WebGUI/FormValidator.pm @@ -3,7 +3,7 @@ package WebGUI::FormValidator; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Friends.pm b/lib/WebGUI/Friends.pm index 0d46d7fef..e3c6a4d0f 100644 --- a/lib/WebGUI/Friends.pm +++ b/lib/WebGUI/Friends.pm @@ -3,7 +3,7 @@ package WebGUI::Friends; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Group.pm b/lib/WebGUI/Group.pm index fbc0b4318..9d2c79bdb 100644 --- a/lib/WebGUI/Group.pm +++ b/lib/WebGUI/Group.pm @@ -3,7 +3,7 @@ package WebGUI::Group; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/HTML.pm b/lib/WebGUI/HTML.pm index 73d82f0f2..e05100cb0 100644 --- a/lib/WebGUI/HTML.pm +++ b/lib/WebGUI/HTML.pm @@ -3,7 +3,7 @@ package WebGUI::HTML; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -443,5 +443,44 @@ sub splitTag { return $result[0]; } +sub splitHeadBody { + my $html = shift; + + my $parser = HTML::Parser->new(api_version => 3); + + my $head = ''; + my $body = ''; + my $accum; + $parser->handler(start => sub { + my ($tag, $text) = @_; + if ($tag eq 'head') { + $accum = \$head; + } + elsif ($tag eq 'body') { + $accum = \$body; + } + elsif ($accum) { + $$accum .= $text; + } + }, 'tagname, text'); + $parser->handler(end => sub { + my ($tag, $text) = @_; + if ($tag eq 'head' || $tag eq 'body') { + $accum = undef; + } + elsif ($accum) { + $$accum .= $text; + } + }, 'tagname, text'); + $parser->handler(default => sub { + my ($tag, $text) = @_; + if ($accum) { + $$accum .= $text; + } + }, 'tagname, text'); + $parser->parse($html); + return ($head, $body); +} + 1; diff --git a/lib/WebGUI/HTMLForm.pm b/lib/WebGUI/HTMLForm.pm index f8acb4af3..683f21e83 100644 --- a/lib/WebGUI/HTMLForm.pm +++ b/lib/WebGUI/HTMLForm.pm @@ -3,7 +3,7 @@ package WebGUI::HTMLForm; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -186,7 +186,7 @@ sub fieldSetEnd { my $legend = shift; $self->{_data} .= "\n" ."\n" - ."{_tableExtras}.'" style="width: 100%;">' + ."
            {_tableExtras}.' style="width: 100%;">' ."\n"; } @@ -208,7 +208,7 @@ sub fieldSetStart { my $legend = shift; $self->{_data} .= "
            \n" ."
            \n".$legend."\n" - ."{_tableExtras}.'" style="width: 100%;">' + ."
            {_tableExtras}.' style="width: 100%;">' ."\n"; } diff --git a/lib/WebGUI/Help/Account_Inbox.pm b/lib/WebGUI/Help/Account_Inbox.pm index 99231a5ec..cc1eec31d 100644 --- a/lib/WebGUI/Help/Account_Inbox.pm +++ b/lib/WebGUI/Help/Account_Inbox.pm @@ -27,6 +27,58 @@ our $HELP = { related => [ ], }, + 'view inbox' => { + title => 'view inbox template', + body => '', + isa => [ + { + tag => 'common vars', + namespace => 'Account_Inbox', + }, + { + tag => 'pagination template variables', + namespace => 'WebGUI', + }, + ], + fields => [ ], + variables => [ + { name => 'subject_url', }, + { name => 'status_url', }, + { name => 'from_url', }, + { name => 'dateStamp_url', }, + { name => 'rpp_url', }, + { name => 'has_messages', }, + { name => 'message_total', }, + { name => 'new_message_url', }, + { name => 'canSendMessages', }, + { name => 'message_rpp', }, + { name => 'form_header', + required => 1, }, + { name => 'form_footer', + required => 1, }, + { + name => 'message_loop', + variables => [ + { name => 'message_id', }, + { name => 'message_url', }, + { name => 'subject', }, + { name => 'status', }, + { name => 'status_class', }, + { name => 'isRead', }, + { name => 'isReplied', }, + { name => 'isPending', }, + { name => 'isCompleted', }, + { name => 'from_id', }, + { name => 'from_url', }, + { name => 'from', }, + { name => 'dateStamp', }, + { name => 'dateStamp_formatted', }, + { name => 'inbox_form_delete', }, + ], + }, + ], + related => [ ], + }, }; 1; diff --git a/lib/WebGUI/Help/Asset_GalleryAlbum.pm b/lib/WebGUI/Help/Asset_GalleryAlbum.pm index 77845dc23..b3c854269 100644 --- a/lib/WebGUI/Help/Asset_GalleryAlbum.pm +++ b/lib/WebGUI/Help/Asset_GalleryAlbum.pm @@ -124,6 +124,10 @@ our $HELP = { name => 'gallery_url', description => 'helpvar gallery_url', }, + { + name => 'gallery_displayTitle', + description => 'helpvar gallery_displayTitle', + }, ], }, diff --git a/lib/WebGUI/Help/Asset_MatrixListing.pm b/lib/WebGUI/Help/Asset_MatrixListing.pm index 7c181b970..fe9a4e073 100644 --- a/lib/WebGUI/Help/Asset_MatrixListing.pm +++ b/lib/WebGUI/Help/Asset_MatrixListing.pm @@ -14,6 +14,10 @@ our $HELP = { }, ], variables => [ + { 'name' => 'canEdit' }, + { 'name' => 'editUrl' }, + { 'name' => 'canApprove' }, + { 'name' => 'approveOrDenyUrl' }, { 'name' => 'screenshots' }, { 'name' => 'emailForm' }, { 'name' => 'emailSent' }, diff --git a/lib/WebGUI/Inbox.pm b/lib/WebGUI/Inbox.pm index 42afe686a..4b7d322d0 100644 --- a/lib/WebGUI/Inbox.pm +++ b/lib/WebGUI/Inbox.pm @@ -3,7 +3,7 @@ package WebGUI::Inbox; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/International.pm b/lib/WebGUI/International.pm index 8d3668d33..900fb9160 100644 --- a/lib/WebGUI/International.pm +++ b/lib/WebGUI/International.pm @@ -3,7 +3,7 @@ package WebGUI::International; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -79,50 +79,74 @@ An integer that relates to a message in the international table in the WebGUI da =head3 namespace A string that relates to the namespace field in the international table in the WebGUI database. Defaults to 'WebGUI'. +This parameter is deprecated and will be removed in the future. =head3 language A string that specifies the language that the user should see. Defaults to the user's defined language. If the user hasn't specified a default language it defaults to 'English'. +This parameter is deprecated and will be removed in the future. =cut -my $safeRe = qr/[^\.:\w\d\s\/\^\;\?%><\]\[]/; - sub get { - my ($self, $id, $namespace, $language) = @_; - my $session = $self->session; - $namespace = $namespace || $self->{_namespace} || "WebGUI"; - $language = $language || $self->{_language} || $session->user->profileField("language") || "English"; - $id =~ s/$safeRe//g; - $language =~ s/$safeRe//g; - $namespace =~ s/$safeRe//g; - my $cmd = "WebGUI::i18n::".$language."::".$namespace; + my ($self, $id, $namespace, $language) = @_; + my $table = $self->{_table}; + $namespace = $namespace || $self->{_namespace}; + $language = $language || $self->{_language}; + + # if the requested namespace and language don't match our init params, + # we don't have its table readily available, so we need to load it. + if ( $namespace ne $self->{_namespace} || $language ne $self->{_language} ) { + $table = $self->_loadNamespace($language, $namespace); + my $message = $table->{$id}{message}; + if ($message eq "" && $language ne 'English') { + $table = $self->_loadNamespace('English', $namespace); + return $table->{$id}{message}; + } + return $message; + } + my $message = $table->{$id}{message}; + + # if there is a missing message in a translation, load and cache the + # english table, and get the message from there. + if ($message eq "" && $language ne 'English') { + $self->{_englishTable} ||= $self->_loadNamespace('English', $namespace); + return $self->{_englishTable}{$id}{message}; + } + + return $message; +} + +sub _loadNamespace { + my ($self, $language, $namespace) = @_; + $language =~ s/\W//g; + $namespace =~ s/\W//g; + my $package = "WebGUI::i18n::".$language."::".$namespace; + # with preload, everything should already be in memory, so go directly for the + # variable first my $table = do { no strict 'refs'; - ${"$cmd\::I18N"}; + ${"$package\::I18N"}; }; + + # if it wasn't there it may not be loaded or it may not be available. if (! $table) { - eval { WebGUI::Pluggable::load($cmd); }; + eval { WebGUI::Pluggable::load($package); }; if ($@) { if ($language eq 'English') { - $session->log->error("Unable to load $cmd"); - return ''; + $self->session->log->error("Unable to load $package"); + return {}; } else { - my $output = $self->get($id, $namespace, 'English'); - return $output; + return $self->_loadNamespace('English', $namespace); } } no strict 'refs'; - $table = ${"$cmd\::I18N"}; + $table = ${"$package\::I18N"}; } - my $output = $table->{$id}->{message}; - $output = $self->get($id, $namespace, "English") - if ($output eq "" && $language ne "English"); - return $output; + return $table; } - #------------------------------------------------------------------- =head2 getLanguage ( [ language , propertyName] ) @@ -141,7 +165,7 @@ If this is specified, only the value of the property will be returned, instead o sub getLanguage { my ($self, $language, $property) = @_; - $language = $language || $self->{_language} || "English"; + $language ||= $self->{_language}; my $pack = "WebGUI::i18n::" . $language; WebGUI::Pluggable::load($pack); my $langInfo = do { @@ -231,6 +255,8 @@ The namespace to make the new default. sub setNamespace { my ($self, $namespace) = @_; $self->{_namespace} = $namespace; + $self->{_table} = $self->_loadNamespace($self->{_language}, $namespace); + return $namespace; } #------------------------------------------------------------------- @@ -257,12 +283,15 @@ Specify a default language. Defaults to user preference or "English". sub new { my ($class, $session, $namespace, $language) = @_; + $namespace ||= 'WebGUI'; + $language ||= $session->user->profileField('language'); my $self = bless { _session => $session, _namespace => $namespace, - _language => ($language || $session->user->profileField('language')), + _language => $language, }, $class; + $self->{_table} = $self->_loadNamespace($language, $namespace); return $self; } @@ -275,7 +304,7 @@ Returns the internally stored session variable =cut sub session { - return $_[0]->{_session}; + return $_[0]->{_session}; } 1; diff --git a/lib/WebGUI/Keyword.pm b/lib/WebGUI/Keyword.pm index a80bdaaab..8293f89e5 100644 --- a/lib/WebGUI/Keyword.pm +++ b/lib/WebGUI/Keyword.pm @@ -3,7 +3,7 @@ package WebGUI::Keyword; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/LDAPLink.pm b/lib/WebGUI/LDAPLink.pm index 576c3a1d6..daa358ff1 100644 --- a/lib/WebGUI/LDAPLink.pm +++ b/lib/WebGUI/LDAPLink.pm @@ -3,7 +3,7 @@ package WebGUI::LDAPLink; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Macro.pm b/lib/WebGUI/Macro.pm index 11ad24078..7b5045903 100644 --- a/lib/WebGUI/Macro.pm +++ b/lib/WebGUI/Macro.pm @@ -3,7 +3,7 @@ package WebGUI::Macro; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -161,26 +161,38 @@ sub _processMacro { $parameters =~ s/^\(//; $parameters =~ s/\)$//; - # there are two possible matches and only one will ever match at a time, so we filter out the undef ones - my @params = grep { defined $_ } ($parameters =~ / + my @params; + while ($parameters =~ / (?profileField($field); } -1; \ No newline at end of file +1; diff --git a/lib/WebGUI/Macro/UsersOnline.pm b/lib/WebGUI/Macro/UsersOnline.pm index e3b1d7cfb..a37ac649f 100644 --- a/lib/WebGUI/Macro/UsersOnline.pm +++ b/lib/WebGUI/Macro/UsersOnline.pm @@ -3,7 +3,7 @@ package WebGUI::Macro::UsersOnline; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2004 Plain Black LLC. + WebGUI is Copyright 2001-2009 Plain Black LLC. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Macro/ViewCart.pm b/lib/WebGUI/Macro/ViewCart.pm index 086521a18..a5bde569b 100644 --- a/lib/WebGUI/Macro/ViewCart.pm +++ b/lib/WebGUI/Macro/ViewCart.pm @@ -1,7 +1,7 @@ package WebGUI::Macro::ViewCart; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Macro/Widget.pm b/lib/WebGUI/Macro/Widget.pm index 29d976ced..b744136c3 100644 --- a/lib/WebGUI/Macro/Widget.pm +++ b/lib/WebGUI/Macro/Widget.pm @@ -1,7 +1,7 @@ package WebGUI::Macro::Widget; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -72,6 +72,11 @@ sub process { $wgWidgetPath = $exportUrl . $extras . '/wgwidget.js'; $scratch->delete('exportUrl'); my $viewContent = $asset->view; + if ($styleTemplateId ne '' && $styleTemplateId ne 'none') { + $viewContent = $session->style->process($viewContent,$styleTemplateId); + } + my ($headTags, $bodyContent) = WebGUI::HTML::splitHeadBody($viewContent); + WebGUI::Macro::process($session, \$viewContent); my $containerCss = $extras . '/yui/build/container/assets/container.css'; my $containerJs = $extras . '/yui/build/container/container-min.js'; @@ -95,9 +100,10 @@ sub process { } YAHOO.util.Event.addListener(window, 'load', setupPage); + $headTags - $viewContent + $bodyContent OUTPUT diff --git a/lib/WebGUI/Macro/_macro.skeleton b/lib/WebGUI/Macro/_macro.skeleton index 6784d98a1..3cbbaf09c 100644 --- a/lib/WebGUI/Macro/_macro.skeleton +++ b/lib/WebGUI/Macro/_macro.skeleton @@ -1,7 +1,7 @@ package WebGUI::Macro::MacroSkeleton; # edit this line to match your own macro name #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Macro/a_account.pm b/lib/WebGUI/Macro/a_account.pm index d400ddc89..fa7cb54ee 100644 --- a/lib/WebGUI/Macro/a_account.pm +++ b/lib/WebGUI/Macro/a_account.pm @@ -1,7 +1,7 @@ package WebGUI::Macro::a_account; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Macro/c_companyName.pm b/lib/WebGUI/Macro/c_companyName.pm index 0ce3a7f29..fa1f4b2de 100644 --- a/lib/WebGUI/Macro/c_companyName.pm +++ b/lib/WebGUI/Macro/c_companyName.pm @@ -1,7 +1,7 @@ package WebGUI::Macro::c_companyName; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Macro/e_companyEmail.pm b/lib/WebGUI/Macro/e_companyEmail.pm index 068c436a0..5fef749b5 100644 --- a/lib/WebGUI/Macro/e_companyEmail.pm +++ b/lib/WebGUI/Macro/e_companyEmail.pm @@ -1,7 +1,7 @@ package WebGUI::Macro::e_companyEmail; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Macro/r_printable.pm b/lib/WebGUI/Macro/r_printable.pm index 76ecceb21..ce2c3dfd5 100644 --- a/lib/WebGUI/Macro/r_printable.pm +++ b/lib/WebGUI/Macro/r_printable.pm @@ -1,7 +1,7 @@ package WebGUI::Macro::r_printable; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Macro/u_companyUrl.pm b/lib/WebGUI/Macro/u_companyUrl.pm index 4cd0b0ada..66a8ce538 100644 --- a/lib/WebGUI/Macro/u_companyUrl.pm +++ b/lib/WebGUI/Macro/u_companyUrl.pm @@ -1,7 +1,7 @@ package WebGUI::Macro::u_companyUrl; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Mail/Get.pm b/lib/WebGUI/Mail/Get.pm index 47cf50f5a..219c54e05 100644 --- a/lib/WebGUI/Mail/Get.pm +++ b/lib/WebGUI/Mail/Get.pm @@ -3,7 +3,7 @@ package WebGUI::Mail::Get; =head1 LEGAL ------------------------------------------------------------------- -WebGUI is Copyright 2001-2008 Plain Black Corporation. +WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Mail/Send.pm b/lib/WebGUI/Mail/Send.pm index e7ad886ea..127448d75 100644 --- a/lib/WebGUI/Mail/Send.pm +++ b/lib/WebGUI/Mail/Send.pm @@ -3,7 +3,7 @@ package WebGUI::Mail::Send; =head1 LEGAL ------------------------------------------------------------------- -WebGUI is Copyright 2001-2008 Plain Black Corporation. +WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -302,12 +302,12 @@ sub create { } my $message = MIME::Entity->build( Type=>$type, - From=>$from, - To=>$headers->{to}, - Cc=>$headers->{cc}, - Bcc=>$headers->{bcc}, - "Reply-To"=>$replyTo, - "In-Reply-To"=>$headers->{inReplyTo}, + From=> encode('MIME-Q', $from), + To=> encode('MIME-Q', $headers->{to}), + Cc=> encode('MIME-Q', $headers->{cc}), + Bcc=> encode('MIME-Q', $headers->{bcc}), + "Reply-To"=> encode('MIME-Q', $replyTo), + "In-Reply-To"=> encode('MIME-Q', $headers->{inReplyTo}), Subject=> encode('MIME-Q', $headers->{subject}), "Message-Id"=>$id, Date=>$session->datetime->epochToMail, diff --git a/lib/WebGUI/Operation.pm b/lib/WebGUI/Operation.pm index b5035c46c..864279ec6 100644 --- a/lib/WebGUI/Operation.pm +++ b/lib/WebGUI/Operation.pm @@ -1,7 +1,7 @@ package WebGUI::Operation; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/ActiveSessions.pm b/lib/WebGUI/Operation/ActiveSessions.pm index 0460ba4a5..dbe351855 100644 --- a/lib/WebGUI/Operation/ActiveSessions.pm +++ b/lib/WebGUI/Operation/ActiveSessions.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::ActiveSessions; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/AdSpace.pm b/lib/WebGUI/Operation/AdSpace.pm index 2b25efe92..28599aa4c 100644 --- a/lib/WebGUI/Operation/AdSpace.pm +++ b/lib/WebGUI/Operation/AdSpace.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::AdSpace; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Admin.pm b/lib/WebGUI/Operation/Admin.pm index cf109b29c..2fee67391 100644 --- a/lib/WebGUI/Operation/Admin.pm +++ b/lib/WebGUI/Operation/Admin.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Admin; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Auth.pm b/lib/WebGUI/Operation/Auth.pm index 63a2a43f8..646078340 100644 --- a/lib/WebGUI/Operation/Auth.pm +++ b/lib/WebGUI/Operation/Auth.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Auth; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Cache.pm b/lib/WebGUI/Operation/Cache.pm index 96e2c270b..042a83993 100644 --- a/lib/WebGUI/Operation/Cache.pm +++ b/lib/WebGUI/Operation/Cache.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Cache; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Cron.pm b/lib/WebGUI/Operation/Cron.pm index 05d848f7c..7dff1314b 100644 --- a/lib/WebGUI/Operation/Cron.pm +++ b/lib/WebGUI/Operation/Cron.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Cron; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/DatabaseLink.pm b/lib/WebGUI/Operation/DatabaseLink.pm index 99ad326c5..6ecb25318 100644 --- a/lib/WebGUI/Operation/DatabaseLink.pm +++ b/lib/WebGUI/Operation/DatabaseLink.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::DatabaseLink; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/FormHelpers.pm b/lib/WebGUI/Operation/FormHelpers.pm index 2460845a8..ee039ce67 100644 --- a/lib/WebGUI/Operation/FormHelpers.pm +++ b/lib/WebGUI/Operation/FormHelpers.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::FormHelpers; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Friends.pm b/lib/WebGUI/Operation/Friends.pm index f7da81311..2d2642b2f 100644 --- a/lib/WebGUI/Operation/Friends.pm +++ b/lib/WebGUI/Operation/Friends.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Friends; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Group.pm b/lib/WebGUI/Operation/Group.pm index 5e57310ef..f86a79c67 100644 --- a/lib/WebGUI/Operation/Group.pm +++ b/lib/WebGUI/Operation/Group.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Group; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Help.pm b/lib/WebGUI/Operation/Help.pm index 8b5cb9265..cb17b89c0 100644 --- a/lib/WebGUI/Operation/Help.pm +++ b/lib/WebGUI/Operation/Help.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Help; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Inbox.pm b/lib/WebGUI/Operation/Inbox.pm index b33855295..e7de5e870 100644 --- a/lib/WebGUI/Operation/Inbox.pm +++ b/lib/WebGUI/Operation/Inbox.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Inbox; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -154,4 +154,4 @@ sub www_viewInboxMessage { return $instance->displayContent($instance->callMethod("viewMessage")); } -1; \ No newline at end of file +1; diff --git a/lib/WebGUI/Operation/Invite.pm b/lib/WebGUI/Operation/Invite.pm index ea7cf82f6..a58ea2763 100644 --- a/lib/WebGUI/Operation/Invite.pm +++ b/lib/WebGUI/Operation/Invite.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Invite; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/LDAPLink.pm b/lib/WebGUI/Operation/LDAPLink.pm index da7a6cc35..d303a06d5 100644 --- a/lib/WebGUI/Operation/LDAPLink.pm +++ b/lib/WebGUI/Operation/LDAPLink.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::LDAPLink; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/LoginHistory.pm b/lib/WebGUI/Operation/LoginHistory.pm index b73e96801..2d101cbfe 100644 --- a/lib/WebGUI/Operation/LoginHistory.pm +++ b/lib/WebGUI/Operation/LoginHistory.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::LoginHistory; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Profile.pm b/lib/WebGUI/Operation/Profile.pm index 93f6949ec..100154ded 100644 --- a/lib/WebGUI/Operation/Profile.pm +++ b/lib/WebGUI/Operation/Profile.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Profile; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/ProfileSettings.pm b/lib/WebGUI/Operation/ProfileSettings.pm index 6fc856ce7..5b910b429 100644 --- a/lib/WebGUI/Operation/ProfileSettings.pm +++ b/lib/WebGUI/Operation/ProfileSettings.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::ProfileSettings; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Replacements.pm b/lib/WebGUI/Operation/Replacements.pm index 47681682b..4c8b17dfd 100644 --- a/lib/WebGUI/Operation/Replacements.pm +++ b/lib/WebGUI/Operation/Replacements.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Replacements; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/SSO.pm b/lib/WebGUI/Operation/SSO.pm index a19ed5810..9075b3db0 100644 --- a/lib/WebGUI/Operation/SSO.pm +++ b/lib/WebGUI/Operation/SSO.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::SSO; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Scratch.pm b/lib/WebGUI/Operation/Scratch.pm index 0cc630d65..b1e260c8c 100644 --- a/lib/WebGUI/Operation/Scratch.pm +++ b/lib/WebGUI/Operation/Scratch.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Scratch; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Settings.pm b/lib/WebGUI/Operation/Settings.pm index 5996b3fa8..b1714659a 100644 --- a/lib/WebGUI/Operation/Settings.pm +++ b/lib/WebGUI/Operation/Settings.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Settings; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -240,6 +240,28 @@ sub definition { namespace=>"AdminConsole", defaultValue=>$setting->get("AdminConsoleTemplate") }); + push(@fields, { + tab => "ui", + fieldType => "yesNo", + name => "useRecaptcha", + label => $i18n->get('use recaptcha'), + hoverHelp => $i18n->get('use recaptcha description'), + defaultValue => $setting->get('useRecaptcha'), + }); + push(@fields, { + tab => "ui", + fieldType => "text", + name => "recaptchaPublicKey", + label => $i18n->get('recaptcha public key'), + defaultValue => $setting->get('recaptchaPublicKey'), + }); + push(@fields, { + tab => "ui", + fieldType => "text", + name => "recaptchaPrivateKey", + label => $i18n->get('recaptcha private key'), + defaultValue => $setting->get('recaptchaPrivateKey'), + }); # messaging settings push(@fields, { tab=>"messaging", diff --git a/lib/WebGUI/Operation/Shared.pm b/lib/WebGUI/Operation/Shared.pm index 377b0497f..ae1024503 100644 --- a/lib/WebGUI/Operation/Shared.pm +++ b/lib/WebGUI/Operation/Shared.pm @@ -2,7 +2,7 @@ package WebGUI::Operation::Shared; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Spectre.pm b/lib/WebGUI/Operation/Spectre.pm index 62a426ff4..fe6253eb2 100644 --- a/lib/WebGUI/Operation/Spectre.pm +++ b/lib/WebGUI/Operation/Spectre.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Spectre; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -97,7 +97,7 @@ sub www_spectreGetSiteData { } $siteData{cron} = \@schedules; } - return JSON::encode_json(\%siteData); + return JSON::to_json(\%siteData); } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Operation/SpellCheck.pm b/lib/WebGUI/Operation/SpellCheck.pm index b5a0698d1..5ed94ac35 100644 --- a/lib/WebGUI/Operation/SpellCheck.pm +++ b/lib/WebGUI/Operation/SpellCheck.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::SpellCheck; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -200,7 +200,7 @@ sub www_spellCheck { # work around TinyMCE JSON encoding bug $data =~ s/([^\\](?:\\\\)*)\\'/$1'/g; - my $params = JSON->new->utf8->decode($data); + my $params = JSON->new->decode($data); my $result; # dispatch to different subs based on the 'method' in the JSON data diff --git a/lib/WebGUI/Operation/Statistics.pm b/lib/WebGUI/Operation/Statistics.pm index 7b6f5329b..0274f15fa 100644 --- a/lib/WebGUI/Operation/Statistics.pm +++ b/lib/WebGUI/Operation/Statistics.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Statistics; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Style.pm b/lib/WebGUI/Operation/Style.pm index e05738968..922291f90 100644 --- a/lib/WebGUI/Operation/Style.pm +++ b/lib/WebGUI/Operation/Style.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Style; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/User.pm b/lib/WebGUI/Operation/User.pm index 6ad58a36d..083118a18 100644 --- a/lib/WebGUI/Operation/User.pm +++ b/lib/WebGUI/Operation/User.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::User; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/VersionTag.pm b/lib/WebGUI/Operation/VersionTag.pm index cad2bd6a5..5bdf71d1d 100644 --- a/lib/WebGUI/Operation/VersionTag.pm +++ b/lib/WebGUI/Operation/VersionTag.pm @@ -3,7 +3,7 @@ package WebGUI::Operation::VersionTag; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/WebGUI.pm b/lib/WebGUI/Operation/WebGUI.pm index e4990ef65..0ad42af05 100644 --- a/lib/WebGUI/Operation/WebGUI.pm +++ b/lib/WebGUI/Operation/WebGUI.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::WebGUI; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Operation/Workflow.pm b/lib/WebGUI/Operation/Workflow.pm index 5db0055f4..9669882c1 100644 --- a/lib/WebGUI/Operation/Workflow.pm +++ b/lib/WebGUI/Operation/Workflow.pm @@ -1,7 +1,7 @@ package WebGUI::Operation::Workflow; #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Paginator.pm b/lib/WebGUI/Paginator.pm index dc58a2904..8305552e2 100644 --- a/lib/WebGUI/Paginator.pm +++ b/lib/WebGUI/Paginator.pm @@ -3,7 +3,7 @@ package WebGUI::Paginator; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -504,6 +504,10 @@ sub getPageLinks { my $start = ($minPage > 0) ? $minPage : 1; my $maxPage = $start + $limit - 1; my $end = ($maxPage < $self->getPageNumber) ? $self->getPageNumber : $maxPage; + if ($maxPage > $self->getNumberOfPages) { + $end = $self->getNumberOfPages; + $start = $self->getNumberOfPages - $limit + 1; + } my @temp; foreach my $page (@pages) { if ($i <= $end && $i >= $start) { @@ -754,5 +758,24 @@ sub setAlphabeticalKey { return 1; } +#------------------------------------------------------------------- + +=head2 setPageNumber ( pageNumber ) + +Sets the page number. This is really a convenience method for testing. +Returns the page number that was set. + +=head3 pageNumber + +Sets the pageNumber. Setting the pageNumber outside of the set of +pages would cause the Paginator to behave poorly. + +=cut + +sub setPageNumber { + my $self = shift; + $self->{_pn} = shift; +} + 1; diff --git a/lib/WebGUI/PassiveProfiling.pm b/lib/WebGUI/PassiveProfiling.pm index 39817b88d..01c46fa01 100644 --- a/lib/WebGUI/PassiveProfiling.pm +++ b/lib/WebGUI/PassiveProfiling.pm @@ -3,7 +3,7 @@ package WebGUI::PassiveProfiling; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Pluggable.pm b/lib/WebGUI/Pluggable.pm index 598c60961..9b82fd856 100644 --- a/lib/WebGUI/Pluggable.pm +++ b/lib/WebGUI/Pluggable.pm @@ -3,7 +3,7 @@ package WebGUI::Pluggable; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/ProfileCategory.pm b/lib/WebGUI/ProfileCategory.pm index a9d570d56..6b3d7d478 100644 --- a/lib/WebGUI/ProfileCategory.pm +++ b/lib/WebGUI/ProfileCategory.pm @@ -4,7 +4,7 @@ package WebGUI::ProfileCategory; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -420,7 +420,8 @@ sub session { =head2 set ( properties ) -Update the profile field properties. +Update the profile field properties. Any property that is missing, or empty will be +replaced with a default. =head3 properties diff --git a/lib/WebGUI/ProfileField.pm b/lib/WebGUI/ProfileField.pm index b62869a41..cc1f14ed5 100644 --- a/lib/WebGUI/ProfileField.pm +++ b/lib/WebGUI/ProfileField.pm @@ -4,7 +4,7 @@ package WebGUI::ProfileField; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/SQL.pm b/lib/WebGUI/SQL.pm index 5a8582784..372c1b31b 100644 --- a/lib/WebGUI/SQL.pm +++ b/lib/WebGUI/SQL.pm @@ -3,7 +3,7 @@ package WebGUI::SQL; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -220,12 +220,13 @@ sub buildHashRef { =head2 buildArrayRefOfHashRefs ( sql ) -Builds an array reference of hash references of data -from a series of rows. Useful for returning many rows at once. +Builds an array reference of hash references of data from a series of rows. +Useful for returning many rows at once. Each element of the returned array +reference is a hash of column names to column values. =head3 sql -An SQL query. The query must select at least two columns of data, the first being the key for the hash, the second being the value. If the query selects more than two columns, then the last column will be the value and the remaining columns will be joined together by a colon ":" to form a complex key. If the query selects only one column, then the key and the value will be the same. +An SQL query. =head3 params diff --git a/lib/WebGUI/SQL/ResultSet.pm b/lib/WebGUI/SQL/ResultSet.pm index 86480a538..ad0d25c46 100644 --- a/lib/WebGUI/SQL/ResultSet.pm +++ b/lib/WebGUI/SQL/ResultSet.pm @@ -3,7 +3,7 @@ package WebGUI::SQL::ResultSet; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Search.pm b/lib/WebGUI/Search.pm index 4af97b3f2..cb442fa1f 100644 --- a/lib/WebGUI/Search.pm +++ b/lib/WebGUI/Search.pm @@ -3,7 +3,7 @@ package WebGUI::Search; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Search/Index.pm b/lib/WebGUI/Search/Index.pm index 4a20faea0..7cefb1990 100644 --- a/lib/WebGUI/Search/Index.pm +++ b/lib/WebGUI/Search/Index.pm @@ -3,7 +3,7 @@ package WebGUI::Search::Index; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session.pm b/lib/WebGUI/Session.pm index 9058bf7b5..0f97dd3e7 100644 --- a/lib/WebGUI/Session.pm +++ b/lib/WebGUI/Session.pm @@ -3,7 +3,7 @@ package WebGUI::Session; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/DateTime.pm b/lib/WebGUI/Session/DateTime.pm index 6fbb2f6f8..17d6d8f78 100644 --- a/lib/WebGUI/Session/DateTime.pm +++ b/lib/WebGUI/Session/DateTime.pm @@ -3,7 +3,7 @@ package WebGUI::Session::DateTime; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Env.pm b/lib/WebGUI/Session/Env.pm index 5d5f83afb..908da6ea9 100644 --- a/lib/WebGUI/Session/Env.pm +++ b/lib/WebGUI/Session/Env.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Env; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -30,6 +30,8 @@ $env = WebGUI::Session::Env->new; $value = $env->get('REMOTE_ADDR'); +return 'not gonna see it' if $env->requestNotViewed() ; + =head1 METHODS These methods are available from this package: @@ -37,6 +39,66 @@ These methods are available from this package: =cut +#------------------------------------------------------------------- + +=head2 callerIsSearchSite ( ) + +returns true if the remote address matches a site which is a known indexer or spider. + +=cut + +sub callerIsSearchSite { + + my $self = shift; + my $remoteAddress = $self->getIp; + + return 1 if $remoteAddress =~ /203\.87\.123\.1../ # Blaiz Enterprise Rawgrunt search + || $remoteAddress =~ /123\.113\.184\.2../ # Unknown Yahoo Robot + || $remoteAddress == ''; + + return 0; + +} + + +#------------------------------------------------------------------- + +=head2 clientIsSpider ( ) + +returns true is the client/agent is a spider/indexer or some other non-human interface + +=cut + + +sub clientIsSpider { + + my $self = shift; + my $userAgent = $self->get('HTTP_USER_AGENT'); + + return 1 if $userAgent eq '' + || $userAgent =~ m<(^wre\/| # the WRE wget's http://localhost/ every 2-3 minutes 24 hours a day... + ^morpheus| + libwww| + s[pb]ider| + bot| + robo| + sco[ou]t| + crawl| + miner| + reaper| + finder| + search| + engine| + download| + fetch| + scan| + slurp)>ix; + + return 0; + +} + + #------------------------------------------------------------------- =head2 DESTROY ( ) @@ -100,5 +162,22 @@ sub new { bless {_env=>\%ENV}, $class; } +#------------------------------------------------------------------- + +=head2 requestNotViewed ( ) + +returns true is the client/agent is a spider/indexer or some other non-human interface + +=cut + +sub requestNotViewed { + + my $self = shift; + return $self->clientIsSpider() + || $self->callerIsSearchSite(); + +} + 1; + diff --git a/lib/WebGUI/Session/ErrorHandler.pm b/lib/WebGUI/Session/ErrorHandler.pm index c438feb59..f60a6bfb5 100644 --- a/lib/WebGUI/Session/ErrorHandler.pm +++ b/lib/WebGUI/Session/ErrorHandler.pm @@ -3,7 +3,7 @@ package WebGUI::Session::ErrorHandler; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -17,7 +17,7 @@ package WebGUI::Session::ErrorHandler; use strict; use Log::Log4perl; -use Apache2::RequestUtil; +#use Apache2::RequestUtil; use JSON; use HTML::Entities qw(encode_entities); @@ -105,15 +105,28 @@ sub canShowBasedOnIP { =head2 canShowDebug ( ) Returns true if the user meets the condition to see debugging information and debug mode is enabled. +This method caches its value, so long processes may need to manually clear the cached in $self->{_canShowDebug}. =cut sub canShowDebug { - my $self = shift; - return 0 unless ($self->session->hasSettings); - return 0 unless ($self->session->setting->get("showDebug")); - return 0 unless (substr($self->session->http->getMimeType(),0,9) eq "text/html"); - return $self->canShowBasedOnIP('debugIp'); + my $self = shift; + + # if we have a cached false value, we can use it + # true values need additional checks + if (exists $self->{_canShowDebug} && !$self->{_canShowDebug}) { + return 0; + } + + ##This check prevents in infinite loop during startup. + return 0 unless ($self->session->hasSettings); + + my $canShow = $self->session->setting->get("showDebug") + && $self->canShowBasedOnIP('debugIp'); + $self->{_canShowDebug} = $canShow; + + return $canShow + && substr($self->session->http->getMimeType(),0,9) eq "text/html"; } #------------------------------------------------------------------- @@ -207,7 +220,8 @@ sub fatal { local $Log::Log4perl::caller_depth = $Log::Log4perl::caller_depth + 1; $self->session->http->setStatus("500","Server Error"); - Apache2::RequestUtil->request->content_type('text/html') if ($self->session->request); + #Apache2::RequestUtil->request->content_type('text/html') if ($self->session->request); + $self->session->request->content_type('text/html') if ($self->session->request); $self->getLogger->fatal($message); $self->getLogger->debug("Stack trace for FATAL ".$message."\n".$self->getStackTrace()); $self->session->http->sendHeader if ($self->session->request); diff --git a/lib/WebGUI/Session/Form.pm b/lib/WebGUI/Session/Form.pm index f0625111e..db3b865a3 100644 --- a/lib/WebGUI/Session/Form.pm +++ b/lib/WebGUI/Session/Form.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Form; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Http.pm b/lib/WebGUI/Session/Http.pm index 7db8e8834..cc0ab58ac 100644 --- a/lib/WebGUI/Session/Http.pm +++ b/lib/WebGUI/Session/Http.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Http; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Icon.pm b/lib/WebGUI/Session/Icon.pm index 033ab6baa..ba4fe5ca4 100644 --- a/lib/WebGUI/Session/Icon.pm +++ b/lib/WebGUI/Session/Icon.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Icon; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Id.pm b/lib/WebGUI/Session/Id.pm index 1265f9ddf..4e1ed7634 100644 --- a/lib/WebGUI/Session/Id.pm +++ b/lib/WebGUI/Session/Id.pm @@ -4,7 +4,7 @@ package WebGUI::Session::Id; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Os.pm b/lib/WebGUI/Session/Os.pm index 9358fd9a6..0ef85f30a 100644 --- a/lib/WebGUI/Session/Os.pm +++ b/lib/WebGUI/Session/Os.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Os; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Output.pm b/lib/WebGUI/Session/Output.pm index 3f6e7dfde..3ad462f8d 100644 --- a/lib/WebGUI/Session/Output.pm +++ b/lib/WebGUI/Session/Output.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Output; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Privilege.pm b/lib/WebGUI/Session/Privilege.pm index c86034e0c..c6b0b7161 100644 --- a/lib/WebGUI/Session/Privilege.pm +++ b/lib/WebGUI/Session/Privilege.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Privilege; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Scratch.pm b/lib/WebGUI/Session/Scratch.pm index 6b2dbfc4f..fb6add7d3 100644 --- a/lib/WebGUI/Session/Scratch.pm +++ b/lib/WebGUI/Session/Scratch.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Scratch; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Setting.pm b/lib/WebGUI/Session/Setting.pm index 44eda10b7..ffb6054c6 100644 --- a/lib/WebGUI/Session/Setting.pm +++ b/lib/WebGUI/Session/Setting.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Setting; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Stow.pm b/lib/WebGUI/Session/Stow.pm index f33fe89c7..5345b07cf 100644 --- a/lib/WebGUI/Session/Stow.pm +++ b/lib/WebGUI/Session/Stow.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Stow; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Style.pm b/lib/WebGUI/Session/Style.pm index b2a6cf021..50eab9f23 100644 --- a/lib/WebGUI/Session/Style.pm +++ b/lib/WebGUI/Session/Style.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Style; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Url.pm b/lib/WebGUI/Session/Url.pm index 483bf8422..054eaf46e 100644 --- a/lib/WebGUI/Session/Url.pm +++ b/lib/WebGUI/Session/Url.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Url; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Session/Var.pm b/lib/WebGUI/Session/Var.pm index 69d3d90e7..3688cce3b 100644 --- a/lib/WebGUI/Session/Var.pm +++ b/lib/WebGUI/Session/Var.pm @@ -3,7 +3,7 @@ package WebGUI::Session::Var; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Shop/AddressBook.pm b/lib/WebGUI/Shop/AddressBook.pm index 6fda07211..c2e7dcfe0 100644 --- a/lib/WebGUI/Shop/AddressBook.pm +++ b/lib/WebGUI/Shop/AddressBook.pm @@ -502,14 +502,18 @@ sub www_view { my $form = $session->form; my $callback = $form->get('callback'); $callback =~ s/'/"/g; - $callback = JSON->new->utf8->decode($callback); + $callback = JSON->new->decode($callback); my $callbackForm = ''; foreach my $param (@{$callback->{params}}) { $callbackForm .= WebGUI::Form::hidden($session, {name=>$param->{name}, value=>$param->{value}}); } my $i18n = WebGUI::International->new($session, "Shop"); my @addresses = (); - foreach my $address (@{$self->getAddresses}) { + my @availableAddresses = @{ $self->getAddresses }; + if (! @availableAddresses ) { + return $self->www_editAddress; + } + foreach my $address (@availableAddresses) { push(@addresses, { %{$address->get}, address => $address->getHtmlFormatted, diff --git a/lib/WebGUI/Shop/CartItem.pm b/lib/WebGUI/Shop/CartItem.pm index 7ac28b9e1..c1c8c0e31 100644 --- a/lib/WebGUI/Shop/CartItem.pm +++ b/lib/WebGUI/Shop/CartItem.pm @@ -126,7 +126,7 @@ sub get { return {}; } else { - return JSON->new->utf8->decode($properties{id $self}{$name}); + return JSON->new->decode($properties{id $self}{$name}); } } return $properties{id $self}{$name}; @@ -306,7 +306,7 @@ sub update { $properties{$id}{$field} = (exists $newProperties->{$field}) ? $newProperties->{$field} : $properties{$id}{$field}; } if (exists $newProperties->{options} && ref($newProperties->{options}) eq "HASH") { - $properties{$id}{options} = JSON->new->utf8->encode($newProperties->{options}); + $properties{$id}{options} = JSON->new->encode($newProperties->{options}); } $self->cart->session->db->setRow("cartItem","itemId",$properties{$id}); } diff --git a/lib/WebGUI/Shop/Pay.pm b/lib/WebGUI/Shop/Pay.pm index a190bf2d9..0705b3cea 100644 --- a/lib/WebGUI/Shop/Pay.pm +++ b/lib/WebGUI/Shop/Pay.pm @@ -233,7 +233,7 @@ sub www_addPaymentGateway { my $className = $session->form->process('className') || WebGUI::Error::InvalidParam->throw(error => 'No class name passed'); - my $payDriver = $self->addPaymentGateway( $className, $className->getName( $session ), { enabled => 0 } ); + my $payDriver = $self->addPaymentGateway( $className, { enabled => 0, label => $className->getName($session), } ); return $payDriver->www_edit; } diff --git a/lib/WebGUI/Shop/PayDriver/ITransact.pm b/lib/WebGUI/Shop/PayDriver/ITransact.pm index 14e607883..6d3805183 100644 --- a/lib/WebGUI/Shop/PayDriver/ITransact.pm +++ b/lib/WebGUI/Shop/PayDriver/ITransact.pm @@ -663,12 +663,10 @@ sub www_getCredentials { $addressData = $self->getCart->getShippingAddress->get; } - my $output; my $var = {}; # Process form errors $var->{errors} = []; - #### TODO: i18n if ($errors) { $var->{error_message} = $i18n->get('error occurred message'); foreach my $error (@{ $errors} ) { @@ -743,8 +741,16 @@ sub www_getCredentials { }); my $template = WebGUI::Asset::Template->new($session, $self->get("credentialsTemplateId")); - $template->prepare; - return $session->style->userStyle($template->process($var)); + my $output; + if (defined $template) { + $template->prepare; + $output = $template->process($var); + } + else { + $output = $i18n->get('template gone'); + } + + return $session->style->userStyle($output); } #------------------------------------------------------------------- @@ -791,9 +797,6 @@ sub www_processRecurringTransactionPostback { # Fetch the original transaction my $baseTransaction = eval{WebGUI::Shop::Transaction->newByGatewayId( $session, $originatingXid, $self->getId )}; - #make sure the same user is used in this transaction as the last {mostly needed for reoccurring transactions - $self->session->user({userId=>$baseTransaction->get('userId')}); - #---- Check the validity of the request ------- # First check whether the original transaction actualy exists if (WebGUI::Error->caught || !(defined $baseTransaction) ) { @@ -818,6 +821,9 @@ sub www_processRecurringTransactionPostback { # return 'Check recurring postback: transaction check failed.'; # } #---- Passed all test, continue --------------- + + #make sure the same user is used in this transaction as the last {mostly needed for reoccurring transactions + $self->session->user({userId=>$baseTransaction->get('userId')}); # Create a new transaction for this term my $transaction = $baseTransaction->duplicate( { diff --git a/lib/WebGUI/Shop/Transaction.pm b/lib/WebGUI/Shop/Transaction.pm index 156397c73..8fb618a6a 100644 --- a/lib/WebGUI/Shop/Transaction.pm +++ b/lib/WebGUI/Shop/Transaction.pm @@ -711,7 +711,7 @@ sub www_getTransactionsAsJson { $results{'sort'} = undef; $results{'dir'} = "desc"; $session->http->setMimeType('application/json'); - return JSON->new->utf8->encode(\%results); + return JSON->new->encode(\%results); } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Shop/TransactionItem.pm b/lib/WebGUI/Shop/TransactionItem.pm index dc8ddcc52..bef811aef 100644 --- a/lib/WebGUI/Shop/TransactionItem.pm +++ b/lib/WebGUI/Shop/TransactionItem.pm @@ -98,7 +98,7 @@ sub get { return {}; } else { - return JSON->new->utf8->decode($properties{id $self}{$name}); + return JSON->new->decode($properties{id $self}{$name}); } } return $properties{id $self}{$name}; @@ -294,7 +294,7 @@ sub update { $properties{$id}{$field} = (exists $newProperties->{$field}) ? $newProperties->{$field} : $properties{$id}{$field}; } if (exists $newProperties->{options} && ref($newProperties->{options}) eq "HASH") { - $properties{$id}{options} = JSON->new->utf8->encode($newProperties->{options}); + $properties{$id}{options} = JSON->new->encode($newProperties->{options}); } $properties{$id}{lastUpdated} = WebGUI::DateTime->new($self->transaction->session,time())->toDatabase; $self->transaction->session->db->setRow("transactionItem","itemId",$properties{$id}); diff --git a/lib/WebGUI/Storage.pm b/lib/WebGUI/Storage.pm index 59dcbab2e..6432e33ac 100644 --- a/lib/WebGUI/Storage.pm +++ b/lib/WebGUI/Storage.pm @@ -3,7 +3,7 @@ package WebGUI::Storage; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Storage/Image.pm b/lib/WebGUI/Storage/Image.pm index c408103b7..e84526d5a 100644 --- a/lib/WebGUI/Storage/Image.pm +++ b/lib/WebGUI/Storage/Image.pm @@ -3,7 +3,7 @@ package WebGUI::Storage::Image; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/TabForm.pm b/lib/WebGUI/TabForm.pm index 0021c63bd..daa1676f3 100644 --- a/lib/WebGUI/TabForm.pm +++ b/lib/WebGUI/TabForm.pm @@ -3,7 +3,7 @@ package WebGUI::TabForm; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Text.pm b/lib/WebGUI/Text.pm index 8fbefdb14..b452b3b55 100644 --- a/lib/WebGUI/Text.pm +++ b/lib/WebGUI/Text.pm @@ -3,7 +3,7 @@ package WebGUI::Text; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/URL/Content.pm b/lib/WebGUI/URL/Content.pm index 1a188ba26..3c3ef874a 100644 --- a/lib/WebGUI/URL/Content.pm +++ b/lib/WebGUI/URL/Content.pm @@ -3,7 +3,7 @@ package WebGUI::URL::Content; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/URL/Credits.pm b/lib/WebGUI/URL/Credits.pm index 79b93647c..735e31e3a 100644 --- a/lib/WebGUI/URL/Credits.pm +++ b/lib/WebGUI/URL/Credits.pm @@ -3,7 +3,7 @@ package WebGUI::URL::Credits; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/URL/PassThru.pm b/lib/WebGUI/URL/PassThru.pm index 58e8643b0..d07a268ec 100644 --- a/lib/WebGUI/URL/PassThru.pm +++ b/lib/WebGUI/URL/PassThru.pm @@ -3,7 +3,7 @@ package WebGUI::URL::PassThru; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/URL/Snoop.pm b/lib/WebGUI/URL/Snoop.pm index e339b25c3..58ee708fe 100644 --- a/lib/WebGUI/URL/Snoop.pm +++ b/lib/WebGUI/URL/Snoop.pm @@ -3,7 +3,7 @@ package WebGUI::URL::Snoop; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/URL/Unauthorized.pm b/lib/WebGUI/URL/Unauthorized.pm index 2610eb00d..6665c1cfd 100644 --- a/lib/WebGUI/URL/Unauthorized.pm +++ b/lib/WebGUI/URL/Unauthorized.pm @@ -3,7 +3,7 @@ package WebGUI::URL::Unauthorized; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/URL/Uploads.pm b/lib/WebGUI/URL/Uploads.pm index 2c9e41112..36ca8470a 100644 --- a/lib/WebGUI/URL/Uploads.pm +++ b/lib/WebGUI/URL/Uploads.pm @@ -3,7 +3,7 @@ package WebGUI::URL::Uploads; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/URL/_url.skeleton b/lib/WebGUI/URL/_url.skeleton index 4cd54cdb7..4faceab04 100644 --- a/lib/WebGUI/URL/_url.skeleton +++ b/lib/WebGUI/URL/_url.skeleton @@ -3,7 +3,7 @@ package WebGUI::URL::MyHandler; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/User.pm b/lib/WebGUI/User.pm index 6181c5d0c..7fb6606db 100644 --- a/lib/WebGUI/User.pm +++ b/lib/WebGUI/User.pm @@ -3,7 +3,7 @@ package WebGUI::User; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -120,6 +120,7 @@ sub acceptsPrivateMessages { my $userId = shift; return 0 if ($self->isVisitor); #Visitor can't get private messages + return 0 if ($userId eq "1"); # Visitor can't send private messages return 0 if ($self->userId eq $userId); #Can't send private messages to yourself my $pmSetting = $self->profileField('allowPrivateMessages'); @@ -636,7 +637,7 @@ The group that you wish to verify against the user. Defaults to group with Id 3 sub isInGroup { my (@data, $groupId); my ($self, $gid, $secondRun) = @_; - $gid = 3 unless (defined $gid); + $gid = 3 unless $gid; my $uid = $self->userId; ### The following several checks are to increase performance. If this section were removed, everything would continue to work as normal. #my $eh = $self->session->errorHandler; @@ -650,8 +651,9 @@ sub isInGroup { return $isInGroup->{$uid}{$gid} if exists $isInGroup->{$uid}{$gid}; ### Lookup the actual groupings. my $group = WebGUI::Group->new($self->session,$gid); - # Cope with non-existant groups. Default to the admin group if the groupId is invalid. - $group = WebGUI::Group->new($self->session, 3) unless $group; + if ( !$group ) { + $group = WebGUI::Group->new($self->session,3); + } ### Check for groups of groups. my $users = $group->getAllUsers(); foreach my $user (@{$users}) { diff --git a/lib/WebGUI/Utility.pm b/lib/WebGUI/Utility.pm index dd0207599..b1f4cb8bc 100644 --- a/lib/WebGUI/Utility.pm +++ b/lib/WebGUI/Utility.pm @@ -4,7 +4,7 @@ package WebGUI::Utility; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/VersionTag.pm b/lib/WebGUI/VersionTag.pm index 05c5a7224..59612a4e9 100644 --- a/lib/WebGUI/VersionTag.pm +++ b/lib/WebGUI/VersionTag.pm @@ -3,7 +3,7 @@ package WebGUI::VersionTag; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow.pm b/lib/WebGUI/Workflow.pm index f94c9a411..36003eab2 100644 --- a/lib/WebGUI/Workflow.pm +++ b/lib/WebGUI/Workflow.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity.pm b/lib/WebGUI/Workflow/Activity.pm index 595af08c3..23bfb6ee6 100644 --- a/lib/WebGUI/Workflow/Activity.pm +++ b/lib/WebGUI/Workflow/Activity.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/AddUserToGroup.pm b/lib/WebGUI/Workflow/Activity/AddUserToGroup.pm index 12dadff12..55e5864d9 100644 --- a/lib/WebGUI/Workflow/Activity/AddUserToGroup.pm +++ b/lib/WebGUI/Workflow/Activity/AddUserToGroup.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::AddUserToGroup; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/ArchiveOldThreads.pm b/lib/WebGUI/Workflow/Activity/ArchiveOldThreads.pm index 09f593f99..5a877c0f9 100644 --- a/lib/WebGUI/Workflow/Activity/ArchiveOldThreads.pm +++ b/lib/WebGUI/Workflow/Activity/ArchiveOldThreads.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::ArchiveOldThreads; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/CalendarUpdateFeeds.pm b/lib/WebGUI/Workflow/Activity/CalendarUpdateFeeds.pm index 9984b6224..0740431d3 100644 --- a/lib/WebGUI/Workflow/Activity/CalendarUpdateFeeds.pm +++ b/lib/WebGUI/Workflow/Activity/CalendarUpdateFeeds.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::CalendarUpdateFeeds; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/CleanDatabaseCache.pm b/lib/WebGUI/Workflow/Activity/CleanDatabaseCache.pm index ce23e9c70..b12166eb8 100644 --- a/lib/WebGUI/Workflow/Activity/CleanDatabaseCache.pm +++ b/lib/WebGUI/Workflow/Activity/CleanDatabaseCache.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::CleanDatabaseCache; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/CleanFileCache.pm b/lib/WebGUI/Workflow/Activity/CleanFileCache.pm index 28885a567..de1a5f0ff 100644 --- a/lib/WebGUI/Workflow/Activity/CleanFileCache.pm +++ b/lib/WebGUI/Workflow/Activity/CleanFileCache.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::CleanFileCache; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/CleanLoginHistory.pm b/lib/WebGUI/Workflow/Activity/CleanLoginHistory.pm index 4ab3ed86d..dd91ee6ba 100644 --- a/lib/WebGUI/Workflow/Activity/CleanLoginHistory.pm +++ b/lib/WebGUI/Workflow/Activity/CleanLoginHistory.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::CleanLoginHistory; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/CleanTempStorage.pm b/lib/WebGUI/Workflow/Activity/CleanTempStorage.pm index 51bcbe225..a21bd91b9 100644 --- a/lib/WebGUI/Workflow/Activity/CleanTempStorage.pm +++ b/lib/WebGUI/Workflow/Activity/CleanTempStorage.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::CleanTempStorage; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/CommitVersionTag.pm b/lib/WebGUI/Workflow/Activity/CommitVersionTag.pm index b795eb669..64e187ecd 100644 --- a/lib/WebGUI/Workflow/Activity/CommitVersionTag.pm +++ b/lib/WebGUI/Workflow/Activity/CommitVersionTag.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::CommitVersionTag; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/CreateCronJob.pm b/lib/WebGUI/Workflow/Activity/CreateCronJob.pm index 5acbb8543..2ae12c280 100644 --- a/lib/WebGUI/Workflow/Activity/CreateCronJob.pm +++ b/lib/WebGUI/Workflow/Activity/CreateCronJob.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::CreateCronJob; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/DecayKarma.pm b/lib/WebGUI/Workflow/Activity/DecayKarma.pm index a1d0a8614..38673eda5 100644 --- a/lib/WebGUI/Workflow/Activity/DecayKarma.pm +++ b/lib/WebGUI/Workflow/Activity/DecayKarma.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::DecayKarma; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/DeleteExpiredSessions.pm b/lib/WebGUI/Workflow/Activity/DeleteExpiredSessions.pm index ceeec2d9b..7fa74490d 100644 --- a/lib/WebGUI/Workflow/Activity/DeleteExpiredSessions.pm +++ b/lib/WebGUI/Workflow/Activity/DeleteExpiredSessions.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::DeleteExpiredSessions; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/DeleteExportedFiles.pm b/lib/WebGUI/Workflow/Activity/DeleteExportedFiles.pm index 3da07e2a4..5012aa94c 100644 --- a/lib/WebGUI/Workflow/Activity/DeleteExportedFiles.pm +++ b/lib/WebGUI/Workflow/Activity/DeleteExportedFiles.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::DeleteExportedFiles; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/DenyUnansweredFriends.pm b/lib/WebGUI/Workflow/Activity/DenyUnansweredFriends.pm index 03238bee8..d53ee5e79 100644 --- a/lib/WebGUI/Workflow/Activity/DenyUnansweredFriends.pm +++ b/lib/WebGUI/Workflow/Activity/DenyUnansweredFriends.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::DenyUnansweredFriends; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/ExpireEmsCartItems.pm b/lib/WebGUI/Workflow/Activity/ExpireEmsCartItems.pm index cf9b01dca..346f22432 100644 --- a/lib/WebGUI/Workflow/Activity/ExpireEmsCartItems.pm +++ b/lib/WebGUI/Workflow/Activity/ExpireEmsCartItems.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::ExpireEmsCartItems; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/ExpireGroupings.pm b/lib/WebGUI/Workflow/Activity/ExpireGroupings.pm index 1aff7d89e..a8f921fc2 100644 --- a/lib/WebGUI/Workflow/Activity/ExpireGroupings.pm +++ b/lib/WebGUI/Workflow/Activity/ExpireGroupings.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::ExpireGroupings; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/ExpireSubscriptionCodes.pm b/lib/WebGUI/Workflow/Activity/ExpireSubscriptionCodes.pm index ec5101ce8..4aa4e3842 100644 --- a/lib/WebGUI/Workflow/Activity/ExpireSubscriptionCodes.pm +++ b/lib/WebGUI/Workflow/Activity/ExpireSubscriptionCodes.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::ExpireSubscriptionCodes; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/ExpireUnvalidatedEmailUsers.pm b/lib/WebGUI/Workflow/Activity/ExpireUnvalidatedEmailUsers.pm index 5c24b3631..1494c06f6 100644 --- a/lib/WebGUI/Workflow/Activity/ExpireUnvalidatedEmailUsers.pm +++ b/lib/WebGUI/Workflow/Activity/ExpireUnvalidatedEmailUsers.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::ExpireUnvalidatedEmailUsers; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/ExportVersionTagToHtml.pm b/lib/WebGUI/Workflow/Activity/ExportVersionTagToHtml.pm index b9cde72ff..305ed67fe 100644 --- a/lib/WebGUI/Workflow/Activity/ExportVersionTagToHtml.pm +++ b/lib/WebGUI/Workflow/Activity/ExportVersionTagToHtml.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::ExportVersionTagToHtml; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/GetCsMail.pm b/lib/WebGUI/Workflow/Activity/GetCsMail.pm index 66f03b108..05fd0bce2 100644 --- a/lib/WebGUI/Workflow/Activity/GetCsMail.pm +++ b/lib/WebGUI/Workflow/Activity/GetCsMail.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::GetCsMail; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -119,8 +119,9 @@ sub addPost { $storage->addFileFromScalar($filename, $file->{content}); } } - $post->requestAutoCommit; + ##Modify, then save $post->postProcess; + $post->requestAutoCommit; $post->getThread->unarchive if ($post->getThread->get("status") eq "archived"); return $post; } diff --git a/lib/WebGUI/Workflow/Activity/GetSyndicatedContent.pm b/lib/WebGUI/Workflow/Activity/GetSyndicatedContent.pm index ed79386b4..8437bf56e 100644 --- a/lib/WebGUI/Workflow/Activity/GetSyndicatedContent.pm +++ b/lib/WebGUI/Workflow/Activity/GetSyndicatedContent.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::GetSyndicatedContent; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm b/lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm index c4e7cd4b1..a1ca8ddf4 100644 --- a/lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm +++ b/lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::NotifyAboutLowStock; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/NotifyAboutThing.pm b/lib/WebGUI/Workflow/Activity/NotifyAboutThing.pm index ebe6bedf1..c4524e005 100644 --- a/lib/WebGUI/Workflow/Activity/NotifyAboutThing.pm +++ b/lib/WebGUI/Workflow/Activity/NotifyAboutThing.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::NotifyAboutThing; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm b/lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm index 2852f58f5..eb9754d10 100644 --- a/lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm +++ b/lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::NotifyAboutUser; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/NotifyAboutVersionTag.pm b/lib/WebGUI/Workflow/Activity/NotifyAboutVersionTag.pm index f8bb9cdb9..b5d638273 100644 --- a/lib/WebGUI/Workflow/Activity/NotifyAboutVersionTag.pm +++ b/lib/WebGUI/Workflow/Activity/NotifyAboutVersionTag.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::NotifyAboutVersionTag; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/NotifyAdminsWithOpenVersionTags.pm b/lib/WebGUI/Workflow/Activity/NotifyAdminsWithOpenVersionTags.pm index 497ba636f..8315a1913 100644 --- a/lib/WebGUI/Workflow/Activity/NotifyAdminsWithOpenVersionTags.pm +++ b/lib/WebGUI/Workflow/Activity/NotifyAdminsWithOpenVersionTags.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::NotifyAdminsWithOpenVersionTags; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/PurgeOldAssetRevisions.pm b/lib/WebGUI/Workflow/Activity/PurgeOldAssetRevisions.pm index 965f6b0e3..4bb107e34 100644 --- a/lib/WebGUI/Workflow/Activity/PurgeOldAssetRevisions.pm +++ b/lib/WebGUI/Workflow/Activity/PurgeOldAssetRevisions.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::PurgeOldAssetRevisions; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/PurgeOldInboxMessages.pm b/lib/WebGUI/Workflow/Activity/PurgeOldInboxMessages.pm index e73dda3b6..0192ec3be 100644 --- a/lib/WebGUI/Workflow/Activity/PurgeOldInboxMessages.pm +++ b/lib/WebGUI/Workflow/Activity/PurgeOldInboxMessages.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::PurgeOldInboxMessages; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/PurgeOldTrash.pm b/lib/WebGUI/Workflow/Activity/PurgeOldTrash.pm index 6e3901112..0da9236d4 100644 --- a/lib/WebGUI/Workflow/Activity/PurgeOldTrash.pm +++ b/lib/WebGUI/Workflow/Activity/PurgeOldTrash.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::PurgeOldTrash; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag.pm b/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag.pm index 603fbb06b..37003e049 100644 --- a/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag.pm +++ b/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::RequestApprovalForVersionTag; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -342,8 +342,10 @@ sub setMessageCompleted { # Set all messages to completed for my $messageId ( split /,/, $instance->getScratch("messageId") ) { - my $message = $inbox->getMessage( $messageId ); - $message->setCompleted; + if($messageId){ + my $message = $inbox->getMessage( $messageId ); + $message->setCompleted; + } } $instance->deleteScratch( "messageId" ); diff --git a/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag/ByCommitterGroup.pm b/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag/ByCommitterGroup.pm index d6f258b45..29cda58e3 100644 --- a/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag/ByCommitterGroup.pm +++ b/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag/ByCommitterGroup.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::RequestApprovalForVersionTag::ByCommitterGro =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag/ByLineage.pm b/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag/ByLineage.pm index 077f3bd65..84b951169 100644 --- a/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag/ByLineage.pm +++ b/lib/WebGUI/Workflow/Activity/RequestApprovalForVersionTag/ByLineage.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::RequestApprovalForVersionTag::ByLineage; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/RollbackVersionTag.pm b/lib/WebGUI/Workflow/Activity/RollbackVersionTag.pm index 1bfd88004..9264de719 100644 --- a/lib/WebGUI/Workflow/Activity/RollbackVersionTag.pm +++ b/lib/WebGUI/Workflow/Activity/RollbackVersionTag.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::RollbackVersionTag; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/RunCommandAsUser.pm b/lib/WebGUI/Workflow/Activity/RunCommandAsUser.pm index 9408aea55..b9782a858 100644 --- a/lib/WebGUI/Workflow/Activity/RunCommandAsUser.pm +++ b/lib/WebGUI/Workflow/Activity/RunCommandAsUser.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::RunCommandAsUser; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/SendNewsletters.pm b/lib/WebGUI/Workflow/Activity/SendNewsletters.pm index 2c6716edb..23955b5d7 100644 --- a/lib/WebGUI/Workflow/Activity/SendNewsletters.pm +++ b/lib/WebGUI/Workflow/Activity/SendNewsletters.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::SendNewsletters; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/SendQueuedMailMessages.pm b/lib/WebGUI/Workflow/Activity/SendQueuedMailMessages.pm index ba50fc953..776803a33 100644 --- a/lib/WebGUI/Workflow/Activity/SendQueuedMailMessages.pm +++ b/lib/WebGUI/Workflow/Activity/SendQueuedMailMessages.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::SendQueuedMailMessages; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/SummarizePassiveProfileLog.pm b/lib/WebGUI/Workflow/Activity/SummarizePassiveProfileLog.pm index 1fe19ed2b..56d991e69 100644 --- a/lib/WebGUI/Workflow/Activity/SummarizePassiveProfileLog.pm +++ b/lib/WebGUI/Workflow/Activity/SummarizePassiveProfileLog.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::SummarizePassiveProfileLog; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/SyncProfileToLdap.pm b/lib/WebGUI/Workflow/Activity/SyncProfileToLdap.pm index a390c2063..72b077100 100644 --- a/lib/WebGUI/Workflow/Activity/SyncProfileToLdap.pm +++ b/lib/WebGUI/Workflow/Activity/SyncProfileToLdap.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::SyncProfileToLdap; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/SyncProfilesToLdap.pm b/lib/WebGUI/Workflow/Activity/SyncProfilesToLdap.pm index 89a181676..2dcddb269 100644 --- a/lib/WebGUI/Workflow/Activity/SyncProfilesToLdap.pm +++ b/lib/WebGUI/Workflow/Activity/SyncProfilesToLdap.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::SyncProfilesToLdap; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/TrashClipboard.pm b/lib/WebGUI/Workflow/Activity/TrashClipboard.pm index 506f338ac..85e527690 100644 --- a/lib/WebGUI/Workflow/Activity/TrashClipboard.pm +++ b/lib/WebGUI/Workflow/Activity/TrashClipboard.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::TrashClipboard; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm b/lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm index abea705f5..5e235ebe7 100644 --- a/lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm +++ b/lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::TrashExpiredEvents; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/TrashVersionTag.pm b/lib/WebGUI/Workflow/Activity/TrashVersionTag.pm index 6bed16394..095d18b8c 100644 --- a/lib/WebGUI/Workflow/Activity/TrashVersionTag.pm +++ b/lib/WebGUI/Workflow/Activity/TrashVersionTag.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::TrashVersionTag; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/UnlockVersionTag.pm b/lib/WebGUI/Workflow/Activity/UnlockVersionTag.pm index 7fc4937ee..17c66f9fc 100644 --- a/lib/WebGUI/Workflow/Activity/UnlockVersionTag.pm +++ b/lib/WebGUI/Workflow/Activity/UnlockVersionTag.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::UnlockVersionTag; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/WaitUntil.pm b/lib/WebGUI/Workflow/Activity/WaitUntil.pm index 7d14df1d2..dd96fa22c 100644 --- a/lib/WebGUI/Workflow/Activity/WaitUntil.pm +++ b/lib/WebGUI/Workflow/Activity/WaitUntil.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::WaitUntil; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Activity/_activity.skeleton b/lib/WebGUI/Workflow/Activity/_activity.skeleton index 61fb641d1..c788b5c1a 100644 --- a/lib/WebGUI/Workflow/Activity/_activity.skeleton +++ b/lib/WebGUI/Workflow/Activity/_activity.skeleton @@ -4,7 +4,7 @@ package WebGUI::Workflow::Activity::Skeleton; # change "Skeleton" to your namesp =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/Workflow/Cron.pm b/lib/WebGUI/Workflow/Cron.pm index df71cb891..c6b48238e 100644 --- a/lib/WebGUI/Workflow/Cron.pm +++ b/lib/WebGUI/Workflow/Cron.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Cron; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -117,7 +117,7 @@ sub get { my $name = shift; if ($name eq "parameters") { if (exists $self->{_data}{parameters} && $self->{_data}{parameters} ne "") { - my $parameters = JSON::decode_json($self->{_data}{$name}); + my $parameters = JSON::from_json($self->{_data}{$name}); return $parameters->{parameters}; } else { @@ -303,7 +303,7 @@ sub set { $self->{_data}{className} = (exists $properties->{className}) ? $properties->{className} : $self->{_data}{className}; $self->{_data}{methodName} = (exists $properties->{methodName}) ? $properties->{methodName} : $self->{_data}{methodName}; if (exists $properties->{parameters}) { - $self->{_data}{parameters} = JSON->new->utf8->pretty->encode({parameters => $properties->{parameters}}); + $self->{_data}{parameters} = JSON->new->pretty->encode({parameters => $properties->{parameters}}); } $self->{_data}{enabled} = 0 unless ($self->{_data}{workflowId}); my $spectre = WebGUI::Workflow::Spectre->new($self->session); diff --git a/lib/WebGUI/Workflow/Instance.pm b/lib/WebGUI/Workflow/Instance.pm index 71862a2ad..eb281d722 100644 --- a/lib/WebGUI/Workflow/Instance.pm +++ b/lib/WebGUI/Workflow/Instance.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Instance; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using @@ -66,7 +66,7 @@ sub create { my ($isSingleton) = $session->db->quickArray("select count(*) from Workflow where workflowId=? and mode='singleton'",$placeHolders); my $sql = "select count(*) from WorkflowInstance where workflowId=?"; if (exists $properties->{parameters}) { - push @{ $placeHolders }, JSON->new->utf8->canonical->encode({parameters => $properties->{parameters}}); + push @{ $placeHolders }, JSON->new->canonical->encode({parameters => $properties->{parameters}}); $sql .= ' and parameters=?'; } else { @@ -466,7 +466,7 @@ sub set { $self->{_data}{className} = (exists $properties->{className}) ? $properties->{className} : $self->{_data}{className}; $self->{_data}{methodName} = (exists $properties->{methodName}) ? $properties->{methodName} : $self->{_data}{methodName}; if (exists $properties->{parameters}) { - $self->{_data}{parameters} = JSON->new->utf8->canonical->encode({parameters => $properties->{parameters}}); + $self->{_data}{parameters} = JSON->new->canonical->encode({parameters => $properties->{parameters}}); } $self->{_data}{currentActivityId} = (exists $properties->{currentActivityId}) ? $properties->{currentActivityId} : $self->{_data}{currentActivityId}; $self->session->db->setRow("WorkflowInstance","instanceId",$self->{_data}); diff --git a/lib/WebGUI/Workflow/Spectre.pm b/lib/WebGUI/Workflow/Spectre.pm index 1cdcdd505..6ed59ac34 100644 --- a/lib/WebGUI/Workflow/Spectre.pm +++ b/lib/WebGUI/Workflow/Spectre.pm @@ -4,7 +4,7 @@ package WebGUI::Workflow::Spectre; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/lib/WebGUI/i18n/English/Account_Inbox.pm b/lib/WebGUI/i18n/English/Account_Inbox.pm index bd13a590e..142cafaeb 100644 --- a/lib/WebGUI/i18n/English/Account_Inbox.pm +++ b/lib/WebGUI/i18n/English/Account_Inbox.pm @@ -23,7 +23,7 @@ our $I18N = { message => q|Edit Layout Template|, lastUpdated => 1119068809 }, - + 'inbox layout template hoverHelp' => { message => q{Choose a layout from the list to display the various account pluggins that are editable by the current user as well as the contents of the one currently chosen}, lastUpdated => 1119068809 @@ -194,7 +194,7 @@ our $I18N = { message => q|Subject|, lastUpdated => 1119068809 }, - + 'status label' => { message => q{Status}, lastUpdated => 1119068809 @@ -214,7 +214,7 @@ our $I18N = { message => q{Add Recipients}, lastUpdated => 1119068809 }, - + 'from label' => { message => q{From}, lastUpdated => 1119068809 @@ -224,7 +224,7 @@ our $I18N = { message => q{To}, lastUpdated => 1119068809 }, - + 'member since' => { message => q{Member Since }, lastUpdated => 1119068809 @@ -234,7 +234,7 @@ our $I18N = { message => q{Delete}, lastUpdated => 1119068809 }, - + 'view my profile' => { message => q{view my profile as others see it}, lastUpdated => 1119068809 @@ -546,6 +546,181 @@ our $I18N = { lastUpdated => 0, context => "Description of Inbox setting", }, + + 'subject_url' => { + message => q{The URL to sort the inbox by subject.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'status_url' => { + message => q{The URL to sort the inbox by status.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'from_url' => { + message => q{The URL to sort the inbox by who sent the messages.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'dateStamp_url' => { + message => q{The URL to sort the inbox by when the message was sent.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'rpp_url' => { + message => q{The current URL with sort, sort direction and user filtering params added.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'has_messages' => { + message => q{A boolean which is true if the user has messages.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'message_total' => { + message => q{The total number of messages the user has in their inbox.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'new_message_url' => { + message => q{The URL to take the user to the screen where they can send new messages to other users.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'canSendMessages' => { + message => q{A boolean which is true if the user has friends that he can send messages to.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'message_loop' => { + message => q{A loop containing all messages, as determined by the sorting and number of messages per page options.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'view inbox template' => { + message => q{View Inbox Template}, + lastUpdated => 1235421123, + context => "The template that allows you to view the contents of the Inbox", + }, + + 'message_rpp' => { + message => q{A select box that allows the user to change the number of messages displayed per page}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'form_header' => { + message => q{HTML elements to begin the form on this page}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'form_footer' => { + message => q{HTML elements to end the form on this page}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'message_id' => { + message => q{The unique identifier for this message.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'message_url' => { + message => q{The URL to view the contents of this message.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'subject' => { + message => q{The subject of this message.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'status' => { + message => q{The status of this message, internationalized.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'status_class' => { + message => q{The status of this message, raw.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'isRead' => { + message => q{A boolean which will be true if this message has been read.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'isReplied' => { + message => q{A boolean which will be true if this message has been replied to.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'isPending' => { + message => q{A boolean which will be true if this message represents an action by the user that is pending.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'isCompleted' => { + message => q{A boolean which will be true if this message represents an action by the user that has been completed.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'from_id' => { + message => q{The userId of the person who sent this message.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'from_url' => { + message => q{The URL to view the profile of the user who sent this message.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'from' => { + message => q{The name of the person who sent this message.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'dateStamp' => { + message => q{The date the message was sent, as an epoch.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'dateStamp_formatted' => { + message => q{The date the message was sent, using the user's preferred date and time format.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + + 'inbox_form_delete' => { + message => q{A little checkbox for the user to check if they want to delete this message.}, + lastUpdated => 1235421123, + context => "template variable for view inbox template", + }, + }; 1; diff --git a/lib/WebGUI/i18n/English/Asset_GalleryAlbum.pm b/lib/WebGUI/i18n/English/Asset_GalleryAlbum.pm index 4b77c4eab..adb46f7dc 100644 --- a/lib/WebGUI/i18n/English/Asset_GalleryAlbum.pm +++ b/lib/WebGUI/i18n/English/Asset_GalleryAlbum.pm @@ -225,7 +225,7 @@ our $I18N = { lastUpdated => 0, }, - 'helpvar file_' => { + 'helpvar file_*' => { message => 'The current file being viewed in the thumbnails page. All the common variables for this file are available by prefixing "file_".', lastUpdated => 0, @@ -490,6 +490,12 @@ our $I18N = { context => q{Description of template variable}, }, + 'helpvar gallery_displayTitle' => { + message => q{Whether the Gallery containing this File is set to display its title, or not.}, + lastUpdated => 0, + context => q{Description of template variable}, + }, + 'helpvar isPending' => { message => q{A flag to set if the GalleryAlbum is not yet approved. Users who can edit the GalleryAlbum are allowed to see them before they are approved.}, lastUpdated => 0, diff --git a/lib/WebGUI/i18n/English/Asset_Matrix.pm b/lib/WebGUI/i18n/English/Asset_Matrix.pm index fc7932020..f7ace67ae 100644 --- a/lib/WebGUI/i18n/English/Asset_Matrix.pm +++ b/lib/WebGUI/i18n/English/Asset_Matrix.pm @@ -372,6 +372,11 @@ listing,|, lastUpdated => 0, }, + 'group to add description' => { + message => q|Select the group that is allowed to add listings to this matrix.|, + lastUpdated => 0, + }, + 'ratings duration description' => { message => q|Select the interval after which old ratings are cleaned out.|, lastUpdated => 0, @@ -418,8 +423,8 @@ listing,|, }, 'max comparisons privileged description' => { - message => q|Specifies how many comparisons are allowed in searches and comparisons for users in the privileged group.|, - lastUpdated => 0, + message => q|Specifies how many comparisons are allowed in searches and comparisons for users who have accounts on the site.|, + lastUpdated => 1235681965, }, 'rating timeout description' => { @@ -476,6 +481,16 @@ listing,|, message => q|Select a template to be used to show the listing edit screen.|, lastUpdated => 0, }, + + 'screenshots template description' => { + message => q|Select a template to be used to show a listing's screenshots.|, + lastUpdated => 0, + }, + + 'screenshots config template description' => { + message => q|Select a template for a listing's screenshots configuration.|, + lastUpdated => 0, + }, 'categories label' => { message => q|Categories|, @@ -487,6 +502,11 @@ listing,|, lastUpdated => 0, }, + 'group to add label' => { + message => q|Group To Add|, + lastUpdated => 0, + }, + 'ratings duration label' => { message => q|Ratings Duration|, lastUpdated => 0, @@ -548,8 +568,8 @@ listing,|, }, 'max comparisons privileged label' => { - message => q|Maximum Comparisons (For Privileged Users)|, - lastUpdated => 0, + message => q|Maximum Comparisons (For Registered Users)|, + lastUpdated => 1235681967, }, 'rating timeout' => { @@ -602,6 +622,16 @@ listing,|, lastUpdated => 0, }, + 'screenshots template label' => { + message => q|Listing Screenshots Template|, + lastUpdated => 0, + }, + + 'screenshots config template label' => { + message => q|Listing Screenshots Config Template|, + lastUpdated => 0, + }, + 'edit listing template label' => { message => q|Edit Listing Template|, lastUpdated => 0, @@ -750,6 +780,12 @@ selectBox.

            | message => q|Hide/show stickied|, }, + 'approve or deny label' => { + lastUpdated => 0, + message => q|Approve/Deny|, + context => q|Label for the approve or deny link on the matrix listing detail screen.|, + }, + 'matrix asset template variables title' => { lastUpdated => 0, message => q|Matrix Asset Template Variables|, diff --git a/lib/WebGUI/i18n/English/Asset_MatrixListing.pm b/lib/WebGUI/i18n/English/Asset_MatrixListing.pm index bc8d19bdd..17ae29de9 100644 --- a/lib/WebGUI/i18n/English/Asset_MatrixListing.pm +++ b/lib/WebGUI/i18n/English/Asset_MatrixListing.pm @@ -44,6 +44,11 @@ fields below.|, lastUpdated => 0, }, + 'edit label' => { + message => q|Edit|, + lastUpdated => 0, + }, + 'version description' => { message => q|Enter the version/edition/model number for the product.|, lastUpdated => 0, @@ -221,6 +226,30 @@ it would be best to make sure the names are the same.|, context => q|Description of the form tmpl_var for the template help.|, }, + 'canEdit' => { + message => q|A boolean indicating whether the user can edit this listing.|, + lastUpdated => 0, + context => q|Description of the screenshots tmpl_var for the template help.|, + }, + + 'editUrl' => { + message => q|The url to this listing's edit screen.|, + lastUpdated => 0, + context => q|Description of the screenshots tmpl_var for the template help.|, + }, + + 'canApprove' => { + message => q|A boolean indicating whether the user can approve or deny this listing.|, + lastUpdated => 0, + context => q|Description of the screenshots tmpl_var for the template help.|, + }, + + 'approveOrDenyUrl' => { + message => q|The url to this listing's approve or deny screen.|, + lastUpdated => 0, + context => q|Description of the screenshots tmpl_var for the template help.|, + }, + 'screenshots' => { message => q|This listings screenshots displayed using the ukplayer.|, lastUpdated => 0, diff --git a/lib/WebGUI/i18n/English/Asset_Post.pm b/lib/WebGUI/i18n/English/Asset_Post.pm index 081438d93..e4b2ed3eb 100644 --- a/lib/WebGUI/i18n/English/Asset_Post.pm +++ b/lib/WebGUI/i18n/English/Asset_Post.pm @@ -487,8 +487,8 @@ editing an existing Post, and a thread containing the Post exists.|, }, 'userDefined3' => { - message => q|The value contained in the first user defined variable.|, - lastUpdated => 1150167057, + message => q|The value contained in the third user defined variable.|, + lastUpdated => 1236354498, }, 'userDefined4' => { diff --git a/lib/WebGUI/i18n/English/Asset_Search.pm b/lib/WebGUI/i18n/English/Asset_Search.pm index 5e41f94f1..e26f399bb 100644 --- a/lib/WebGUI/i18n/English/Asset_Search.pm +++ b/lib/WebGUI/i18n/English/Asset_Search.pm @@ -161,12 +161,14 @@ our $I18N = { ##hashref of hashes 'no results' => { message => q|No results were found.|, + context => q|An internationalized label for telling the user that no results were found.|, lastUpdated => 1170549113, }, 'no_results' => { message => q|An internationalized label for telling the user that no results were found.|, - lastUpdated => 1170549119, + context => q|Template variable in the view method.|, + lastUpdated => 1236101532, }, }; diff --git a/lib/WebGUI/i18n/English/Asset_Survey.pm b/lib/WebGUI/i18n/English/Asset_Survey.pm index 2c61b4611..03f5efd61 100644 --- a/lib/WebGUI/i18n/English/Asset_Survey.pm +++ b/lib/WebGUI/i18n/English/Asset_Survey.pm @@ -4,8 +4,8 @@ use strict; our $I18N = { 'assetName' => { - message => q|Survey|, - lastUpdated => 1224686319 + message => q|Survey (beta)|, + lastUpdated => 1236187015 }, 'edit survey' => { message => q|Edit Survey|, @@ -625,6 +625,116 @@ the time limit for completing the survey. This message is in the 'take survey' t lastUpdated => 0, }, + 'Max user responses' => { + message => q|Max user responses|, + context => q|The maximum number of times a user may take this survey.|, + lastUpdated => 0 + }, + + 'Max user responses help' => { + message => q|The maximum number of times a user may take this survey.|, + lastUpdated => 0 + }, + + 'Survey Overview Template' => { + message => q|Survey Overview Template|, + context => q|The template that provides an overview of the survey.|, + lastUpdated => 0 + }, + + 'Survey Overview Template help' => { + message => q|The template that provides an overview of the survey.|, + lastUpdated => 0 + }, + + 'Gradebook Template' => { + message => q|Gradebook Template|, + context => q|The template for displaying the gradebook.|, + lastUpdated => 0 + }, + + 'Gradebook Template help' => { + message => q|The template for displaying the gradebook.|, + lastUpdated => 0 + }, + + 'Response Template' => { + message => q|Response Template|, + context => q|The template for displaying responses to the survey.|, + lastUpdated => 0 + }, + + 'Response Template help' => { + message => q|The template for displaying responses to the survey.|, + lastUpdated => 0 + }, + + 'Edit Survey Template' => { + message => q|Edit Survey Template|, + context => q|The template for displaying the screen for editing the survey.|, + lastUpdated => 0 + }, + + 'Edit Survey Template help' => { + message => q|The template for displaying the screen for editing the survey.|, + lastUpdated => 0 + }, + + 'Take Survey Template' => { + message => q|Take Survey Template|, + context => q|The template for displaying the screen where a user takes the survey.|, + lastUpdated => 0 + }, + + 'Take Survey Template help' => { + message => q|The template for displaying the screen where a user takes the survey.|, + lastUpdated => 0 + }, + + 'Questions Template' => { + message => q|Questions Template|, + context => q|The template for rendering questions in the survey.|, + lastUpdated => 0 + }, + + 'Questions Template help' => { + message => q|The template for rendering questions in the survey.|, + lastUpdated => 0 + }, + + 'Section Edit Template' => { + message => q|Section Edit Template|, + context => q|The template for adding or editing sections.|, + lastUpdated => 0 + }, + + 'Section Edit Template help' => { + message => q|The template for adding or editing sections.|, + lastUpdated => 0 + }, + + 'Question Edit Template' => { + message => q|Question Edit Template|, + context => q|The template for adding or editing questions.|, + lastUpdated => 0 + }, + + 'Question Edit Template help' => { + message => q|The template for adding or editing questions.|, + lastUpdated => 0 + }, + + 'Answer Edit Template' => { + message => q|Answer Edit Template|, + context => q|The template for adding or editing answers.|, + lastUpdated => 0 + }, + + 'Answer Edit Template help' => { + message => q|The template for adding or editing answers.|, + lastUpdated => 0 + }, + 'percentage label' => { message => q|Percentage|, context => q|Label for the Percentage column on the gradebook screen.|, diff --git a/lib/WebGUI/i18n/English/Form_Captcha.pm b/lib/WebGUI/i18n/English/Form_Captcha.pm index 765e75cc1..9d08ffce3 100644 --- a/lib/WebGUI/i18n/English/Form_Captcha.pm +++ b/lib/WebGUI/i18n/English/Form_Captcha.pm @@ -13,6 +13,14 @@ our $I18N = { lastUpdated => 1131394072, }, + 'captcha failure' => { + message => q|You need to type in the six characters you see in the image to prove that you are human.|, + }, + + 'recaptcha failure' => { + message => q|You need to correctly enter the words you see in the image to prove that you are human.|, + }, + }; 1; diff --git a/lib/WebGUI/i18n/English/Inbox_Message.pm b/lib/WebGUI/i18n/English/Inbox_Message.pm index b953fe5e8..f3341832a 100644 --- a/lib/WebGUI/i18n/English/Inbox_Message.pm +++ b/lib/WebGUI/i18n/English/Inbox_Message.pm @@ -4,7 +4,7 @@ use strict; our $I18N = { 'from user preface' => { - message => q|You were sent a message from |, + message => q|You were sent a message from %s|, lastUpdated => 0 }, }; diff --git a/lib/WebGUI/i18n/English/PayDriver_ITransact.pm b/lib/WebGUI/i18n/English/PayDriver_ITransact.pm index 4148fae41..7f29c724c 100644 --- a/lib/WebGUI/i18n/English/PayDriver_ITransact.pm +++ b/lib/WebGUI/i18n/English/PayDriver_ITransact.pm @@ -292,6 +292,11 @@ our $I18N = { lastUpdated => 0, context => q|The default description of purchase of users.| }, + 'template gone' => { + message => q|The template for entering in credentials has been deleted. Please notify the site administrator.|, + lastUpdated => 0, + context => q|Error message when the getCredentials template cannot be accessed.| + }, 'show terminal' => { message => q|Click here to use your virtual terminal.|, lastUpdated => 0, diff --git a/lib/WebGUI/i18n/English/WebGUI.pm b/lib/WebGUI/i18n/English/WebGUI.pm index d25dbf04b..e177351d9 100644 --- a/lib/WebGUI/i18n/English/WebGUI.pm +++ b/lib/WebGUI/i18n/English/WebGUI.pm @@ -2873,8 +2873,8 @@ or are under your current version tag.

            }, '318' => { - message => q|AIM Id|, - lastUpdated => 1031514049 + message => q|AIM Id|, + lastUpdated => 1234829971, }, '972' => { @@ -4325,6 +4325,19 @@ Users may override this setting in their profile. lastUpdated => 1230930518, }, + 'use recaptcha' => { + message => q{Use reCAPTCHA?} + }, + 'use recaptcha description' => { + message => q{reCAPTCHA is a free CAPTCHA service that helps to digitize books. It requires a key set generated for your domain, available from http://recaptcha.net/.} + }, + + 'recaptcha private key' => { + message => 'reCAPTCHA Private Key' + }, + 'recaptcha public key' => { + message => 'reCAPTCHA Public Key' + }, }; 1; diff --git a/sbin/_utility.skeleton b/sbin/_utility.skeleton index c7aaf4cb1..18c08945e 100644 --- a/sbin/_utility.skeleton +++ b/sbin/_utility.skeleton @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -113,7 +113,7 @@ Shows this document =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/changeIobStatus.pl b/sbin/changeIobStatus.pl index 47846e755..e42dc9f20 100755 --- a/sbin/changeIobStatus.pl +++ b/sbin/changeIobStatus.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -179,6 +179,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/diskUsage.pl b/sbin/diskUsage.pl index b4678b8e1..d15f3a69c 100755 --- a/sbin/diskUsage.pl +++ b/sbin/diskUsage.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -204,6 +204,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/fileImport.pl b/sbin/fileImport.pl index 0ed160ad8..62a0810f5 100755 --- a/sbin/fileImport.pl +++ b/sbin/fileImport.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -442,6 +442,6 @@ The following exit values are returned upon completion: =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/galleryImport.pl b/sbin/galleryImport.pl index e49401da1..7f6570274 100755 --- a/sbin/galleryImport.pl +++ b/sbin/galleryImport.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl # ------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. # ------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -462,7 +462,7 @@ URL parameter of the Gallery, and not the fully qualified URL. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/generateContent.pl b/sbin/generateContent.pl index d1ed02ec0..9a58208e6 100755 --- a/sbin/generateContent.pl +++ b/sbin/generateContent.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -148,6 +148,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/installClass.pl b/sbin/installClass.pl index c3bd2ad35..6105cfefe 100755 --- a/sbin/installClass.pl +++ b/sbin/installClass.pl @@ -2,7 +2,7 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/sbin/maintenanceMode.pl b/sbin/maintenanceMode.pl index 9f0ed7c4d..e757056f5 100755 --- a/sbin/maintenanceMode.pl +++ b/sbin/maintenanceMode.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -87,6 +87,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/purgeWGAccess.pl b/sbin/purgeWGAccess.pl index 95867a359..9ea4312fd 100755 --- a/sbin/purgeWGAccess.pl +++ b/sbin/purgeWGAccess.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -87,6 +87,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/rebuildLineage.pl b/sbin/rebuildLineage.pl index e3560a4df..355d55ff9 100755 --- a/sbin/rebuildLineage.pl +++ b/sbin/rebuildLineage.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -174,6 +174,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/search.pl b/sbin/search.pl index 67f7c28cc..12e188345 100755 --- a/sbin/search.pl +++ b/sbin/search.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -208,6 +208,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/spectre.pl b/sbin/spectre.pl index b61ca74e4..6c531c981 100755 --- a/sbin/spectre.pl +++ b/sbin/spectre.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -237,6 +237,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/testCodebase.pl b/sbin/testCodebase.pl index d9492bddc..56d9bbd3e 100755 --- a/sbin/testCodebase.pl +++ b/sbin/testCodebase.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -126,6 +126,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/testEnvironment.pl b/sbin/testEnvironment.pl index 3323b8a8a..ced824337 100755 --- a/sbin/testEnvironment.pl +++ b/sbin/testEnvironment.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -433,6 +433,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/thumbnailer.pl b/sbin/thumbnailer.pl index 82def03f4..88ac1013f 100755 --- a/sbin/thumbnailer.pl +++ b/sbin/thumbnailer.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -162,6 +162,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/upgrade.pl b/sbin/upgrade.pl index 15680c265..07d100a10 100755 --- a/sbin/upgrade.pl +++ b/sbin/upgrade.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -503,6 +503,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/sbin/userImport.pl b/sbin/userImport.pl index effce95ff..3e547bc0c 100755 --- a/sbin/userImport.pl +++ b/sbin/userImport.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -407,6 +407,6 @@ Shows this documentation, then exits. =head1 AUTHOR -Copyright 2001-2008 Plain Black Corporation. +Copyright 2001-2009 Plain Black Corporation. =cut diff --git a/t/Account.t b/t/Account.t index d2ef973bd..22d38d3ad 100644 --- a/t/Account.t +++ b/t/Account.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/AdSpace.t b/t/AdSpace.t index b99f1f504..135196fdf 100644 --- a/t/AdSpace.t +++ b/t/AdSpace.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -47,6 +47,9 @@ SKIP: { skip "Unable to load WebGUI::AdSpace", $numTests-1 unless $loaded; + local $ENV{REMOTE_ADDR} = '10.0.0.1'; + local $ENV{HTTP_USER_AGENT} = 'Mozilla/5.0'; + $adSpace = WebGUI::AdSpace->create($session, {name=>"Alfred"}); isa_ok($adSpace, 'WebGUI::AdSpace'); diff --git a/t/AdSpace/Ad.t b/t/AdSpace/Ad.t index cb25e1692..d81603190 100644 --- a/t/AdSpace/Ad.t +++ b/t/AdSpace/Ad.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -54,6 +54,10 @@ $imageStorage->addFileFromScalar('foo.bmp', 'This is not really an image'); SKIP: { skip "Unable to load WebGUI::AdSpace::Ad", $numTests-1 unless $loaded; + + local $ENV{REMOTE_ADDR} = '10.0.0.1'; + local $ENV{HTTP_USER_AGENT} = 'Mozilla/5.0'; + $adSpace = WebGUI::AdSpace->create($session, {name=>"Alfred"}); $ad=WebGUI::AdSpace::Ad->create($session, $adSpace->getId, {"type" => "text"}); isa_ok($ad,"WebGUI::AdSpace::Ad"); @@ -115,11 +119,11 @@ SKIP: { ##Link checks $token = $textP->get_tag("a"); - my $href = $token->[1]{href}; + my $href = $token->[1]{onclick}; like($href, qr/op=clickAd/, 'ad link has correct operation'); my $adId = $textAd->getId; - like($href, qr/id=$adId/, 'ad link has correct ad id'); + like($href, qr/id=\Q$adId\E/, 'ad link has correct ad id'); $style = $token->[1]{style}; like($style, qr/background-color:white/, 'ad link background is white'); @@ -159,11 +163,11 @@ SKIP: { ##Link checks $token = $textP->get_tag("a"); - my $href = $token->[1]{href}; + my $href = $token->[1]{onclick}; like($href, qr/op=clickAd/, 'ad link has correct operation, image'); $adId = $imageAd->getId; - like($href, qr/id=$adId/, 'ad link has correct ad id, image'); + like($href, qr/id=\Q$adId\E/, 'ad link has correct ad id, image'); $token = $textP->get_tag("img"); $style = $token->[1]{src}; diff --git a/t/Asset/Asset.t b/t/Asset/Asset.t index 4640e2780..e3669ddd1 100644 --- a/t/Asset/Asset.t +++ b/t/Asset/Asset.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/AssetClipboard.t b/t/Asset/AssetClipboard.t index ebabbdf73..3e4d193f8 100644 --- a/t/Asset/AssetClipboard.t +++ b/t/Asset/AssetClipboard.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/AssetExportHtml.t b/t/Asset/AssetExportHtml.t index bd177fbe6..18f8befab 100644 --- a/t/Asset/AssetExportHtml.t +++ b/t/Asset/AssetExportHtml.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -280,6 +280,8 @@ my $properties = { title => 'Export Test', className => 'WebGUI::Asset::File', url => 'export-test.pl', + storageId => $storage->getId, + filename => 'somePerlFile_pl.txt', }; my $defaultAsset = WebGUI::Asset->getDefault($session); my $asset = $defaultAsset->addChild($properties, $properties->{id}); diff --git a/t/Asset/AssetLineage.t b/t/Asset/AssetLineage.t index 4ea6b3cef..0ab9dce89 100644 --- a/t/Asset/AssetLineage.t +++ b/t/Asset/AssetLineage.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/AssetMetaData.t b/t/Asset/AssetMetaData.t index b09e7b7c4..1ab4920f4 100644 --- a/t/Asset/AssetMetaData.t +++ b/t/Asset/AssetMetaData.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/AssetPackage.t b/t/Asset/AssetPackage.t index d52c27905..9614c216b 100644 --- a/t/Asset/AssetPackage.t +++ b/t/Asset/AssetPackage.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -55,7 +55,7 @@ my $snippet = $folder->addChild({ }); my $packageAssetId = $folder->getId; -hack_session_request($session, $packageAssetId); +$session->request->setup_body({ assetId => $packageAssetId }); my $targetFolderChildren; $targetFolderChildren = $targetFolder->getLineage(["children"], {returnObjects => 1,}); @@ -85,21 +85,6 @@ TODO: { ok(0, 'Check package deployment with 2-level package and look for new style templates propagating down the tree'); } - -##This allows us to place an arbitrary assetId inside the form processor. -##This is required for deploying a package. -sub hack_session_request { - my ($session, $id) = @_; - my $request = Test::MockObject->new(); - $request->mock('body', - sub { - return $id - }, - ); - $request->mock('param', sub { shift->body(@_) }); - $session->{_request} = $request; -} - END { foreach my $tag($versionTag, $newVersionTag) { if (defined $tag and ref $tag eq 'WebGUI::VersionTag') { diff --git a/t/Asset/AssetTrash.t b/t/Asset/AssetTrash.t index 2d6bf287d..92df9c0d3 100644 --- a/t/Asset/AssetTrash.t +++ b/t/Asset/AssetTrash.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Asset_diagnose.t b/t/Asset/Asset_diagnose.t index 486a5e64d..400d3ac62 100644 --- a/t/Asset/Asset_diagnose.t +++ b/t/Asset/Asset_diagnose.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Asset_version.t b/t/Asset/Asset_version.t index fcf70f5c8..59632fa01 100644 --- a/t/Asset/Asset_version.t +++ b/t/Asset/Asset_version.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Event.t b/t/Asset/Event.t index 00c280558..1bb17367b 100644 --- a/t/Asset/Event.t +++ b/t/Asset/Event.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Event/edit.t b/t/Asset/Event/edit.t index e719661f9..afb9aaea6 100644 --- a/t/Asset/Event/edit.t +++ b/t/Asset/Event/edit.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Event/permissions.t b/t/Asset/Event/permissions.t index 4dbeb78c8..a6ea233e3 100644 --- a/t/Asset/Event/permissions.t +++ b/t/Asset/Event/permissions.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File.t b/t/Asset/File.t index 01673042f..0cf42029b 100644 --- a/t/Asset/File.t +++ b/t/Asset/File.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/00base.t b/t/Asset/File/GalleryFile/Photo/00base.t index 53ab4cc2d..5fcb8b76e 100644 --- a/t/Asset/File/GalleryFile/Photo/00base.t +++ b/t/Asset/File/GalleryFile/Photo/00base.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/comment.t b/t/Asset/File/GalleryFile/Photo/comment.t index 7daca9b47..acabceecd 100644 --- a/t/Asset/File/GalleryFile/Photo/comment.t +++ b/t/Asset/File/GalleryFile/Photo/comment.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/download.t b/t/Asset/File/GalleryFile/Photo/download.t index 5f1ecbac1..6fa59fcd5 100644 --- a/t/Asset/File/GalleryFile/Photo/download.t +++ b/t/Asset/File/GalleryFile/Photo/download.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/edit.t b/t/Asset/File/GalleryFile/Photo/edit.t index 4d6110a50..480f06e15 100644 --- a/t/Asset/File/GalleryFile/Photo/edit.t +++ b/t/Asset/File/GalleryFile/Photo/edit.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/exif.t b/t/Asset/File/GalleryFile/Photo/exif.t index c523a089a..303065b0b 100644 --- a/t/Asset/File/GalleryFile/Photo/exif.t +++ b/t/Asset/File/GalleryFile/Photo/exif.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -46,7 +46,10 @@ my $photo { skipAutoCommitWorkflows => 1 }, ); $versionTag->commit; -my $exif = ImageInfo( WebGUI::Test->getTestCollateralPath("lamp.jpg") ); + +$photo->setFile( WebGUI::Test->getTestCollateralPath("lamp.jpg") ); + +my $exif = ImageInfo( $photo->getStorageLocation->getPath($photo->get('filename')) ); # Sanitize Exif data by removing keys with references as values for my $key ( keys %$exif ) { if ( ref $exif->{$key} ) { @@ -58,7 +61,6 @@ for my $key ( qw{ Directory } ) { delete $exif->{ $key }; } -$photo->setFile( WebGUI::Test->getTestCollateralPath("lamp.jpg") ); #---------------------------------------------------------------------------- # Cleanup diff --git a/t/Asset/File/GalleryFile/Photo/makeResolutions.t b/t/Asset/File/GalleryFile/Photo/makeResolutions.t index 954389ff8..aea2b61de 100644 --- a/t/Asset/File/GalleryFile/Photo/makeResolutions.t +++ b/t/Asset/File/GalleryFile/Photo/makeResolutions.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/makeShortcut.t b/t/Asset/File/GalleryFile/Photo/makeShortcut.t index fbef73ce2..eb74e6ce9 100644 --- a/t/Asset/File/GalleryFile/Photo/makeShortcut.t +++ b/t/Asset/File/GalleryFile/Photo/makeShortcut.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/permissions.t b/t/Asset/File/GalleryFile/Photo/permissions.t index 8973bad82..277037638 100644 --- a/t/Asset/File/GalleryFile/Photo/permissions.t +++ b/t/Asset/File/GalleryFile/Photo/permissions.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/setFile.t b/t/Asset/File/GalleryFile/Photo/setFile.t index 1967afccc..c76ca860b 100644 --- a/t/Asset/File/GalleryFile/Photo/setFile.t +++ b/t/Asset/File/GalleryFile/Photo/setFile.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/GalleryFile/Photo/view.t b/t/Asset/File/GalleryFile/Photo/view.t index 02fad63f4..a3ab68036 100644 --- a/t/Asset/File/GalleryFile/Photo/view.t +++ b/t/Asset/File/GalleryFile/Photo/view.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/Image.t b/t/Asset/File/Image.t index 5ba871768..bad2c80d4 100644 --- a/t/Asset/File/Image.t +++ b/t/Asset/File/Image.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/Image/setfile.t b/t/Asset/File/Image/setfile.t index 53089d413..0792b0699 100644 --- a/t/Asset/File/Image/setfile.t +++ b/t/Asset/File/Image/setfile.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/File/setfile.t b/t/Asset/File/setfile.t index 0aa14f7f5..88f61f1a7 100644 --- a/t/Asset/File/setfile.t +++ b/t/Asset/File/setfile.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/MatrixListing.t b/t/Asset/MatrixListing.t index 3ff5fd1a0..6e23b9577 100644 --- a/t/Asset/MatrixListing.t +++ b/t/Asset/MatrixListing.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Post.t b/t/Asset/Post.t index 3dbc51d83..7a0c8cf2a 100644 --- a/t/Asset/Post.t +++ b/t/Asset/Post.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Post/Thread/permission.t b/t/Asset/Post/Thread/permission.t index bc81e3ab7..ae474e959 100644 --- a/t/Asset/Post/Thread/permission.t +++ b/t/Asset/Post/Thread/permission.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Post/permission.t b/t/Asset/Post/permission.t index eb6891524..073722c77 100644 --- a/t/Asset/Post/permission.t +++ b/t/Asset/Post/permission.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Redirect/mech.t b/t/Asset/Redirect/mech.t index 7106d8003..b5a914430 100644 --- a/t/Asset/Redirect/mech.t +++ b/t/Asset/Redirect/mech.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Shortcut/000-create-delete.t b/t/Asset/Shortcut/000-create-delete.t index 456823b90..cacffd9b7 100644 --- a/t/Asset/Shortcut/000-create-delete.t +++ b/t/Asset/Shortcut/000-create-delete.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Shortcut/010-linked-asset.t b/t/Asset/Shortcut/010-linked-asset.t index ad68e7bb5..cb631ab38 100644 --- a/t/Asset/Shortcut/010-linked-asset.t +++ b/t/Asset/Shortcut/010-linked-asset.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Sku.t b/t/Asset/Sku.t index 9c0ed9d39..5ddc7f568 100644 --- a/t/Asset/Sku.t +++ b/t/Asset/Sku.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Sku/Donation.t b/t/Asset/Sku/Donation.t index 39a28e137..7e6e833d2 100644 --- a/t/Asset/Sku/Donation.t +++ b/t/Asset/Sku/Donation.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Sku/Product.t b/t/Asset/Sku/Product.t index 27b5fe889..4a13ca977 100644 --- a/t/Asset/Sku/Product.t +++ b/t/Asset/Sku/Product.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Sku/ProductCollateral.t b/t/Asset/Sku/ProductCollateral.t index 2a3dd674f..5ed86a964 100644 --- a/t/Asset/Sku/ProductCollateral.t +++ b/t/Asset/Sku/ProductCollateral.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -56,7 +56,7 @@ ok($session->id->valid($vid), 'a valid id was generated for the new collateral e my $json; $json = $product->get('variantsJSON'); -my $jsonData = decode_json($json); +my $jsonData = JSON::from_json($json); cmp_deeply( $jsonData, [ {a => 'aye', b => 'bee', vid => $vid } ], diff --git a/t/Asset/Snippet.t b/t/Asset/Snippet.t index 67de84ee7..4dc9f8c7e 100644 --- a/t/Asset/Snippet.t +++ b/t/Asset/Snippet.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Template.t b/t/Asset/Template.t index cc185f767..41a4151e2 100644 --- a/t/Asset/Template.t +++ b/t/Asset/Template.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Template/HTMLTemplateExpr.t b/t/Asset/Template/HTMLTemplateExpr.t index 156a3ca46..ad5c9ddd8 100644 --- a/t/Asset/Template/HTMLTemplateExpr.t +++ b/t/Asset/Template/HTMLTemplateExpr.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/WikiPage.t b/t/Asset/WikiPage.t index 2f445b2d9..4c54ecd27 100644 --- a/t/Asset/WikiPage.t +++ b/t/Asset/WikiPage.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Article.t b/t/Asset/Wobject/Article.t index 84910e00b..c3a0ca1d3 100644 --- a/t/Asset/Wobject/Article.t +++ b/t/Asset/Wobject/Article.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Calendar.t b/t/Asset/Wobject/Calendar.t index afe7e655b..e0910706f 100644 --- a/t/Asset/Wobject/Calendar.t +++ b/t/Asset/Wobject/Calendar.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Collaboration.t b/t/Asset/Wobject/Collaboration.t index b0e5474c5..ef7039417 100644 --- a/t/Asset/Wobject/Collaboration.t +++ b/t/Asset/Wobject/Collaboration.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Collaboration/permission.t b/t/Asset/Wobject/Collaboration/permission.t index 9ba5be474..c65e05d50 100644 --- a/t/Asset/Wobject/Collaboration/permission.t +++ b/t/Asset/Wobject/Collaboration/permission.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/DataForm/DataForm.t b/t/Asset/Wobject/DataForm/DataForm.t index ee6152272..3a587311b 100644 --- a/t/Asset/Wobject/DataForm/DataForm.t +++ b/t/Asset/Wobject/DataForm/DataForm.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/DataForm/diagnose.t b/t/Asset/Wobject/DataForm/diagnose.t index f0cddb866..43f6579ba 100644 --- a/t/Asset/Wobject/DataForm/diagnose.t +++ b/t/Asset/Wobject/DataForm/diagnose.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/DataForm/moveField.t b/t/Asset/Wobject/DataForm/moveField.t index a0e544ec5..7c744b400 100644 --- a/t/Asset/Wobject/DataForm/moveField.t +++ b/t/Asset/Wobject/DataForm/moveField.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/DataTable.t b/t/Asset/Wobject/DataTable.t index c0d01e1c9..4467db994 100644 --- a/t/Asset/Wobject/DataTable.t +++ b/t/Asset/Wobject/DataTable.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/EventManagementSystem.t b/t/Asset/Wobject/EventManagementSystem.t index 2eadf52c6..d5f21e63a 100644 --- a/t/Asset/Wobject/EventManagementSystem.t +++ b/t/Asset/Wobject/EventManagementSystem.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Gallery/00base.t b/t/Asset/Wobject/Gallery/00base.t index 28579cab5..615bc9c1c 100644 --- a/t/Asset/Wobject/Gallery/00base.t +++ b/t/Asset/Wobject/Gallery/00base.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Gallery/permission.t b/t/Asset/Wobject/Gallery/permission.t index f531ae239..8d8922add 100644 --- a/t/Asset/Wobject/Gallery/permission.t +++ b/t/Asset/Wobject/Gallery/permission.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/00base.t b/t/Asset/Wobject/GalleryAlbum/00base.t index a0c6dd7ea..9de44c814 100644 --- a/t/Asset/Wobject/GalleryAlbum/00base.t +++ b/t/Asset/Wobject/GalleryAlbum/00base.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/addArchive.t b/t/Asset/Wobject/GalleryAlbum/addArchive.t index ce59631fa..9673d90c8 100644 --- a/t/Asset/Wobject/GalleryAlbum/addArchive.t +++ b/t/Asset/Wobject/GalleryAlbum/addArchive.t @@ -1,6 +1,6 @@ # $vim: syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/delete.t b/t/Asset/Wobject/GalleryAlbum/delete.t index 19d5a40b0..a590a81e4 100644 --- a/t/Asset/Wobject/GalleryAlbum/delete.t +++ b/t/Asset/Wobject/GalleryAlbum/delete.t @@ -1,6 +1,6 @@ # $vim: syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/edit.t b/t/Asset/Wobject/GalleryAlbum/edit.t index 57cbff324..807d61691 100644 --- a/t/Asset/Wobject/GalleryAlbum/edit.t +++ b/t/Asset/Wobject/GalleryAlbum/edit.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/permission.t b/t/Asset/Wobject/GalleryAlbum/permission.t index 0a258bb4a..6529f9da7 100644 --- a/t/Asset/Wobject/GalleryAlbum/permission.t +++ b/t/Asset/Wobject/GalleryAlbum/permission.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/rss.t b/t/Asset/Wobject/GalleryAlbum/rss.t index 6042cbba8..c5433ea23 100644 --- a/t/Asset/Wobject/GalleryAlbum/rss.t +++ b/t/Asset/Wobject/GalleryAlbum/rss.t @@ -1,6 +1,6 @@ # $vim: syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/slideshow.t b/t/Asset/Wobject/GalleryAlbum/slideshow.t index bc7513a18..a264768ea 100644 --- a/t/Asset/Wobject/GalleryAlbum/slideshow.t +++ b/t/Asset/Wobject/GalleryAlbum/slideshow.t @@ -1,6 +1,6 @@ # $vim: syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/thumbnails.t b/t/Asset/Wobject/GalleryAlbum/thumbnails.t index 6a3201414..5d133b22c 100644 --- a/t/Asset/Wobject/GalleryAlbum/thumbnails.t +++ b/t/Asset/Wobject/GalleryAlbum/thumbnails.t @@ -1,6 +1,6 @@ # $vim: syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/GalleryAlbum/view.t b/t/Asset/Wobject/GalleryAlbum/view.t index 69d4ae2a0..36bc73785 100644 --- a/t/Asset/Wobject/GalleryAlbum/view.t +++ b/t/Asset/Wobject/GalleryAlbum/view.t @@ -1,6 +1,6 @@ # $vim: syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Matrix.t b/t/Asset/Wobject/Matrix.t index eaa90cee4..844d681b0 100644 --- a/t/Asset/Wobject/Matrix.t +++ b/t/Asset/Wobject/Matrix.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -107,7 +107,10 @@ isa_ok($matrixListing, 'WebGUI::Asset::MatrixListing'); $session->user({userId => 3}); my $json = $matrix->www_getCompareFormData('score'); -my $compareFormData = JSON->new->utf8->decode($json); +my $compareFormData = JSON->new->decode($json); + +my $expectedAssetId = $matrixListing->getId; +$expectedAssetId =~ s/-/_____/g; cmp_deeply( $compareFormData, @@ -117,7 +120,7 @@ cmp_deeply( lastUpdated=>$matrixListing->get('revisionDate'), clicks=>"0", compares=>"0", - assetId=>$matrixListing->getId, + assetId=>$expectedAssetId, url=>'/'.$matrixListing->get('url'), title=>$matrixListing->get('title') }] diff --git a/t/Asset/Wobject/Search.t b/t/Asset/Wobject/Search.t index febcdd507..931e62456 100644 --- a/t/Asset/Wobject/Search.t +++ b/t/Asset/Wobject/Search.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Shelf.t b/t/Asset/Wobject/Shelf.t index 712e70d33..ec4d0df4e 100644 --- a/t/Asset/Wobject/Shelf.t +++ b/t/Asset/Wobject/Shelf.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Survey/SurveyJSON.t b/t/Asset/Wobject/Survey/SurveyJSON.t index 78a6370c3..2470fca5c 100644 --- a/t/Asset/Wobject/Survey/SurveyJSON.t +++ b/t/Asset/Wobject/Survey/SurveyJSON.t @@ -1880,7 +1880,7 @@ cmp_deeply( verbatim => $index == 4 ? 1 : 0, recordedAnswer => $index++, }) - } 'Democratic party', 'Republican party (or GOP)', 'Independant party', 'Other party (verbatim)', + } 'Democratic party', 'Republican party (or GOP)', 'Independent party', 'Other party (verbatim)', ], 'updateQuestionAnswers: Party type' ); diff --git a/t/Asset/Wobject/SyndicatedContent.t b/t/Asset/Wobject/SyndicatedContent.t index 28c057ca2..cec27fb6b 100644 --- a/t/Asset/Wobject/SyndicatedContent.t +++ b/t/Asset/Wobject/SyndicatedContent.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Asset/Wobject/Thingy.t b/t/Asset/Wobject/Thingy.t index 537f2e796..9902a1c5f 100644 --- a/t/Asset/Wobject/Thingy.t +++ b/t/Asset/Wobject/Thingy.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -86,7 +86,7 @@ is($thingy->get('defaultThingId'),$thingId,"The Thingy assets defaultThingId was $session->user({userId => 3}); my $json = $thingy->www_getThingViaAjax($thingId); -my $dataFromJSON = JSON->new->utf8->decode($json); +my $dataFromJSON = JSON->new->decode($json); cmp_deeply( $dataFromJSON, @@ -127,7 +127,7 @@ cmp_deeply( # the newly created thing. $json = $thingy->www_getThingsViaAjax(); -$dataFromJSON = JSON->new->utf8->decode($json); +$dataFromJSON = JSON->new->decode($json); cmp_deeply( $dataFromJSON, @@ -220,7 +220,7 @@ cmp_deeply( ); $json = $thingy->www_viewThingDataViaAjax($thingId,$newThingDataId); -$dataFromJSON = JSON->new->utf8->decode($json); +$dataFromJSON = JSON->new->decode($json); cmp_deeply( $dataFromJSON, @@ -268,7 +268,7 @@ $thingy->deleteThingData($thingId,$newThingDataId); is($thingy->getViewThingVars($thingId,$newThingDataId),undef,'Thing data was succesfully deleted, getViewThingVars returns undef.'); $json = $thingy->www_viewThingDataViaAjax($thingId,$newThingDataId); -$dataFromJSON = JSON->new->utf8->decode($json); +$dataFromJSON = JSON->new->decode($json); cmp_deeply( $dataFromJSON, diff --git a/t/Asset/Wobject/UserList.t b/t/Asset/Wobject/UserList.t index f903d5a7e..4584c09e4 100644 --- a/t/Asset/Wobject/UserList.t +++ b/t/Asset/Wobject/UserList.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Auth.t b/t/Auth.t index 9761a306a..281fb010a 100644 --- a/t/Auth.t +++ b/t/Auth.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Auth/mech.t b/t/Auth/mech.t index a10a4d0fd..ea990256c 100644 --- a/t/Auth/mech.t +++ b/t/Auth/mech.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Cache/Database.t b/t/Cache/Database.t index dc2f98189..0d0fe1dfb 100644 --- a/t/Cache/Database.t +++ b/t/Cache/Database.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Cache/FileCache.t b/t/Cache/FileCache.t index d2d78fcb7..06861025d 100644 --- a/t/Cache/FileCache.t +++ b/t/Cache/FileCache.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Config.t b/t/Config.t index f78ea35f4..1e4f1d336 100644 --- a/t/Config.t +++ b/t/Config.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Content/Maintenance.t b/t/Content/Maintenance.t index 7fb875d58..49e6b41d0 100644 --- a/t/Content/Maintenance.t +++ b/t/Content/Maintenance.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Content/Setup.t b/t/Content/Setup.t index 1013a4672..2de56f16a 100644 --- a/t/Content/Setup.t +++ b/t/Content/Setup.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Crud.t b/t/Crud.t index 396b470eb..fc273f739 100644 --- a/t/Crud.t +++ b/t/Crud.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -37,7 +37,7 @@ WebGUI::Crud->crud_createTable($session); my $sth = $session->db->read("describe unnamed_crud_table"); my ($col, $type) = $sth->array(); is($col, 'id', "structure: id name"); -is($type, 'varchar(22)', "structure: id type"); +is($type, 'char(22)', "structure: id type"); ($col, $type) = $sth->array(); is($col, 'sequenceNumber', "structure: sequenceNumber name"); is($type, 'int(11)', "structure: sequenceNumber type"); diff --git a/t/DatabaseLink.t b/t/DatabaseLink.t index d860db50b..d8172b02e 100644 --- a/t/DatabaseLink.t +++ b/t/DatabaseLink.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/DateTime.t b/t/DateTime.t index f3232c161..6a841381c 100644 --- a/t/DateTime.t +++ b/t/DateTime.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form.t b/t/Form.t index f269434e8..870481467 100644 --- a/t/Form.t +++ b/t/Form.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/CheckList.t b/t/Form/CheckList.t index ea942e178..3d63df76e 100644 --- a/t/Form/CheckList.t +++ b/t/Form/CheckList.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Checkbox.t b/t/Form/Checkbox.t index c9d8277b3..172ca9da6 100644 --- a/t/Form/Checkbox.t +++ b/t/Form/Checkbox.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/ClassName.t b/t/Form/ClassName.t index 69097dbe3..86af6b924 100644 --- a/t/Form/ClassName.t +++ b/t/Form/ClassName.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/DataTable.t b/t/Form/DataTable.t index 88aa5c4f5..ada791856 100644 --- a/t/Form/DataTable.t +++ b/t/Form/DataTable.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Date.t b/t/Form/Date.t index 8fb45cedb..40086ca4f 100644 --- a/t/Form/Date.t +++ b/t/Form/Date.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/DateTime.t b/t/Form/DateTime.t index 70bf0b19d..f307a1e71 100644 --- a/t/Form/DateTime.t +++ b/t/Form/DateTime.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Email.t b/t/Form/Email.t index 04ffe12c2..ad1f906aa 100644 --- a/t/Form/Email.t +++ b/t/Form/Email.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Float.t b/t/Form/Float.t index 6219a831d..5e784d9ad 100644 --- a/t/Form/Float.t +++ b/t/Form/Float.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/GetName.t b/t/Form/GetName.t index 9711faaa4..03035b14c 100644 --- a/t/Form/GetName.t +++ b/t/Form/GetName.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Hidden.t b/t/Form/Hidden.t index bc2c2cb45..890a5ab1d 100644 --- a/t/Form/Hidden.t +++ b/t/Form/Hidden.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Integer.t b/t/Form/Integer.t index 338ac910b..eef164a00 100644 --- a/t/Form/Integer.t +++ b/t/Form/Integer.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/ListEquiv.t b/t/Form/ListEquiv.t index 96f166f4f..1713e8a6c 100644 --- a/t/Form/ListEquiv.t +++ b/t/Form/ListEquiv.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Password.t b/t/Form/Password.t index 62210ea8f..002a6e211 100644 --- a/t/Form/Password.t +++ b/t/Form/Password.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Phone.t b/t/Form/Phone.t index 12411759f..96d7bbe7c 100644 --- a/t/Form/Phone.t +++ b/t/Form/Phone.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/ProfileEnabled.t b/t/Form/ProfileEnabled.t index fb5321c83..e21a0c757 100644 --- a/t/Form/ProfileEnabled.t +++ b/t/Form/ProfileEnabled.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Radio.t b/t/Form/Radio.t index 6eb517ead..abb979f57 100644 --- a/t/Form/Radio.t +++ b/t/Form/Radio.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/SelectBox.t b/t/Form/SelectBox.t index b33ae2f0d..96c16a6b4 100644 --- a/t/Form/SelectBox.t +++ b/t/Form/SelectBox.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/SelectList.t b/t/Form/SelectList.t index 4961da8d8..8209fb5f4 100644 --- a/t/Form/SelectList.t +++ b/t/Form/SelectList.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/SelectRichEditor.t b/t/Form/SelectRichEditor.t index 12a9d9e78..5a8351813 100644 --- a/t/Form/SelectRichEditor.t +++ b/t/Form/SelectRichEditor.t @@ -1,6 +1,6 @@ # $vim: syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Text.t b/t/Form/Text.t index 3b4ff0131..d180c246d 100644 --- a/t/Form/Text.t +++ b/t/Form/Text.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Textarea.t b/t/Form/Textarea.t index 1aa97a92b..d01e80414 100644 --- a/t/Form/Textarea.t +++ b/t/Form/Textarea.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/TimeField.pm b/t/Form/TimeField.pm index 81aa56295..5cd7890d3 100644 --- a/t/Form/TimeField.pm +++ b/t/Form/TimeField.pm @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Url.t b/t/Form/Url.t index 926a402d5..b31cc8189 100644 --- a/t/Form/Url.t +++ b/t/Form/Url.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Form/Zipcode.t b/t/Form/Zipcode.t index 1a36aa592..c94a82145 100644 --- a/t/Form/Zipcode.t +++ b/t/Form/Zipcode.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Group.t b/t/Group.t index 3213c3d28..30cc99bc1 100644 --- a/t/Group.t +++ b/t/Group.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -384,7 +384,7 @@ cmp_bag($everyUsers, $everyoneGroup->getUsers(), 'addUsers will not add a user t ##Database based user membership in groups $session->db->dbh->do('DROP TABLE IF EXISTS myUserTable'); -$session->db->dbh->do(q!CREATE TABLE myUserTable (userId varchar(22) binary NOT NULL default '', PRIMARY KEY(userId)) TYPE=InnoDB!); +$session->db->dbh->do(q!CREATE TABLE myUserTable (userId CHAR(22) binary NOT NULL default '', PRIMARY KEY(userId)) TYPE=InnoDB!); my $sth = $session->db->prepare('INSERT INTO myUserTable VALUES(?)'); foreach my $mob (@mob) { diff --git a/t/HTML.t b/t/HTML.t index 0aabac308..c88a282e7 100644 --- a/t/HTML.t +++ b/t/HTML.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Help/compiled.t b/t/Help/compiled.t index 5077cb730..f98e8cb0e 100644 --- a/t/Help/compiled.t +++ b/t/Help/compiled.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Help/isa.t b/t/Help/isa.t index f06809e00..38eb0baac 100644 --- a/t/Help/isa.t +++ b/t/Help/isa.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Help/related.t b/t/Help/related.t index 742df0571..7ca1494e9 100644 --- a/t/Help/related.t +++ b/t/Help/related.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Inbox.t b/t/Inbox.t index 9d2e99109..87dfb6e28 100644 --- a/t/Inbox.t +++ b/t/Inbox.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/International.t b/t/International.t index 37cab41e3..2ed665dda 100644 --- a/t/International.t +++ b/t/International.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -21,7 +21,7 @@ my $session = WebGUI::Test->session; my $numTests = 1; ##For conditional load check my $langTests = 4; ##For language look-up tests -$numTests += 11 + $langTests; +$numTests += 12 + $langTests; plan tests => $numTests; @@ -35,7 +35,7 @@ my $i18n = WebGUI::International->new($session, undef, 'English'); isa_ok($i18n, 'WebGUI::International', 'object of correct type created'); -is($i18n->getNamespace(), undef, 'getNamespace: default namespace is undef'); +is($i18n->getNamespace(), 'WebGUI', 'getNamespace: default namespace is undef'); is($i18n->get('topicName'), 'WebGUI', 'get: get English label for topicName with default namespace: WebGUI'); $i18n->setNamespace('WebGUI'); @@ -73,9 +73,14 @@ SKIP: { ); is( $i18n->get('neverAValidKey','notAValidFile','PigLatin'), - '', + undef, 'Language check: key from non-existant file returns an empty string' ); + is( + $i18n->get('key with spaces in it','WebGUI','PigLatin'), + 'Key Contained Spaces', + 'keys with spaces work' + ); } diff --git a/t/Keyword.t b/t/Keyword.t index 02930fa01..c287ff7cf 100644 --- a/t/Keyword.t +++ b/t/Keyword.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro.t b/t/Macro.t index 58dd9fba8..620cb6b05 100644 --- a/t/Macro.t +++ b/t/Macro.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -43,7 +43,7 @@ foreach my $macro (qw/ } $session->config->addToHash('macros', "Ex'tras", "Extras"); -plan tests => 33; +plan tests => 35; my $macroText = "CompanyName: ^c;"; my $companyName = $session->setting->get('companyName'); @@ -200,6 +200,23 @@ is( "Carriage returns pass through as needed." ); +my $macroText = qq|^ReverseParams(1,'Single quoted parameters work properly',2);|; +WebGUI::Macro::process($session, \$macroText), +is( + $macroText, + "2Single quoted parameters work properly1", + "Single quoted parameters work properly." +); + +my $macroText = qq|^ReverseParams(1,'Escaped single\\' quotes work',2);|; +WebGUI::Macro::process($session, \$macroText), +is( + $macroText, + "2Escaped single' quotes work1", + "Escaped single quotes work." +); + + tie my %quotingEdges, 'Tie::IxHash'; %quotingEdges = ( '^VisualMacro(text);' => '@MacroCall[`text`]:', @@ -217,7 +234,7 @@ while (my ($inText, $outText) = each %quotingEdges) { is( $procText, $outText, - "Nesting edge case: $inText", + "Quoting/Nesting edge case: $inText", ); } diff --git a/t/Macro/AOIHits.t b/t/Macro/AOIHits.t index c35cf4883..cdd059a2b 100644 --- a/t/Macro/AOIHits.t +++ b/t/Macro/AOIHits.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/AOIRank.t b/t/Macro/AOIRank.t index 306dbdab2..901ba287f 100644 --- a/t/Macro/AOIRank.t +++ b/t/Macro/AOIRank.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/AdSpace.t b/t/Macro/AdSpace.t index a29b60a83..0699e3889 100644 --- a/t/Macro/AdSpace.t +++ b/t/Macro/AdSpace.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/AdminBar.t b/t/Macro/AdminBar.t index 6fb2ae3b5..2e844e210 100644 --- a/t/Macro/AdminBar.t +++ b/t/Macro/AdminBar.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/AdminText.t b/t/Macro/AdminText.t index 14cd11256..2b4c6ee74 100644 --- a/t/Macro/AdminText.t +++ b/t/Macro/AdminText.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/AdminToggle.t b/t/Macro/AdminToggle.t index 2bb92507d..63d572b4b 100644 --- a/t/Macro/AdminToggle.t +++ b/t/Macro/AdminToggle.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/AssetProxy.t b/t/Macro/AssetProxy.t index 166c93d0b..95f99752e 100644 --- a/t/Macro/AssetProxy.t +++ b/t/Macro/AssetProxy.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/At_username.t b/t/Macro/At_username.t index 756294c32..9e7135a7f 100644 --- a/t/Macro/At_username.t +++ b/t/Macro/At_username.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/CanEditText.t b/t/Macro/CanEditText.t index 05631cd55..c6007a2b6 100644 --- a/t/Macro/CanEditText.t +++ b/t/Macro/CanEditText.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/CartItemCount.t b/t/Macro/CartItemCount.t index 777a20163..94b9575e6 100644 --- a/t/Macro/CartItemCount.t +++ b/t/Macro/CartItemCount.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/D_date.t b/t/Macro/D_date.t index 1b26a2634..55221fd93 100644 --- a/t/Macro/D_date.t +++ b/t/Macro/D_date.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/EditableToggle.t b/t/Macro/EditableToggle.t index b06d1e657..a818adf23 100644 --- a/t/Macro/EditableToggle.t +++ b/t/Macro/EditableToggle.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Env.t b/t/Macro/Env.t index 8bba41746..1baa0c062 100644 --- a/t/Macro/Env.t +++ b/t/Macro/Env.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Execute.t b/t/Macro/Execute.t index d724d653f..6fb513a4b 100644 --- a/t/Macro/Execute.t +++ b/t/Macro/Execute.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Extras.t b/t/Macro/Extras.t index d4c139f7a..ba5cf3d85 100644 --- a/t/Macro/Extras.t +++ b/t/Macro/Extras.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/FetchMimeType.t b/t/Macro/FetchMimeType.t index 797167e32..5b40e0a6b 100644 --- a/t/Macro/FetchMimeType.t +++ b/t/Macro/FetchMimeType.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -19,51 +19,30 @@ use Test::More; # increment this value for each test you create my $session = WebGUI::Test->session; -use LWP::MediaTypes; - -my $recentModule = $LWP::MediaTypes::VERSION > 5.800; - my @testSets = ( { input => 'webgui.txt', - newput => 'text/plain', - oldput => 'text/plain', + output => 'text/plain', comment => q|text|, }, { input => 'plainblack.gif', - newput => 'image/gif', - oldput => 'image/gif', + output => 'image/gif', comment => q|gif|, }, { input => 'background.jpg', - newput => 'image/jpeg', - oldput => 'image/jpeg', + output => 'image/jpeg', comment => q|jpeg|, }, - { - input => 'colorPicker.js', - newput => 'application/x-javascript', - oldput => 'application/octet-stream', - comment => q|javascript|, - }, - { - input => 'favIcon.ico', - newput => 'image/vnd.microsoft.icon', - oldput => 'application/octet-stream', - comment => q|octet-stream for unknown type|, - }, { input => '', - newput => 'application/octet-stream', - oldput => 'application/octet-stream', + output => 'application/octet-stream', comment => q|Null path returns application/octet-stream|, }, { input => undef, - newput => undef, - oldput => undef, + output => undef, comment => q|Undef path returns undef|, }, ); @@ -86,8 +65,7 @@ foreach my $testSet (@testSets) { ? join '/', WebGUI::Test->root, 'www/extras', $testSet->{input} : $testSet->{input}; my $output = WebGUI::Macro::FetchMimeType::process($session, $file); - my $expected = $recentModule ? $testSet->{newput} : $testSet->{oldput}; - is($output, $expected, $testSet->{comment} ); + is($output, $testSet->{output}, $testSet->{comment} ); } } diff --git a/t/Macro/FileUrl.t b/t/Macro/FileUrl.t index 1f20a6c46..6d4cdb605 100644 --- a/t/Macro/FileUrl.t +++ b/t/Macro/FileUrl.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/FormParam.t b/t/Macro/FormParam.t index 6ac46fcea..4040fd15f 100644 --- a/t/Macro/FormParam.t +++ b/t/Macro/FormParam.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/GroupAdd.t b/t/Macro/GroupAdd.t index 4d3d885e8..0c0e36e42 100644 --- a/t/Macro/GroupAdd.t +++ b/t/Macro/GroupAdd.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/GroupDelete.t b/t/Macro/GroupDelete.t index 5029ad92a..f97325eea 100644 --- a/t/Macro/GroupDelete.t +++ b/t/Macro/GroupDelete.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/GroupText.t b/t/Macro/GroupText.t index 32f2268cc..fa9d701d3 100644 --- a/t/Macro/GroupText.t +++ b/t/Macro/GroupText.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -56,7 +56,7 @@ is($output, 'Group Not a Group was not found', 'Non-existant group returns an er ##Create a small database $session->db->dbh->do('DROP TABLE IF EXISTS myUserTable'); -$session->db->dbh->do(q!CREATE TABLE myUserTable (userId varchar(22) binary NOT NULL default '', PRIMARY KEY(userId)) TYPE=InnoDB!); +$session->db->dbh->do(q!CREATE TABLE myUserTable (userId CHAR(22) binary NOT NULL default '', PRIMARY KEY(userId)) TYPE=InnoDB!); ##Create a bunch of users and put them in the table. diff --git a/t/Macro/H_homeLink.t b/t/Macro/H_homeLink.t index f8f201dea..195afd777 100644 --- a/t/Macro/H_homeLink.t +++ b/t/Macro/H_homeLink.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Hash_userId.t b/t/Macro/Hash_userId.t index 9835418b9..064c25465 100644 --- a/t/Macro/Hash_userId.t +++ b/t/Macro/Hash_userId.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Include.t b/t/Macro/Include.t index 02a0c5f7d..436b28911 100644 --- a/t/Macro/Include.t +++ b/t/Macro/Include.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/International.t b/t/Macro/International.t index da117740d..5aa5b97dd 100644 --- a/t/Macro/International.t +++ b/t/Macro/International.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/L_loginBox.t b/t/Macro/L_loginBox.t index 1aa6b5b91..5d4be0c84 100644 --- a/t/Macro/L_loginBox.t +++ b/t/Macro/L_loginBox.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/LastModified.t b/t/Macro/LastModified.t index 589a58708..285a9219c 100644 --- a/t/Macro/LastModified.t +++ b/t/Macro/LastModified.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/LoginToggle.t b/t/Macro/LoginToggle.t index 2f75efa52..da2f69a6b 100644 --- a/t/Macro/LoginToggle.t +++ b/t/Macro/LoginToggle.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/MiniCart.t b/t/Macro/MiniCart.t index 6c08d4173..14ef3d2bf 100644 --- a/t/Macro/MiniCart.t +++ b/t/Macro/MiniCart.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Page.t b/t/Macro/Page.t index f5128bbc2..0654a366d 100644 --- a/t/Macro/Page.t +++ b/t/Macro/Page.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/PageTitle.t b/t/Macro/PageTitle.t index 6d7edaf8c..58d7401ec 100644 --- a/t/Macro/PageTitle.t +++ b/t/Macro/PageTitle.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/PageUrl.t b/t/Macro/PageUrl.t index 2958f362f..1a9a43d0b 100644 --- a/t/Macro/PageUrl.t +++ b/t/Macro/PageUrl.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Quote.t b/t/Macro/Quote.t index 1d64a0e72..a92838f18 100644 --- a/t/Macro/Quote.t +++ b/t/Macro/Quote.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/RandomAssetProxy.t b/t/Macro/RandomAssetProxy.t index 01ea51c1a..b56da64eb 100644 --- a/t/Macro/RandomAssetProxy.t +++ b/t/Macro/RandomAssetProxy.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/RandomThread.t b/t/Macro/RandomThread.t index 4e3844280..c7a93a258 100644 --- a/t/Macro/RandomThread.t +++ b/t/Macro/RandomThread.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/RootTitle.t b/t/Macro/RootTitle.t index 7cb11bbe9..16a82ca56 100644 --- a/t/Macro/RootTitle.t +++ b/t/Macro/RootTitle.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/SQL.t b/t/Macro/SQL.t index a9b809487..720536728 100644 --- a/t/Macro/SQL.t +++ b/t/Macro/SQL.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/SessionId.t b/t/Macro/SessionId.t index 736f0dd00..e2ca4df69 100644 --- a/t/Macro/SessionId.t +++ b/t/Macro/SessionId.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Slash_gatewayUrl.t b/t/Macro/Slash_gatewayUrl.t index 8d153ce8e..6c51bc9b1 100644 --- a/t/Macro/Slash_gatewayUrl.t +++ b/t/Macro/Slash_gatewayUrl.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Spacer.t b/t/Macro/Spacer.t index b62bdc54a..6ef495fc8 100644 --- a/t/Macro/Spacer.t +++ b/t/Macro/Spacer.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Splat_random.t b/t/Macro/Splat_random.t index 8587ab1cd..13a0676db 100644 --- a/t/Macro/Splat_random.t +++ b/t/Macro/Splat_random.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/Thumbnail.t b/t/Macro/Thumbnail.t index a06a13aa4..c89b04d23 100644 --- a/t/Macro/Thumbnail.t +++ b/t/Macro/Thumbnail.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/URLEncode.t b/t/Macro/URLEncode.t index d77e735fc..f5c21668b 100644 --- a/t/Macro/URLEncode.t +++ b/t/Macro/URLEncode.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/User.t b/t/Macro/User.t index 88351d5a0..73003f884 100644 --- a/t/Macro/User.t +++ b/t/Macro/User.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/UsersOnline.t b/t/Macro/UsersOnline.t index 2f7399db3..089699c23 100644 --- a/t/Macro/UsersOnline.t +++ b/t/Macro/UsersOnline.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/ViewCart.t b/t/Macro/ViewCart.t index 82c8aaab4..5a2574f3e 100644 --- a/t/Macro/ViewCart.t +++ b/t/Macro/ViewCart.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/a_account.t b/t/Macro/a_account.t index fce9e2960..f48ae78ee 100644 --- a/t/Macro/a_account.t +++ b/t/Macro/a_account.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/c_companyName.t b/t/Macro/c_companyName.t index e0c264939..ff0174f53 100644 --- a/t/Macro/c_companyName.t +++ b/t/Macro/c_companyName.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/e_companyEmail.t b/t/Macro/e_companyEmail.t index 2b0834a50..aa1205cc7 100644 --- a/t/Macro/e_companyEmail.t +++ b/t/Macro/e_companyEmail.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/r_printable.t b/t/Macro/r_printable.t index 595e88815..fad6c982d 100644 --- a/t/Macro/r_printable.t +++ b/t/Macro/r_printable.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Macro/u_companyUrl.t b/t/Macro/u_companyUrl.t index 8065541b3..2149df6a1 100644 --- a/t/Macro/u_companyUrl.t +++ b/t/Macro/u_companyUrl.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Mail/Send.t b/t/Mail/Send.t index 534650485..29b522124 100644 --- a/t/Mail/Send.t +++ b/t/Mail/Send.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Operation/AdSpace.t b/t/Operation/AdSpace.t index cc8888521..eff95ceb3 100644 --- a/t/Operation/AdSpace.t +++ b/t/Operation/AdSpace.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Operation/Auth.t b/t/Operation/Auth.t index 0535e63ba..a0d5c8e34 100644 --- a/t/Operation/Auth.t +++ b/t/Operation/Auth.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/POD.t b/t/POD.t index ecf746ff3..5564b433c 100644 --- a/t/POD.t +++ b/t/POD.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Paginator.t b/t/Paginator.t index 4cef079d0..f1c16d90d 100644 --- a/t/Paginator.t +++ b/t/Paginator.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -20,15 +20,17 @@ use WebGUI::Paginator; use Test::More; # increment this value for each test you create use Test::Deep; use POSIX qw(ceil); +use Storable qw/dclone/; +use Data::Dumper; my $session = WebGUI::Test->session; +plan tests => 26; # increment this value for each test you create + my $startingRowNum = 0; my $endingRowNum = 99; my @paginatingData = ($startingRowNum..$endingRowNum); -plan tests => 15; # increment this value for each test you create - my $rowCount = $endingRowNum - $startingRowNum + 1; my $NumberOfPages = ceil($rowCount/25); ##Default page size=25 my $url = "/home"; @@ -47,7 +49,26 @@ cmp_bag([0..24], $p->getPageData(1), 'page 1 data correct'); cmp_bag([25..49], $p->getPageData(2), 'page 2 data correct'); cmp_bag([ ], $p->getPageData(5), 'page 5 data correct'); -# Test getPageLinks +######################################################################## +# +# getPageNumber, setPageNumber +# +######################################################################## + +my $p2 = WebGUI::Paginator->new($session, '/work'); + +is($p2->getPageNumber, 1, 'pageNumber set to 1 at object creation by default'); +is($p2->setPageNumber(0), 0, 'setPageNumber returns the page number set'); +is($p2->getPageNumber, 0, 'pageNumber set by setPageNumber'); +is($p2->setPageNumber(3), 3, 'setPageNumber returns the page number set'); +is($p2->getPageNumber, 3, 'pageNumber set by setPageNumber'); + +######################################################################## +# +# getPageLinks +# +######################################################################## + my $expectedPages; $expectedPages = [ map { +{ 'pagination.text' => ( $_ + 1 ), @@ -63,7 +84,6 @@ cmp_deeply( 'page links correct', ); - $startingRowNum = 0; $endingRowNum = 100; @paginatingData = ($startingRowNum..$endingRowNum); @@ -78,7 +98,7 @@ $p->setDataByArrayRef(\@paginatingData); is($p->getRowCount, $rowCount, '(101) paginator returns correct number of rows'); is($p->getNumberOfPages, $NumberOfPages, '(101) paginator returns right number of pages (default setting)'); -my $page1Data = $p->getPageData(1); +$page1Data = $p->getPageData(1); cmp_bag([0..24], $p->getPageData(1), '(101) page 1 data correct'); cmp_bag([25..49], $p->getPageData(2), '(101) page 2 data correct'); cmp_bag([100 ], $p->getPageData(5), '(101) page 5 data correct'); @@ -95,11 +115,105 @@ $expectedPages = [ map { +{ $expectedPages->[0]->{'pagination.activePage'} = 'true'; +######################################################################## +# +# getPageLinks with limits +# +######################################################################## -# Test getPageLinks cmp_deeply( ($p->getPageLinks)[0], $expectedPages, - 'page links correct', + 'set of 5 pages looks right', ); +$startingRowNum = 0; +$endingRowNum = 199; +@paginatingData = ($startingRowNum..$endingRowNum); + + +$p = WebGUI::Paginator->new($session, '/home', 10); + +$rowCount = $endingRowNum - $startingRowNum + 1; +$NumberOfPages = ceil($rowCount/10); ##Default page size=25 + +$p->setDataByArrayRef(\@paginatingData); + +$expectedPages = [ map { +{ + 'pagination.text' => ( $_ + 1 ), + 'pagination.range' => ( 10 * $_ + 1 ) . "-" . ( $_ * 10 + 10 <= $endingRowNum + 1 ? $_ * 10 + 10 : $endingRowNum + 1 ), # First row number - Last row number + 'pagination.url' => ( '/home?pn=' . ( $_ + 1 ) ), # Current page has no URL + } } (0..$NumberOfPages-1) ]; + + +my $copy; +$copy = dclone($expectedPages); +$copy->[0]->{'pagination.activePage'} = 'true'; +$copy->[0]->{'pagination.url'} = ''; + +cmp_deeply( + ($p->getPageLinks)[0], + $copy, + 'set of 20 pages looks right', +); + +my @pageWindow; +$copy = dclone($expectedPages); +$copy->[0]->{'pagination.activePage'} = 'true'; +$copy->[0]->{'pagination.url'} = ''; +@pageWindow = @{ $copy }[0..9]; + +cmp_deeply( + ($p->getPageLinks(10))[0], + \@pageWindow, + 'set of first 10 pages selected correctly', +); + +$p->setPageNumber(10); +my $copy = dclone($expectedPages); +$copy->[9]->{'pagination.activePage'} = 'true'; +$copy->[9]->{'pagination.url'} = ''; +@pageWindow = @{ $copy }[4..13]; + +cmp_deeply( + ($p->getPageLinks(10))[0], + \@pageWindow, + 'set of middle 10 pages @10 selected correctly', +); + +$p->setPageNumber(3); +my $copy = dclone($expectedPages); +$copy->[2]->{'pagination.activePage'} = 'true'; +$copy->[2]->{'pagination.url'} = ''; +delete $copy->[0]->{'pagination.activePage'}; +@pageWindow = @{ $copy }[0..9]; + +cmp_deeply( + ($p->getPageLinks(10))[0], + \@pageWindow, + 'set of 10 pages selected correctly, with off edge page number (3/20)', +); + +$p->setPageNumber(17); +my $copy = dclone($expectedPages); +$copy->[16]->{'pagination.activePage'} = 'true'; +$copy->[16]->{'pagination.url'} = ''; +@pageWindow = @{ $copy }[10..19]; + +cmp_deeply( + ($p->getPageLinks(10))[0], + \@pageWindow, + 'set of last 10 pages selected correctly, (17/20)', +); + +$p->setPageNumber(20); +my $copy = dclone($expectedPages); +$copy->[19]->{'pagination.activePage'} = 'true'; +$copy->[19]->{'pagination.url'} = ''; +@pageWindow = @{ $copy }[10..19]; + +cmp_deeply( + ($p->getPageLinks(10))[0], + \@pageWindow, + 'set of last 10 pages selected correctly, (20/20)', +); diff --git a/t/PassiveProfiling.t b/t/PassiveProfiling.t index dd84bf510..e618f4a1b 100644 --- a/t/PassiveProfiling.t +++ b/t/PassiveProfiling.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Pluggable.t b/t/Pluggable.t index 5de76199c..f705407da 100644 --- a/t/Pluggable.t +++ b/t/Pluggable.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/PodChecker.t b/t/PodChecker.t index 1bc1dc7e3..785c6b55a 100644 --- a/t/PodChecker.t +++ b/t/PodChecker.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/ProfileCategory.t b/t/ProfileCategory.t new file mode 100644 index 000000000..0c0a560e6 --- /dev/null +++ b/t/ProfileCategory.t @@ -0,0 +1,46 @@ +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2008 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------- +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------- + +use FindBin; +use strict; +use lib "$FindBin::Bin/lib"; +use WebGUI::Test; +use WebGUI::Session; + +use WebGUI::ProfileCategory; + +use Test::More tests => 1; # increment this value for each test you create +use Test::Deep; + +my $session = WebGUI::Test->session; + +################################################################### +# +# getCategories +# +################################################################### + +my $categories = WebGUI::ProfileCategory->getCategories($session); + +my @labels = map { $_->getLabel } @{ $categories }; + +my %originalProperties = %{ $categories->[0]->get }; +my %properties = %originalProperties; +$properties{visible} = 0; +$categories->[0]->set(\%properties); + +my $newCategories = WebGUI::ProfileCategory->getCategories($session); +my @newLabels = map { $_->getLabel } @{ $newCategories }; + +cmp_bag(\@newLabels, \@labels, 'Setting a category to not be visible does not change its availability through getCategories, with no options'); + +END { + $categories->[0]->set(\%originalProperties); +} diff --git a/t/ProfileField.t b/t/ProfileField.t index 9c234c314..16ae27df3 100644 --- a/t/ProfileField.t +++ b/t/ProfileField.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/SQL.t b/t/SQL.t index 3323cf5a4..3150a6327 100644 --- a/t/SQL.t +++ b/t/SQL.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -164,7 +164,7 @@ SKIP: { skip("No InnoDB tables in this MySQL. Skipping all transaction related tests.",7) if (lc $mysqlVariables{have_innodb} ne 'yes'); $session->db->dbh->do('DROP TABLE IF EXISTS testTable'); - $session->db->dbh->do('CREATE TABLE testTable (myIndex int(8) NOT NULL default 0, message varchar(64), PRIMARY KEY(myIndex)) TYPE=InnoDB'); + $session->db->dbh->do('CREATE TABLE testTable (myIndex int(8) NOT NULL default 0, message CHAR(64), PRIMARY KEY(myIndex)) TYPE=InnoDB'); my $dbh2 = WebGUI::SQL->connect($session,$session->config->get("dsn"), $session->config->get("dbuser"), $session->config->get("dbpass")); my ($sth, $sth2, $rc); @@ -215,7 +215,7 @@ SKIP: { } -$session->db->dbh->do('CREATE TABLE testTable (myIndex int(8) NOT NULL default 0, message varchar(64), myKey varchar(32), PRIMARY KEY(myIndex))'); +$session->db->dbh->do('CREATE TABLE testTable (myIndex int(8) NOT NULL default 0, message CHAR(64), myKey varchar(32), PRIMARY KEY(myIndex))'); my @tableData = ( [ 0, 'zero', 'A' ], diff --git a/t/Session.t b/t/Session.t index 04085bd64..269d470a6 100644 --- a/t/Session.t +++ b/t/Session.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/CheckClient.t b/t/Session/CheckClient.t new file mode 100644 index 000000000..6071bbabc --- /dev/null +++ b/t/Session/CheckClient.t @@ -0,0 +1,206 @@ +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------- +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------- + +# this test can take two parameters +# first is an xml file, second indicates +# the percentage of items to test. +# the xml file can be downloaded from +# http://www.user-agents.org/ +# the percent will default to 25 and +# should be passed as a whole number +# so 100 will test all items, 75 will +# test 75% or 3 out of four items + +use FindBin; +use strict; +use lib "$FindBin::Bin/lib"; +use lib '/data/WebGUI/t/lib'; + +use WebGUI::Test; +use WebGUI::Session; + +use Test::More; + +my $session = WebGUI::Test->session; + +# this test is for code in the WebGUI::Session::Env Module + +my @testArray = ( + { + agent => "", + output => 1, + comment => "blank user agent" + }, + { + agent => "<a href='http://www.unchaos.com/'> UnChaos </a> From Chaos To Order Hybrid Web Search Engine.(vadim_goncharunchaos.com)", + output => 1, + comment => "UnChaos hybrid search engine" + }, + { + agent => "(DreamPassport/3.0; isao/MyDiGiRabi)", + output => 0, + comment => "DreamCast DreamPassport browser" + }, + { + agent => "Privoxy web proxy", # I think proxy's whould be considered browsers? + output => 0, + comment => "s.also Privoxy/3.0 (Anonymous)" + }, + { + agent => "*/Nutch-0.9-dev", + address => "123.113.184.232", + output => 1, + comment => "Unknown Yahoo robot" + }, + { + agent => "123spider-Bot (Version: 1.02, powered by www.123spider.de", + output => 1, + comment => "123spider.de (Germany) web directory link checking" + }, + { + agent => "1st ZipCommander (Net) - http://www.zipcommander.com/", + output => 0, + comment => "1st ZipCommander Net - IE based browser" + }, + { + agent => "2Bone_LinkChecker/1.0 libwww-perl/5.64", + output => 1, + comment => "2Bone online link checker" + }, + { + agent => "A-Online Search", + output => 1, + comment => "A-Online.at robot - now Jet2Web Search" + }, + { + agent => "Advanced Browser (http://www.avantbrowser.com)", + output => 0, + comment => "Avant Browser - IE based browser" + }, + { + agent => "AESOP_com_SpiderMan", + output => 1, + comment => "Aesop robot" + }, + { + agent => "Mozilla/5.0 (compatible; SpurlBot/0.2)", + output => 1, + comment => "Spurl.net bookmark service & search engine (84.40.30.xxx)" + }, + { + agent => "Mozilla/5.0 (compatible;MAINSEEK_BOT)", + output => 1, + comment => "Mozilla/5.0 (compatible;MAINSEEK_BOT)" + }, + { + agent => "Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.0.1) Gecko/20021219 Chimera/0.6", + output => 0, + comment => "Chimera browser (Mozilla/Gecko engine) - now Camino Mac PowerPC" + }, + { + agent => "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/xx (KHTML like Gecko) OmniWeb/v5xx.xx", + output => 0, + comment => "OmniWeb 5.x.x Mac OS X browser" + }, + { + agent => "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x", + output => 0, + comment => "Firefox browser (Mozilla/Gecko engine) - ex Firebird WinXP" + }, + { + agent => "Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1) VoilaBot BETA 1.2 (support.voilabotorange-ftgroup.com)", + output => 1, + comment => "Voila.fr robot" + }, + { + agent => "Mozilla/5.0 (Windows;) NimbleCrawler 1.12 obeys UserAgent NimbleCrawler For problems contact: crawlerhealth", + output => 1, + comment => "Healthline health related search robot (72.5.115.xx)" + }, + { + agent => "Mozilla/5.0 (X11; U; Linux i686; de-AT; rv:1.8.0.2) Gecko/20060309 SeaMonkey/1.0", + output => 0, + comment => "SeaMonkey browser suite (ex Mozilla) on Linux" + }, + { + agent => "Mozilla/5.0 [en] (compatible; Gulper Web Bot 0.2.4 www.ecsl.cs.sunysb.edu/~maxim/cgi-bin/Link/GulperBot)", + output => 1, + comment => "Yuntis : Collaborative Web Resource Categorization and Ranking Project robot" + }, +); + +sub transType { + return 0 if $_[0] =~ /(B|P)/; # browser or proxy + return 1; +} + +sub getAddress { # There are precious few that have an IP that can be gotten out of the XML so I decided to skip this. + my $x = '69.42.78.32'; + #if( $_[0]{Comment} =~ /\d\.\d\.\d/ ) { + # print $_[0]{Comment},"\t|\t",$_[0]{Description},"\n"; + # $x = $_[0]{Comment}; + # $x =~ s/x/2/; + #} + return $x; +} + +sub testCount { + + if( @ARGV ) { + if( $ARGV[0] =~ /\.xml$/ && -r $ARGV[0] ) { + my $infile = shift @ARGV ; + my $percent = shift @ARGV || 25; + use XML::Simple; + my $xml = new XML::Simple; + my $data = $xml->XMLin($infile); + # use Data::Dumper; + # print Dumper $data; + @testArray = (); + my $c = 1; + my $div = 20; + my $n = $div * $percent / 100; + foreach my $set (@{$data->{'user-agent'}}) { + $c = 1 if $c > $div; + if( $c <= $n ) { + push @testArray, { + agent => $set->{String}, + output => transType($set->{Type}), + type => $set->{Type}, + comment => $set->{Description}, + # comment => $set->{String}, # this is handy for fine tuning the code: it shows the string that failed... + address => getAddress($set), + }; + } + $c ++; + } + # use Data::Dumper; + # print Dumper \@testArray; + } + } + return scalar(@testArray); +} + + +plan tests => testCount() ; + +my $output; +foreach my $testSet (@testArray) { + $output = FAKE_ENV->new( $testSet->{agent}, + $testSet->{address} || '69.42.78.32') + ->requestNotViewed(); + is($output, $testSet->{output}, $testSet->{comment}); +} + +{ # this is a local fake of the session, used for testing only +package FAKE_ENV; +use base 'WebGUI::Session::Env'; +sub new { shift; return bless { _env => { HTTP_USER_AGENT => $_[0], REMOTE_ADDR => $_[1] } }, __PACKAGE__; } +} + diff --git a/t/Session/DateTime.t b/t/Session/DateTime.t index 847617cdb..b4e001089 100644 --- a/t/Session/DateTime.t +++ b/t/Session/DateTime.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Env.t b/t/Session/Env.t index e0c2e2084..7c1d71133 100644 --- a/t/Session/Env.t +++ b/t/Session/Env.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/ErrorHandler.t b/t/Session/ErrorHandler.t index cf60f78f2..0a7806c0c 100644 --- a/t/Session/ErrorHandler.t +++ b/t/Session/ErrorHandler.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -18,7 +18,7 @@ use WebGUI::Session; use Test::More; use Test::MockObject::Extends; -my $numTests = 37; +my $numTests = 39; plan tests => $numTests; @@ -153,23 +153,29 @@ my $origDebugIp = $session->setting->get('debugIp'); my $origShowDebug = $session->setting->get('showDebug'); $session->setting->set('showDebug', 0); -is($eh->canShowDebug, 0, 'canShowDebug: returns 0 if not enabled'); +delete $eh->{_canShowDebug}; +ok(! $eh->canShowDebug, 'canShowDebug: returns 0 if not enabled'); $session->setting->set('showDebug', 1); $session->http->setMimeType('audio/mp3'); -is($eh->canShowDebug, 0, 'canShowDebug: returns 0 if mime type is wrong'); +delete $eh->{_canShowDebug}; +ok(! $eh->canShowDebug, 'canShowDebug: returns 0 if mime type is wrong'); $session->http->setMimeType('text/html'); $session->setting->set('debugIp', ''); -is($eh->canShowDebug, 1, 'canShowDebug: returns 1 if debugIp is empty string'); +delete $eh->{_canShowDebug}; +ok($eh->canShowDebug, 'canShowDebug: returns 1 if debugIp is empty string'); $session->setting->set('debugIp', '10.0.0.5/32, 192.168.0.4/30'); $newEnv{REMOTE_ADDR} = '172.17.0.5'; -is($eh->canShowDebug, 0, 'canShowDebug: returns 0 if debugIp is set and IP address is out of filter'); +delete $eh->{_canShowDebug}; +ok(! $eh->canShowDebug, 'canShowDebug: returns 0 if debugIp is set and IP address is out of filter'); $newEnv{REMOTE_ADDR} = '10.0.0.5'; -is($eh->canShowDebug, 1, 'canShowDebug: returns 1 if debugIp is set and IP address matches filter'); +delete $eh->{_canShowDebug}; +ok($eh->canShowDebug, 'canShowDebug: returns 1 if debugIp is set and IP address matches filter'); $newEnv{REMOTE_ADDR} = '192.168.0.5'; -is($eh->canShowDebug, 1, 'canShowDebug: returns 1 if debugIp is set and IP address matches filter'); +delete $eh->{_canShowDebug}; +ok($eh->canShowDebug, 'canShowDebug: returns 1 if debugIp is set and IP address matches filter'); #################################################### # @@ -217,6 +223,25 @@ foreach my $entry (qw/_debug_error _debug_warn _debug_info _debug_debug/) { my $showDebug = $eh->showDebug; +#################################################### +# +# fatal, stub +# +#################################################### + +my $newSession = WebGUI::Session->open(WebGUI::Test::root, WebGUI::Test::file); +my $outputBuffer; +open my $outputHandle, '>', \$outputBuffer or die "Unable to create scalar filehandle: $!\n"; +$newSession->output->setHandle($outputHandle); +WEBGUI_FATAL: { + $newSession->log->fatal(); +} +ok(1, 'fatal: recovered from fatal okay'); +TODO: { + local $TODO = 'Validate the fatal output'; + ok(0, 'output from fatal when there is a db handler and request present'); +} + END { $session->setting->set('debugIp', $origDebugIp); $session->setting->set('showDebug', $origShowDebug); diff --git a/t/Session/Http.t b/t/Session/Http.t index 5122620e8..8ac64f6c0 100644 --- a/t/Session/Http.t +++ b/t/Session/Http.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Icon.t b/t/Session/Icon.t index 7c0d47879..75d53ef27 100644 --- a/t/Session/Icon.t +++ b/t/Session/Icon.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Id.t b/t/Session/Id.t index b89b7ac23..175488949 100644 --- a/t/Session/Id.t +++ b/t/Session/Id.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Os.t b/t/Session/Os.t index 3225ca067..9fd1f7bfb 100644 --- a/t/Session/Os.t +++ b/t/Session/Os.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Output.t b/t/Session/Output.t index be3d992ac..539ed9190 100644 --- a/t/Session/Output.t +++ b/t/Session/Output.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Privilege.t b/t/Session/Privilege.t index 2b865036c..9868f853a 100644 --- a/t/Session/Privilege.t +++ b/t/Session/Privilege.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Scratch.t b/t/Session/Scratch.t index d95cd3457..2cea64f23 100644 --- a/t/Session/Scratch.t +++ b/t/Session/Scratch.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Setting.t b/t/Session/Setting.t index a10f79bf8..29a6a657e 100644 --- a/t/Session/Setting.t +++ b/t/Session/Setting.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Stow.t b/t/Session/Stow.t index 25aa216f0..84fa329ac 100644 --- a/t/Session/Stow.t +++ b/t/Session/Stow.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Style.t b/t/Session/Style.t index 98be9561f..b23eeb617 100644 --- a/t/Session/Style.t +++ b/t/Session/Style.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Url.t b/t/Session/Url.t index 8c42669e9..437debc84 100644 --- a/t/Session/Url.t +++ b/t/Session/Url.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Session/Var.t b/t/Session/Var.t index 9e49176d4..bc78f4dc9 100644 --- a/t/Session/Var.t +++ b/t/Session/Var.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/Address.t b/t/Shop/Address.t index 2266b78cf..b27f64142 100644 --- a/t/Shop/Address.t +++ b/t/Shop/Address.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/AddressBook.t b/t/Shop/AddressBook.t index f63959fea..658fa69ed 100644 --- a/t/Shop/AddressBook.t +++ b/t/Shop/AddressBook.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/Cart.t b/t/Shop/Cart.t index 9ab4e368c..e13b21dee 100644 --- a/t/Shop/Cart.t +++ b/t/Shop/Cart.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/Pay.t b/t/Shop/Pay.t index 3d4d97df4..fd139a52d 100644 --- a/t/Shop/Pay.t +++ b/t/Shop/Pay.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/PayDriver.t b/t/Shop/PayDriver.t index 077c82195..9a29dbf14 100644 --- a/t/Shop/PayDriver.t +++ b/t/Shop/PayDriver.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/Ship.t b/t/Shop/Ship.t index 2784e4d89..354b35855 100644 --- a/t/Shop/Ship.t +++ b/t/Shop/Ship.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/ShipDriver.t b/t/Shop/ShipDriver.t index b22ca03dc..5658394ed 100644 --- a/t/Shop/ShipDriver.t +++ b/t/Shop/ShipDriver.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/ShipDriver/FlatRate.t b/t/Shop/ShipDriver/FlatRate.t index a9e03b95a..8d193b3b2 100644 --- a/t/Shop/ShipDriver/FlatRate.t +++ b/t/Shop/ShipDriver/FlatRate.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/Tax.t b/t/Shop/Tax.t index 2f758e268..94e458e36 100644 --- a/t/Shop/Tax.t +++ b/t/Shop/Tax.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/Transaction.t b/t/Shop/Transaction.t index 4a42a9a65..47e9ffc24 100644 --- a/t/Shop/Transaction.t +++ b/t/Shop/Transaction.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -30,7 +30,7 @@ my $session = WebGUI::Test->session; #---------------------------------------------------------------------------- # Tests -plan tests => 66; # Increment this number for each test you create +plan tests => 67; # Increment this number for each test you create #---------------------------------------------------------------------------- # put your tests here @@ -111,6 +111,7 @@ is($transaction->get("isSuccessful"), 1,"update and get isSuccessful"); is($transaction->get("transactionCode"), 'yyy',"update and get transaction code"); is($transaction->get("statusCode"), 'jd31',"update and get status code"); is($transaction->get("statusMessage"), 'was a success',"update and get status message"); +is($transaction->get('taxes'), 7, 'update does not modify things it was not sent'); # make sure new() works my $tcopy = WebGUI::Shop::Transaction->new($session, $transaction->getId); diff --git a/t/Shop/Vendor.t b/t/Shop/Vendor.t index 1e17a3af5..bd778dfe3 100644 --- a/t/Shop/Vendor.t +++ b/t/Shop/Vendor.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/loadProductAssets.pl b/t/Shop/loadProductAssets.pl index 59c1dfa57..b0245578b 100644 --- a/t/Shop/loadProductAssets.pl +++ b/t/Shop/loadProductAssets.pl @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/loadProducts.pl b/t/Shop/loadProducts.pl index 28f564784..3e8288bda 100644 --- a/t/Shop/loadProducts.pl +++ b/t/Shop/loadProducts.pl @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Shop/loadTaxes.pl b/t/Shop/loadTaxes.pl index 1a893249e..241a0dcd5 100644 --- a/t/Shop/loadTaxes.pl +++ b/t/Shop/loadTaxes.pl @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Spectre/Workflow.t b/t/Spectre/Workflow.t index 90a22fe45..d61c3929f 100644 --- a/t/Spectre/Workflow.t +++ b/t/Spectre/Workflow.t @@ -1,6 +1,6 @@ # vim: syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -15,20 +15,7 @@ use warnings; use Test::More; -if (!-e "$FindBin::Bin/../../../wre/lib") { - plan skip_all => 'No WRE libraries available'; -} -else { - plan tests => 19; - eval <<'EOEVAL'; ##Delay compiling since it causes the test die - use WRE::Config; - use WRE::Modperl; - use WRE::Modproxy; - use WRE::Spectre; -EOEVAL -} - -use lib "$FindBin::Bin/../lib", "$FindBin::Bin/../../../wre/lib"; +use lib "$FindBin::Bin/../lib"; use WebGUI::Test; use WebGUI::Session; @@ -40,14 +27,14 @@ use WebGUI::Workflow::Instance; use POE::Component::IKC::ClientLite; use JSON; use Config::JSON; +use Carp qw(croak); +plan tests => 20; + + $|++; my $session = WebGUI::Test->session; -my $wreConfig = WRE::Config->new; -my $isModPerlRunning = WRE::Modperl->new ( wreConfig=>$wreConfig)->ping; -my $isModProxyRunning = WRE::Modproxy->new( wreConfig=>$wreConfig)->ping; -my $isSpectreRunning = WRE::Spectre->new ( wreConfig=>$wreConfig)->ping; my $spectreConfigFile = WebGUI::Test->root . '/etc/spectre.conf'; my $spectreConfig = Config::JSON->new($spectreConfigFile); my $ip = $spectreConfig->get('ip'); @@ -59,7 +46,9 @@ $sitename = $session->config->get('sitename')->[0]; # tests for retrieving more than one site, the default SKIP: { - skip "need modperl, modproxy, and spectre running to test", 8 unless ($isModPerlRunning && $isModProxyRunning && $isSpectreRunning); + if (! eval { spectre_ping($spectreConfig) } ) { + skip "Spectre doesn't seem to be running: $@", 8; + } # XXX kinda evil kludge to put an activity in the scheduler so that the # below calls return data; suggestions on a better way to do this welcomed. my $taskId = 'pbcron0000000000000001'; # hopefully people don't delete daily maintenance @@ -112,3 +101,28 @@ TODO: { isa_ok($oneSiteStructure->{$key}, 'ARRAY', "$key is an arrayref in the $sitename hash in one site structure"); } } + +sub spectre_ping { + my $spectreConfig = shift; + my $remote = create_ikc_client( + port => $spectreConfig->get("port"), + ip => $spectreConfig->get("ip"), + name => rand(100000), + timeout => 10 + ); + unless ($remote) { + croak "Couldn't connect to Spectre because ".$POE::Component::IKC::ClientLite::error; + } + my $result = $remote->post_respond('admin/ping'); + $remote->disconnect; + unless (defined $result) { + croak "Didn't get a response from Spectre because ".$POE::Component::IKC::ClientLite::error; + } + undef $remote; + if ($result eq "pong") { + return 1; + } else { + croak "Received '".$result."' when we expected 'pong'."; + } +} + diff --git a/t/Storage.t b/t/Storage.t index e171f7706..3dc2c6d6c 100644 --- a/t/Storage.t +++ b/t/Storage.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -287,8 +287,6 @@ my $tempStor = WebGUI::Storage->createTemp($session); isa_ok( $tempStor, "WebGUI::Storage", "createTemp creates WebGUI::Storage object"); is (substr($tempStor->getPathFrag, 0, 5), 'temp/', 'createTemp puts stuff in the temp directory'); -use Data::Dumper; -diag Dumper $tempStor->getErrors(); ok (-e $tempStor->getPath(), 'createTemp: directory was created'); #################################################### diff --git a/t/Storage/Image.t b/t/Storage/Image.t index f41eb128c..32748ad3e 100644 --- a/t/Storage/Image.t +++ b/t/Storage/Image.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Text.t b/t/Text.t index 9531855ba..f6cf59002 100644 --- a/t/Text.t +++ b/t/Text.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/User.t b/t/User.t index 309f103a9..401f835de 100644 --- a/t/User.t +++ b/t/User.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Utility.t b/t/Utility.t index 0cec652b3..d229b660a 100644 --- a/t/Utility.t +++ b/t/Utility.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/VersionTag.t b/t/VersionTag.t index 9a19e01bf..29273e379 100644 --- a/t/VersionTag.t +++ b/t/VersionTag.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/WebGUI_conf.t b/t/WebGUI_conf.t index d1bc002a6..50a8c2642 100644 --- a/t/WebGUI_conf.t +++ b/t/WebGUI_conf.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Whitespace.t b/t/Whitespace.t index 85ff922c0..6191bc76e 100644 --- a/t/Whitespace.t +++ b/t/Whitespace.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Workflow.t b/t/Workflow.t index 3dcaeb879..9ed5e9f3e 100644 --- a/t/Workflow.t +++ b/t/Workflow.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Workflow/Activity/DeleteExpiredSessions.t b/t/Workflow/Activity/DeleteExpiredSessions.t index 480f4ca52..d71c69b5a 100644 --- a/t/Workflow/Activity/DeleteExpiredSessions.t +++ b/t/Workflow/Activity/DeleteExpiredSessions.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -19,12 +19,33 @@ use WebGUI::Workflow::Activity::DeleteExpiredSessions; use Test::More; -plan tests => 5; # increment this value for each test you create +plan tests => 7; # increment this value for each test you create my $session = WebGUI::Test->session; -my $activity = WebGUI::Workflow::Activity::DeleteExpiredSessions->create($session); -$activity->execute(); ##Clear out any old sessions that might interfere with this test; +my $workflow = WebGUI::Workflow->create($session, + { + enabled => 1, + objectType => 'None', + mode => 'realtime', + }, +); +my $activity = $workflow->addActivity('WebGUI::Workflow::Activity::DeleteExpiredSessions'); + +my $instance1 = WebGUI::Workflow::Instance->create($session, + { + workflowId => $workflow->getId, + skipSpectreNotification => 1, + } +); + +my $retVal; + +$retVal = $instance1->run(); +is($retVal, 'complete', 'cleanup: activity complete'); +$retVal = $instance1->run(); +is($retVal, 'done', 'cleanup: activity is done'); +$instance1->delete; my $origSessionTimeout = $session->setting->get('sessionTimeout'); @@ -55,8 +76,20 @@ my $newScratchCount = $session->db->quickScalar('select count(*) from userSessio is ($newSessionCount, $sessionCount+4, 'all new sessions created correctly'); is ($newScratchCount, $scratchCount+2, 'two of the new sessions have scratch entries'); -my $returnValue = $activity->execute(); -is ($returnValue, 'complete', 'DeleteExpiredSessions completed'); +my $instance2 = WebGUI::Workflow::Instance->create($session, + { + workflowId => $workflow->getId, + skipSpectreNotification => 1, + } +); + +my $counter = 0; +PAUSE: while ($retVal = $instance2->run()) { + last PAUSE if $retVal eq 'done'; + last PAUSE if $counter > 6; #Emergency exit clause +} + +is($retVal, 'done', 'Workflow completed successfully'); $newSessionCount = $session->db->quickScalar('select count(*) from userSession'); $newScratchCount = $session->db->quickScalar('select count(*) from userSessionScratch'); @@ -81,5 +114,6 @@ foreach my $testSession (@sessions) { ## Close and end all four sessions END { + $workflow->delete; $session->setting->set('sessionTimeout', $origSessionTimeout ); } diff --git a/t/Workflow/Activity/NotifyAboutLowStock.t b/t/Workflow/Activity/NotifyAboutLowStock.t index a6f6dfc4d..86566e574 100644 --- a/t/Workflow/Activity/NotifyAboutLowStock.t +++ b/t/Workflow/Activity/NotifyAboutLowStock.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/Workflow/Instance.t b/t/Workflow/Instance.t index 1f31f79cb..e84d856ba 100644 --- a/t/Workflow/Instance.t +++ b/t/Workflow/Instance.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/_test.skeleton b/t/_test.skeleton index 97758758a..f22ac5bb7 100644 --- a/t/_test.skeleton +++ b/t/_test.skeleton @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/hardcodedExtras.t b/t/hardcodedExtras.t index 277b23afd..5ca4c249e 100644 --- a/t/hardcodedExtras.t +++ b/t/hardcodedExtras.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/i18n/adminConsole.t b/t/i18n/adminConsole.t index 9fcd34cb8..d8d127df4 100644 --- a/t/i18n/adminConsole.t +++ b/t/i18n/adminConsole.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/i18n/critic_labels.t b/t/i18n/critic_labels.t index 6615e5ad0..58c10bc7f 100644 --- a/t/i18n/critic_labels.t +++ b/t/i18n/critic_labels.t @@ -1,6 +1,6 @@ # vim:syntax=perl #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/i18n/help.t b/t/i18n/help.t index 4e94a76d2..0d2e6b57a 100644 --- a/t/i18n/help.t +++ b/t/i18n/help.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/i18n/template.t b/t/i18n/template.t index fd8d5c9fc..912fd9adf 100644 --- a/t/i18n/template.t +++ b/t/i18n/template.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using @@ -19,6 +19,7 @@ use WebGUI::International; use WebGUI::Session; use Data::Dumper; use WebGUI::Asset::Template; +use WebGUI::Macro::Callback; #The goal of this test is to locate all of the international labels that it #can and verify that they exist in all loaded language models @@ -30,24 +31,15 @@ plan skip_all => 'set CODE_COP to enable this test' unless $ENV{CODE_COP}; my $session = WebGUI::Test->session; my $lib = WebGUI::Test->lib; -##Find the name of the International macro in the user's config file. -my $configFileMacros = $session->config->get('macros'); -my %macroNameLookup = reverse %{ $configFileMacros }; -my $international; -$international = (exists $macroNameLookup{'International'}) ? $macroNameLookup{'International'} : 'International'; - -#diag "International macro name = $international"; - -##Regexp setup for parsing out the Macro calls. -my $bareword = qr/([^,)]+)/; ##Anything that's not a comma -my $quotelike = qr/((['])([^'\s\$]+\s*)+([']))/; -my $sub_args = qr/(($quotelike|$bareword)(?:,\s*)?)+/; ##Don't really need spaces -my $macro = qr/ - \^$international - \( ##Opening paren - ($sub_args) - \); ##Closing paren and semicolon - /xo; +## Remove all macros but International, and set them to call WebGUI::Macro::Callback +my $originalMacros = $session->config->get('macros'); +my $configFileMacros = {}; +for my $macro (keys %$originalMacros) { + if ($originalMacros->{$macro} eq 'International') { + $configFileMacros->{$macro} = 'Callback'; + } +} +$session->config->set('macros', $configFileMacros); # put your tests here @@ -65,10 +57,8 @@ while (my $templateAsset = $getATemplate->()) { title => $templateAsset->getTitle, }; } - while ($template =~ /$macro/msgc) { - my ($label, $namespace) = split /,/, $1; - $label =~ tr/'//d; - $namespace =~ tr/'//d; + WebGUI::Macro::Callback::setCallback(sub { + my ($session, $label, $namespace) = @_; push @templateLabels, { label => $label, namespace => $namespace, @@ -76,7 +66,8 @@ while (my $templateAsset = $getATemplate->()) { id => $templateAsset->getId, title => $templateAsset->getTitle, }; - } + }); + WebGUI::Macro::process($session, \$template); } $numTests = scalar @templateLabels + scalar @questionableTemplates; @@ -95,3 +86,9 @@ foreach my $label ( @questionableTemplates ) { sprintf "Empty template: %s, id: %s, url: %s", @{ $label }{qw/title id url/} ); } + +END { + defined $session && + $session->config->set('macros', $originalMacros); +} + diff --git a/t/lib/WebGUI/Macro/Callback.pm b/t/lib/WebGUI/Macro/Callback.pm new file mode 100644 index 000000000..3fac9de7c --- /dev/null +++ b/t/lib/WebGUI/Macro/Callback.pm @@ -0,0 +1,17 @@ +package WebGUI::Macro::Callback; + +use strict; +use warnings; + +my $callback = sub {''}; + +sub process { + return $callback->(@_); +} + +sub setCallback { + $callback = shift; +} + +1; + diff --git a/t/lib/WebGUI/PseudoRequest.pm b/t/lib/WebGUI/PseudoRequest.pm index c9ef80ad1..b2e359b07 100644 --- a/t/lib/WebGUI/PseudoRequest.pm +++ b/t/lib/WebGUI/PseudoRequest.pm @@ -2,10 +2,21 @@ package WebGUI::PseudoRequest; use strict; +use Test::MockObject; + +my $mocker = Test::MockObject->new(); +$mocker->fake_module( + 'Apache2::Cookie', + new => sub { return bless {}, 'Apache2::Cookie'; }, + expires => sub { 1; }, + domain => sub { 1; }, + bake => sub { 1; }, +); + =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2005 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/t/lib/WebGUI/Test.pm b/t/lib/WebGUI/Test.pm index 2ea1ea33d..6f18bacd6 100644 --- a/t/lib/WebGUI/Test.pm +++ b/t/lib/WebGUI/Test.pm @@ -6,7 +6,7 @@ use warnings; =head1 LEGAL ------------------------------------------------------------------- - WebGUI is Copyright 2001-2008 Plain Black Corporation. + WebGUI is Copyright 2001-2009 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using diff --git a/t/mandatory_template_vars.t b/t/mandatory_template_vars.t index 54a9203bc..f21bbc097 100644 --- a/t/mandatory_template_vars.t +++ b/t/mandatory_template_vars.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/splitTag.t b/t/splitTag.t index db11d222a..6a8b16289 100644 --- a/t/splitTag.t +++ b/t/splitTag.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/supporting_collateral/WebGUI.pm b/t/supporting_collateral/WebGUI.pm index a035cf3ad..a264cd578 100644 --- a/t/supporting_collateral/WebGUI.pm +++ b/t/supporting_collateral/WebGUI.pm @@ -6,6 +6,11 @@ our $I18N = { lastUpdated => 1141963573, context => q|Test key for International macro test. DO NOT TRANSLATE|, }, + + 'key with spaces in it' => { + message => q|Key Contained Spaces|, + lastUpdated => 0, + } }; 1; diff --git a/t/syntaxCheck.t b/t/syntaxCheck.t index 4ab5131a0..ebd5598da 100644 --- a/t/syntaxCheck.t +++ b/t/syntaxCheck.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2008 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/t/templateChecker.t b/t/templateChecker.t index a32598470..ec741b7d5 100644 --- a/t/templateChecker.t +++ b/t/templateChecker.t @@ -1,5 +1,5 @@ #------------------------------------------------------------------- -# WebGUI is Copyright 2001-2007 Plain Black Corporation. +# WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using diff --git a/www/extras/macro/AdminBar/slidePanel.css b/www/extras/macro/AdminBar/slidePanel.css index 997f7d023..3803ace92 100644 --- a/www/extras/macro/AdminBar/slidePanel.css +++ b/www/extras/macro/AdminBar/slidePanel.css @@ -1,15 +1,150 @@ dl.accordion-menu dd.a-m-d div.ncmct { - width: 140px; - border-bottom: 1px solid #bbbbbb; - color: black; - font-weight: bold; - font-size: 12px; - margin-bottom: 5px; + width: 140px; + border-bottom: 1px solid #bbbbbb; + color: black; + font-weight: bold; + font-size: 12px; + margin-bottom: 5px; font-family: sans-serif; } - dl.accordion-menu { margin: 0; padding: 0; width: 160px; background: #eeeeee; position:fixed; _position:absolute; top:0; _top:expression(eval((document.documentElement && document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop)); left:0; z-index: 100; } dl.accordion-menu dt.a-m-t { margin: 0; padding: 0; background-color:#dddddd; background-image: url(btn_bg.jpg); font-weight: bold; height: 20px; color: #444444; border: 1px solid #ACACAC; line-height: 20px; font-size: 12px; text-align:center; font-family: sans-serif; } dl.accordion-menu dt.a-m-t-hover{ margin: 0; padding: 0; background:#cdcdcd; } dl.accordion-menu dt.a-m-t-down{ margin: 0; padding: 0; border: solid 1px #222222; border-right-color: #dfdfdf; border-bottom-color: #dfdfdf; } html.accordion-menu-js dt.a-m-t{ margin: 0; padding: 0; cursor:pointer; zoom:1; } dl.accordion-menu dd.a-m-d { margin: 0; padding: 0; overflow: auto; background-color: #eeeeee; background-image: url(panel_bg.jpg); background-repeat: repeat-x; font-weight: normal; } dl.accordion-menu dd.a-m-d .link { margin: 0; padding: 0; display: block; width: 118px; text-align:left; padding-left:20px; text-decoration: none; color: black; font-family: sans-serif; cursor: pointer; font-weight: normal; font-size: 12px; margin-bottom:5px; - margin-left:2px; - letter-spacing:0px; - text-transform:none; - font-variant:normal; - line-height:12px; } dl.accordion-menu dd.a-m-d .link img { margin-left:-20px; } dl.accordion-menu dd.a-m-d .link:hover { color: blue; background-color: #F5F5F5; } html.accordion-menu-js dd.a-m-d{ margin: 0; padding: 0; display:none; } html.accordion-menu-js dd.a-m-d-expand { margin: 0; padding: 0; display:block; } html.accordion-menu-js dd.a-m-d-before-expand { margin: 0; padding: 0; display:block; position:relative; z-index:-1; opacity:0; height:auto !important; visibility:hidden; overflow:visible; } html.accordion-menu-js dt.a-m-t-expand { margin: 0; padding: 0; border-left-color:#222222; color:black; background:#c0c0c0; } html.accordion-menu-js dd.a-m-d-anim { margin: 0; padding: 0; overflow:hidden; display:block; } \ No newline at end of file + +dl.accordion-menu { + margin: 0; + padding: 0; + width: 160px; + background: #eeeeee; + position:fixed; + _position:absolute; + top:0; + + /* + _top:expression(eval((document.documentElement && document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop)); */ + left:0; + z-index: 100; +} + +dl.accordion-menu dt.a-m-t { + margin: 0; + padding: 0; + background-color:#dddddd; + background-image: url(btn_bg.jpg); + font-weight: bold; + height: 20px; + color: #444444; + border: 1px solid #ACACAC; + line-height: 20px; + font-size: 12px; + text-align:center; + font-family: sans-serif; +} + +dl.accordion-menu dt.a-m-t-hover{ + margin: 0; + padding: 0; + background:#cdcdcd; +} + + +dl.accordion-menu dt.a-m-t-down{ + margin: 0; + padding: 0; + border: solid 1px #222222; + border-right-color: #dfdfdf; + border-bottom-color: #dfdfdf; +} + + +html.accordion-menu-js dt.a-m-t{ + margin: 0; + padding: 0; + cursor:pointer; + zoom:1; +} + +dl.accordion-menu dd.a-m-d { + margin: 0; + padding: 0; + overflow: auto; + background-color: #eeeeee; + background-image: url(panel_bg.jpg); + background-repeat: repeat-x; + font-weight: normal; +} + +dl.accordion-menu dd.a-m-d .link { + margin: 0; + padding: 0; + display: block; + width: 118px; + text-align:left; + padding-left:20px; + text-decoration: none; + color: black; + font-family: sans-serif; + cursor: pointer; + font-weight: normal; + font-size: 12px; + margin-bottom:5px; + margin-left:2px; + letter-spacing:0px; + text-transform:none; + font-variant:normal; + line-height:12px; +} + +dl.accordion-menu dd.a-m-d .link img { +margin-left:-20px; +} + +dl.accordion-menu dd.a-m-d .link:hover { + + color: blue; + background-color: #F5F5F5; +} + +html.accordion-menu-js dd.a-m-d{ + margin: 0; + padding: 0; + display:none; +} + + +html.accordion-menu-js dd.a-m-d-expand { + margin: 0; + padding: 0; + display:block; +} + +html.accordion-menu-js dd.a-m-d-before-expand { + margin: 0; + padding: 0; + display:block; + position:relative; + z-index:-1; + opacity:0; + height:auto !important; + visibility:hidden; + overflow:visible; +} + + +html.accordion-menu-js dt.a-m-t-expand { + margin: 0; + padding: 0; + border-left-color:#222222; + color:black; + background:#c0c0c0; +} + +html.accordion-menu-js dd.a-m-d-anim { + margin: 0; + padding: 0; + overflow:hidden; + display:block; +} + + + + + + diff --git a/www/extras/wobject/Matrix/matrix.js b/www/extras/wobject/Matrix/matrix.js index 7b9b62a18..b15cedf32 100644 --- a/www/extras/wobject/Matrix/matrix.js +++ b/www/extras/wobject/Matrix/matrix.js @@ -1,7 +1,7 @@ YAHOO.util.Event.addListener(window, "load", function() { YAHOO.example.XHR_JSON = new function() { this.formatUrl = function(elCell, oRecord, oColumn, sData) { - elCell.innerHTML = "" + sData + ""; + elCell.innerHTML = "" + sData + ""; }; this.formatCheckBox = function(elCell, oRecord, oColumn, sData) { var innerHTML = " 1){ @@ -114,6 +113,9 @@ YAHOO.util.Event.addListener(window, "load", function() { uri = uri+';listingId='+compareCheckBoxes[i].value; } } + myDataTable.getRecordSet().reset(); + myDataTable.refreshView(); + myDataTable.showTableMessage('Loading...'); this.myDataSource.sendRequest(uri,callback2); },this,true); @@ -126,6 +128,9 @@ YAHOO.util.Event.addListener(window, "load", function() { uri = uri+';listingId='+compareCheckBoxes[i].value; } } + myDataTable.getRecordSet().reset(); + myDataTable.refreshView(); + myDataTable.showTableMessage('Loading...'); this.myDataSource.sendRequest(uri,callback2); },this,true); diff --git a/www/extras/wobject/Matrix/matrixSearch.js b/www/extras/wobject/Matrix/matrixSearch.js index dbea4e00c..077beec5d 100644 --- a/www/extras/wobject/Matrix/matrixSearch.js +++ b/www/extras/wobject/Matrix/matrixSearch.js @@ -3,7 +3,7 @@ YAHOO.util.Event.addListener(window, "load", function() { var Dom = YAHOO.util.Dom; this.formatUrl = function(elCell, oRecord, oColumn, sData) { - elCell.innerHTML = "" + sData + ""; + elCell.innerHTML = "" + sData + ""; }; this.formatCheckBox = function(elCell, oRecord, oColumn, sData) { var innerHTML = "/ ) ? rawItems[i].url.replace( /(?:\?(.*))?/, WebGUI.AssetManager.appendToUrl(url, "$1") ) : url + rawItems[i].url ; - menuItems.push( { "url" : itemUrl, "text" : rawItems[i].label } ); + if (! (itemUrl.match( /func=edit;/) && isLocked )) { + menuItems.push( { "url" : itemUrl, "text" : rawItems[i].label } ); + } } var options = { "zindex" : 1000, @@ -109,7 +112,7 @@ WebGUI.AssetManager.formatActions = function ( elCell, oRecord, oColumn, orderNu oldMenu.parentNode.removeChild( oldMenu ); } - var options = WebGUI.AssetManager.buildMoreMenu(oRecord.getData( 'url' ), more); + var options = WebGUI.AssetManager.buildMoreMenu(oRecord.getData( 'url' ), more, oRecord.getData( 'actions' )); var menu = new YAHOO.widget.Menu( "moreMenu" + oRecord.getData( 'assetId' ), options ); YAHOO.util.Event.onDOMReady( function () { menu.render( document.getElementById( 'assetManager' ) ) } ); @@ -346,10 +349,10 @@ WebGUI.AssetManager.selectRow = function ( child ) { Build a More menu for the last element of the Crumb trail */ WebGUI.AssetManager.showMoreMenu -= function ( url, linkTextId ) { += function ( url, linkTextId, isNotLocked ) { var more = document.getElementById(linkTextId); - var options = WebGUI.AssetManager.buildMoreMenu(url, more); + var options = WebGUI.AssetManager.buildMoreMenu(url, more, isNotLocked); var menu = new YAHOO.widget.Menu( "crumbMoreMenu", options ); menu.render( document.getElementById( 'assetManager' ) ); diff --git a/www/extras/yui-webgui/build/form/datatable.js b/www/extras/yui-webgui/build/form/datatable.js index bc4db42dc..cedbf8ae9 100644 --- a/www/extras/yui-webgui/build/form/datatable.js +++ b/www/extras/yui-webgui/build/form/datatable.js @@ -91,6 +91,7 @@ WebGUI.Form.DataTable delete data.columns[ i ].editorOptions; } + YAHOO.lang.JSON.dateToString = function(d) { return d.toString(); }; /* this overrides the default stringify date format */ return YAHOO.lang.JSON.stringify( data ); }; diff --git a/www/uploads/21/85/2185283781164161d91d08ff7f97b1d2/no_photo.gif b/www/uploads/21/85/2185283781164161d91d08ff7f97b1d2/no_photo.gif new file mode 100644 index 000000000..831689dee Binary files /dev/null and b/www/uploads/21/85/2185283781164161d91d08ff7f97b1d2/no_photo.gif differ diff --git a/www/uploads/21/85/2185283781164161d91d08ff7f97b1d2/thumb-no_photo.gif b/www/uploads/21/85/2185283781164161d91d08ff7f97b1d2/thumb-no_photo.gif new file mode 100644 index 000000000..4c7fbf86a Binary files /dev/null and b/www/uploads/21/85/2185283781164161d91d08ff7f97b1d2/thumb-no_photo.gif differ diff --git a/www/uploads/77/fe/77fe0fe80023c196fea7d2b457b59ad6/no_photo_sm.gif b/www/uploads/77/fe/77fe0fe80023c196fea7d2b457b59ad6/no_photo_sm.gif new file mode 100644 index 000000000..ed46b4f37 Binary files /dev/null and b/www/uploads/77/fe/77fe0fe80023c196fea7d2b457b59ad6/no_photo_sm.gif differ diff --git a/www/uploads/77/fe/77fe0fe80023c196fea7d2b457b59ad6/thumb-no_photo_sm.gif b/www/uploads/77/fe/77fe0fe80023c196fea7d2b457b59ad6/thumb-no_photo_sm.gif new file mode 100644 index 000000000..3c3d54386 Binary files /dev/null and b/www/uploads/77/fe/77fe0fe80023c196fea7d2b457b59ad6/thumb-no_photo_sm.gif differ diff --git a/www/uploads/eb/d6/ebd661fbe07f108d352168dff4a043af/no_photo_sm.gif b/www/uploads/eb/d6/ebd661fbe07f108d352168dff4a043af/no_photo_sm.gif new file mode 100644 index 000000000..ed46b4f37 Binary files /dev/null and b/www/uploads/eb/d6/ebd661fbe07f108d352168dff4a043af/no_photo_sm.gif differ diff --git a/www/uploads/eb/d6/ebd661fbe07f108d352168dff4a043af/thumb-no_photo_sm.gif b/www/uploads/eb/d6/ebd661fbe07f108d352168dff4a043af/thumb-no_photo_sm.gif new file mode 100644 index 000000000..3c3d54386 Binary files /dev/null and b/www/uploads/eb/d6/ebd661fbe07f108d352168dff4a043af/thumb-no_photo_sm.gif differ diff --git a/www/uploads/f0/81/f0812f2cd62f731d9dcf30dba1ad702a/no_photo.gif b/www/uploads/f0/81/f0812f2cd62f731d9dcf30dba1ad702a/no_photo.gif new file mode 100644 index 000000000..831689dee Binary files /dev/null and b/www/uploads/f0/81/f0812f2cd62f731d9dcf30dba1ad702a/no_photo.gif differ diff --git a/www/uploads/f0/81/f0812f2cd62f731d9dcf30dba1ad702a/thumb-no_photo.gif b/www/uploads/f0/81/f0812f2cd62f731d9dcf30dba1ad702a/thumb-no_photo.gif new file mode 100644 index 000000000..4c7fbf86a Binary files /dev/null and b/www/uploads/f0/81/f0812f2cd62f731d9dcf30dba1ad702a/thumb-no_photo.gif differ