-- MySQL dump 10.13 Distrib 5.7.17, for osx10.12 (x86_64) -- -- Host: localhost Database: lportal7 -- ------------------------------------------------------ -- Server version 5.7.17 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `Account_` -- DROP TABLE IF EXISTS `Account_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Account_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `accountId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `parentAccountId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `legalName` varchar(75) DEFAULT NULL, `legalId` varchar(75) DEFAULT NULL, `legalType` varchar(75) DEFAULT NULL, `sicCode` varchar(75) DEFAULT NULL, `tickerSymbol` varchar(75) DEFAULT NULL, `industry` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `size_` varchar(75) DEFAULT NULL, PRIMARY KEY (`accountId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Account_` -- LOCK TABLES `Account_` WRITE; /*!40000 ALTER TABLE `Account_` DISABLE KEYS */; INSERT INTO `Account_` VALUES (0,20117,20115,0,NULL,'2018-07-02 15:50:59.939000','2018-07-02 15:50:59.939000',0,'Liferay DXP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `Account_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Address` -- DROP TABLE IF EXISTS `Address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Address` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `addressId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `street1` varchar(75) DEFAULT NULL, `street2` varchar(75) DEFAULT NULL, `street3` varchar(75) DEFAULT NULL, `city` varchar(75) DEFAULT NULL, `zip` varchar(75) DEFAULT NULL, `regionId` bigint(20) DEFAULT NULL, `countryId` bigint(20) DEFAULT NULL, `typeId` bigint(20) DEFAULT NULL, `mailing` tinyint(4) DEFAULT NULL, `primary_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`addressId`), KEY `IX_923BD178` (`companyId`,`classNameId`,`classPK`,`mailing`), KEY `IX_9226DBB4` (`companyId`,`classNameId`,`classPK`,`primary_`), KEY `IX_5BC8B0D4` (`userId`), KEY `IX_8FCB620E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Address` -- LOCK TABLES `Address` WRITE; /*!40000 ALTER TABLE `Address` DISABLE KEYS */; /*!40000 ALTER TABLE `Address` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AnnouncementsDelivery` -- DROP TABLE IF EXISTS `AnnouncementsDelivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AnnouncementsDelivery` ( `deliveryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `email` tinyint(4) DEFAULT NULL, `sms` tinyint(4) DEFAULT NULL, `website` tinyint(4) DEFAULT NULL, PRIMARY KEY (`deliveryId`), UNIQUE KEY `IX_BA4413D5` (`userId`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AnnouncementsDelivery` -- LOCK TABLES `AnnouncementsDelivery` WRITE; /*!40000 ALTER TABLE `AnnouncementsDelivery` DISABLE KEYS */; /*!40000 ALTER TABLE `AnnouncementsDelivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AnnouncementsEntry` -- DROP TABLE IF EXISTS `AnnouncementsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AnnouncementsEntry` ( `uuid_` varchar(75) DEFAULT NULL, `entryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `title` varchar(75) DEFAULT NULL, `content` longtext, `url` longtext, `type_` varchar(75) DEFAULT NULL, `displayDate` datetime(6) DEFAULT NULL, `expirationDate` datetime(6) DEFAULT NULL, `priority` int(11) DEFAULT NULL, `alert` tinyint(4) DEFAULT NULL, PRIMARY KEY (`entryId`), KEY `IX_14F06A6B` (`classNameId`,`classPK`,`alert`), KEY `IX_D49C2E66` (`userId`), KEY `IX_F2949120` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AnnouncementsEntry` -- LOCK TABLES `AnnouncementsEntry` WRITE; /*!40000 ALTER TABLE `AnnouncementsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `AnnouncementsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AnnouncementsFlag` -- DROP TABLE IF EXISTS `AnnouncementsFlag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AnnouncementsFlag` ( `flagId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `entryId` bigint(20) DEFAULT NULL, `value` int(11) DEFAULT NULL, PRIMARY KEY (`flagId`), UNIQUE KEY `IX_4539A99C` (`userId`,`entryId`,`value`), KEY `IX_9C7EB9F` (`entryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AnnouncementsFlag` -- LOCK TABLES `AnnouncementsFlag` WRITE; /*!40000 ALTER TABLE `AnnouncementsFlag` DISABLE KEYS */; /*!40000 ALTER TABLE `AnnouncementsFlag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetCategory` -- DROP TABLE IF EXISTS `AssetCategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetCategory` ( `uuid_` varchar(75) DEFAULT NULL, `categoryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `parentCategoryId` bigint(20) DEFAULT NULL, `leftCategoryId` bigint(20) DEFAULT NULL, `rightCategoryId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `title` longtext, `description` longtext, `vocabularyId` bigint(20) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`categoryId`), UNIQUE KEY `IX_BE4DF2BF` (`parentCategoryId`,`name`,`vocabularyId`), UNIQUE KEY `IX_E8D019AA` (`uuid_`,`groupId`), KEY `IX_C7F39FCA` (`groupId`,`name`,`vocabularyId`), KEY `IX_852EA801` (`groupId`,`parentCategoryId`,`name`,`vocabularyId`), KEY `IX_87603842` (`groupId`,`parentCategoryId`,`vocabularyId`), KEY `IX_2008FACB` (`groupId`,`vocabularyId`), KEY `IX_D61ABE08` (`name`,`vocabularyId`), KEY `IX_B185E980` (`parentCategoryId`,`vocabularyId`), KEY `IX_BBAF6928` (`uuid_`,`companyId`), KEY `IX_287B1F89` (`vocabularyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetCategory` -- LOCK TABLES `AssetCategory` WRITE; /*!40000 ALTER TABLE `AssetCategory` DISABLE KEYS */; /*!40000 ALTER TABLE `AssetCategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetCategoryProperty` -- DROP TABLE IF EXISTS `AssetCategoryProperty`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetCategoryProperty` ( `categoryPropertyId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `key_` varchar(75) DEFAULT NULL, `value` varchar(75) DEFAULT NULL, PRIMARY KEY (`categoryPropertyId`), UNIQUE KEY `IX_DBD111AA` (`categoryId`,`key_`), KEY `IX_52340033` (`companyId`,`key_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetCategoryProperty` -- LOCK TABLES `AssetCategoryProperty` WRITE; /*!40000 ALTER TABLE `AssetCategoryProperty` DISABLE KEYS */; /*!40000 ALTER TABLE `AssetCategoryProperty` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetEntries_AssetCategories` -- DROP TABLE IF EXISTS `AssetEntries_AssetCategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetEntries_AssetCategories` ( `companyId` bigint(20) NOT NULL, `categoryId` bigint(20) NOT NULL, `entryId` bigint(20) NOT NULL, PRIMARY KEY (`categoryId`,`entryId`), KEY `IX_A188F560` (`categoryId`), KEY `IX_38A65B55` (`companyId`), KEY `IX_E119938A` (`entryId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetEntries_AssetCategories` -- LOCK TABLES `AssetEntries_AssetCategories` WRITE; /*!40000 ALTER TABLE `AssetEntries_AssetCategories` DISABLE KEYS */; /*!40000 ALTER TABLE `AssetEntries_AssetCategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetEntries_AssetTags` -- DROP TABLE IF EXISTS `AssetEntries_AssetTags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetEntries_AssetTags` ( `companyId` bigint(20) NOT NULL, `entryId` bigint(20) NOT NULL, `tagId` bigint(20) NOT NULL, PRIMARY KEY (`entryId`,`tagId`), KEY `IX_112337B8` (`companyId`), KEY `IX_2ED82CAD` (`entryId`), KEY `IX_B2A61B55` (`tagId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetEntries_AssetTags` -- LOCK TABLES `AssetEntries_AssetTags` WRITE; /*!40000 ALTER TABLE `AssetEntries_AssetTags` DISABLE KEYS */; /*!40000 ALTER TABLE `AssetEntries_AssetTags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetEntry` -- DROP TABLE IF EXISTS `AssetEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetEntry` ( `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `classUuid` varchar(75) DEFAULT NULL, `classTypeId` bigint(20) DEFAULT NULL, `listable` tinyint(4) DEFAULT NULL, `visible` tinyint(4) DEFAULT NULL, `startDate` datetime(6) DEFAULT NULL, `endDate` datetime(6) DEFAULT NULL, `publishDate` datetime(6) DEFAULT NULL, `expirationDate` datetime(6) DEFAULT NULL, `mimeType` varchar(75) DEFAULT NULL, `title` longtext, `description` longtext, `summary` longtext, `url` longtext, `layoutUuid` varchar(75) DEFAULT NULL, `height` int(11) DEFAULT NULL, `width` int(11) DEFAULT NULL, `priority` double DEFAULT NULL, `viewCount` int(11) DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_1E9D371D` (`classNameId`,`classPK`), KEY `IX_7306C60` (`companyId`), KEY `IX_75D42FF9` (`expirationDate`), KEY `IX_6418BB52` (`groupId`,`classNameId`,`publishDate`,`expirationDate`), KEY `IX_82C4BEF6` (`groupId`,`classNameId`,`visible`), KEY `IX_1EBA6821` (`groupId`,`classUuid`), KEY `IX_FEC4A201` (`layoutUuid`), KEY `IX_2E4E3885` (`publishDate`), KEY `IX_9029E15A` (`visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetEntry` -- LOCK TABLES `AssetEntry` WRITE; /*!40000 ALTER TABLE `AssetEntry` DISABLE KEYS */; INSERT INTO `AssetEntry` VALUES (20138,20132,20115,20119,NULL,'2018-07-02 15:51:00.711000','2018-07-02 15:51:00.711000',20047,20136,'a00eb7c0-476d-97ab-5768-adc42bbc64ad',0,1,0,NULL,NULL,NULL,NULL,'text/html','Control Panel','','',NULL,NULL,0,0,0,0),(20147,20142,20115,20119,NULL,'2018-07-02 15:51:00.843000','2018-07-02 15:51:00.843000',20047,20145,'a4e56534-fc28-e874-b054-fa9725396450',0,1,0,NULL,NULL,NULL,NULL,'text/html','Welcome','','',NULL,NULL,0,0,0,0),(20161,20151,20115,20155,'Test Test','2018-07-02 15:51:01.148000','2018-07-02 15:51:01.148000',20087,20155,'a80031de-5e09-ef7d-49c9-70730a51d972',0,1,0,NULL,NULL,NULL,NULL,NULL,'Test Test','','',NULL,NULL,0,0,0,0),(20168,20139,20115,20119,NULL,'2018-07-02 15:51:01.307000','2018-07-02 15:51:01.307000',20047,20165,'d493950e-4900-39a0-e8aa-e9b1aef6f3eb',0,1,0,NULL,NULL,NULL,NULL,'text/html','Shared','','',NULL,NULL,0,0,0,0),(31236,31231,20115,20119,NULL,'2018-07-02 15:52:11.624000','2018-07-02 15:52:11.624000',20047,31234,'8ae6357f-acb2-070c-48bf-99ec0358ccfb',0,1,0,NULL,NULL,NULL,NULL,'text/html','Content Display Page','','',NULL,NULL,0,0,0,0),(31305,31294,20115,20119,NULL,'2018-07-02 15:52:19.877000','2018-07-02 15:52:19.877000',20047,31303,'d646c6db-9065-68c3-1f31-7a2f7f8caec7',0,1,0,NULL,NULL,NULL,NULL,'text/html','Home','','',NULL,NULL,0,0,0,0),(31309,31294,20115,20119,NULL,'2018-07-02 15:52:19.947000','2018-07-02 15:52:19.947000',20047,31307,'1f0ae575-8a7c-c87e-568f-bac14b5f58f7',0,1,0,NULL,NULL,NULL,NULL,'text/html','Wiki','','',NULL,NULL,0,0,0,0),(31316,31311,20115,20119,NULL,'2018-07-02 15:52:20.010000','2018-07-02 15:52:20.010000',20047,31314,'691c4c33-77c3-4857-6bf6-9f687f0ca388',0,1,0,NULL,NULL,NULL,NULL,'text/html','Wiki','','',NULL,NULL,0,0,0,0),(31327,31322,20115,20119,NULL,'2018-07-02 15:52:20.299000','2018-07-02 15:52:20.299000',20047,31325,'b59242e5-8634-d4f0-bf2f-c71f15d050f9',0,1,0,NULL,NULL,NULL,NULL,'text/html','Blog','','',NULL,NULL,0,0,0,0),(31360,31349,20115,20119,NULL,'2018-07-02 15:52:21.891000','2018-07-02 15:52:21.891000',20047,31358,'8f0a691b-f287-14b1-f96a-d9b8e5e898b9',0,1,0,NULL,NULL,NULL,NULL,'text/html','Home','','',NULL,NULL,0,0,0,0),(31364,31349,20115,20119,NULL,'2018-07-02 15:52:21.935000','2018-07-02 15:52:21.935000',20047,31362,'ecafadf4-e9e4-16df-079f-dffcfa88e409',0,1,0,NULL,NULL,NULL,NULL,'text/html','Documents and Media','','',NULL,NULL,0,0,0,0),(31368,31349,20115,20119,NULL,'2018-07-02 15:52:21.968000','2018-07-02 15:52:21.968000',20047,31366,'5b87733d-758f-6d16-4785-32f2ffce9abc',0,1,0,NULL,NULL,NULL,NULL,'text/html','News','','',NULL,NULL,0,0,0,0),(31404,20158,20115,20155,'Test Test','2018-07-02 16:07:32.801000','2018-07-02 16:07:32.801000',20047,31402,'c8d5fc4d-ce5e-d1c5-d19e-f5b4e5c436ed',0,1,0,NULL,NULL,NULL,NULL,'text/html','Welcome','','',NULL,NULL,0,0,0,0),(31407,20158,20115,20155,'Test Test','2018-07-02 16:07:32.833000','2018-07-02 16:07:32.833000',20047,31405,'c6f72f78-8ca9-0688-0532-3e797f514f02',0,1,0,NULL,NULL,NULL,NULL,'text/html','Welcome','','',NULL,NULL,0,0,0,0),(31426,20142,20115,20155,'Test Test','2018-07-02 16:08:51.073000','2018-07-02 16:08:51.113000',31425,31421,'68cd91c3-e531-e1e0-e5f4-a4bbc16e78f4',0,1,0,NULL,NULL,NULL,NULL,'text/html','New Untitled Form for List: Untitled Form','','',NULL,NULL,0,0,0,0); /*!40000 ALTER TABLE `AssetEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetLink` -- DROP TABLE IF EXISTS `AssetLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetLink` ( `linkId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `entryId1` bigint(20) DEFAULT NULL, `entryId2` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `weight` int(11) DEFAULT NULL, PRIMARY KEY (`linkId`), UNIQUE KEY `IX_8F542794` (`entryId1`,`entryId2`,`type_`), KEY `IX_14D5A20D` (`entryId1`,`type_`), KEY `IX_91F132C` (`entryId2`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetLink` -- LOCK TABLES `AssetLink` WRITE; /*!40000 ALTER TABLE `AssetLink` DISABLE KEYS */; /*!40000 ALTER TABLE `AssetLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetTag` -- DROP TABLE IF EXISTS `AssetTag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetTag` ( `uuid_` varchar(75) DEFAULT NULL, `tagId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `assetCount` int(11) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`tagId`), UNIQUE KEY `IX_D63322F9` (`groupId`,`name`), UNIQUE KEY `IX_B6ACB166` (`uuid_`,`groupId`), KEY `IX_84C501E4` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetTag` -- LOCK TABLES `AssetTag` WRITE; /*!40000 ALTER TABLE `AssetTag` DISABLE KEYS */; /*!40000 ALTER TABLE `AssetTag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetTagStats` -- DROP TABLE IF EXISTS `AssetTagStats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetTagStats` ( `tagStatsId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `tagId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `assetCount` int(11) DEFAULT NULL, PRIMARY KEY (`tagStatsId`), UNIQUE KEY `IX_56682CC4` (`tagId`,`classNameId`), KEY `IX_50702693` (`classNameId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetTagStats` -- LOCK TABLES `AssetTagStats` WRITE; /*!40000 ALTER TABLE `AssetTagStats` DISABLE KEYS */; /*!40000 ALTER TABLE `AssetTagStats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AssetVocabulary` -- DROP TABLE IF EXISTS `AssetVocabulary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `AssetVocabulary` ( `uuid_` varchar(75) DEFAULT NULL, `vocabularyId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `title` longtext, `description` longtext, `settings_` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`vocabularyId`), UNIQUE KEY `IX_C0AAD74D` (`groupId`,`name`), UNIQUE KEY `IX_1B2B8792` (`uuid_`,`groupId`), KEY `IX_B22D908C` (`companyId`), KEY `IX_C4E6FD10` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AssetVocabulary` -- LOCK TABLES `AssetVocabulary` WRITE; /*!40000 ALTER TABLE `AssetVocabulary` DISABLE KEYS */; INSERT INTO `AssetVocabulary` VALUES ('c5a65919-86f0-9c2f-c3f3-0bcf09d1a60f',20167,20151,20115,20119,NULL,'2018-07-02 15:51:01.323000','2018-07-02 15:51:01.323000','Topic','Topic',NULL,NULL,NULL); /*!40000 ALTER TABLE `AssetVocabulary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Audit_AuditEvent` -- DROP TABLE IF EXISTS `Audit_AuditEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Audit_AuditEvent` ( `auditEventId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `eventType` varchar(75) DEFAULT NULL, `className` varchar(200) DEFAULT NULL, `classPK` varchar(75) DEFAULT NULL, `message` longtext, `clientHost` varchar(255) DEFAULT NULL, `clientIP` varchar(75) DEFAULT NULL, `serverName` varchar(255) DEFAULT NULL, `serverPort` int(11) DEFAULT NULL, `sessionID` varchar(255) DEFAULT NULL, `additionalInfo` longtext, PRIMARY KEY (`auditEventId`), KEY `IX_8FE31EDF` (`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Audit_AuditEvent` -- LOCK TABLES `Audit_AuditEvent` WRITE; /*!40000 ALTER TABLE `Audit_AuditEvent` DISABLE KEYS */; INSERT INTO `Audit_AuditEvent` VALUES (31401,20115,20155,'Test Test','2018-07-02 16:07:32.771000','LOGIN','com.liferay.portal.kernel.model.User','20155',NULL,'127.0.0.1','127.0.0.1','localhost',8080,'0DFE787D325A007D715B2C8828256E9F','null'),(31409,20115,20155,'Test Test','2018-07-02 16:07:35.959000','UPDATE','com.liferay.portal.kernel.model.User','20155',NULL,'127.0.0.1','127.0.0.1','localhost',8080,'0DFE787D325A007D715B2C8828256E9F','{\"attributes\":[{\"newValue\":\"true\",\"name\":\"agreedToTermsOfUse\",\"oldValue\":\"false\"}]}'),(31410,20115,20155,'Test Test','2018-07-02 16:07:39.544000','UPDATE','com.liferay.portal.kernel.model.User','20155',NULL,'127.0.0.1','127.0.0.1','localhost',8080,'0DFE787D325A007D715B2C8828256E9F','{\"attributes\":[{\"newValue\":\"test\",\"name\":\"reminderQueryAnswer\",\"oldValue\":\"\"},{\"newValue\":\"what-is-your-father\'s-middle-name\",\"name\":\"reminderQueryQuestion\",\"oldValue\":\"\"}]}'); /*!40000 ALTER TABLE `Audit_AuditEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BackgroundTask` -- DROP TABLE IF EXISTS `BackgroundTask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BackgroundTask` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `backgroundTaskId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `servletContextNames` varchar(255) DEFAULT NULL, `taskExecutorClassName` varchar(200) DEFAULT NULL, `taskContextMap` longtext, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusMessage` longtext, PRIMARY KEY (`backgroundTaskId`), KEY `IX_C5A6C78F` (`companyId`), KEY `IX_FBF5FAA2` (`completed`), KEY `IX_579C63B0` (`groupId`,`name`,`taskExecutorClassName`,`completed`), KEY `IX_C71C3B7` (`groupId`,`status`), KEY `IX_7A9FF471` (`groupId`,`taskExecutorClassName`,`completed`), KEY `IX_7E757D70` (`groupId`,`taskExecutorClassName`,`status`), KEY `IX_75638CDF` (`status`), KEY `IX_2FCFE748` (`taskExecutorClassName`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BackgroundTask` -- LOCK TABLES `BackgroundTask` WRITE; /*!40000 ALTER TABLE `BackgroundTask` DISABLE KEYS */; /*!40000 ALTER TABLE `BackgroundTask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlogsEntry` -- DROP TABLE IF EXISTS `BlogsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BlogsEntry` ( `uuid_` varchar(75) DEFAULT NULL, `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `title` varchar(150) DEFAULT NULL, `subtitle` longtext, `urlTitle` varchar(150) DEFAULT NULL, `description` longtext, `content` longtext, `displayDate` datetime(6) DEFAULT NULL, `allowPingbacks` tinyint(4) DEFAULT NULL, `allowTrackbacks` tinyint(4) DEFAULT NULL, `trackbacks` longtext, `coverImageCaption` longtext, `coverImageFileEntryId` bigint(20) DEFAULT NULL, `coverImageURL` longtext, `smallImage` tinyint(4) DEFAULT NULL, `smallImageFileEntryId` bigint(20) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `smallImageURL` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_DB780A20` (`groupId`,`urlTitle`), UNIQUE KEY `IX_1B1040FD` (`uuid_`,`groupId`), KEY `IX_BB0C2905` (`companyId`,`displayDate`,`status`), KEY `IX_EB2DCE27` (`companyId`,`status`), KEY `IX_A5F57B61` (`companyId`,`userId`,`status`), KEY `IX_2672F77F` (`displayDate`,`status`), KEY `IX_F0E73383` (`groupId`,`displayDate`,`status`), KEY `IX_1EFD8EE9` (`groupId`,`status`), KEY `IX_DA04F689` (`groupId`,`userId`,`displayDate`,`status`), KEY `IX_49E15A23` (`groupId`,`userId`,`status`), KEY `IX_5E8307BB` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlogsEntry` -- LOCK TABLES `BlogsEntry` WRITE; /*!40000 ALTER TABLE `BlogsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `BlogsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlogsStatsUser` -- DROP TABLE IF EXISTS `BlogsStatsUser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BlogsStatsUser` ( `statsUserId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `entryCount` int(11) DEFAULT NULL, `lastPostDate` datetime(6) DEFAULT NULL, `ratingsTotalEntries` int(11) DEFAULT NULL, `ratingsTotalScore` double DEFAULT NULL, `ratingsAverageScore` double DEFAULT NULL, PRIMARY KEY (`statsUserId`), UNIQUE KEY `IX_82254C25` (`groupId`,`userId`), KEY `IX_90CDA39A` (`companyId`,`entryCount`), KEY `IX_28C78D5C` (`groupId`,`entryCount`), KEY `IX_507BA031` (`userId`,`lastPostDate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlogsStatsUser` -- LOCK TABLES `BlogsStatsUser` WRITE; /*!40000 ALTER TABLE `BlogsStatsUser` DISABLE KEYS */; /*!40000 ALTER TABLE `BlogsStatsUser` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BookmarksEntry` -- DROP TABLE IF EXISTS `BookmarksEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BookmarksEntry` ( `uuid_` varchar(75) DEFAULT NULL, `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(255) DEFAULT NULL, `url` longtext, `description` longtext, `visits` int(11) DEFAULT NULL, `priority` int(11) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_EAA02A91` (`uuid_`,`groupId`), KEY `IX_276C8C13` (`companyId`,`status`), KEY `IX_146382F2` (`groupId`,`folderId`,`status`), KEY `IX_416AD7D5` (`groupId`,`status`), KEY `IX_C78B61AC` (`groupId`,`userId`,`folderId`,`status`), KEY `IX_9D9CF70F` (`groupId`,`userId`,`status`), KEY `IX_E848278F` (`resourceBlockId`), KEY `IX_89BEDC4F` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BookmarksEntry` -- LOCK TABLES `BookmarksEntry` WRITE; /*!40000 ALTER TABLE `BookmarksEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `BookmarksEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BookmarksFolder` -- DROP TABLE IF EXISTS `BookmarksFolder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BookmarksFolder` ( `uuid_` varchar(75) DEFAULT NULL, `folderId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `parentFolderId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(75) DEFAULT NULL, `description` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`folderId`), UNIQUE KEY `IX_DC2F8927` (`uuid_`,`groupId`), KEY `IX_C27C9DBD` (`companyId`,`status`), KEY `IX_D16018A6` (`groupId`,`parentFolderId`,`status`), KEY `IX_28A49BB9` (`resourceBlockId`), KEY `IX_54F0ED65` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BookmarksFolder` -- LOCK TABLES `BookmarksFolder` WRITE; /*!40000 ALTER TABLE `BookmarksFolder` DISABLE KEYS */; /*!40000 ALTER TABLE `BookmarksFolder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BrowserTracker` -- DROP TABLE IF EXISTS `BrowserTracker`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BrowserTracker` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `browserTrackerId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `browserKey` bigint(20) DEFAULT NULL, PRIMARY KEY (`browserTrackerId`), UNIQUE KEY `IX_E7B95510` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BrowserTracker` -- LOCK TABLES `BrowserTracker` WRITE; /*!40000 ALTER TABLE `BrowserTracker` DISABLE KEYS */; /*!40000 ALTER TABLE `BrowserTracker` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Calendar` -- DROP TABLE IF EXISTS `Calendar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Calendar` ( `uuid_` varchar(75) DEFAULT NULL, `calendarId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `calendarResourceId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `timeZoneId` varchar(75) DEFAULT NULL, `color` int(11) DEFAULT NULL, `defaultCalendar` tinyint(4) DEFAULT NULL, `enableComments` tinyint(4) DEFAULT NULL, `enableRatings` tinyint(4) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`calendarId`), UNIQUE KEY `IX_3AE311A` (`uuid_`,`groupId`), KEY `IX_97FC174E` (`groupId`,`calendarResourceId`,`defaultCalendar`), KEY `IX_F0FAF226` (`resourceBlockId`), KEY `IX_97656498` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Calendar` -- LOCK TABLES `Calendar` WRITE; /*!40000 ALTER TABLE `Calendar` DISABLE KEYS */; /*!40000 ALTER TABLE `Calendar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarBooking` -- DROP TABLE IF EXISTS `CalendarBooking`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CalendarBooking` ( `uuid_` varchar(75) DEFAULT NULL, `calendarBookingId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `calendarId` bigint(20) DEFAULT NULL, `calendarResourceId` bigint(20) DEFAULT NULL, `parentCalendarBookingId` bigint(20) DEFAULT NULL, `vEventUid` varchar(255) DEFAULT NULL, `title` longtext, `description` longtext, `location` longtext, `startTime` bigint(20) DEFAULT NULL, `endTime` bigint(20) DEFAULT NULL, `allDay` tinyint(4) DEFAULT NULL, `recurrence` longtext, `firstReminder` bigint(20) DEFAULT NULL, `firstReminderType` varchar(75) DEFAULT NULL, `secondReminder` bigint(20) DEFAULT NULL, `secondReminderType` varchar(75) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`calendarBookingId`), UNIQUE KEY `IX_113A264E` (`calendarId`,`parentCalendarBookingId`), UNIQUE KEY `IX_8B23DA0E` (`calendarId`,`vEventUid`), UNIQUE KEY `IX_F4C61797` (`uuid_`,`groupId`), KEY `IX_470170B4` (`calendarId`,`status`), KEY `IX_B198FFC` (`calendarResourceId`), KEY `IX_F7B8A941` (`parentCalendarBookingId`,`status`), KEY `IX_22DFDB49` (`resourceBlockId`), KEY `IX_A21D9FD5` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarBooking` -- LOCK TABLES `CalendarBooking` WRITE; /*!40000 ALTER TABLE `CalendarBooking` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarBooking` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarNotificationTemplate` -- DROP TABLE IF EXISTS `CalendarNotificationTemplate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CalendarNotificationTemplate` ( `uuid_` varchar(75) DEFAULT NULL, `calendarNotificationTemplateId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `calendarId` bigint(20) DEFAULT NULL, `notificationType` varchar(75) DEFAULT NULL, `notificationTypeSettings` varchar(75) DEFAULT NULL, `notificationTemplateType` varchar(75) DEFAULT NULL, `subject` varchar(75) DEFAULT NULL, `body` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`calendarNotificationTemplateId`), UNIQUE KEY `IX_4012E97F` (`uuid_`,`groupId`), KEY `IX_7727A482` (`calendarId`,`notificationType`,`notificationTemplateType`), KEY `IX_4D7D97BD` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarNotificationTemplate` -- LOCK TABLES `CalendarNotificationTemplate` WRITE; /*!40000 ALTER TABLE `CalendarNotificationTemplate` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarNotificationTemplate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarResource` -- DROP TABLE IF EXISTS `CalendarResource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CalendarResource` ( `uuid_` varchar(75) DEFAULT NULL, `calendarResourceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `classUuid` varchar(75) DEFAULT NULL, `code_` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `active_` tinyint(4) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`calendarResourceId`), UNIQUE KEY `IX_16A12327` (`classNameId`,`classPK`), UNIQUE KEY `IX_4ABD2BC8` (`uuid_`,`groupId`), KEY `IX_76DDD0F7` (`active_`), KEY `IX_4470A59D` (`companyId`,`code_`,`active_`), KEY `IX_40678371` (`groupId`,`active_`), KEY `IX_55C2F8AA` (`groupId`,`code_`), KEY `IX_8BCB4D38` (`resourceBlockId`), KEY `IX_56A06BC6` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarResource` -- LOCK TABLES `CalendarResource` WRITE; /*!40000 ALTER TABLE `CalendarResource` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarResource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ClassName_` -- DROP TABLE IF EXISTS `ClassName_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ClassName_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `classNameId` bigint(20) NOT NULL, `value` varchar(200) DEFAULT NULL, PRIMARY KEY (`classNameId`), UNIQUE KEY `IX_B27A301F` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ClassName_` -- LOCK TABLES `ClassName_` WRITE; /*!40000 ALTER TABLE `ClassName_` DISABLE KEYS */; INSERT INTO `ClassName_` VALUES (0,20001,'com.liferay.announcements.kernel.model.AnnouncementsDelivery'),(0,20002,'com.liferay.announcements.kernel.model.AnnouncementsEntry'),(0,20003,'com.liferay.announcements.kernel.model.AnnouncementsFlag'),(0,20004,'com.liferay.asset.kernel.model.AssetCategory'),(0,20005,'com.liferay.asset.kernel.model.AssetCategoryProperty'),(0,20006,'com.liferay.asset.kernel.model.AssetEntry'),(0,20007,'com.liferay.asset.kernel.model.AssetLink'),(0,20008,'com.liferay.asset.kernel.model.AssetTag'),(0,20009,'com.liferay.asset.kernel.model.AssetTagStats'),(0,20010,'com.liferay.asset.kernel.model.AssetVocabulary'),(0,20011,'com.liferay.blogs.kernel.model.BlogsEntry'),(0,20012,'com.liferay.blogs.kernel.model.BlogsStatsUser'),(0,20013,'com.liferay.counter.kernel.model.Counter'),(0,20014,'com.liferay.document.library.kernel.model.DLContent'),(0,20015,'com.liferay.document.library.kernel.model.DLFileEntry'),(0,20016,'com.liferay.document.library.kernel.model.DLFileEntryMetadata'),(0,20017,'com.liferay.document.library.kernel.model.DLFileEntryType'),(0,20018,'com.liferay.document.library.kernel.model.DLFileRank'),(0,20019,'com.liferay.document.library.kernel.model.DLFileShortcut'),(0,20020,'com.liferay.document.library.kernel.model.DLFileVersion'),(0,20021,'com.liferay.document.library.kernel.model.DLFolder'),(0,20022,'com.liferay.document.library.kernel.model.DLSyncEvent'),(0,20023,'com.liferay.expando.kernel.model.ExpandoColumn'),(0,20024,'com.liferay.expando.kernel.model.ExpandoRow'),(0,20025,'com.liferay.expando.kernel.model.ExpandoTable'),(0,20026,'com.liferay.expando.kernel.model.ExpandoValue'),(0,20027,'com.liferay.exportimport.kernel.model.ExportImportConfiguration'),(0,20028,'com.liferay.message.boards.kernel.model.MBBan'),(0,20029,'com.liferay.message.boards.kernel.model.MBCategory'),(0,20030,'com.liferay.message.boards.kernel.model.MBDiscussion'),(0,20031,'com.liferay.message.boards.kernel.model.MBMailingList'),(0,20032,'com.liferay.message.boards.kernel.model.MBMessage'),(0,20033,'com.liferay.message.boards.kernel.model.MBStatsUser'),(0,20034,'com.liferay.message.boards.kernel.model.MBThread'),(0,20035,'com.liferay.message.boards.kernel.model.MBThreadFlag'),(0,20036,'com.liferay.portal.kernel.model.Account'),(0,20037,'com.liferay.portal.kernel.model.Address'),(0,20038,'com.liferay.portal.kernel.model.BrowserTracker'),(0,20039,'com.liferay.portal.kernel.model.ClassName'),(0,20040,'com.liferay.portal.kernel.model.ClusterGroup'),(0,20041,'com.liferay.portal.kernel.model.Company'),(0,20042,'com.liferay.portal.kernel.model.Contact'),(0,20043,'com.liferay.portal.kernel.model.Country'),(0,20044,'com.liferay.portal.kernel.model.EmailAddress'),(0,20045,'com.liferay.portal.kernel.model.Group'),(0,20046,'com.liferay.portal.kernel.model.Image'),(0,20047,'com.liferay.portal.kernel.model.Layout'),(0,20048,'com.liferay.portal.kernel.model.LayoutBranch'),(0,20049,'com.liferay.portal.kernel.model.LayoutFriendlyURL'),(0,20050,'com.liferay.portal.kernel.model.LayoutPrototype'),(0,20051,'com.liferay.portal.kernel.model.LayoutRevision'),(0,20052,'com.liferay.portal.kernel.model.LayoutSet'),(0,20053,'com.liferay.portal.kernel.model.LayoutSetBranch'),(0,20054,'com.liferay.portal.kernel.model.LayoutSetPrototype'),(0,20055,'com.liferay.portal.kernel.model.ListType'),(0,20056,'com.liferay.portal.kernel.model.MembershipRequest'),(0,20057,'com.liferay.portal.kernel.model.OrgGroupRole'),(0,20058,'com.liferay.portal.kernel.model.OrgLabor'),(0,20059,'com.liferay.portal.kernel.model.Organization'),(0,20060,'com.liferay.portal.kernel.model.PasswordPolicy'),(0,20061,'com.liferay.portal.kernel.model.PasswordPolicyRel'),(0,20062,'com.liferay.portal.kernel.model.PasswordTracker'),(0,20063,'com.liferay.portal.kernel.model.Phone'),(0,20064,'com.liferay.portal.kernel.model.PluginSetting'),(0,20065,'com.liferay.portal.kernel.model.PortalPreferences'),(0,20066,'com.liferay.portal.kernel.model.Portlet'),(0,20067,'com.liferay.portal.kernel.model.PortletItem'),(0,20068,'com.liferay.portal.kernel.model.PortletPreferences'),(0,20069,'com.liferay.portal.kernel.model.RecentLayoutBranch'),(0,20070,'com.liferay.portal.kernel.model.RecentLayoutRevision'),(0,20071,'com.liferay.portal.kernel.model.RecentLayoutSetBranch'),(0,20072,'com.liferay.portal.kernel.model.Region'),(0,20073,'com.liferay.portal.kernel.model.Release'),(0,20074,'com.liferay.portal.kernel.model.Repository'),(0,20075,'com.liferay.portal.kernel.model.RepositoryEntry'),(0,20076,'com.liferay.portal.kernel.model.ResourceAction'),(0,20077,'com.liferay.portal.kernel.model.ResourceBlock'),(0,20078,'com.liferay.portal.kernel.model.ResourceBlockPermission'),(0,20079,'com.liferay.portal.kernel.model.ResourcePermission'),(0,20080,'com.liferay.portal.kernel.model.ResourceTypePermission'),(0,20081,'com.liferay.portal.kernel.model.Role'),(0,20082,'com.liferay.portal.kernel.model.ServiceComponent'),(0,20083,'com.liferay.portal.kernel.model.Subscription'),(0,20084,'com.liferay.portal.kernel.model.SystemEvent'),(0,20085,'com.liferay.portal.kernel.model.Team'),(0,20086,'com.liferay.portal.kernel.model.Ticket'),(0,20087,'com.liferay.portal.kernel.model.User'),(0,20088,'com.liferay.portal.kernel.model.UserGroup'),(0,20089,'com.liferay.portal.kernel.model.UserGroupGroupRole'),(0,20090,'com.liferay.portal.kernel.model.UserGroupRole'),(0,20091,'com.liferay.portal.kernel.model.UserIdMapper'),(0,20092,'com.liferay.portal.kernel.model.UserNotificationDelivery'),(0,20093,'com.liferay.portal.kernel.model.UserNotificationEvent'),(0,20094,'com.liferay.portal.kernel.model.UserTracker'),(0,20095,'com.liferay.portal.kernel.model.UserTrackerPath'),(0,20096,'com.liferay.portal.kernel.model.VirtualHost'),(0,20097,'com.liferay.portal.kernel.model.WebDAVProps'),(0,20098,'com.liferay.portal.kernel.model.Website'),(0,20099,'com.liferay.portal.kernel.model.WorkflowDefinitionLink'),(0,20100,'com.liferay.portal.kernel.model.WorkflowInstanceLink'),(0,20101,'com.liferay.portal.kernel.workflow.WorkflowTask'),(0,20102,'com.liferay.ratings.kernel.model.RatingsEntry'),(0,20103,'com.liferay.ratings.kernel.model.RatingsStats'),(0,20104,'com.liferay.social.kernel.model.SocialActivity'),(0,20105,'com.liferay.social.kernel.model.SocialActivityAchievement'),(0,20106,'com.liferay.social.kernel.model.SocialActivityCounter'),(0,20107,'com.liferay.social.kernel.model.SocialActivityLimit'),(0,20108,'com.liferay.social.kernel.model.SocialActivitySet'),(0,20109,'com.liferay.social.kernel.model.SocialActivitySetting'),(0,20110,'com.liferay.social.kernel.model.SocialRelation'),(0,20111,'com.liferay.social.kernel.model.SocialRequest'),(0,20112,'com.liferay.trash.kernel.model.TrashEntry'),(0,20113,'com.liferay.trash.kernel.model.TrashVersion'),(0,20114,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess'),(0,20134,'com.liferay.portal.kernel.model.UserPersonalSite'),(0,22501,'com.liferay.portlet.calendar.model.CalEvent'),(0,27801,'com.liferay.bookmarks.model.BookmarksEntry'),(0,27802,'com.liferay.bookmarks.model.BookmarksFolder'),(0,28001,'com.liferay.invitation.invite.members.model.MemberRequest'),(0,28101,'com.liferay.microblogs.model.MicroblogsEntry'),(0,28201,'com.liferay.wiki.model.WikiNode'),(0,28202,'com.liferay.wiki.model.WikiPage'),(0,28203,'com.liferay.wiki.model.WikiPageResource'),(0,28301,'com.liferay.calendar.model.Calendar'),(0,28302,'com.liferay.calendar.model.CalendarBooking'),(0,28303,'com.liferay.calendar.model.CalendarNotificationTemplate'),(0,28304,'com.liferay.calendar.model.CalendarResource'),(0,28601,'com.liferay.polls.model.PollsChoice'),(0,28602,'com.liferay.polls.model.PollsQuestion'),(0,28603,'com.liferay.polls.model.PollsVote'),(0,28701,'com.liferay.portal.workflow.kaleo.designer.model.KaleoDraftDefinition'),(0,29001,'com.liferay.portal.workflow.kaleo.model.KaleoAction'),(0,29002,'com.liferay.portal.workflow.kaleo.model.KaleoCondition'),(0,29003,'com.liferay.portal.workflow.kaleo.model.KaleoDefinition'),(0,29004,'com.liferay.portal.workflow.kaleo.model.KaleoInstance'),(0,29005,'com.liferay.portal.workflow.kaleo.model.KaleoInstanceToken'),(0,29006,'com.liferay.portal.workflow.kaleo.model.KaleoLog'),(0,29007,'com.liferay.portal.workflow.kaleo.model.KaleoNode'),(0,29008,'com.liferay.portal.workflow.kaleo.model.KaleoNotification'),(0,29009,'com.liferay.portal.workflow.kaleo.model.KaleoNotificationRecipient'),(0,29010,'com.liferay.portal.workflow.kaleo.model.KaleoTask'),(0,29011,'com.liferay.portal.workflow.kaleo.model.KaleoTaskAssignment'),(0,29012,'com.liferay.portal.workflow.kaleo.model.KaleoTaskAssignmentInstance'),(0,29013,'com.liferay.portal.workflow.kaleo.model.KaleoTaskInstanceToken'),(0,29014,'com.liferay.portal.workflow.kaleo.model.KaleoTimer'),(0,29015,'com.liferay.portal.workflow.kaleo.model.KaleoTimerInstanceToken'),(0,29016,'com.liferay.portal.workflow.kaleo.model.KaleoTransition'),(0,29101,'com.liferay.contacts.model.Entry'),(0,29201,'com.liferay.mobile.device.rules.model.MDRAction'),(0,29202,'com.liferay.mobile.device.rules.model.MDRRule'),(0,29203,'com.liferay.mobile.device.rules.model.MDRRuleGroup'),(0,29204,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance'),(0,29301,'com.liferay.portal.background.task.model.BackgroundTask'),(0,29601,'com.liferay.portal.lock.model.Lock'),(0,29603,'com.liferay.dynamic.data.mapping.model.DDMContent'),(0,29604,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance'),(0,29605,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstanceLink'),(0,29606,'com.liferay.dynamic.data.mapping.model.DDMStorageLink'),(0,29607,'com.liferay.dynamic.data.mapping.model.DDMStructure'),(0,29608,'com.liferay.dynamic.data.mapping.model.DDMStructureLayout'),(0,29609,'com.liferay.dynamic.data.mapping.model.DDMStructureLink'),(0,29610,'com.liferay.dynamic.data.mapping.model.DDMStructureVersion'),(0,29611,'com.liferay.dynamic.data.mapping.model.DDMTemplate'),(0,29612,'com.liferay.dynamic.data.mapping.model.DDMTemplateLink'),(0,29613,'com.liferay.dynamic.data.mapping.model.DDMTemplateVersion'),(0,29701,'com.liferay.dynamic.data.lists.model.DDLRecord'),(0,29702,'com.liferay.dynamic.data.lists.model.DDLRecordSet'),(0,29703,'com.liferay.dynamic.data.lists.model.DDLRecordVersion'),(0,29705,'com.liferay.portlet.display.template.PortletDisplayTemplate'),(0,29709,'com.liferay.rss.web.internal.util.RSSFeed'),(0,29716,'com.liferay.portal.kernel.theme.NavItem'),(0,29759,'com.liferay.portal.kernel.servlet.taglib.ui.BreadcrumbEntry'),(0,29769,'com.liferay.portal.kernel.repository.model.FileEntry'),(0,29773,'com.liferay.portal.kernel.servlet.taglib.ui.LanguageEntry'),(0,29827,'com.liferay.document.library.kernel.util.RawMetadataProcessor'),(0,29831,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcessLink'),(0,29901,'com.liferay.portal.security.audit.storage.model.AuditEvent'),(0,30001,'com.liferay.portal.security.service.access.policy.model.SAPEntry'),(0,30101,'com.liferay.marketplace.model.App'),(0,30102,'com.liferay.marketplace.model.Module'),(0,30701,'com.liferay.oauth.model.OAuthApplication'),(0,30702,'com.liferay.oauth.model.OAuthUser'),(0,30801,'com.liferay.sync.model.SyncDevice'),(0,30802,'com.liferay.sync.model.SyncDLFileVersionDiff'),(0,30803,'com.liferay.sync.model.SyncDLObject'),(0,30901,'com.liferay.journal.model.JournalArticle'),(0,30902,'com.liferay.journal.model.JournalArticleImage'),(0,30903,'com.liferay.journal.model.JournalArticleResource'),(0,30904,'com.liferay.journal.model.JournalContentSearch'),(0,30905,'com.liferay.journal.model.JournalFeed'),(0,30906,'com.liferay.journal.model.JournalFolder'),(0,31425,'com.liferay.dynamic.data.lists.model.DDLFormRecord'); /*!40000 ALTER TABLE `ClassName_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ClusterGroup` -- DROP TABLE IF EXISTS `ClusterGroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ClusterGroup` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `clusterGroupId` bigint(20) NOT NULL, `name` varchar(75) DEFAULT NULL, `clusterNodeIds` varchar(75) DEFAULT NULL, `wholeCluster` tinyint(4) DEFAULT NULL, PRIMARY KEY (`clusterGroupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ClusterGroup` -- LOCK TABLES `ClusterGroup` WRITE; /*!40000 ALTER TABLE `ClusterGroup` DISABLE KEYS */; /*!40000 ALTER TABLE `ClusterGroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Company` -- DROP TABLE IF EXISTS `Company`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Company` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `companyId` bigint(20) NOT NULL, `accountId` bigint(20) DEFAULT NULL, `webId` varchar(75) DEFAULT NULL, `key_` longtext, `mx` varchar(200) DEFAULT NULL, `homeURL` longtext, `logoId` bigint(20) DEFAULT NULL, `system` tinyint(4) DEFAULT NULL, `maxUsers` int(11) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`companyId`), UNIQUE KEY `IX_EC00543C` (`webId`), KEY `IX_38EFE3FD` (`logoId`), KEY `IX_12566EC2` (`mx`), KEY `IX_35E3E7C6` (`system`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Company` -- LOCK TABLES `Company` WRITE; /*!40000 ALTER TABLE `Company` DISABLE KEYS */; INSERT INTO `Company` VALUES (1,20115,20117,'liferay.com','7Gc1AW84I/q/D2WabEzbRA==','liferay.com',NULL,0,0,0,1); /*!40000 ALTER TABLE `Company` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Configuration_` -- DROP TABLE IF EXISTS `Configuration_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Configuration_` ( `configurationId` varchar(255) NOT NULL, `dictionary` longtext, PRIMARY KEY (`configurationId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Configuration_` -- LOCK TABLES `Configuration_` WRITE; /*!40000 ALTER TABLE `Configuration_` DISABLE KEYS */; INSERT INTO `Configuration_` VALUES ('com.liferay.modules.compat.internal.configuration.ModuleCompatExtenderConfiguration','_felix_.cm.newConfiguration=B\"true\"\r\nservice.bundleLocation=\"?\"\r\nservice.pid=\"com.liferay.modules.compat.internal.configuration.ModuleCompatExtenderConfiguration\"\r\n'),('com.liferay.portal.search.configuration.IndexStatusManagerConfiguration','felix.fileinstall.filename=\"file:/Users/vicnate5/bundles/ee_release/liferay-dxp-digital-enterprise-7.0-sp7/osgi/configs/com.liferay.portal.search.configuration.IndexStatusManagerConfiguration.cfg\"\r\nindexReadOnly=\"false\"\r\nservice.pid=\"com.liferay.portal.search.configuration.IndexStatusManagerConfiguration\"\r\n'),('com.liferay.portal.security.auth.verifier.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration.24ea3275-a7d7-4dc8-b20b-3ab5efc57a8b','enabled=\"true\"\r\nfelix.fileinstall.filename=\"file:/Users/vicnate5/bundles/ee_release/liferay-dxp-digital-enterprise-7.0-sp7/osgi/configs/com.liferay.portal.security.auth.verifier.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration-default.cfg\"\r\nservice.factoryPid=\"com.liferay.portal.security.auth.verifier.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration\"\r\nservice.pid=\"com.liferay.portal.security.auth.verifier.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration.24ea3275-a7d7-4dc8-b20b-3ab5efc57a8b\"\r\nurlsExcludes=\"/api/liferay*\"\r\nurlsIncludes=\"/api/*,/xmlrpc*\"\r\n'),('com.liferay.portal.security.auth.verifier.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration.factory','factory.pid=\"com.liferay.portal.security.auth.verifier.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration\"\r\nfactory.pidList=[ \\\r\n \"com.liferay.portal.security.auth.verifier.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration.24ea3275-a7d7-4dc8-b20b-3ab5efc57a8b\", \\\r\n ]\r\n'),('com.liferay.portal.security.auth.verifier.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration.2406ba9a-65dd-4e3d-8ca0-5e36155ef841','enabled=\"true\"\r\nfelix.fileinstall.filename=\"file:/Users/vicnate5/bundles/ee_release/liferay-dxp-digital-enterprise-7.0-sp7/osgi/configs/com.liferay.portal.security.auth.verifier.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration-default.cfg\"\r\nservice.factoryPid=\"com.liferay.portal.security.auth.verifier.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration\"\r\nservice.pid=\"com.liferay.portal.security.auth.verifier.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration.2406ba9a-65dd-4e3d-8ca0-5e36155ef841\"\r\nurlsIncludes=\"/api/json*,/api/jsonws*,/c/portal/json_service*\"\r\n'),('com.liferay.portal.security.auth.verifier.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration.factory','factory.pid=\"com.liferay.portal.security.auth.verifier.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration\"\r\nfactory.pidList=[ \\\r\n \"com.liferay.portal.security.auth.verifier.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration.2406ba9a-65dd-4e3d-8ca0-5e36155ef841\", \\\r\n ]\r\n'),('com.liferay.portal.security.auth.verifier.tunnel.module.configuration.TunnelAuthVerifierConfiguration.41cb5aa4-4ca0-48c4-8e4f-63f96f3a3c6d','enabled=\"true\"\r\nfelix.fileinstall.filename=\"file:/Users/vicnate5/bundles/ee_release/liferay-dxp-digital-enterprise-7.0-sp7/osgi/configs/com.liferay.portal.security.auth.verifier.tunnel.module.configuration.TunnelAuthVerifierConfiguration-default.cfg\"\r\nhostsAllowed=\"127.0.0.1,SERVER_IP\"\r\nservice.factoryPid=\"com.liferay.portal.security.auth.verifier.tunnel.module.configuration.TunnelAuthVerifierConfiguration\"\r\nservice.pid=\"com.liferay.portal.security.auth.verifier.tunnel.module.configuration.TunnelAuthVerifierConfiguration.41cb5aa4-4ca0-48c4-8e4f-63f96f3a3c6d\"\r\nserviceAccessPolicyName=\"SYSTEM_USER_PASSWORD\"\r\nurlsIncludes=\"/api/liferay/do\"\r\n'),('com.liferay.portal.security.auth.verifier.tunnel.module.configuration.TunnelAuthVerifierConfiguration.factory','factory.pid=\"com.liferay.portal.security.auth.verifier.tunnel.module.configuration.TunnelAuthVerifierConfiguration\"\r\nfactory.pidList=[ \\\r\n \"com.liferay.portal.security.auth.verifier.tunnel.module.configuration.TunnelAuthVerifierConfiguration.41cb5aa4-4ca0-48c4-8e4f-63f96f3a3c6d\", \\\r\n ]\r\n'); /*!40000 ALTER TABLE `Configuration_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Contact_` -- DROP TABLE IF EXISTS `Contact_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Contact_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `contactId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `accountId` bigint(20) DEFAULT NULL, `parentContactId` bigint(20) DEFAULT NULL, `emailAddress` varchar(254) DEFAULT NULL, `firstName` varchar(75) DEFAULT NULL, `middleName` varchar(75) DEFAULT NULL, `lastName` varchar(75) DEFAULT NULL, `prefixId` bigint(20) DEFAULT NULL, `suffixId` bigint(20) DEFAULT NULL, `male` tinyint(4) DEFAULT NULL, `birthday` datetime(6) DEFAULT NULL, `smsSn` varchar(75) DEFAULT NULL, `facebookSn` varchar(75) DEFAULT NULL, `jabberSn` varchar(75) DEFAULT NULL, `skypeSn` varchar(75) DEFAULT NULL, `twitterSn` varchar(75) DEFAULT NULL, `employeeStatusId` varchar(75) DEFAULT NULL, `employeeNumber` varchar(75) DEFAULT NULL, `jobTitle` varchar(100) DEFAULT NULL, `jobClass` varchar(75) DEFAULT NULL, `hoursOfOperation` varchar(75) DEFAULT NULL, PRIMARY KEY (`contactId`), KEY `IX_B8C28C53` (`accountId`), KEY `IX_791914FA` (`classNameId`,`classPK`), KEY `IX_66D496A3` (`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Contact_` -- LOCK TABLES `Contact_` WRITE; /*!40000 ALTER TABLE `Contact_` DISABLE KEYS */; INSERT INTO `Contact_` VALUES (0,20120,20115,20119,NULL,'2018-07-02 15:51:00.078000','2018-07-02 15:51:00.078000',20087,20119,20117,0,'default@liferay.com',NULL,NULL,NULL,0,0,1,'2018-07-02 15:50:59.896000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(0,20157,20115,20155,NULL,'2018-07-02 15:51:01.151000','2018-07-02 15:51:01.151000',20087,20155,20117,0,'test@liferay.com','Test',NULL,'Test',0,0,1,'1970-01-01 00:00:00.000000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `Contact_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Contacts_Entry` -- DROP TABLE IF EXISTS `Contacts_Entry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Contacts_Entry` ( `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `fullName` varchar(75) DEFAULT NULL, `emailAddress` varchar(254) DEFAULT NULL, `comments` longtext, PRIMARY KEY (`entryId`), KEY `IX_C257DE32` (`userId`,`emailAddress`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Contacts_Entry` -- LOCK TABLES `Contacts_Entry` WRITE; /*!40000 ALTER TABLE `Contacts_Entry` DISABLE KEYS */; /*!40000 ALTER TABLE `Contacts_Entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Counter` -- DROP TABLE IF EXISTS `Counter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Counter` ( `name` varchar(75) NOT NULL, `currentId` bigint(20) DEFAULT NULL, PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Counter` -- LOCK TABLES `Counter` WRITE; /*!40000 ALTER TABLE `Counter` DISABLE KEYS */; INSERT INTO `Counter` VALUES ('com.liferay.counter.kernel.model.Counter',31500),('com.liferay.portal.kernel.model.Layout#20132#true',1),('com.liferay.portal.kernel.model.Layout#20139#false',1),('com.liferay.portal.kernel.model.Layout#20142#false',1),('com.liferay.portal.kernel.model.Layout#20158#false',1),('com.liferay.portal.kernel.model.Layout#20158#true',1),('com.liferay.portal.kernel.model.Layout#31231#true',1),('com.liferay.portal.kernel.model.Layout#31294#true',2),('com.liferay.portal.kernel.model.Layout#31311#true',1),('com.liferay.portal.kernel.model.Layout#31322#true',1),('com.liferay.portal.kernel.model.Layout#31349#true',3),('com.liferay.portal.kernel.model.ResourceAction',2400),('com.liferay.portal.kernel.model.ResourcePermission',1300); /*!40000 ALTER TABLE `Counter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Country` -- DROP TABLE IF EXISTS `Country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Country` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `countryId` bigint(20) NOT NULL, `name` varchar(75) DEFAULT NULL, `a2` varchar(75) DEFAULT NULL, `a3` varchar(75) DEFAULT NULL, `number_` varchar(75) DEFAULT NULL, `idd_` varchar(75) DEFAULT NULL, `zipRequired` tinyint(4) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`countryId`), UNIQUE KEY `IX_717B97E1` (`a2`), UNIQUE KEY `IX_717B9BA2` (`a3`), UNIQUE KEY `IX_19DA007B` (`name`), KEY `IX_25D734CD` (`active_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Country` -- LOCK TABLES `Country` WRITE; /*!40000 ALTER TABLE `Country` DISABLE KEYS */; INSERT INTO `Country` VALUES (0,1,'canada','CA','CAN','124','001',1,1),(0,2,'china','CN','CHN','156','086',1,1),(0,3,'france','FR','FRA','250','033',1,1),(0,4,'germany','DE','DEU','276','049',1,1),(0,5,'hong-kong','HK','HKG','344','852',1,1),(0,6,'hungary','HU','HUN','348','036',1,1),(0,7,'israel','IL','ISR','376','972',1,1),(0,8,'italy','IT','ITA','380','039',1,1),(0,9,'japan','JP','JPN','392','081',0,1),(0,10,'south-korea','KR','KOR','410','082',1,1),(0,11,'netherlands','NL','NLD','528','031',1,1),(0,12,'portugal','PT','PRT','620','351',1,1),(0,13,'russia','RU','RUS','643','007',1,1),(0,14,'singapore','SG','SGP','702','065',1,1),(0,15,'spain','ES','ESP','724','034',1,1),(0,16,'turkey','TR','TUR','792','090',1,1),(0,17,'vietnam','VN','VNM','704','084',1,1),(0,18,'united-kingdom','GB','GBR','826','044',1,1),(0,19,'united-states','US','USA','840','001',1,1),(0,20,'afghanistan','AF','AFG','4','093',1,1),(0,21,'albania','AL','ALB','8','355',1,1),(0,22,'algeria','DZ','DZA','12','213',1,1),(0,23,'american-samoa','AS','ASM','16','684',1,1),(0,24,'andorra','AD','AND','20','376',1,1),(0,25,'angola','AO','AGO','24','244',0,1),(0,26,'anguilla','AI','AIA','660','264',1,1),(0,27,'antarctica','AQ','ATA','10','672',1,1),(0,28,'antigua-barbuda','AG','ATG','28','268',0,1),(0,29,'argentina','AR','ARG','32','054',1,1),(0,30,'armenia','AM','ARM','51','374',1,1),(0,31,'aruba','AW','ABW','533','297',0,1),(0,32,'australia','AU','AUS','36','061',1,1),(0,33,'austria','AT','AUT','40','043',1,1),(0,34,'azerbaijan','AZ','AZE','31','994',1,1),(0,35,'bahamas','BS','BHS','44','242',0,1),(0,36,'bahrain','BH','BHR','48','973',1,1),(0,37,'bangladesh','BD','BGD','50','880',1,1),(0,38,'barbados','BB','BRB','52','246',1,1),(0,39,'belarus','BY','BLR','112','375',1,1),(0,40,'belgium','BE','BEL','56','032',1,1),(0,41,'belize','BZ','BLZ','84','501',0,1),(0,42,'benin','BJ','BEN','204','229',0,1),(0,43,'bermuda','BM','BMU','60','441',1,1),(0,44,'bhutan','BT','BTN','64','975',1,1),(0,45,'bolivia','BO','BOL','68','591',1,1),(0,46,'bosnia-herzegovina','BA','BIH','70','387',1,1),(0,47,'botswana','BW','BWA','72','267',0,1),(0,48,'brazil','BR','BRA','76','055',1,1),(0,49,'british-virgin-islands','VG','VGB','92','284',1,1),(0,50,'brunei','BN','BRN','96','673',1,1),(0,51,'bulgaria','BG','BGR','100','359',1,1),(0,52,'burkina-faso','BF','BFA','854','226',0,1),(0,53,'burma-myanmar','MM','MMR','104','095',1,1),(0,54,'burundi','BI','BDI','108','257',0,1),(0,55,'cambodia','KH','KHM','116','855',1,1),(0,56,'cameroon','CM','CMR','120','237',1,1),(0,57,'cape-verde-island','CV','CPV','132','238',1,1),(0,58,'cayman-islands','KY','CYM','136','345',1,1),(0,59,'central-african-republic','CF','CAF','140','236',0,1),(0,60,'chad','TD','TCD','148','235',1,1),(0,61,'chile','CL','CHL','152','056',1,1),(0,62,'christmas-island','CX','CXR','162','061',1,1),(0,63,'cocos-islands','CC','CCK','166','061',1,1),(0,64,'colombia','CO','COL','170','057',1,1),(0,65,'comoros','KM','COM','174','269',0,1),(0,66,'republic-of-congo','CD','COD','180','242',0,1),(0,67,'democratic-republic-of-congo','CG','COG','178','243',0,1),(0,68,'cook-islands','CK','COK','184','682',0,1),(0,69,'costa-rica','CR','CRI','188','506',1,1),(0,70,'croatia','HR','HRV','191','385',1,1),(0,71,'cuba','CU','CUB','192','053',1,1),(0,72,'cyprus','CY','CYP','196','357',1,1),(0,73,'czech-republic','CZ','CZE','203','420',1,1),(0,74,'denmark','DK','DNK','208','045',1,1),(0,75,'djibouti','DJ','DJI','262','253',0,1),(0,76,'dominica','DM','DMA','212','767',0,1),(0,77,'dominican-republic','DO','DOM','214','809',1,1),(0,78,'ecuador','EC','ECU','218','593',1,1),(0,79,'egypt','EG','EGY','818','020',1,1),(0,80,'el-salvador','SV','SLV','222','503',1,1),(0,81,'equatorial-guinea','GQ','GNQ','226','240',0,1),(0,82,'eritrea','ER','ERI','232','291',0,1),(0,83,'estonia','EE','EST','233','372',1,1),(0,84,'ethiopia','ET','ETH','231','251',1,1),(0,85,'faeroe-islands','FO','FRO','234','298',1,1),(0,86,'falkland-islands','FK','FLK','238','500',1,1),(0,87,'fiji-islands','FJ','FJI','242','679',0,1),(0,88,'finland','FI','FIN','246','358',1,1),(0,89,'french-guiana','GF','GUF','254','594',1,1),(0,90,'french-polynesia','PF','PYF','258','689',1,1),(0,91,'gabon','GA','GAB','266','241',1,1),(0,92,'gambia','GM','GMB','270','220',0,1),(0,93,'georgia','GE','GEO','268','995',1,1),(0,94,'ghana','GH','GHA','288','233',0,1),(0,95,'gibraltar','GI','GIB','292','350',1,1),(0,96,'greece','GR','GRC','300','030',1,1),(0,97,'greenland','GL','GRL','304','299',1,1),(0,98,'grenada','GD','GRD','308','473',0,1),(0,99,'guadeloupe','GP','GLP','312','590',1,1),(0,100,'guam','GU','GUM','316','671',1,1),(0,101,'guatemala','GT','GTM','320','502',1,1),(0,102,'guinea','GN','GIN','324','224',0,1),(0,103,'guinea-bissau','GW','GNB','624','245',1,1),(0,104,'guyana','GY','GUY','328','592',0,1),(0,105,'haiti','HT','HTI','332','509',1,1),(0,106,'honduras','HN','HND','340','504',1,1),(0,107,'iceland','IS','ISL','352','354',1,1),(0,108,'india','IN','IND','356','091',1,1),(0,109,'indonesia','ID','IDN','360','062',1,1),(0,110,'iran','IR','IRN','364','098',1,1),(0,111,'iraq','IQ','IRQ','368','964',1,1),(0,112,'ireland','IE','IRL','372','353',0,1),(0,113,'ivory-coast','CI','CIV','384','225',1,1),(0,114,'jamaica','JM','JAM','388','876',1,1),(0,115,'jordan','JO','JOR','400','962',1,1),(0,116,'kazakhstan','KZ','KAZ','398','007',1,1),(0,117,'kenya','KE','KEN','404','254',1,1),(0,118,'kiribati','KI','KIR','408','686',0,1),(0,119,'kuwait','KW','KWT','414','965',1,1),(0,120,'north-korea','KP','PRK','408','850',0,1),(0,121,'kyrgyzstan','KG','KGZ','471','996',1,1),(0,122,'laos','LA','LAO','418','856',1,1),(0,123,'latvia','LV','LVA','428','371',1,1),(0,124,'lebanon','LB','LBN','422','961',1,1),(0,125,'lesotho','LS','LSO','426','266',1,1),(0,126,'liberia','LR','LBR','430','231',1,1),(0,127,'libya','LY','LBY','434','218',1,1),(0,128,'liechtenstein','LI','LIE','438','423',1,1),(0,129,'lithuania','LT','LTU','440','370',1,1),(0,130,'luxembourg','LU','LUX','442','352',1,1),(0,131,'macau','MO','MAC','446','853',0,1),(0,132,'macedonia','MK','MKD','807','389',1,1),(0,133,'madagascar','MG','MDG','450','261',1,1),(0,134,'malawi','MW','MWI','454','265',0,1),(0,135,'malaysia','MY','MYS','458','060',1,1),(0,136,'maldives','MV','MDV','462','960',1,1),(0,137,'mali','ML','MLI','466','223',0,1),(0,138,'malta','MT','MLT','470','356',1,1),(0,139,'marshall-islands','MH','MHL','584','692',1,1),(0,140,'martinique','MQ','MTQ','474','596',1,1),(0,141,'mauritania','MR','MRT','478','222',0,1),(0,142,'mauritius','MU','MUS','480','230',0,1),(0,143,'mayotte-island','YT','MYT','175','269',1,1),(0,144,'mexico','MX','MEX','484','052',1,1),(0,145,'micronesia','FM','FSM','583','691',1,1),(0,146,'moldova','MD','MDA','498','373',1,1),(0,147,'monaco','MC','MCO','492','377',1,1),(0,148,'mongolia','MN','MNG','496','976',1,1),(0,149,'montenegro','ME','MNE','499','382',1,1),(0,150,'montserrat','MS','MSR','500','664',0,1),(0,151,'morocco','MA','MAR','504','212',1,1),(0,152,'mozambique','MZ','MOZ','508','258',1,1),(0,153,'namibia','NA','NAM','516','264',1,1),(0,154,'nauru','NR','NRU','520','674',0,1),(0,155,'nepal','NP','NPL','524','977',1,1),(0,156,'netherlands-antilles','AN','ANT','530','599',1,1),(0,157,'new-caledonia','NC','NCL','540','687',1,1),(0,158,'new-zealand','NZ','NZL','554','064',1,1),(0,159,'nicaragua','NI','NIC','558','505',1,1),(0,160,'niger','NE','NER','562','227',1,1),(0,161,'nigeria','NG','NGA','566','234',1,1),(0,162,'niue','NU','NIU','570','683',0,1),(0,163,'norfolk-island','NF','NFK','574','672',1,1),(0,164,'norway','NO','NOR','578','047',1,1),(0,165,'oman','OM','OMN','512','968',1,1),(0,166,'pakistan','PK','PAK','586','092',1,1),(0,167,'palau','PW','PLW','585','680',1,1),(0,168,'palestine','PS','PSE','275','970',1,1),(0,169,'panama','PA','PAN','591','507',1,1),(0,170,'papua-new-guinea','PG','PNG','598','675',1,1),(0,171,'paraguay','PY','PRY','600','595',1,1),(0,172,'peru','PE','PER','604','051',1,1),(0,173,'philippines','PH','PHL','608','063',1,1),(0,174,'poland','PL','POL','616','048',1,1),(0,175,'puerto-rico','PR','PRI','630','787',1,1),(0,176,'qatar','QA','QAT','634','974',0,1),(0,177,'reunion-island','RE','REU','638','262',1,1),(0,178,'romania','RO','ROU','642','040',1,1),(0,179,'rwanda','RW','RWA','646','250',0,1),(0,180,'st-helena','SH','SHN','654','290',1,1),(0,181,'st-kitts','KN','KNA','659','869',0,1),(0,182,'st-lucia','LC','LCA','662','758',0,1),(0,183,'st-pierre-miquelon','PM','SPM','666','508',1,1),(0,184,'st-vincent','VC','VCT','670','784',1,1),(0,185,'san-marino','SM','SMR','674','378',1,1),(0,186,'sao-tome-principe','ST','STP','678','239',0,1),(0,187,'saudi-arabia','SA','SAU','682','966',1,1),(0,188,'senegal','SN','SEN','686','221',1,1),(0,189,'serbia','RS','SRB','688','381',1,1),(0,190,'seychelles','SC','SYC','690','248',0,1),(0,191,'sierra-leone','SL','SLE','694','249',0,1),(0,192,'slovakia','SK','SVK','703','421',1,1),(0,193,'slovenia','SI','SVN','705','386',1,1),(0,194,'solomon-islands','SB','SLB','90','677',0,1),(0,195,'somalia','SO','SOM','706','252',0,1),(0,196,'south-africa','ZA','ZAF','710','027',1,1),(0,197,'sri-lanka','LK','LKA','144','094',1,1),(0,198,'sudan','SD','SDN','736','095',1,1),(0,199,'suriname','SR','SUR','740','597',0,1),(0,200,'swaziland','SZ','SWZ','748','268',1,1),(0,201,'sweden','SE','SWE','752','046',1,1),(0,202,'switzerland','CH','CHE','756','041',1,1),(0,203,'syria','SY','SYR','760','963',0,1),(0,204,'taiwan','TW','TWN','158','886',1,1),(0,205,'tajikistan','TJ','TJK','762','992',1,1),(0,206,'tanzania','TZ','TZA','834','255',0,1),(0,207,'thailand','TH','THA','764','066',1,1),(0,208,'togo','TG','TGO','768','228',1,1),(0,209,'tonga','TO','TON','776','676',0,1),(0,210,'trinidad-tobago','TT','TTO','780','868',0,1),(0,211,'tunisia','TN','TUN','788','216',1,1),(0,212,'turkmenistan','TM','TKM','795','993',1,1),(0,213,'turks-caicos','TC','TCA','796','649',1,1),(0,214,'tuvalu','TV','TUV','798','688',0,1),(0,215,'uganda','UG','UGA','800','256',0,1),(0,216,'ukraine','UA','UKR','804','380',1,1),(0,217,'united-arab-emirates','AE','ARE','784','971',0,1),(0,218,'uruguay','UY','URY','858','598',1,1),(0,219,'uzbekistan','UZ','UZB','860','998',1,1),(0,220,'vanuatu','VU','VUT','548','678',0,1),(0,221,'vatican-city','VA','VAT','336','039',1,1),(0,222,'venezuela','VE','VEN','862','058',1,1),(0,223,'wallis-futuna','WF','WLF','876','681',1,1),(0,224,'western-samoa','WS','WSM','882','685',1,1),(0,225,'yemen','YE','YEM','887','967',0,1),(0,226,'zambia','ZM','ZMB','894','260',1,1),(0,227,'zimbabwe','ZW','ZWE','716','263',0,1),(0,228,'aland-islands','AX','ALA','248','359',1,1),(0,229,'bonaire-st-eustatius-saba','BQ','BES','535','599',1,1),(0,230,'bouvet-island','BV','BVT','74','047',1,1),(0,231,'british-indian-ocean-territory','IO','IOT','86','246',1,1),(0,232,'curacao','CW','CUW','531','599',1,1),(0,233,'french-southern-territories','TF','ATF','260','033',0,1),(0,234,'guernsey','GG','GGY','831','044',1,1),(0,235,'heard-island-mcdonald-islands','HM','HMD','334','061',1,1),(0,236,'isle-of-man','IM','IMN','833','044',1,1),(0,237,'jersey','JE','JEY','832','044',1,1),(0,238,'northern-mariana-islands','MP','MNP','580','670',1,1),(0,239,'pitcairn','PN','PCN','612','649',1,1),(0,240,'south-georgia-south-sandwich-islands','GS','SGS','239','044',1,1),(0,241,'south-sudan','SS','SSD','728','211',1,1),(0,242,'sint-maarten','SX','SXM','534','721',1,1),(0,243,'st-barthelemy','BL','BLM','652','590',1,1),(0,244,'st-martin','MF','MAF','663','590',1,1),(0,245,'tokelau','TK','TKL','772','690',0,1),(0,246,'timor-leste','TL','TLS','626','670',1,1),(0,247,'united-states-minor-outlying-islands','UM','UMI','581','699',1,1),(0,248,'united-states-virgin-islands','VI','VIR','850','340',1,1),(0,249,'western-sahara','EH','ESH','732','212',1,1); /*!40000 ALTER TABLE `Country` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDLRecord` -- DROP TABLE IF EXISTS `DDLRecord`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDLRecord` ( `uuid_` varchar(75) DEFAULT NULL, `recordId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `versionUserId` bigint(20) DEFAULT NULL, `versionUserName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `DDMStorageId` bigint(20) DEFAULT NULL, `recordSetId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `displayIndex` int(11) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`recordId`), UNIQUE KEY `IX_B4328F39` (`uuid_`,`groupId`), KEY `IX_6A6C1C85` (`companyId`), KEY `IX_AAC564D3` (`recordSetId`,`userId`), KEY `IX_384AB6F7` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDLRecord` -- LOCK TABLES `DDLRecord` WRITE; /*!40000 ALTER TABLE `DDLRecord` DISABLE KEYS */; INSERT INTO `DDLRecord` VALUES ('68cd91c3-e531-e1e0-e5f4-a4bbc16e78f4',31421,20142,20115,20155,'Test Test',20155,'Test Test','2018-07-02 16:08:51.073000','2018-07-02 16:08:51.113000',31422,31419,'1.0',0,NULL); /*!40000 ALTER TABLE `DDLRecord` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDLRecordSet` -- DROP TABLE IF EXISTS `DDLRecordSet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDLRecordSet` ( `uuid_` varchar(75) DEFAULT NULL, `recordSetId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `DDMStructureId` bigint(20) DEFAULT NULL, `recordSetKey` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `minDisplayRows` int(11) DEFAULT NULL, `scope` int(11) DEFAULT NULL, `settings_` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`recordSetId`), UNIQUE KEY `IX_56DAB121` (`groupId`,`recordSetKey`), UNIQUE KEY `IX_270BA5E1` (`uuid_`,`groupId`), KEY `IX_5938C39F` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDLRecordSet` -- LOCK TABLES `DDLRecordSet` WRITE; /*!40000 ALTER TABLE `DDLRecordSet` DISABLE KEYS */; INSERT INTO `DDLRecordSet` VALUES ('db54cae0-f682-57a9-bb1f-00a63f980696',31419,20142,20115,20155,'Test Test','2018-07-02 16:08:31.538000','2018-07-02 16:08:43.802000',31415,'31418','Untitled Form',NULL,10,2,'{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fieldValues\":[{\"instanceId\":\"y64bSwpi\",\"name\":\"sendEmailNotification\",\"value\":\"false\"},{\"instanceId\":\"EivLte4J\",\"name\":\"emailFromName\",\"value\":\"\"},{\"instanceId\":\"MvlLnotb\",\"name\":\"redirectURL\",\"value\":\"\"},{\"instanceId\":\"o3v32FSv\",\"name\":\"emailFromAddress\",\"value\":\"\"},{\"instanceId\":\"t7lzZMeI\",\"name\":\"workflowDefinition\",\"value\":\"\"},{\"instanceId\":\"vtYDXp4T\",\"name\":\"emailToAddress\",\"value\":\"\"},{\"instanceId\":\"Ka3e8U1A\",\"name\":\"storageType\",\"value\":\"\"},{\"instanceId\":\"Oj2A7a0B\",\"name\":\"requireCaptcha\",\"value\":\"false\"},{\"instanceId\":\"VljrAa9s\",\"name\":\"published\",\"value\":\"true\"},{\"instanceId\":\"53ykv38Z\",\"name\":\"emailSubject\",\"value\":\"\"}]}',NULL); /*!40000 ALTER TABLE `DDLRecordSet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDLRecordVersion` -- DROP TABLE IF EXISTS `DDLRecordVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDLRecordVersion` ( `recordVersionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `DDMStorageId` bigint(20) DEFAULT NULL, `recordSetId` bigint(20) DEFAULT NULL, `recordId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `displayIndex` int(11) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`recordVersionId`), UNIQUE KEY `IX_C79E347` (`recordId`,`version`), KEY `IX_762ADC7` (`recordId`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDLRecordVersion` -- LOCK TABLES `DDLRecordVersion` WRITE; /*!40000 ALTER TABLE `DDLRecordVersion` DISABLE KEYS */; INSERT INTO `DDLRecordVersion` VALUES (31424,20142,20115,20155,'Test Test','2018-07-02 16:08:51.073000',31422,31419,31421,'1.0',0,0,20155,'Test Test','2018-07-02 16:08:51.113000'); /*!40000 ALTER TABLE `DDLRecordVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMContent` -- DROP TABLE IF EXISTS `DDMContent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMContent` ( `uuid_` varchar(75) DEFAULT NULL, `contentId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` longtext, `description` longtext, `data_` longtext, PRIMARY KEY (`contentId`), UNIQUE KEY `IX_EB9BDE28` (`uuid_`,`groupId`), KEY `IX_E3BAF436` (`companyId`), KEY `IX_50BF1038` (`groupId`), KEY `IX_3A9C0626` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMContent` -- LOCK TABLES `DDMContent` WRITE; /*!40000 ALTER TABLE `DDMContent` DISABLE KEYS */; INSERT INTO `DDMContent` VALUES ('a4a4b22a-f356-5c94-0552-6dcf56573965',31422,20139,20115,20155,'Test Test','2018-07-02 16:08:51.058000','2018-07-02 16:08:51.058000','com.liferay.dynamic.data.mapping.model.DDMStorageLink',NULL,'{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fieldValues\":[{\"instanceId\":\"DH3efip1\",\"name\":\"textField\",\"value\":{\"en_US\":\"hello\"}}]}'); /*!40000 ALTER TABLE `DDMContent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMDataProviderInstance` -- DROP TABLE IF EXISTS `DDMDataProviderInstance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMDataProviderInstance` ( `uuid_` varchar(75) DEFAULT NULL, `dataProviderInstanceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` longtext, `description` longtext, `definition` longtext, `type_` varchar(75) DEFAULT NULL, PRIMARY KEY (`dataProviderInstanceId`), UNIQUE KEY `IX_B4E180D9` (`uuid_`,`groupId`), KEY `IX_DB54A6E5` (`companyId`), KEY `IX_1333A2A7` (`groupId`), KEY `IX_C903C097` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMDataProviderInstance` -- LOCK TABLES `DDMDataProviderInstance` WRITE; /*!40000 ALTER TABLE `DDMDataProviderInstance` DISABLE KEYS */; /*!40000 ALTER TABLE `DDMDataProviderInstance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMDataProviderInstanceLink` -- DROP TABLE IF EXISTS `DDMDataProviderInstanceLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMDataProviderInstanceLink` ( `dataProviderInstanceLinkId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `dataProviderInstanceId` bigint(20) DEFAULT NULL, `structureId` bigint(20) DEFAULT NULL, PRIMARY KEY (`dataProviderInstanceLinkId`), UNIQUE KEY `IX_8C878342` (`dataProviderInstanceId`,`structureId`), KEY `IX_CB823541` (`structureId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMDataProviderInstanceLink` -- LOCK TABLES `DDMDataProviderInstanceLink` WRITE; /*!40000 ALTER TABLE `DDMDataProviderInstanceLink` DISABLE KEYS */; /*!40000 ALTER TABLE `DDMDataProviderInstanceLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMStorageLink` -- DROP TABLE IF EXISTS `DDMStorageLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMStorageLink` ( `uuid_` varchar(75) DEFAULT NULL, `storageLinkId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `structureId` bigint(20) DEFAULT NULL, PRIMARY KEY (`storageLinkId`), UNIQUE KEY `IX_702D1AD5` (`classPK`), KEY `IX_81776090` (`structureId`), KEY `IX_DB81EB42` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMStorageLink` -- LOCK TABLES `DDMStorageLink` WRITE; /*!40000 ALTER TABLE `DDMStorageLink` DISABLE KEYS */; INSERT INTO `DDMStorageLink` VALUES ('2c7d963c-1973-1c28-a9fd-04c4473d2418',31423,20115,29603,31422,31415); /*!40000 ALTER TABLE `DDMStorageLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMStructure` -- DROP TABLE IF EXISTS `DDMStructure`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMStructure` ( `uuid_` varchar(75) DEFAULT NULL, `structureId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `versionUserId` bigint(20) DEFAULT NULL, `versionUserName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `parentStructureId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `structureKey` varchar(75) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `definition` longtext, `storageType` varchar(75) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`structureId`), UNIQUE KEY `IX_C8785130` (`groupId`,`classNameId`,`structureKey`), UNIQUE KEY `IX_85C7EBE2` (`uuid_`,`groupId`), KEY `IX_31817A62` (`classNameId`), KEY `IX_4FBAC092` (`companyId`,`classNameId`), KEY `IX_43395316` (`groupId`,`parentStructureId`), KEY `IX_657899A8` (`parentStructureId`), KEY `IX_20FDE04C` (`structureKey`), KEY `IX_F9FB8D60` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMStructure` -- LOCK TABLES `DDMStructure` WRITE; /*!40000 ALTER TABLE `DDMStructure` DISABLE KEYS */; INSERT INTO `DDMStructure` VALUES ('baffa6c0-fb22-f9e2-2f03-f93eeca907de',29795,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.184000','2018-07-02 15:51:16.184000',0,20016,'LEARNING MODULE METADATA','1.0','Learning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module Metadata','Learning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module Metadata','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Product\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select2235\",\"options\":[{\"label\":{\"en_US\":\"Home Edition\"},\"value\":\"HE\"},{\"label\":{\"en_US\":\"Business Edition\"},\"value\":\"BE\"},{\"label\":{\"en_US\":\"Enterprise Edition\"},\"value\":\"EE\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Version\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select3212\",\"options\":[{\"label\":{\"en_US\":\"1.0\"},\"value\":\"1\"},{\"label\":{\"en_US\":\"2.0\"},\"value\":\"2\"},{\"label\":{\"en_US\":\"3.0\"},\"value\":\"3\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Topics\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select4115\",\"options\":[{\"label\":{\"en_US\":\"Administration\"},\"value\":\"admin\"},{\"label\":{\"en_US\":\"Installation\"},\"value\":\"install\"},{\"label\":{\"en_US\":\"Configuration\"},\"value\":\"config\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Level\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select5069\",\"options\":[{\"label\":{\"en_US\":\"Beginner\"},\"value\":\"beginner\"},{\"label\":{\"en_US\":\"Intermediate\"},\"value\":\"intermediate\"},{\"label\":{\"en_US\":\"Advanced\"},\"value\":\"advanced\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',0,NULL),('baa4bbab-3b0d-d1fc-52bb-666d1b621125',29798,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.237000','2018-07-02 15:51:16.237000',0,20016,'MARKETING CAMPAIGN THEME METADATA','1.0','Marketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme Metadata','Marketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme Metadata','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Select\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select2305\",\"options\":[{\"label\":{\"en_US\":\"Strong Company\"},\"value\":\"strong\"},{\"label\":{\"en_US\":\"New Product Launch\"},\"value\":\"product\"},{\"label\":{\"en_US\":\"Company Philosophy\"},\"value\":\"philosophy\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Campaign Theme\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select3229\",\"options\":[{\"label\":{\"en_US\":\"Your Trusted Advisor\"},\"value\":\"advisor\"},{\"label\":{\"en_US\":\"10 Years of Customer Solutions\"},\"value\":\"solutions\"},{\"label\":{\"en_US\":\"Making a Difference\"},\"value\":\"difference\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Business Goal\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select4282\",\"options\":[{\"label\":{\"en_US\":\"Awareness\"},\"value\":\"awareness\"},{\"label\":{\"en_US\":\"Lead Generation\"},\"value\":\"leads\"},{\"label\":{\"en_US\":\"Customer Service\"},\"value\":\"service\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',0,NULL),('5c1c2fbb-8ecc-95c4-4229-05aa5bcfbf6b',29801,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.264000','2018-07-02 15:51:16.264000',0,20016,'MEETING METADATA','1.0','Meeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting Metadata','Metadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meeting','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"ddm_date3054\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"text2217\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Meeting Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"text4569\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Time\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"text5638\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Location\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"textarea6584\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"textarea7502\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Participants\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true}]}','json',0,NULL),('850ede17-4724-8ed5-b6ab-db0d10fe5c92',29805,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.310000','2018-07-02 15:51:16.310000',0,20016,'AUTO_97EA3C2C-F89A-DFC7-13F8-56552E3CF452','1.0','合同ContratosコントラクトContractenSzerződésContratoVertragחוזיםSopimusContractesContratsContract','合同ContratosコントラクトContractenSzerződésContratoVertragחוזיםSopimusContractesContratsContract','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Effective Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"ddm_date18949\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Expiration Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"ddm_date20127\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Contract Type\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select10264\",\"options\":[{\"label\":{\"en_US\":\"NDA\"},\"value\":\"NDA\"},{\"label\":{\"en_US\":\"MSA\"},\"value\":\"MSA\"},{\"label\":{\"en_US\":\"License Agreement\"},\"value\":\"License\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Status\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select4893\",\"options\":[{\"label\":{\"en_US\":\"Draft\"},\"value\":\"Draft\"},{\"label\":{\"en_US\":\"In Review\"},\"value\":\"Review\"},{\"label\":{\"en_US\":\"Suspended\"},\"value\":\"Suspended\"},{\"label\":{\"en_US\":\"Signed\"},\"value\":\"Signed\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Legal Reviewer\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text14822\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Signing Authority\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text17700\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Deal Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text2087\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',1,NULL),('a81d4501-b61e-2ad1-1fa8-c418c5c27d21',29810,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.380000','2018-07-02 15:51:16.380000',0,20016,'AUTO_8F93B06C-7881-4673-AC29-59EC094A2283','1.0','营销标语Banner comercialマーケティングバナーMarketingbannerHírdetési csíkBanner de MarketingMarketingbannerבאנר שיווקיMarkkinointimainospalkkiBàner de màrquetingBannière commercialeMarketing Banner','营销标语Banner comercialマーケティングバナーMarketingbannerHírdetési csíkBanner de MarketingMarketingbannerבאנר שיווקיMarkkinointimainospalkkiBàner de màrquetingBannière commercialeMarketing Banner','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Needs Legal Review\"},\"type\":\"radio\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"radio5547\",\"options\":[{\"label\":{\"en_US\":\"Yes\"},\"value\":\"yes\"},{\"label\":{\"en_US\":\"No\"},\"value\":\"no\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Banner Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text2033\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true,\"indexType\":\"text\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"textarea2873\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',1,NULL),('0b863058-2012-7dd5-a915-7a8c87157fea',29816,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.414000','2018-07-02 15:51:16.414000',0,20016,'AUTO_A4A6362A-AF04-0BFD-1C92-539F38F29205','1.0','在线培训Formación en líneaオンライントレーニングOnline trainingOnline tanfolyamTreinamento OnlineOnline-Trainingהכשרה מקוונתOnline koulutusFromació en líniaFormation en ligneOnline Training','在线培训Formación en líneaオンライントレーニングOnline trainingOnline tanfolyamTreinamento OnlineOnline-Trainingהכשרה מקוונתOnline koulutusFromació en líniaFormation en ligneOnline Training','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Lesson Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text2082\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Author\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text2979\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',1,NULL),('2ffb101c-c960-cbbd-ed1a-b3a3077a8d11',29822,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.445000','2018-07-02 15:51:16.445000',0,20016,'AUTO_B2305ACE-770C-7279-7DEC-0A46F33CFD98','1.0','销售报告Presentación de ventasセールスプレゼンテーションVerkooppresentatieKereskedői előadásApresentação de VendasVertriebspräsentationמצגת מכירותMyynti esitysPresentació de vendesPrésentation des ventesSales Presentation','销售报告Presentación de ventasセールスプレゼンテーションVerkooppresentatieKereskedői előadásApresentação de VendasVertriebspräsentationמצגת מכירותMyynti esitysPresentació de vendesPrésentation des ventesSales Presentation','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Product\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select2890\",\"options\":[{\"label\":{\"en_US\":\"Home Edition\"},\"value\":\"HE\"},{\"label\":{\"en_US\":\"Business Edition\"},\"value\":\"BE\"},{\"label\":{\"en_US\":\"Enterprise Edition\"},\"value\":\"EE\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Version\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select3864\",\"options\":[{\"label\":{\"en_US\":\"1.0\"},\"value\":\"1\"},{\"label\":{\"en_US\":\"2.0\"},\"value\":\"2\"},{\"label\":{\"en_US\":\"3.0\"},\"value\":\"3\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Areas of Interest\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select4831\",\"options\":[{\"label\":{\"en_US\":\"Website\"},\"value\":\"website\"},{\"label\":{\"en_US\":\"Collaboration\"},\"value\":\"collaboration\"},{\"label\":{\"en_US\":\"Intranet\"},\"value\":\"intranet\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Competitors\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select5929\",\"options\":[{\"label\":{\"en_US\":\"ACME\"},\"value\":\"acme\"},{\"label\":{\"en_US\":\"SevenCogs\"},\"value\":\"sevencogs\"},{\"label\":{\"en_US\":\"FreePlus\"},\"value\":\"freeplus\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Prospect Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text1993\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',1,NULL),('ef8dc375-3150-f8f2-3d94-2ce7d840e7e1',29828,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.537000','2018-07-02 15:51:16.537000',0,29827,'TIKARAWMETADATA','1.0','TIKARAWMETADATA','TIKARAWMETADATA','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_PROGRAM_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.PROGRAM_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_COMMAND_LINE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.COMMAND_LINE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_HISTORY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.HISTORY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_TABLE_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.TABLE_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_INSTITUTION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.INSTITUTION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_SOURCE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.SOURCE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_CONTACT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.CONTACT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_PROJECT_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.PROJECT_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_CONVENTIONS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.CONVENTIONS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_REFERENCES\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.REFERENCES\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_ACKNOWLEDGEMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.ACKNOWLEDGEMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_REALIZATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.REALIZATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_EXPERIMENT_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.EXPERIMENT_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_COMMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.COMMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_MODEL_NAME_ENGLISH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.MODEL_NAME_ENGLISH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"CreativeCommons_LICENSE_URL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.CreativeCommons.LICENSE_URL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"CreativeCommons_LICENSE_LOCATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.CreativeCommons.LICENSE_LOCATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"CreativeCommons_WORK_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.CreativeCommons.WORK_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_NAMESPACE_URI_DC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.NAMESPACE_URI_DC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_NAMESPACE_URI_DC_TERMS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.NAMESPACE_URI_DC_TERMS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_PREFIX_DC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.PREFIX_DC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_PREFIX_DC_TERMS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.PREFIX_DC_TERMS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_FORMAT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.FORMAT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_IDENTIFIER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.IDENTIFIER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_MODIFIED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.MODIFIED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_CONTRIBUTOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.CONTRIBUTOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_COVERAGE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.COVERAGE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_CREATOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.CREATOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_CREATED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.CREATED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_DESCRIPTION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.DESCRIPTION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_LANGUAGE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.LANGUAGE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_PUBLISHER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.PUBLISHER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_RELATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.RELATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_RIGHTS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.RIGHTS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_SOURCE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.SOURCE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_SUBJECT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.SUBJECT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_TITLE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.TITLE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Geographic_LATITUDE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Geographic.LATITUDE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Geographic_LONGITUDE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Geographic.LONGITUDE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Geographic_ALTITUDE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Geographic.ALTITUDE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_ENCODING\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_ENCODING\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_LANGUAGE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_LANGUAGE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_LENGTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_LENGTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_LOCATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_LOCATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_DISPOSITION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_DISPOSITION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_MD5\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_MD5\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_LAST_MODIFIED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.LAST_MODIFIED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_LOCATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.LOCATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_PREFIX\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_PREFIX\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_RAW_HEADER_PREFIX\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_RAW_HEADER_PREFIX\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_RECIPIENT_ADDRESS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_RECIPIENT_ADDRESS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_FROM\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_FROM\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_TO\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_TO\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_CC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_CC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_BCC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_BCC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_NAMESPACE_URI_DOC_META\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.NAMESPACE_URI_DOC_META\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_PREFIX_DOC_META\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.PREFIX_DOC_META\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_USER_DEFINED_METADATA_NAME_PREFIX\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.USER_DEFINED_METADATA_NAME_PREFIX\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_KEYWORDS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.KEYWORDS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_INITIAL_AUTHOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.INITIAL_AUTHOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_LAST_AUTHOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.LAST_AUTHOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_AUTHOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.AUTHOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_CREATION_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.CREATION_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_SAVE_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.SAVE_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_PRINT_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.PRINT_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_SLIDE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.SLIDE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_PAGE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.PAGE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_PARAGRAPH_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.PARAGRAPH_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_LINE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.LINE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_WORD_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.WORD_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_CHARACTER_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.CHARACTER_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_CHARACTER_COUNT_WITH_SPACES\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.CHARACTER_COUNT_WITH_SPACES\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_TABLE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.TABLE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_IMAGE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.IMAGE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_OBJECT_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.OBJECT_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_NAMESPACE_URI\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.NAMESPACE_URI\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_PREFIX\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.PREFIX\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_CATEGORY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.CATEGORY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_CONTENT_STATUS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.CONTENT_STATUS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_LAST_MODIFIED_BY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.LAST_MODIFIED_BY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_LAST_PRINTED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.LAST_PRINTED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_REVISION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.REVISION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_VERSION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.VERSION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_SUBJECT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.SUBJECT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_BITS_PER_SAMPLE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.BITS_PER_SAMPLE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_IMAGE_LENGTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.IMAGE_LENGTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_IMAGE_WIDTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.IMAGE_WIDTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_SAMPLES_PER_PIXEL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.SAMPLES_PER_PIXEL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_FLASH_FIRED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.FLASH_FIRED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_EXPOSURE_TIME\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.EXPOSURE_TIME\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_F_NUMBER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.F_NUMBER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_FOCAL_LENGTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.FOCAL_LENGTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_ISO_SPEED_RATINGS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.ISO_SPEED_RATINGS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_EQUIPMENT_MAKE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.EQUIPMENT_MAKE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_EQUIPMENT_MODEL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.EQUIPMENT_MODEL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_SOFTWARE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.SOFTWARE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_ORIENTATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.ORIENTATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_RESOLUTION_HORIZONTAL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.RESOLUTION_HORIZONTAL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_RESOLUTION_VERTICAL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.RESOLUTION_VERTICAL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_RESOLUTION_UNIT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.RESOLUTION_UNIT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_ORIGINAL_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.ORIGINAL_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_RESOURCE_NAME_KEY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.RESOURCE_NAME_KEY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_PROTECTED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.PROTECTED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_EMBEDDED_RELATIONSHIP_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.EMBEDDED_RELATIONSHIP_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_EMBEDDED_STORAGE_CLASS_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.EMBEDDED_STORAGE_CLASS_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_EMBEDDED_RESOURCE_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.EMBEDDED_RESOURCE_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMimeKeys_TIKA_MIME_FILE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMimeKeys.TIKA_MIME_FILE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMimeKeys_MIME_TYPE_MAGIC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMimeKeys.MIME_TYPE_MAGIC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ABS_PEAK_AUDIO_FILE_PATH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ABS_PEAK_AUDIO_FILE_PATH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ALBUM\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ALBUM\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ALT_TAPE_NAME\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ALT_TAPE_NAME\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ARTIST\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ARTIST\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ALBUM_ARTIST\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ALBUM_ARTIST\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_MOD_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_MOD_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_SAMPLE_RATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_SAMPLE_RATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_SAMPLE_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_SAMPLE_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_CHANNEL_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_CHANNEL_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_COMPRESSOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_COMPRESSOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_COMPILATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.COMPILATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_COMPOSER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.COMPOSER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_COPYRIGHT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.COPYRIGHT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_DISC_NUMBER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.DISC_NUMBER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_DURATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.DURATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ENGINEER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ENGINEER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_FILE_DATA_RATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.FILE_DATA_RATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_GENRE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.GENRE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_INSTRUMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.INSTRUMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_KEY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.KEY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_LOG_COMMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.LOG_COMMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_LOOP\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.LOOP\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_NUMBER_OF_BEATS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.NUMBER_OF_BEATS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_METADATA_MOD_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.METADATA_MOD_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_PULL_DOWN\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.PULL_DOWN\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_RELATIVE_PEAK_AUDIO_FILE_PATH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.RELATIVE_PEAK_AUDIO_FILE_PATH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_RELEASE_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.RELEASE_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SCALE_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SCALE_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SCENE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SCENE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SHOT_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SHOT_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SHOT_LOCATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SHOT_LOCATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SHOT_NAME\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SHOT_NAME\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SPEAKER_PLACEMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SPEAKER_PLACEMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_STRETCH_MODE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.STRETCH_MODE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_TAPE_NAME\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.TAPE_NAME\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_TEMPO\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.TEMPO\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_TIME_SIGNATURE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.TIME_SIGNATURE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_TRACK_NUMBER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.TRACK_NUMBER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_ALPHA_MODE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_ALPHA_MODE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_ALPHA_UNITY_IS_TRANSPARENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_ALPHA_UNITY_IS_TRANSPARENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_COLOR_SPACE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_COLOR_SPACE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_COMPRESSOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_COMPRESSOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_FIELD_ORDER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_FIELD_ORDER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_FRAME_RATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_FRAME_RATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_MOD_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_MOD_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_PIXEL_DEPTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_PIXEL_DEPTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_PIXEL_ASPECT_RATIO\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_PIXEL_ASPECT_RATIO\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,NULL),('9ae1d5dc-5fd9-1830-7a07-627d307a3208',31170,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:24.398000','2018-07-02 15:51:24.398000',0,30901,'BASIC-WEB-CONTENT','1.0','基本网页内容Contenido web básico基本WebコンテンツBasiswebcontentAlapvető webtartalomConteúdo Web básicoEinfacher Webcontentתוכן אינטרנטי בסיסיTavallinen web-sisältöContigut web bàsicContenu web de baseBasic Web Content','基本网页内容Contenido web básico基本WebコンテンツBasiswebcontentAlapvető webtartalomConteúdo Web básicoEinfacher Webcontentתוכן אינטרנטי בסיסיTavallinen web-sisältöContigut web bàsicContenu web de baseBasic Web Content','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"html\",\"readOnly\":false,\"label\":{\"en_US\":\"Content\"},\"type\":\"ddm-text-html\",\"required\":false,\"showLabel\":true,\"visibilityExpression\":\"\",\"indexType\":\"text\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"content\",\"localizable\":true,\"validation\":{}}]}','json',0,NULL),('5671c044-33df-c829-105b-ee74fa275322',31176,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:51.549000','2018-07-02 15:51:51.549000',0,29702,'CONTACTS','1.0','ContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContacts','ContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContacts','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"company\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Company\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"email\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Email\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"firstName\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"First Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"gtalk\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Instant Messenger Service\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"imService\",\"options\":[{\"label\":{\"en_US\":\"GTalk\"},\"value\":\"gtalk\"}],\"localizable\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"imUserName\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Instant Messenger\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"jobTitle\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Job Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"lastName\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Last Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"notes\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Notes\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"phoneMobile\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Phone (Mobile)\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"phoneOffice\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Phone (Office)\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,NULL),('6a290edf-05bb-5374-54a2-203d11d9e159',31179,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:51.569000','2018-07-02 15:51:51.569000',0,29702,'EVENTS','1.0','EventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEvents','EventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEvents','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"document-library\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Attachment\"},\"type\":\"ddm-documentlibrary\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"attachment\",\"localizable\":true,\"tip\":{\"en_US\":\"Upload documents no larger than 3,000k.\"}},{\"dataType\":\"double\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Cost\"},\"type\":\"ddm-number\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"cost\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"eventDate\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"eventName\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Event Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"eventTime\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Time\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"location\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Location\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,NULL),('ef0ef5ae-b320-42d8-d226-4223d35d95e4',31182,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:51.584000','2018-07-02 15:51:51.584000',0,29702,'INVENTORY','1.0','InventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventory','InventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventory','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"item\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Item\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"location\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Location\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Purchase Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"purchaseDate\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"double\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Purchase Price\"},\"type\":\"ddm-number\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"purchasePrice\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"double\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Quantity\"},\"type\":\"ddm-number\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"quantity\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',0,NULL),('55c40984-0601-2a3a-c63a-78c882b6dfa3',31185,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:51.599000','2018-07-02 15:51:51.599000',0,29702,'ISSUES TRACKING','1.0','Issues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues Tracking','Issue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue Tracking','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"assignedTo\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Assigned To\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"document-library\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Attachment\"},\"type\":\"ddm-documentlibrary\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"attachment\",\"localizable\":true,\"tip\":{\"en_US\":\"Upload documents no larger than 3,000k.\"}},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"comments\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Comments\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"dueDate\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Due Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"issueId\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Issue ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"minor\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Severity\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"severity\",\"options\":[{\"label\":{\"en_US\":\"Critical\"},\"value\":\"critical\"},{\"label\":{\"en_US\":\"Major\"},\"value\":\"major\"},{\"label\":{\"en_US\":\"Minor\"},\"value\":\"minor\"},{\"label\":{\"en_US\":\"Trivial\"},\"value\":\"trivial\"}],\"localizable\":true},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"open\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Status\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"status\",\"options\":[{\"label\":{\"en_US\":\"Open\"},\"value\":\"open\"},{\"label\":{\"en_US\":\"Pending\"},\"value\":\"pending\"},{\"label\":{\"en_US\":\"Completed\"},\"value\":\"completed\"}],\"localizable\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"title\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,NULL),('dd8ac78d-ba06-5bfb-5db6-ddcb68e04331',31188,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:51.616000','2018-07-02 15:51:51.616000',0,29702,'MEETING MINUTES','1.0','Meeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting Minutes','Meeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting Minutes','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"document-library\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Attachment\"},\"type\":\"ddm-documentlibrary\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"attachment\",\"localizable\":true,\"tip\":{\"en_US\":\"Upload documents no larger than 3,000k.\"}},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"author\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Author\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"duration\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Meeting Duration\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"meetingDate\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Meeting Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"minutes\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Minutes\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"title\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,NULL),('9b2b9167-79cb-cb23-32a5-80e0c97008d8',31191,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:51.632000','2018-07-02 15:51:51.632000',0,29702,'TO DO','1.0','To DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo Do','To DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo Do','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"assignedTo\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Assigned To\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"document-library\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Attachment\"},\"type\":\"ddm-documentlibrary\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"attachment\",\"localizable\":true,\"tip\":{\"en_US\":\"Upload documents no larger than 3,000k.\"}},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"comments\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Comments\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"endDate\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"End Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true},{\"dataType\":\"integer\",\"predefinedValue\":{\"en_US\":\"0\"},\"readOnly\":false,\"label\":{\"en_US\":\"% Complete\"},\"type\":\"ddm-integer\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"percentComplete\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"minor\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Severity\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"severity\",\"options\":[{\"label\":{\"en_US\":\"Critical\"},\"value\":\"critical\"},{\"label\":{\"en_US\":\"Major\"},\"value\":\"major\"},{\"label\":{\"en_US\":\"Minor\"},\"value\":\"minor\"},{\"label\":{\"en_US\":\"Trivial\"},\"value\":\"trivial\"}],\"localizable\":true},{\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"startDate\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Start Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"open\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Status\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"status\",\"options\":[{\"label\":{\"en_US\":\"Open\"},\"value\":\"open\"},{\"label\":{\"en_US\":\"Pending\"},\"value\":\"pending\"},{\"label\":{\"en_US\":\"Completed\"},\"value\":\"completed\"}],\"localizable\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"title\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,NULL),('e09e58b7-c679-7d0c-213e-9f4de33e4e91',31415,20142,20115,20155,'Test Test',20155,'Test Test','2018-07-02 16:08:31.523000','2018-07-02 16:08:31.523000',0,29702,'31414','1.0','Untitled Form','','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"tooltip\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"text field\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"displayStyle\":\"singleline\",\"visibilityExpression\":\"\",\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"textField\",\"localizable\":true,\"tip\":{\"en_US\":\"\"},\"placeholder\":{\"en_US\":\"\"},\"validation\":{\"expression\":\"\",\"errorMessage\":\"\"}}]}','json',1,NULL); /*!40000 ALTER TABLE `DDMStructure` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMStructureLayout` -- DROP TABLE IF EXISTS `DDMStructureLayout`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMStructureLayout` ( `uuid_` varchar(75) DEFAULT NULL, `structureLayoutId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `structureVersionId` bigint(20) DEFAULT NULL, `definition` longtext, PRIMARY KEY (`structureLayoutId`), UNIQUE KEY `IX_B7158C0A` (`structureVersionId`), UNIQUE KEY `IX_C9A0402C` (`uuid_`,`groupId`), KEY `IX_A90FF72A` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMStructureLayout` -- LOCK TABLES `DDMStructureLayout` WRITE; /*!40000 ALTER TABLE `DDMStructureLayout` DISABLE KEYS */; INSERT INTO `DDMStructureLayout` VALUES ('35ab1d2e-ab1b-4e59-be7f-4d21ca4620a2',29797,20151,20115,20119,NULL,'2018-07-02 15:51:16.208000','2018-07-02 15:51:16.208000',29796,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"select2235\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select3212\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select4115\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select5069\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('e189d606-22ce-7dbd-2de9-58a0045e9508',29800,20151,20115,20119,NULL,'2018-07-02 15:51:16.243000','2018-07-02 15:51:16.243000',29799,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"select2305\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select3229\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select4282\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('38e2c4ba-89ed-e703-33e7-b8d8dbb12fdb',29803,20151,20115,20119,NULL,'2018-07-02 15:51:16.270000','2018-07-02 15:51:16.270000',29802,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"ddm_date3054\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text2217\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text4569\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text5638\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"textarea6584\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"textarea7502\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('071339c8-769e-5334-99b2-c158ff3859f9',29807,20151,20115,20119,NULL,'2018-07-02 15:51:16.316000','2018-07-02 15:51:16.316000',29806,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"ddm_date18949\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ddm_date20127\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select10264\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select4893\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text14822\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text17700\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text2087\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('e2387d3e-a386-5ff6-15b4-403a1e4cb78f',29812,20151,20115,20119,NULL,'2018-07-02 15:51:16.384000','2018-07-02 15:51:16.384000',29811,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"radio5547\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text2033\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"textarea2873\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('01a0c4a6-dc3f-c568-529e-95b865c713ca',29818,20151,20115,20119,NULL,'2018-07-02 15:51:16.416000','2018-07-02 15:51:16.416000',29817,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"text2082\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text2979\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('e788c307-a33b-04e7-1afd-b974432021d9',29824,20151,20115,20119,NULL,'2018-07-02 15:51:16.449000','2018-07-02 15:51:16.449000',29823,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"select2890\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select3864\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select4831\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"select5929\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"text1993\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('2118c88b-768d-d818-0112-25a43bb1b0a7',29830,20151,20115,20119,NULL,'2018-07-02 15:51:16.594000','2018-07-02 15:51:16.594000',29829,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_PROGRAM_ID\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_COMMAND_LINE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_HISTORY\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_TABLE_ID\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_INSTITUTION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_SOURCE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_CONTACT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_PROJECT_ID\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_CONVENTIONS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_REFERENCES\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_ACKNOWLEDGEMENT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_REALIZATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_EXPERIMENT_ID\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_COMMENT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"ClimateForcast_MODEL_NAME_ENGLISH\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"CreativeCommons_LICENSE_URL\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"CreativeCommons_LICENSE_LOCATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"CreativeCommons_WORK_TYPE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_NAMESPACE_URI_DC\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_NAMESPACE_URI_DC_TERMS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_PREFIX_DC\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_PREFIX_DC_TERMS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_FORMAT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_IDENTIFIER\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_MODIFIED\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_CONTRIBUTOR\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_COVERAGE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_CREATOR\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_CREATED\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_DESCRIPTION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_LANGUAGE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_PUBLISHER\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_RELATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_RIGHTS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_SOURCE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_SUBJECT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_TITLE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"DublinCore_TYPE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Geographic_LATITUDE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Geographic_LONGITUDE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Geographic_ALTITUDE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_CONTENT_ENCODING\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_CONTENT_LANGUAGE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_CONTENT_LENGTH\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_CONTENT_LOCATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_CONTENT_DISPOSITION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_CONTENT_MD5\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_CONTENT_TYPE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_LAST_MODIFIED\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"HttpHeaders_LOCATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Message_MESSAGE_PREFIX\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Message_MESSAGE_RAW_HEADER_PREFIX\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Message_MESSAGE_RECIPIENT_ADDRESS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Message_MESSAGE_FROM\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Message_MESSAGE_TO\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Message_MESSAGE_CC\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Message_MESSAGE_BCC\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_NAMESPACE_URI_DOC_META\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_PREFIX_DOC_META\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_USER_DEFINED_METADATA_NAME_PREFIX\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_KEYWORDS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_INITIAL_AUTHOR\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_LAST_AUTHOR\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_AUTHOR\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_CREATION_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_SAVE_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_PRINT_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_SLIDE_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_PAGE_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_PARAGRAPH_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_LINE_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_WORD_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_CHARACTER_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_CHARACTER_COUNT_WITH_SPACES\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_TABLE_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_IMAGE_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"Office_OBJECT_COUNT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_NAMESPACE_URI\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_PREFIX\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_CATEGORY\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_CONTENT_STATUS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_LAST_MODIFIED_BY\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_LAST_PRINTED\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_REVISION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_VERSION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"OfficeOpenXMLCore_SUBJECT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_BITS_PER_SAMPLE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_IMAGE_LENGTH\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_IMAGE_WIDTH\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_SAMPLES_PER_PIXEL\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_FLASH_FIRED\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_EXPOSURE_TIME\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_F_NUMBER\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_FOCAL_LENGTH\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_ISO_SPEED_RATINGS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_EQUIPMENT_MAKE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_EQUIPMENT_MODEL\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_SOFTWARE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_ORIENTATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_RESOLUTION_HORIZONTAL\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_RESOLUTION_VERTICAL\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_RESOLUTION_UNIT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TIFF_ORIGINAL_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TikaMetadataKeys_RESOURCE_NAME_KEY\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TikaMetadataKeys_PROTECTED\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TikaMetadataKeys_EMBEDDED_RELATIONSHIP_ID\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TikaMetadataKeys_EMBEDDED_STORAGE_CLASS_ID\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TikaMetadataKeys_EMBEDDED_RESOURCE_TYPE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TikaMimeKeys_TIKA_MIME_FILE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"TikaMimeKeys_MIME_TYPE_MAGIC\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_ABS_PEAK_AUDIO_FILE_PATH\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_ALBUM\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_ALT_TAPE_NAME\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_ARTIST\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_ALBUM_ARTIST\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_AUDIO_MOD_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_AUDIO_SAMPLE_RATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_AUDIO_SAMPLE_TYPE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_AUDIO_CHANNEL_TYPE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_AUDIO_COMPRESSOR\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_COMPILATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_COMPOSER\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_COPYRIGHT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_DISC_NUMBER\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_DURATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_ENGINEER\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_FILE_DATA_RATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_GENRE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_INSTRUMENT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_KEY\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_LOG_COMMENT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_LOOP\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_NUMBER_OF_BEATS\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_METADATA_MOD_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_PULL_DOWN\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_RELATIVE_PEAK_AUDIO_FILE_PATH\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_RELEASE_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_SCALE_TYPE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_SCENE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_SHOT_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_SHOT_LOCATION\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_SHOT_NAME\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_SPEAKER_PLACEMENT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_STRETCH_MODE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_TAPE_NAME\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_TEMPO\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_TIME_SIGNATURE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_TRACK_NUMBER\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_ALPHA_MODE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_ALPHA_UNITY_IS_TRANSPARENT\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_COLOR_SPACE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_COMPRESSOR\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_FIELD_ORDER\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_FRAME_RATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_MOD_DATE\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_PIXEL_DEPTH\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"XMPDM_VIDEO_PIXEL_ASPECT_RATIO\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('7ff1cb3c-12c2-f11b-05e0-aaac537ff1da',31172,20151,20115,20119,NULL,'2018-07-02 15:51:24.401000','2018-07-02 15:51:24.401000',31171,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"content\"]}]}],\"title\":{\"en_US\":\"Basic Web Content\"}}],\"paginationMode\":\"\",\"defaultLanguageId\":\"en_US\"}'),('df9f0b11-b413-b96e-5a2c-6d477ddd3365',31178,20151,20115,20119,NULL,'2018-07-02 15:51:51.555000','2018-07-02 15:51:51.555000',31177,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"company\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"email\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"firstName\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"imService\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"imUserName\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"jobTitle\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"lastName\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"notes\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"phoneMobile\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"phoneOffice\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('460113c8-aee6-82cc-33be-16e293546d3c',31181,20151,20115,20119,NULL,'2018-07-02 15:51:51.572000','2018-07-02 15:51:51.572000',31180,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"attachment\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"cost\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"description\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"eventDate\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"eventName\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"eventTime\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"location\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('c0432300-8c5a-271a-b0fc-b1a3fef9d51b',31184,20151,20115,20119,NULL,'2018-07-02 15:51:51.586000','2018-07-02 15:51:51.586000',31183,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"description\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"item\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"location\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"purchaseDate\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"purchasePrice\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"quantity\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('bd4e7dd4-5bc3-7b48-01e2-8c7041b5603f',31187,20151,20115,20119,NULL,'2018-07-02 15:51:51.602000','2018-07-02 15:51:51.602000',31186,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"assignedTo\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"attachment\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"comments\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"description\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"dueDate\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"issueId\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"severity\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"status\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"title\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('bf9394cb-4e2e-71ee-eca6-54bb2c86598a',31190,20151,20115,20119,NULL,'2018-07-02 15:51:51.619000','2018-07-02 15:51:51.619000',31189,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"attachment\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"author\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"description\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"duration\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"meetingDate\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"minutes\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"title\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('28948653-1a91-a7f9-4163-be3a494753d2',31193,20151,20115,20119,NULL,'2018-07-02 15:51:51.637000','2018-07-02 15:51:51.637000',31192,'{\"pages\":[{\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"assignedTo\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"attachment\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"comments\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"description\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"endDate\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"percentComplete\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"severity\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"startDate\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"status\"]}]},{\"columns\":[{\"size\":12,\"fieldNames\":[\"title\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"single-page\",\"defaultLanguageId\":\"en_US\"}'),('0afe6305-7574-35a7-8a48-16f3a44eeb9b',31417,20142,20115,20155,'Test Test','2018-07-02 16:08:31.528000','2018-07-02 16:08:31.528000',31416,'{\"pages\":[{\"description\":{\"en_US\":\"\"},\"rows\":[{\"columns\":[{\"size\":12,\"fieldNames\":[\"textField\"]}]}],\"title\":{\"en_US\":\"\"}}],\"paginationMode\":\"\",\"defaultLanguageId\":\"en_US\"}'); /*!40000 ALTER TABLE `DDMStructureLayout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMStructureLink` -- DROP TABLE IF EXISTS `DDMStructureLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMStructureLink` ( `structureLinkId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `structureId` bigint(20) DEFAULT NULL, PRIMARY KEY (`structureLinkId`), UNIQUE KEY `IX_E43143A3` (`classNameId`,`classPK`,`structureId`), KEY `IX_17692B58` (`structureId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMStructureLink` -- LOCK TABLES `DDMStructureLink` WRITE; /*!40000 ALTER TABLE `DDMStructureLink` DISABLE KEYS */; INSERT INTO `DDMStructureLink` VALUES (29808,20115,20017,29804,29805),(29813,20115,20017,29809,29798),(29814,20115,20017,29809,29810),(29819,20115,20017,29815,29816),(29820,20115,20017,29815,29795),(29825,20115,20017,29821,29801),(29826,20115,20017,29821,29822),(31420,20115,29702,31419,31415); /*!40000 ALTER TABLE `DDMStructureLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMStructureVersion` -- DROP TABLE IF EXISTS `DDMStructureVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMStructureVersion` ( `structureVersionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `structureId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `parentStructureId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `definition` longtext, `storageType` varchar(75) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`structureVersionId`), UNIQUE KEY `IX_64C3C42` (`structureId`,`version`), KEY `IX_17B3C96C` (`structureId`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMStructureVersion` -- LOCK TABLES `DDMStructureVersion` WRITE; /*!40000 ALTER TABLE `DDMStructureVersion` DISABLE KEYS */; INSERT INTO `DDMStructureVersion` VALUES (29796,20151,20115,20119,NULL,'2018-07-02 15:51:16.184000',29795,'1.0',0,'Learning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module Metadata','Learning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module MetadataLearning Module Metadata','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Product\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select2235\",\"options\":[{\"label\":{\"en_US\":\"Home Edition\"},\"value\":\"HE\"},{\"label\":{\"en_US\":\"Business Edition\"},\"value\":\"BE\"},{\"label\":{\"en_US\":\"Enterprise Edition\"},\"value\":\"EE\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Version\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select3212\",\"options\":[{\"label\":{\"en_US\":\"1.0\"},\"value\":\"1\"},{\"label\":{\"en_US\":\"2.0\"},\"value\":\"2\"},{\"label\":{\"en_US\":\"3.0\"},\"value\":\"3\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Topics\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select4115\",\"options\":[{\"label\":{\"en_US\":\"Administration\"},\"value\":\"admin\"},{\"label\":{\"en_US\":\"Installation\"},\"value\":\"install\"},{\"label\":{\"en_US\":\"Configuration\"},\"value\":\"config\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Level\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select5069\",\"options\":[{\"label\":{\"en_US\":\"Beginner\"},\"value\":\"beginner\"},{\"label\":{\"en_US\":\"Intermediate\"},\"value\":\"intermediate\"},{\"label\":{\"en_US\":\"Advanced\"},\"value\":\"advanced\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',0,0,20119,NULL,'2018-07-02 15:51:16.184000'),(29799,20151,20115,20119,NULL,'2018-07-02 15:51:16.237000',29798,'1.0',0,'Marketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme Metadata','Marketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme MetadataMarketing Campaign Theme Metadata','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Select\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select2305\",\"options\":[{\"label\":{\"en_US\":\"Strong Company\"},\"value\":\"strong\"},{\"label\":{\"en_US\":\"New Product Launch\"},\"value\":\"product\"},{\"label\":{\"en_US\":\"Company Philosophy\"},\"value\":\"philosophy\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Campaign Theme\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select3229\",\"options\":[{\"label\":{\"en_US\":\"Your Trusted Advisor\"},\"value\":\"advisor\"},{\"label\":{\"en_US\":\"10 Years of Customer Solutions\"},\"value\":\"solutions\"},{\"label\":{\"en_US\":\"Making a Difference\"},\"value\":\"difference\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Business Goal\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"select4282\",\"options\":[{\"label\":{\"en_US\":\"Awareness\"},\"value\":\"awareness\"},{\"label\":{\"en_US\":\"Lead Generation\"},\"value\":\"leads\"},{\"label\":{\"en_US\":\"Customer Service\"},\"value\":\"service\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',0,0,20119,NULL,'2018-07-02 15:51:16.237000'),(29802,20151,20115,20119,NULL,'2018-07-02 15:51:16.264000',29801,'1.0',0,'Meeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting MetadataMeeting Metadata','Metadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meetingMetadata for meeting','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"ddm_date3054\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"text2217\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Meeting Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"text4569\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Time\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"text5638\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Location\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"textarea6584\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"textarea7502\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Participants\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true}]}','json',0,0,20119,NULL,'2018-07-02 15:51:16.264000'),(29806,20151,20115,20119,NULL,'2018-07-02 15:51:16.310000',29805,'1.0',0,'合同ContratosコントラクトContractenSzerződésContratoVertragחוזיםSopimusContractesContratsContract','合同ContratosコントラクトContractenSzerződésContratoVertragחוזיםSopimusContractesContratsContract','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Effective Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"ddm_date18949\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Expiration Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"ddm_date20127\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Contract Type\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select10264\",\"options\":[{\"label\":{\"en_US\":\"NDA\"},\"value\":\"NDA\"},{\"label\":{\"en_US\":\"MSA\"},\"value\":\"MSA\"},{\"label\":{\"en_US\":\"License Agreement\"},\"value\":\"License\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Status\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select4893\",\"options\":[{\"label\":{\"en_US\":\"Draft\"},\"value\":\"Draft\"},{\"label\":{\"en_US\":\"In Review\"},\"value\":\"Review\"},{\"label\":{\"en_US\":\"Suspended\"},\"value\":\"Suspended\"},{\"label\":{\"en_US\":\"Signed\"},\"value\":\"Signed\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Legal Reviewer\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text14822\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Signing Authority\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text17700\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Deal Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text2087\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',1,0,20119,NULL,'2018-07-02 15:51:16.310000'),(29811,20151,20115,20119,NULL,'2018-07-02 15:51:16.380000',29810,'1.0',0,'营销标语Banner comercialマーケティングバナーMarketingbannerHírdetési csíkBanner de MarketingMarketingbannerבאנר שיווקיMarkkinointimainospalkkiBàner de màrquetingBannière commercialeMarketing Banner','营销标语Banner comercialマーケティングバナーMarketingbannerHírdetési csíkBanner de MarketingMarketingbannerבאנר שיווקיMarkkinointimainospalkkiBàner de màrquetingBannière commercialeMarketing Banner','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Needs Legal Review\"},\"type\":\"radio\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"radio5547\",\"options\":[{\"label\":{\"en_US\":\"Yes\"},\"value\":\"yes\"},{\"label\":{\"en_US\":\"No\"},\"value\":\"no\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Banner Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text2033\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true,\"indexType\":\"text\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"textarea2873\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',1,0,20119,NULL,'2018-07-02 15:51:16.380000'),(29817,20151,20115,20119,NULL,'2018-07-02 15:51:16.414000',29816,'1.0',0,'在线培训Formación en líneaオンライントレーニングOnline trainingOnline tanfolyamTreinamento OnlineOnline-Trainingהכשרה מקוונתOnline koulutusFromació en líniaFormation en ligneOnline Training','在线培训Formación en líneaオンライントレーニングOnline trainingOnline tanfolyamTreinamento OnlineOnline-Trainingהכשרה מקוונתOnline koulutusFromació en líniaFormation en ligneOnline Training','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Lesson Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text2082\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Author\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text2979\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',1,0,20119,NULL,'2018-07-02 15:51:16.414000'),(29823,20151,20115,20119,NULL,'2018-07-02 15:51:16.445000',29822,'1.0',0,'销售报告Presentación de ventasセールスプレゼンテーションVerkooppresentatieKereskedői előadásApresentação de VendasVertriebspräsentationמצגת מכירותMyynti esitysPresentació de vendesPrésentation des ventesSales Presentation','销售报告Presentación de ventasセールスプレゼンテーションVerkooppresentatieKereskedői előadásApresentação de VendasVertriebspräsentationמצגת מכירותMyynti esitysPresentació de vendesPrésentation des ventesSales Presentation','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Product\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select2890\",\"options\":[{\"label\":{\"en_US\":\"Home Edition\"},\"value\":\"HE\"},{\"label\":{\"en_US\":\"Business Edition\"},\"value\":\"BE\"},{\"label\":{\"en_US\":\"Enterprise Edition\"},\"value\":\"EE\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Version\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select3864\",\"options\":[{\"label\":{\"en_US\":\"1.0\"},\"value\":\"1\"},{\"label\":{\"en_US\":\"2.0\"},\"value\":\"2\"},{\"label\":{\"en_US\":\"3.0\"},\"value\":\"3\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Areas of Interest\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select4831\",\"options\":[{\"label\":{\"en_US\":\"Website\"},\"value\":\"website\"},{\"label\":{\"en_US\":\"Collaboration\"},\"value\":\"collaboration\"},{\"label\":{\"en_US\":\"Intranet\"},\"value\":\"intranet\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"multiple\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Competitors\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"select5929\",\"options\":[{\"label\":{\"en_US\":\"ACME\"},\"value\":\"acme\"},{\"label\":{\"en_US\":\"SevenCogs\"},\"value\":\"sevencogs\"},{\"label\":{\"en_US\":\"FreePlus\"},\"value\":\"freeplus\"}],\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Prospect Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"text1993\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',1,0,20119,NULL,'2018-07-02 15:51:16.445000'),(29829,20151,20115,20119,NULL,'2018-07-02 15:51:16.537000',29828,'1.0',0,'TIKARAWMETADATA','TIKARAWMETADATA','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_PROGRAM_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.PROGRAM_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_COMMAND_LINE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.COMMAND_LINE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_HISTORY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.HISTORY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_TABLE_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.TABLE_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_INSTITUTION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.INSTITUTION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_SOURCE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.SOURCE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_CONTACT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.CONTACT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_PROJECT_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.PROJECT_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_CONVENTIONS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.CONVENTIONS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_REFERENCES\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.REFERENCES\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_ACKNOWLEDGEMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.ACKNOWLEDGEMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_REALIZATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.REALIZATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_EXPERIMENT_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.EXPERIMENT_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_COMMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.COMMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"ClimateForcast_MODEL_NAME_ENGLISH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.ClimateForcast.MODEL_NAME_ENGLISH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"CreativeCommons_LICENSE_URL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.CreativeCommons.LICENSE_URL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"CreativeCommons_LICENSE_LOCATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.CreativeCommons.LICENSE_LOCATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"CreativeCommons_WORK_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.CreativeCommons.WORK_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_NAMESPACE_URI_DC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.NAMESPACE_URI_DC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_NAMESPACE_URI_DC_TERMS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.NAMESPACE_URI_DC_TERMS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_PREFIX_DC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.PREFIX_DC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_PREFIX_DC_TERMS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.PREFIX_DC_TERMS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_FORMAT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.FORMAT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_IDENTIFIER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.IDENTIFIER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_MODIFIED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.MODIFIED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_CONTRIBUTOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.CONTRIBUTOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_COVERAGE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.COVERAGE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_CREATOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.CREATOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_CREATED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.CREATED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_DESCRIPTION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.DESCRIPTION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_LANGUAGE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.LANGUAGE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_PUBLISHER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.PUBLISHER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_RELATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.RELATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_RIGHTS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.RIGHTS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_SOURCE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.SOURCE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_SUBJECT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.SUBJECT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_TITLE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.TITLE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"DublinCore_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.DublinCore.TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Geographic_LATITUDE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Geographic.LATITUDE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Geographic_LONGITUDE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Geographic.LONGITUDE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Geographic_ALTITUDE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Geographic.ALTITUDE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_ENCODING\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_ENCODING\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_LANGUAGE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_LANGUAGE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_LENGTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_LENGTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_LOCATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_LOCATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_DISPOSITION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_DISPOSITION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_MD5\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_MD5\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_CONTENT_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.CONTENT_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_LAST_MODIFIED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.LAST_MODIFIED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"HttpHeaders_LOCATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.HttpHeaders.LOCATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_PREFIX\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_PREFIX\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_RAW_HEADER_PREFIX\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_RAW_HEADER_PREFIX\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_RECIPIENT_ADDRESS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_RECIPIENT_ADDRESS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_FROM\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_FROM\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_TO\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_TO\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_CC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_CC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Message_MESSAGE_BCC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Message.MESSAGE_BCC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_NAMESPACE_URI_DOC_META\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.NAMESPACE_URI_DOC_META\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_PREFIX_DOC_META\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.PREFIX_DOC_META\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_USER_DEFINED_METADATA_NAME_PREFIX\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.USER_DEFINED_METADATA_NAME_PREFIX\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_KEYWORDS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.KEYWORDS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_INITIAL_AUTHOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.INITIAL_AUTHOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_LAST_AUTHOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.LAST_AUTHOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_AUTHOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.AUTHOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_CREATION_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.CREATION_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_SAVE_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.SAVE_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_PRINT_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.PRINT_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_SLIDE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.SLIDE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_PAGE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.PAGE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_PARAGRAPH_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.PARAGRAPH_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_LINE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.LINE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_WORD_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.WORD_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_CHARACTER_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.CHARACTER_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_CHARACTER_COUNT_WITH_SPACES\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.CHARACTER_COUNT_WITH_SPACES\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_TABLE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.TABLE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_IMAGE_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.IMAGE_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"Office_OBJECT_COUNT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.Office.OBJECT_COUNT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_NAMESPACE_URI\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.NAMESPACE_URI\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_PREFIX\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.PREFIX\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_CATEGORY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.CATEGORY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_CONTENT_STATUS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.CONTENT_STATUS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_LAST_MODIFIED_BY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.LAST_MODIFIED_BY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_LAST_PRINTED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.LAST_PRINTED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_REVISION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.REVISION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_VERSION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.VERSION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"OfficeOpenXMLCore_SUBJECT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.OfficeOpenXMLCore.SUBJECT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_BITS_PER_SAMPLE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.BITS_PER_SAMPLE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_IMAGE_LENGTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.IMAGE_LENGTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_IMAGE_WIDTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.IMAGE_WIDTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_SAMPLES_PER_PIXEL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.SAMPLES_PER_PIXEL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_FLASH_FIRED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.FLASH_FIRED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_EXPOSURE_TIME\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.EXPOSURE_TIME\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_F_NUMBER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.F_NUMBER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_FOCAL_LENGTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.FOCAL_LENGTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_ISO_SPEED_RATINGS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.ISO_SPEED_RATINGS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_EQUIPMENT_MAKE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.EQUIPMENT_MAKE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_EQUIPMENT_MODEL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.EQUIPMENT_MODEL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_SOFTWARE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.SOFTWARE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_ORIENTATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.ORIENTATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_RESOLUTION_HORIZONTAL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.RESOLUTION_HORIZONTAL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_RESOLUTION_VERTICAL\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.RESOLUTION_VERTICAL\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_RESOLUTION_UNIT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.RESOLUTION_UNIT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TIFF_ORIGINAL_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TIFF.ORIGINAL_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_RESOURCE_NAME_KEY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.RESOURCE_NAME_KEY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_PROTECTED\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.PROTECTED\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_EMBEDDED_RELATIONSHIP_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.EMBEDDED_RELATIONSHIP_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_EMBEDDED_STORAGE_CLASS_ID\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.EMBEDDED_STORAGE_CLASS_ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMetadataKeys_EMBEDDED_RESOURCE_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMetadataKeys.EMBEDDED_RESOURCE_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMimeKeys_TIKA_MIME_FILE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMimeKeys.TIKA_MIME_FILE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"TikaMimeKeys_MIME_TYPE_MAGIC\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.TikaMimeKeys.MIME_TYPE_MAGIC\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ABS_PEAK_AUDIO_FILE_PATH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ABS_PEAK_AUDIO_FILE_PATH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ALBUM\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ALBUM\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ALT_TAPE_NAME\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ALT_TAPE_NAME\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ARTIST\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ARTIST\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ALBUM_ARTIST\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ALBUM_ARTIST\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_MOD_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_MOD_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_SAMPLE_RATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_SAMPLE_RATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_SAMPLE_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_SAMPLE_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_CHANNEL_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_CHANNEL_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_AUDIO_COMPRESSOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.AUDIO_COMPRESSOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_COMPILATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.COMPILATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_COMPOSER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.COMPOSER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_COPYRIGHT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.COPYRIGHT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_DISC_NUMBER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.DISC_NUMBER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_DURATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.DURATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_ENGINEER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.ENGINEER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_FILE_DATA_RATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.FILE_DATA_RATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_GENRE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.GENRE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_INSTRUMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.INSTRUMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_KEY\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.KEY\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_LOG_COMMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.LOG_COMMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_LOOP\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.LOOP\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_NUMBER_OF_BEATS\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.NUMBER_OF_BEATS\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_METADATA_MOD_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.METADATA_MOD_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_PULL_DOWN\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.PULL_DOWN\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_RELATIVE_PEAK_AUDIO_FILE_PATH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.RELATIVE_PEAK_AUDIO_FILE_PATH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_RELEASE_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.RELEASE_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SCALE_TYPE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SCALE_TYPE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SCENE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SCENE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SHOT_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SHOT_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SHOT_LOCATION\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SHOT_LOCATION\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SHOT_NAME\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SHOT_NAME\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_SPEAKER_PLACEMENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.SPEAKER_PLACEMENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_STRETCH_MODE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.STRETCH_MODE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_TAPE_NAME\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.TAPE_NAME\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_TEMPO\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.TEMPO\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_TIME_SIGNATURE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.TIME_SIGNATURE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_TRACK_NUMBER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.TRACK_NUMBER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_ALPHA_MODE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_ALPHA_MODE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_ALPHA_UNITY_IS_TRANSPARENT\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_ALPHA_UNITY_IS_TRANSPARENT\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_COLOR_SPACE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_COLOR_SPACE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_COMPRESSOR\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_COMPRESSOR\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_FIELD_ORDER\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_FIELD_ORDER\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_FRAME_RATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_FRAME_RATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_MOD_DATE\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_MOD_DATE\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_PIXEL_DEPTH\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_PIXEL_DEPTH\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"XMPDM_VIDEO_PIXEL_ASPECT_RATIO\",\"localizable\":false,\"readOnly\":false,\"label\":{\"en_US\":\"metadata.XMPDM.VIDEO_PIXEL_ASPECT_RATIO\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,0,20119,NULL,'2018-07-02 15:51:16.537000'),(31171,20151,20115,20119,NULL,'2018-07-02 15:51:24.398000',31170,'1.0',0,'基本网页内容Contenido web básico基本WebコンテンツBasiswebcontentAlapvető webtartalomConteúdo Web básicoEinfacher Webcontentתוכן אינטרנטי בסיסיTavallinen web-sisältöContigut web bàsicContenu web de baseBasic Web Content','基本网页内容Contenido web básico基本WebコンテンツBasiswebcontentAlapvető webtartalomConteúdo Web básicoEinfacher Webcontentתוכן אינטרנטי בסיסיTavallinen web-sisältöContigut web bàsicContenu web de baseBasic Web Content','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"html\",\"readOnly\":false,\"label\":{\"en_US\":\"Content\"},\"type\":\"ddm-text-html\",\"required\":false,\"showLabel\":true,\"visibilityExpression\":\"\",\"indexType\":\"text\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"content\",\"localizable\":true,\"validation\":{}}]}','json',0,0,20119,NULL,'2018-07-02 15:51:24.398000'),(31177,20151,20115,20119,NULL,'2018-07-02 15:51:51.549000',31176,'1.0',0,'ContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContacts','ContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContacts','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"company\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Company\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"email\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Email\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"firstName\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"First Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"gtalk\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Instant Messenger Service\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"imService\",\"options\":[{\"label\":{\"en_US\":\"GTalk\"},\"value\":\"gtalk\"}],\"localizable\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"imUserName\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Instant Messenger\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"jobTitle\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Job Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"lastName\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Last Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"notes\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Notes\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"phoneMobile\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Phone (Mobile)\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"phoneOffice\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Phone (Office)\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,0,20119,NULL,'2018-07-02 15:51:51.549000'),(31180,20151,20115,20119,NULL,'2018-07-02 15:51:51.569000',31179,'1.0',0,'EventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEvents','EventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEvents','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"document-library\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Attachment\"},\"type\":\"ddm-documentlibrary\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"attachment\",\"localizable\":true,\"tip\":{\"en_US\":\"Upload documents no larger than 3,000k.\"}},{\"dataType\":\"double\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Cost\"},\"type\":\"ddm-number\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"cost\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"eventDate\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"eventName\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Event Name\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"eventTime\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Time\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"location\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Location\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,0,20119,NULL,'2018-07-02 15:51:51.569000'),(31183,20151,20115,20119,NULL,'2018-07-02 15:51:51.584000',31182,'1.0',0,'InventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventory','InventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventory','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"item\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Item\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"location\",\"localizable\":true,\"readOnly\":false,\"tip\":{\"en_US\":\"\"},\"label\":{\"en_US\":\"Location\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Purchase Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"purchaseDate\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"double\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Purchase Price\"},\"type\":\"ddm-number\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"purchasePrice\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"double\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Quantity\"},\"type\":\"ddm-number\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"quantity\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}}]}','json',0,0,20119,NULL,'2018-07-02 15:51:51.584000'),(31186,20151,20115,20119,NULL,'2018-07-02 15:51:51.599000',31185,'1.0',0,'Issues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues TrackingIssues Tracking','Issue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue TrackingIssue Tracking','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"assignedTo\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Assigned To\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"document-library\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Attachment\"},\"type\":\"ddm-documentlibrary\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"attachment\",\"localizable\":true,\"tip\":{\"en_US\":\"Upload documents no larger than 3,000k.\"}},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"comments\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Comments\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"dueDate\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Due Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"issueId\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Issue ID\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"minor\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Severity\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"severity\",\"options\":[{\"label\":{\"en_US\":\"Critical\"},\"value\":\"critical\"},{\"label\":{\"en_US\":\"Major\"},\"value\":\"major\"},{\"label\":{\"en_US\":\"Minor\"},\"value\":\"minor\"},{\"label\":{\"en_US\":\"Trivial\"},\"value\":\"trivial\"}],\"localizable\":true},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"open\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Status\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"status\",\"options\":[{\"label\":{\"en_US\":\"Open\"},\"value\":\"open\"},{\"label\":{\"en_US\":\"Pending\"},\"value\":\"pending\"},{\"label\":{\"en_US\":\"Completed\"},\"value\":\"completed\"}],\"localizable\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"title\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,0,20119,NULL,'2018-07-02 15:51:51.599000'),(31189,20151,20115,20119,NULL,'2018-07-02 15:51:51.616000',31188,'1.0',0,'Meeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting Minutes','Meeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting MinutesMeeting Minutes','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"document-library\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Attachment\"},\"type\":\"ddm-documentlibrary\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"attachment\",\"localizable\":true,\"tip\":{\"en_US\":\"Upload documents no larger than 3,000k.\"}},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"author\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Author\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"duration\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Meeting Duration\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"meetingDate\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Meeting Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"minutes\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Minutes\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"title\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,0,20119,NULL,'2018-07-02 15:51:51.616000'),(31192,20151,20115,20119,NULL,'2018-07-02 15:51:51.632000',31191,'1.0',0,'To DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo Do','To DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo DoTo Do','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"assignedTo\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Assigned To\"},\"type\":\"text\",\"required\":false,\"showLabel\":true},{\"dataType\":\"document-library\",\"predefinedValue\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"Attachment\"},\"type\":\"ddm-documentlibrary\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"attachment\",\"localizable\":true,\"tip\":{\"en_US\":\"Upload documents no larger than 3,000k.\"}},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"comments\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Comments\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"text\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"description\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Description\"},\"type\":\"textarea\",\"required\":false,\"showLabel\":true},{\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"endDate\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"End Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true},{\"dataType\":\"integer\",\"predefinedValue\":{\"en_US\":\"0\"},\"readOnly\":false,\"label\":{\"en_US\":\"% Complete\"},\"type\":\"ddm-integer\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"name\":\"percentComplete\",\"localizable\":true,\"tip\":{\"en_US\":\"\"}},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"minor\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Severity\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"severity\",\"options\":[{\"label\":{\"en_US\":\"Critical\"},\"value\":\"critical\"},{\"label\":{\"en_US\":\"Major\"},\"value\":\"major\"},{\"label\":{\"en_US\":\"Minor\"},\"value\":\"minor\"},{\"label\":{\"en_US\":\"Trivial\"},\"value\":\"trivial\"}],\"localizable\":true},{\"indexType\":\"keyword\",\"fieldNamespace\":\"ddm\",\"repeatable\":false,\"dataType\":\"date\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"startDate\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Start Date\"},\"type\":\"ddm-date\",\"required\":false,\"showLabel\":true},{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"[\\\"open\\\"]\"},\"multiple\":false,\"readOnly\":false,\"label\":{\"en_US\":\"Status\"},\"type\":\"select\",\"required\":false,\"showLabel\":true,\"indexType\":\"keyword\",\"repeatable\":false,\"name\":\"status\",\"options\":[{\"label\":{\"en_US\":\"Open\"},\"value\":\"open\"},{\"label\":{\"en_US\":\"Pending\"},\"value\":\"pending\"},{\"label\":{\"en_US\":\"Completed\"},\"value\":\"completed\"}],\"localizable\":true},{\"indexType\":\"keyword\",\"repeatable\":false,\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"name\":\"title\",\"localizable\":true,\"readOnly\":false,\"label\":{\"en_US\":\"Title\"},\"type\":\"text\",\"required\":false,\"showLabel\":true}]}','json',0,0,20119,NULL,'2018-07-02 15:51:51.632000'),(31416,20142,20115,20155,'Test Test','2018-07-02 16:08:31.523000',31415,'1.0',0,'Untitled Form','','{\"availableLanguageIds\":[\"en_US\"],\"defaultLanguageId\":\"en_US\",\"fields\":[{\"dataType\":\"string\",\"predefinedValue\":{\"en_US\":\"\"},\"tooltip\":{\"en_US\":\"\"},\"readOnly\":false,\"label\":{\"en_US\":\"text field\"},\"type\":\"text\",\"required\":false,\"showLabel\":true,\"displayStyle\":\"singleline\",\"visibilityExpression\":\"\",\"indexType\":\"keyword\",\"fieldNamespace\":\"\",\"repeatable\":false,\"name\":\"textField\",\"localizable\":true,\"tip\":{\"en_US\":\"\"},\"placeholder\":{\"en_US\":\"\"},\"validation\":{\"expression\":\"\",\"errorMessage\":\"\"}}]}','json',1,0,20155,'Test Test','2018-07-02 16:08:31.523000'); /*!40000 ALTER TABLE `DDMStructureVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMTemplate` -- DROP TABLE IF EXISTS `DDMTemplate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMTemplate` ( `uuid_` varchar(75) DEFAULT NULL, `templateId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `versionUserId` bigint(20) DEFAULT NULL, `versionUserName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `resourceClassNameId` bigint(20) DEFAULT NULL, `templateKey` varchar(75) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `type_` varchar(75) DEFAULT NULL, `mode_` varchar(75) DEFAULT NULL, `language` varchar(75) DEFAULT NULL, `script` longtext, `cacheable` tinyint(4) DEFAULT NULL, `smallImage` tinyint(4) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `smallImageURL` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`templateId`), UNIQUE KEY `IX_E6DFAB84` (`groupId`,`classNameId`,`templateKey`), UNIQUE KEY `IX_1AA75CE3` (`uuid_`,`groupId`), KEY `IX_B6356F93` (`classNameId`,`classPK`,`type_`), KEY `IX_32F83D16` (`classPK`), KEY `IX_F0C3449` (`groupId`,`classNameId`,`classPK`,`type_`,`mode_`), KEY `IX_B1C33EA6` (`groupId`,`classPK`), KEY `IX_33BEF579` (`language`), KEY `IX_127A35B0` (`smallImageId`), KEY `IX_CAE41A28` (`templateKey`), KEY `IX_C4F283C8` (`type_`), KEY `IX_D4C2C221` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMTemplate` -- LOCK TABLES `DDMTemplate` WRITE; /*!40000 ALTER TABLE `DDMTemplate` DISABLE KEYS */; INSERT INTO `DDMTemplate` VALUES ('144b871d-e481-b6b7-6345-2cddc1e12e43',29706,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.470000','2018-07-02 15:51:15.470000',28202,0,29705,'WIKI-SOCIAL-FTL','1.0','社交SocialソーシャルSociaalKözösségiSocialSocialחברתיSosiaalinenSocialSocialSocial','显示社交书签和维基页的评分和它们的子页。Muestra los marcadores sociales y las clasificaciones para páginas wiki y sus páginas secundarias.ウィキページとそのサブページ用のソーシャルブックマークとレーティングを表示するGeeft sociale favorieten en waarderingen van wikipagina\'s en onderliggende wikipagina\'s weer.Megjeleníti a közösségi könyvjelzőket és értékeléseket a wiki oldalak és gyermek oldalaik részére.Exibe marcadores sociais e avaliações para páginas da wiki e suas páginas filhas.Darstellung für Social Bookmarks und Bewertungen von Wikiseiten und deren Unterseiten.מציג סימניות חברתיות ודירוגים עבור דפי וויקי והדפים הבנים שלהם.Näyttää sosiaaliset kirjanmerkit ja arvostelut wikisivuilla ja niiden alisivuilla.Mostra adreces d\'interès socials i classificacions per a planes del wiki.Affiche les signets sociaux and les notations pour page wiki et leur pages enfants.Displays social bookmarks and ratings for wiki pages and their child pages.','display',NULL,'ftl','<#assign\n wikiPageClassName = \"com.liferay.wiki.model.WikiPage\"\n\n assetRenderer = assetEntry.getAssetRenderer()\n/>\n\n
\n

${entry.getTitle()}

\n
\n\n
\n <@getEditIcon />\n\n <@getPageDetailsIcon />\n\n <@getPrintIcon />\n
\n\n
\n
\n ${assetEntry.getViewCount()} <@liferay.language key=\"views\" /> |\n\n <@liferay.language key=\"last-modified\" /> ${dateUtil.getDate(entry.getModifiedDate(), \"dd MMM yyyy - HH:mm:ss\", locale)}\n\n <@liferay.language key=\"by\" /> ${htmlUtil.escape(portalUtil.getUserName(entry.getUserId(), entry.getUserName()))}\n
\n\n
\n <@liferay_ui[\"social-bookmarks\"]\n displayStyle=\"normal\"\n target=\"_blank\"\n title=entry.getTitle()\n url=viewURL\n />\n\n ${formattedContent}\n
\n\n
\n
\n <@getAddChildPageIcon />\n\n <@getAttatchmentsIcon />\n
\n
\n\n
\n\n <@getRatings\n cssClass=\"page-ratings\"\n entry=entry\n />\n\n <@getRelatedAssets />\n
\n\n
\n
\n <#assign viewCategorizedPagesURL = renderResponse.createRenderURL() />\n\n ${viewCategorizedPagesURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view_categorized_pages\")}\n ${viewCategorizedPagesURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n\n <@liferay_ui[\"asset-categories-summary\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n portletURL=viewCategorizedPagesURL\n />\n
\n\n
\n <#assign viewTaggedPagesURL = renderResponse.createRenderURL() />\n\n ${viewTaggedPagesURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view_tagged_pages\")}\n ${viewTaggedPagesURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n\n <@liferay_ui[\"asset-tags-summary\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n portletURL=viewTaggedPagesURL\n />\n
\n
\n\n<#assign childPages = entry.getChildPages() />\n\n<#if (childPages?has_content)>\n
\n

<@liferay.language key=\"children-pages\" />

\n\n \n \n \n \n \n \n\n <#list childPages as childPage>\n \n <#assign viewPageURL = renderResponse.createRenderURL() />\n\n ${viewPageURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view\")}\n\n <#assign childNode = childPage.getNode() />\n\n ${viewPageURL.setParameter(\"nodeName\", childNode.getName())}\n ${viewPageURL.setParameter(\"title\", childPage.getTitle())}\n\n \n \n \n \n \n
\n <@liferay.language key=\"page\" />\n \n <@liferay.language key=\"last-modified\" />\n \n <@liferay.language key=\"ratings\" />\n
\n ${childPage.getTitle()}\n \n ${dateUtil.getDate(childPage.getModifiedDate(),\"dd MMM yyyy - HH:mm:ss\", locale)} <@liferay.language key=\"by\" /> ${htmlUtil.escape(portalUtil.getUserName(childPage.getUserId(), childPage.getUserName()))}\n \n <@getRatings\n cssClass=\"child-ratings\"\n entry=childPage\n />\n
\n
\n\n\n<@getDiscussion />\n\n<#macro getAddChildPageIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign addPageURL = renderResponse.createRenderURL() />\n\n ${addPageURL.setParameter(\"mvcRenderCommandName\", \"/wiki/edit_page\")}\n ${addPageURL.setParameter(\"redirect\", currentURL)}\n ${addPageURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n ${addPageURL.setParameter(\"title\", \"\")}\n ${addPageURL.setParameter(\"editTitle\", \"1\")}\n ${addPageURL.setParameter(\"parentTitle\", entry.getTitle())}\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-plus\"\n label=true\n message=\"add-child-page\"\n url=addPageURL?string\n />\n \n\n\n<#macro getAttatchmentsIcon>\n <#assign viewPageAttachmentsURL = renderResponse.createRenderURL() />\n\n ${viewPageAttachmentsURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view_page_attachments\") }\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-paperclip\"\n label=true\n message=\'${entry.getAttachmentsFileEntriesCount() + languageUtil.get(locale, \"attachments\")}\'\n url=viewPageAttachmentsURL?string\n />\n\n\n<#macro getDiscussion>\n <#if validator.isNotNull(assetRenderer.getDiscussionPath()) && wikiPortletInstanceConfiguration.enableComments()>\n
\n\n <#assign discussionURL = renderResponse.createActionURL() />\n\n ${discussionURL.setParameter(\"javax.portlet.action\", \"/wiki/\" + assetRenderer.getDiscussionPath())}\n\n <@liferay_ui[\"discussion\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n formAction=discussionURL?string\n formName=\"fm2\"\n ratingsEnabled=wikiPortletInstanceConfiguration.enableCommentRatings()\n redirect=currentURL\n subject=assetRenderer.getTitle(locale)\n userId=assetRenderer.getUserId()\n />\n \n\n\n<#macro getEditIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign editPageURL = renderResponse.createRenderURL() />\n\n ${editPageURL.setParameter(\"mvcRenderCommandName\", \"/wiki/edit_page\")}\n ${editPageURL.setParameter(\"redirect\", currentURL)}\n ${editPageURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n ${editPageURL.setParameter(\"title\", entry.getTitle())}\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-edit\"\n message=entry.getTitle()\n url=editPageURL?string\n />\n \n\n\n<#macro getPageDetailsIcon>\n <#assign viewPageDetailsURL = renderResponse.createRenderURL() />\n\n ${viewPageDetailsURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view_page_details\")}\n ${viewPageDetailsURL.setParameter(\"redirect\", currentURL)}\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-file-alt\"\n message=\"details\"\n url=viewPageDetailsURL?string\n />\n\n\n<#macro getPrintIcon>\n <#assign printURL = renderResponse.createRenderURL() />\n\n ${printURL.setParameter(\"viewMode\", \"print\")}\n ${printURL.setWindowState(\"pop_up\")}\n\n <#assign\n title = languageUtil.format(locale, \"print-x-x\", [\"hide-accessible\", htmlUtil.escape(assetRenderer.getTitle(locale))], false)\n taglibPrintURL = \"javascript:Liferay.Util.openWindow({dialog: {width: 960}, id:\'\" + renderResponse.getNamespace() + \"printAsset\', title: \'\" + title + \"\', uri: \'\" + htmlUtil.escapeURL(printURL.toString()) + \"\'});\"\n />\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-print\"\n message=\"print\"\n url=taglibPrintURL\n />\n\n\n<#macro getRatings\n cssClass\n entry\n>\n <#if wikiPortletInstanceConfiguration.enablePageRatings()>\n
\n <@liferay_ui[\"ratings\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n />\n
\n \n\n\n<#macro getRelatedAssets>\n <#if assetEntry?? && wikiPortletInstanceConfiguration.enableRelatedAssets()>\n <@liferay_ui[\"asset-links\"] assetEntryId=assetEntry.getEntryId() />\n \n',0,0,29707,NULL,NULL),('964557f9-d619-805e-c5f9-58124c9c2c99',29710,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.508000','2018-07-02 15:51:15.508000',29709,0,29705,'RSS-NAVIGATION-FTL','1.0','导航NavegaciónナビゲーションNavigatieNavigációNavegaçãoNavigationניווטNavigointiNavegacióNavigationNavigation','在左侧面板上显示RSS源的导航栏。在右侧面板上点击Feed显示提要条目的列表。Muestra los feeds RSS como una barra de navegación del panel izquierdo. Al hacer clic en un feed se muestra una lista de entradas de feed en el panel derecho.RSSフィードを左のパネルにナビゲーションバーとして表示します。フィードをクリックすると、右パネルにフィードの内容がリスト表示されますGeeft de RSS-feeds als een navigatiebalk in het linkerpaneel weer. Als u op een feed klikt wordt een lijst van van feed-entries in het rechterpaneel getoond.Megjeleníti az RSS hírcsatornákat navigációs oszlopként a bal oldalon. Egy hírcsatornára kattintva megjeleníti a hírcsatorna bejegyzések listáját a jobb oldalon.Exibe os feeds RSS como uma barra de navegação no painel esquerdo. Clicar em um feed exibe uma lista de entradas de feed no painel direito.Stellt die RSS-Feeds als Navigationsleiste im linken Bereich dar. Nach Anklicken eines Feeds werden die entsprechenden Feedeinträge im rechten Bereich dargestellt.מציג את הזנות ה-RSS כסרגל ניווט בחלונית השמאלית. לחיצה על הזנה מציגה רשימה של רשומות הזנה בחלונית הימנית.Näyttää RSS-syötteet navigaatiopalkissa vasemmassa paneelissa. Klikkaamalla syötettä näytetään syötteen arvot oikeassa paneelissa.Mostra els canals RSS com una barra de navegació en el tauler esquerra. Al fer un clic en un canal es mostraran la llista d\'entrades en el tauler dret.Affiche les flux RSS en tant que barre de navigation dans le panneau gauche. Cliquer sur un flux affiche une liste d\'entrées de flux sur le panneau droit.Displays the RSS feeds as a navigation bar on the left panel. Clicking on a feed displays a list of feed entries on the right panel.','display',NULL,'ftl','<#assign rssPortletInstanceConfiguration = rssDisplayContext.getRSSPortletInstanceConfiguration() />\n\n\n\n<#if entries?has_content>\n <#assign dateFormat = \"dd MMM yyyy - HH:mm:ss\" />\n\n
\n
feedsTab\">\n \n\n
\n <#list entries as curEntry>\n <#assign rssFeedEntries = curEntry.getRSSFeedEntries(themeDisplay) />\n\n <#if rssFeedEntries??>\n
\n <#list rssFeedEntries as rssFeedEntry>\n <#if (rssFeedEntry_index > entriesPerFeed?number)>\n <#break>\n \n\n <#assign syndEntry = rssFeedEntry.getSyndEntry() />\n\n
\n
\n <@liferay_aui[\"a\"] href=\"${htmlUtil.escapeJSLink(rssFeedEntry.getSyndEntryLink())}\">${htmlUtil.escape(syndEntry.getTitle())}\n
\n\n <#if rssPortletInstanceConfiguration.showFeedTitle() && syndEntry.getAuthor()??>\n \n \n\n <#if syndEntry.getPublishedDate()??>\n
\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-calendar\"\n label=true\n message=\"${dateUtil.getDate(syndEntry.getPublishedDate(), dateFormat, locale)}\"\n />\n
\n \n\n ${rssFeedEntry.getSanitizedContent()}\n
\n \n
\n \n \n
\n
\n
\n\n <@liferay_aui[\"script\"] use=\"aui-base,aui-tabview\">\n new A.TabView(\n {\n srcNode: \'#<@portlet.namespace />feedsTab\',\n stacked: true,\n type: \'pills\'\n }\n ).render();\n \n',0,0,29711,NULL,NULL),('df250605-83e9-5b58-5365-85cfc6536bd3',29713,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.544000','2018-07-02 15:51:15.544000',20004,0,29705,'ASSET-CATEGORIES-NAVIGATION-MULTI-COLUMN-LAYOUT-FTL','1.0','多列布局Diseño con varias columnas複数カラムレイアウトLay-out met meerdere kolommenTöbb oszlopos elrendezésLayout em Múltiplas ColunasMulti-Spalten-Layoutתצורה מרובת עמודותUsean sarakkeen asetteluPlana multi-columnaMise en page multi-colonneMulti Column Layout','显示一列中的每个词汇,每列包括顶级类别之下的词汇名字。Despliega una columna para cada vocabulario. Cada columna incluye el nombre de un vocabulario con las categorías de mayor nivel del vocabulario listadas debajo.各用語用に列を表示する。各列は以下にリストになっている、最上位に設定されている用語名を含んでいますToon een kolom voor ieder woordenboek. Iedere kolom bevat de naam van een woordenboek met de hoofd categorieën eronder.Megjelenít egy oszlopot minden szótár számára. Minden oszlop tartalmazza a szótár nevét, alatta a szótár felső szintű kategóriáival.Exibe uma coluna para cada vocabulário. Cada coluna inclui o nome do vocabulário com as categorias de nível mais alto listadas abaixo dele.Stellt eine Spalte für jedes Vokabular dar. Jede Spalte enthält den Namen eines Vokabulars mit der obersten Kategorienebene darunter.מציג עמודה עבור כל אוצר מילים. כל עמודה מכילה את השם של אוצר מילים , כאשר הקטגוריות ברמה הגבוהה ביותר מופיעות מתחתיה.Näyttää sarakkeen jokaiselle sanastolle. Jokainen sarake sisältää sanaston nimen, missä sanaston ylätason luokitukset on listattu.Visualitza una columna per a cada vocabulari. Cada columna inclou el nom del vocabulari amb la categoria de nivell més alta a sota.Affiche une colonne pour chaque vocabulaire. Chaque colonne inclut le nom d\'un vocabulaire avec les catégories du niveau racine listées en dessous.Displays a column for each vocabulary. Each column includes the name of a vocabulary with the vocabulary\'s top level categories listed underneath.','display',NULL,'ftl','<#if entries?has_content>\n <@liferay_aui.row>\n <#list entries as entry>\n <@liferay_aui.col width=25>\n
\n

\n ${entry.getUnambiguousTitle(entries, themeDisplay.getSiteGroupId(), themeDisplay.getLocale())}\n

\n
\n\n <#assign categories = entry.getCategories() />\n\n <@displayCategories categories=categories />\n \n \n \n\n\n<#macro displayCategories\n categories\n>\n <#if categories?has_content>\n \n \n',0,0,29714,NULL,NULL),('b3225c33-6a44-31e7-cce7-445974ff765b',29717,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.574000','2018-07-02 15:51:15.574000',29716,0,29705,'LIST-MENU-FTL','1.0','列表式菜单Menú de listaリストメニューLijstmenuLista menüMenu de ListaMenülisteתפריט רשימהListavalikkoMenú de llistaMenu de listeList Menu','显示带列表的导航菜单。Muestra un menú de navegación con una lista.リストスタイルでナビゲーションメニューを表示Geef een navigatiemenu met een lijst weer.Megjelenít egy navigációs menüt egy listával.Exibe um menu de navegação com uma lista.Zeigt ein Navigationsmenü mit einer Liste.מציג תפריט ניווט עם רשימה.Näyttää navigaatiovalikon listassa.Mostra un menú de navegació amb una llista.Affiche un menu de navigation avec une liste.Displays a navigation menu with a list.','display',NULL,'ftl','<#include \"${templatesPath}/NAVIGATION-MACRO-FTL\" />\n\n<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign includeAllChildNavItems = false />\n\n <#if stringUtil.equals(includedLayouts, \"all\")>\n <#assign includeAllChildNavItems = true />\n \n\n
\" class=\"list-menu\">\n <@buildNavigation\n branchNavItems=branchNavItems\n cssClass=\"layouts\"\n displayDepth=displayDepth\n includeAllChildNavItems=includeAllChildNavItems\n navItemLevel=1\n navItems=entries\n />\n
\n',0,0,29718,NULL,NULL),('4fc817c3-6692-d701-b1a4-9a6fc59bac7c',29720,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.603000','2018-07-02 15:51:15.603000',29716,0,29705,'NAV-PILLS-FTL','1.0','胶囊式导航Pills Horizontal水平方向ピルスタイルPills HorizontalNavigációs buborékPílulas de NavegaçãoPills-Darstellung, horizontalPills HorizontalPills HorizontalPastilles horitzontalsPills HorizontalPills Horizontal','显示有Bootstrap中胶囊式的导航菜单。Displays a navigation menu with navigation items shown as pills.ピルスタイルのBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with navigation items shown as pills.Egy navigációs menüt jelenít meg Bootstrap navigációs elemekkel.Exibir um menu de navegação com as pílulas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit Navigationselementen in Pills-Darstellung.Displays a navigation menu with navigation items shown as pills.Displays a navigation menu with navigation items shown as pills.Mostra un menú de navegació amb elements de navegació que es mostren en forma de pastilles.Displays a navigation menu with navigation items shown as pills.Displays a navigation menu with navigation items shown as pills.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29721,NULL,NULL),('50e1f6d7-eabb-ef79-30a8-978c730b5976',29723,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.617000','2018-07-02 15:51:15.617000',29716,0,29705,'NAV-PILLS-JUSTIFIED-FTL','1.0','调整的胶囊式导航Pills Justified等幅ピルPills JustifiedSorkizárt navigációs buborékPílulas JustificadasPills-Darstellung, bündigPills JustifiedPills JustifiedPastilles justificadesPills JustifiedPills Justified','显示调整的Bootstrap中胶囊式的导航菜单。Displays a navigation menu with justified navigation items shown as pills.等幅表示のBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with justified navigation items shown as pills.Egy navigációs menüt jelenít meg igazított Bootstrap navigációs elemekkel.Exibir um menu de navegação com as pílulas justificadas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit bündig ausgerichteten Navigationselementen in Pills-Darstellung.Displays a navigation menu with justified navigation items shown as pills.Displays a navigation menu with justified navigation items shown as pills.Mostra un menú de navegació amb elements de navegació que apareixen justificats en forma de pastilles.Displays a navigation menu with justified navigation items shown as pills.Displays a navigation menu with justified navigation items shown as pills.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29724,NULL,NULL),('fe88e5a4-d8eb-b86f-9efa-f18572c480fd',29726,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.635000','2018-07-02 15:51:15.635000',29716,0,29705,'NAV-PILLS-STACKED-FTL','1.0','堆叠的胶囊式导航Pills Stacked縦方向ピルスタイルPills StackedHalmozott navigációs buborékokPílulas EstacadasPills-Darstellung, horizontal, gestapeltPills StackedPills StackedPastilles apiladesPills StackedPills Stacked','显示堆叠的Bootstrap中胶囊式的导航菜单。Displays a navigation menu with stacked navigation items shown as pills.垂直スタイルのBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with stacked navigation items shown as pills.Egy navigációs menüt jelenít meg halmozott Bootstrap navigációs elemekkel.Exibir um menu de navegação com as pílulas estacadas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit gestapelten Navigationselementen in Pills-Darstellung.Displays a navigation menu with stacked navigation items shown as pills.Displays a navigation menu with stacked navigation items shown as pills.Mostra un menú de navegació amb elements de navegació que es mostren apilats en forma de pastilles.Displays a navigation menu with stacked navigation items shown as pills.Displays a navigation menu with stacked navigation items shown as pills.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29727,NULL,NULL),('5e5306f6-df9a-a154-e230-160b4743ef4b',29729,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.647000','2018-07-02 15:51:15.647000',29716,0,29705,'NAV-TABS-FTL','1.0','导航标签TabsタブTabsNavigációs tabulátorokAbasReiterTabsTabsPestanyesTabsTabs','显示有Bootstrap中导航标签的导航菜单。Displays a navigation menu with navigation items shown as tabs.タブスタイルのBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with navigation items shown as tabs.Egy navigációs menüt jelenít meg Bootstrap navigációs fülekkel.Exibir um menu de navegação com abas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit Navigationselementen in Reiter-Darstellung.Displays a navigation menu with navigation items shown as tabs.Displays a navigation menu with navigation items shown as tabs.Mostra un menú de navegació amb elements de navegació que es mostren com a pestanyes.Displays a navigation menu with navigation items shown as tabs.Displays a navigation menu with navigation items shown as tabs.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29730,NULL,NULL),('defe10c6-3673-9775-ef3b-5201012db82c',29732,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.666000','2018-07-02 15:51:15.666000',29716,0,29705,'NAV-TABS-JUSTIFIED-FTL','1.0','调整的导航标签Tabs Justified等幅タブTabs JustifiedSorkizárt navigációs tabulátorokAbas JustificadasReiter, bündigTabs JustifiedTabs JustifiedPestanyes justificadesTabs JustifiedTabs Justified','显示调整的Bootstrap中导航标签的导航菜单。Displays a navigation menu with justified navigation items shown as tabs.等幅タブスタイルのBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with justified navigation items shown as tabs.Egy navigációs menüt jelenít meg igazított Bootstrap navigációs fülekkelExibir um menu de navegação com abas justificadas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit bündig ausgerichteten Navigationselementen in Reiter-Darstellung.Displays a navigation menu with justified navigation items shown as tabs.Displays a navigation menu with justified navigation items shown as tabs.Mostra un menú de navegació amb elements de navegació que es mostren com a pestanyes justificades.Displays a navigation menu with justified navigation items shown as tabs.Displays a navigation menu with justified navigation items shown as tabs.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29733,NULL,NULL),('6e1cb7b1-c5ad-f203-c3b1-32b027c2b019',29735,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.698000','2018-07-02 15:51:15.698000',29716,0,29705,'NAVBAR-BLANK-FTL','1.0','简约风格栏Barra minimalista最小限スタイルのバーMinimaal vormgegeven balkMinimálisan dizájnolt sáv.Barra minimalistaLeiste, minimal gestaltetסרגל בעיצוב מינימליסטיPalkki minimaalisestityyliteltyBarra d\'estil minimalistaBarre de style minimalBar minimally styled','显示带有简约风格导航栏的导航菜单。Muestra un menú de navegación con una barra de navegación minimalista.最小限スタイリングのBootstrap形式でのナビゲーションバーを表示するToont een navigatiemenu met een minimaal gestijlde navigatiebalk.Megjelenít egy navigációs menüt egy minimálisan dizájnolt navigációs sávval.Exibe um menu de navegação com uma barra de navegação minimalista.Zeigt ein Navigationsmenü mit minimal gestalteter Navigationsleiste.מציג תפריט ניווט עם סרגל ניווט בעיצוב מינימליסטיNäyttää navigaatiovalikon käyttäen minimaalista tyylittelyä.Mostra un menú de navegació amb una barra de navegació d\'estil minimalista.Affiche un menu de navigation avec une barre de navigation de style minimal.Displays a navigation menu with a minimally styled navigation bar.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29736,NULL,NULL),('8101098d-23c8-d355-1ff7-55104ec27277',29738,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.711000','2018-07-02 15:51:15.711000',29716,0,29705,'NAVBAR-BLANK-JUSTIFIED-FTL','1.0','最小程度调整风格栏Barra minimalista y ajustadaバーの最小等幅スタイルBalk miniem verlengd gestijldA sáv minimális szövegelosztási stílusúBarra minimamente justificada e estilizadaLeiste, minimal gestaltet und bündigעיצוב סרגל ביישור מינימליPalkki minimaalisesti sovitettu tyyliteltyBarra d\'estil mínimament justificadaBarre de style peu justifiéeBar minimally justified styled','通过最小程度调整风格导航栏显示导航菜单。Muestra un menú de navegación con una barra de navegación minimalista y ajustada.ナビゲーションメニューを、最小等幅表示スタイルで表示するGeeft een navigatiemenu weer met een miniem verlengde, gestijlde navigatiebalk.Egy minimális szövegelosztási stílusú navigációs sávval rendelkező navigációs menüt jelenít meg.Exibe um menu de navegação com uma barra de navegação minimamente justificada e estilizada.Zeigt ein Navigationsmenü mit minimal gestalteten, bündig ausgerichteten Navigationselementen.מציג תפריט ניווט עם סרגל ניווט המעוצב עם יישור מינימליNäyttää siirtymisvalikon ja minimaalisesti sovitetun siirtymispalkin.Mostra un menú de navegació amb una barra de navegació d\'estil mínimament justificada.Affiche un menu de navigation avec une barre de navigation stylisée justifiée de façon minimale.Displays a navigation menu with a minimally justified styled navigation bar.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29739,NULL,NULL),('7081b717-3362-e76e-1e49-48a344d393e5',29741,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.723000','2018-07-02 15:51:15.723000',29716,0,29705,'NAVBAR-DEFAULT-FTL','1.0','默认导航栏Bar default styledデフォルトスタイルのバーBar default styledBar default styledBarra de Navegação PadrãoLeiste, normal gestaltetBar default styledBar default styledBarra amb estil per defecteNavbar par défautBar default styled','显示有Bootstrap中导航栏的导航菜单。Displays a navigation menu with a default styled navigation bar.デフォルトスタイルでナビゲーションバーを表示するDisplays a navigation menu with a default styled navigation bar.Egy navigációs menüt jelenít meg Bootstrap navigációs sávval.Exibir um menu de navegação com barra de navegação do Bootstrap.Zeigt ein Navigationsmenü mit normal gestalteter Navigationsleiste.Displays a navigation menu with a default styled navigation bar.Displays a navigation menu with a default styled navigation bar.Mostra un menú de navegació amb una barra de navegació amb un estil per defecte.Displays a navigation menu with a default styled navigation bar.Displays a navigation menu with a default styled navigation bar.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29742,NULL,NULL),('dc44ee99-85e3-84fd-8ae2-536c3959a6f6',29744,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.734000','2018-07-02 15:51:15.734000',29716,0,29705,'NAVIGATION-MACRO-FTL','1.0','导航菜单宏Navigation common macrosナビゲーション共通マクロNavigation common macrosNavigation common macrosMacro do Menu de NavegaçãoNavigation, geläufige MakrosNavigation common macrosNavigation common macrosMacros de navegació comunsMacro de menu de navigationNavigation common macros','包含用于导航菜单模板的常见宏。Contiene macros comunes para las plantillas de menús de navegación.共通マクロをナビゲーションメニュー・テンプレートに含むBevat veelvoorkomende macro\'s voor navigatiemenu-sjablonen.Általános makrókat tartalmaz a navigációs menü sablonokhoz.Contém macros comuns para modelos de menus de navegação.Enthält geläufig Makros für Navigationsmenü-Vorlagen.מכיל פונקציות מאקרו משותפות עבור תבניות תפריט ניווטSisältää yleisiä makroja navigaatiovalikon esitysmalleihin.Conté macros comuns per a les plantilles de menú de navegació.Contient les macros communs pour les gabarits de menu de navigation.Contains common macros for navigation menu templates.','macro',NULL,'ftl','<#macro buildNavigation\n branchNavItems\n cssClass\n displayDepth\n includeAllChildNavItems\n navItemLevel\n navItems\n>\n <#if navItems?has_content && ((displayDepth == 0) || (navItemLevel <= displayDepth))>\n \n \n',0,0,29745,NULL,NULL),('24db04af-37c1-be79-f246-69da4e0bbb48',29747,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.746000','2018-07-02 15:51:15.746000',29716,0,29705,'SPLIT-BUTTON-DROPDOWNS-FTL','1.0','拆分下拉菜单按钮Botón de división de menús desplegables分割ボタンドロップダウンSplit Button DropdownsOsztó gomb legördülőkBotões Suspensos SeparadosSplit-Button-Dropdownsתיבות נפתחות עם כפתור מפוצלJaettu pudotuslistanappiMenús desplegables amb botó de divisióBouton séparer de listes déroulantesSplit Button Dropdowns','显示有Bootstrap按钮的下拉式导航菜单。Displays a dropdown navigation menu with root menu items shown as buttons.ルートメニューの内容をボタンとして、ドロップダウン・ナビゲーションメニューを表示する。Displays a dropdown navigation menu with root menu items shown as buttons.Megjelenít egy legördülő navigációs menüt Bootstrap gombokkal.Exibir um menu de navegação dropdown com botões do Bootstrap.Zeigt ein Dropdown-Navigationsmenü, wobei die Wurzelelemente als Schaltflächen dargestellt werden.Displays a dropdown navigation menu with root menu items shown as buttons.Displays a dropdown navigation menu with root menu items shown as buttons.Mostra un menú de navegació desplegable amb els elements del menú arrel que es mostren com a botons.Displays a dropdown navigation menu with root menu items shown as buttons.Displays a dropdown navigation menu with root menu items shown as buttons.','display',NULL,'ftl','<#if !entries?has_content>\n <#if preview>\n
\n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
\n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
\n \n
\n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,0,29748,NULL,NULL),('2aad19cb-406c-9180-d31b-2a62737dbaef',29750,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.764000','2018-07-02 15:51:15.764000',20052,0,29705,'SITE-MAP-MULTI-COLUMN-LAYOUT-FTL','1.0','多列布局Diseño con varias columnas複数カラムレイアウトLay-out met meerdere kolommenTöbb oszlopos elrendezésLayout em Múltiplas ColunasMulti-Spalten-Layoutתצורה מרובת עמודותUsean sarakkeen asetteluPlana multi-columnaMise en page multi-colonneMulti Column Layout','为每一个顶层页面显示一列,每一列都包含一个顶层页面的名称,顶层页面下面列出其直接子页面。Muestra una columna por cada página primaria. Cada columna contiene el nombre de una página primaria con las subordinadas inmediatas de esta página listadas debajo de ella.最上位ページの列を表示する。それぞれの列には最上位ページの名前が、直下のサブページ名と共に表示されますToon een kolom voor elke top level pagina. Elke kolom bevat de naam van een top level pagina met de directe onderliggende pagina\'s eronder.Megjelenít egy oszlopot minden felső szintű oldal számára. Minden oszlop tartalmazza a felső szintű oldal nevét, alatta a felső szintű oldal gyerekével.Exibe uma coluna para cada página primária. Cada coluna contém o nome de uma página primária com as subordinadas imediatas desta página listadas abaixo dela.Zeigt eine Spalte für jede Seite der obersten Ebene an. Jede Spalte enthält den Namen der Seite der obersten Ebene sowie die Seiten der direkt untergeordneten Ebene.מציג עמודה עבור כל דף מרמה עליונה. כל עמודה כוללת את שם דף הרמה העליונה ותחתיו ההבנים המיידיים שלו.Näyttää sarakkeen jokaisella ylätason sivulla. Jokainen sarake sisältää nimen ja ylätason sivun, missä alisivut on listattu alla.Mostra una columna per a cada pàgina de nivell superior. Cada columna inclou el nom d\'una pàgina de nivell superior amb pàgines fill immediates indicades a sota.Affiche une colonne pour chaque page du niveau racine. Chaque colonne inclut le nom d\'une page du niveau racine avec ses pages enfants listées en dessous.Displays a column for each top level page. Each column includes the name of a top level page with the page\'s immediate children listed underneath.','display',NULL,'ftl','<#if entries?has_content>\n <@liferay_aui.row>\n <#list entries as entry>\n <@liferay_aui.col width=25>\n
\n

\n \n\n <#if layoutType.isBrowsable()>\n href=\"${portalUtil.getLayoutURL(entry, themeDisplay)}\"\n \n\n >${entry.getName(locale)}\n

\n
\n\n <@displayPages pages=entry.getChildren() />\n \n \n \n\n\n<#macro displayPages\n pages\n>\n <#if pages?has_content>\n \n \n',0,0,29751,NULL,NULL),('5848b364-d068-6dee-a290-a840a0c13200',29753,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.795000','2018-07-02 15:51:15.795000',20008,0,29705,'ASSET-TAGS-NAVIGATION-COLOR-BY-POPULARITY-FTL','1.0','受欢迎的颜色Color por popularidad頻出度により色分けするKleur op populariteitSzín népszerűség alapjánColorir por PopularidadeNach Popularität färbenצבע בהתאם לפופולריותVäri suosion mukaanColor per popularitatCouleur par popularitéColor by Popularity','显示资源标签颜色等级: 红色 (高), 黄色 (中), 绿色 (低).Muestra las etiquetas de contenido coloreadas según su popularidad : rojo (alta), amarilla (media) y verde (baja).アセットタグを人気順に表示する:赤(高い)、黄色(普通)、緑(低い)Toon content labels volgens populariteit: rood (hoog), geel (midden) en groen (laag).Megjeleníti a tartalom címkéket népszerűség szerint színezve: vörös (magas), sárga (közepes), és zöld (alacsony).Exibe as tags coloridas por popularidade: vermelho (alta), amarelo (média) e verde (baixa).Schlagwörter nach Popularität färben: Rot (hoch), gelb (mittel), grün (niedrig).מציג את תגיות הנכסים על פי מידת הפופולריות שלהם: אדום (גבוהה), צהוב (בינונית) וירוק (נמוכה).Näyttää sisältötageja, mitkä on väritetty suosion mukaan: punainen (korkea), keltainen (keskiverto) ja virheä (alhainen)Mostra les etiquetes per colors segons popularitat: vermell (alta), groga (mitjana) i verda (baixa).Affiche les étiquettes d\'asset coloriées par popularité: rouge (élevé), jaune (moyen), et vert (bas).Displays asset tags colored by popularity: red (high), yellow (medium), and green (low).','display',NULL,'ftl','<#if entries?has_content>\n \n\n
\n',0,0,29754,NULL,NULL),('9b4a6160-c9be-d23d-7447-77cf60cb90ec',29756,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.831000','2018-07-02 15:51:15.831000',20011,0,29705,'BLOGS-BASIC-FTL','1.0','基本的Básico通常の検索に戻るBasisEgyszerűBásicoEinfachבסיסיPerusBàsicBasiqueBasic','简介显示博客的名字,作者和摘要。Muestra de forma compacta títulos, autores y resúmenes para las entradas del blog.タイトル、作成者、要約は、ブログエントリー用に小さくまとめられますGeeft titels, auteurs en samenvatting compact weer voor blogs.Megjeleníti kompakt módon a címeket, szerzőket és kivonatokat a blog bejegyzésekhez.Exibe títulos, autores e resumos compactamente para posts de blog.Kompakte Darstellung von Titel, Autoren und Kurzfassungen für Blogeinträge.מציג כותרים, מחברים ומקצר באופן קומפקטי עבור מאמרי בלוג.Näyttää blogien otsikot, tekijät ja lyhenteet lyhyestiMostra els titles, autors i resums de forma compacta per les entrades del blog.Affiche titres, auteurs, et abstraits de manière compacte pour les entrées de blog.Displays titles, authors, and abstracts compactly for blog entries.','display',NULL,'ftl','<#list entries as entry>\n
\n <#assign viewURL = renderResponse.createRenderURL() />\n\n ${viewURL.setParameter(\"mvcRenderCommandName\", \"/blogs/view_entry\")}\n ${viewURL.setParameter(\"redirect\", currentURL)}\n ${viewURL.setParameter(\"urlTitle\", entry.getUrlTitle())}\n\n
\n \n
\n\n
\n
\n <@liferay.language key=\"written-by\" /> ${htmlUtil.escape(portalUtil.getUserName(entry.getUserId(), entry.getUserName()))}\n
\n\n <#assign summary = entry.getDescription() />\n\n <#if validator.isNull(summary)>\n <#assign summary = entry.getContent() />\n \n\n ${stringUtil.shorten(htmlUtil.stripHtml(summary), 100)}\n\n <@liferay.language key=\"read-more\" /> <@liferay.language key=\"about\"/>${htmlUtil.escape(entry.getTitle())} »\n
\n\n
\n \n ${dateUtil.getDate(entry.getCreateDate(), \"dd MMM yyyy - HH:mm:ss\", locale)}\n \n\n <#assign blogsEntryClassName = \"com.liferay.blogs.kernel.model.BlogsEntry\" />\n\n <#if blogsPortletInstanceConfiguration.enableFlags()>\n <@liferay_flags[\"flags\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n contentTitle=entry.getTitle()\n reportedUserId=entry.getUserId()\n />\n \n\n \n <@liferay_ui[\"asset-categories-summary\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n portletURL=renderResponse.createRenderURL()\n />\n \n \n <@liferay_ui[\"asset-tags-summary\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n portletURL=renderResponse.createRenderURL()\n />\n \n
\n
\n\n
\n',0,0,29757,NULL,NULL),('b2b8fe39-bb03-286f-1549-fa3a593a9f42',29760,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.867000','2018-07-02 15:51:15.867000',29759,0,29705,'BREADCRUMB-ARROWS-FTL','1.0','箭头Flechas矢印PijltjesNyilakSetasPfeileחיציםNuoletFletxesFlèchesArrows','标题和链接的箭头代表了显示在路径导航里的每个元素。Muestra el camino de navegación en la que todo elemento de navegación es representado por una flecha con su título y enlace.矢印についているタイトルとリンクに表される、それぞれのナビゲーション要素のぱんくずリストを表示します。Toont een klikpad waarin elke navigatie-element wordt weergegeven door een pijltje met de titel en de link.Egy útvonalat jelenít meg, amelyben minden navigációs elemet egy nyíl képvisel a címkéjével és a linkkel együtt.Exibe o caminho de navegação no qual todo elemento de navegação é representado por uma seta com seu título e link.Stellt eine Breadcrumbnavigation dar, in der jedes Navigationselement als Pfeil mit Titel und Link angezeigt wird.מציג פירור לחם שבו כל רכיב ניווט מיוצג על ידי חץ עם הכותר שלו וקישור.Näyttää murupolun, missä jokainen navigaatio elementti näytetään nuolella otsikon kanssa ja linkillä.Mostra una ruta de navegació en què cada element de navegació està representat per una fletxa amb el seu títol i enllaç.Affiche un fil d\'ariane dans lequel chaque élément de navigation est représenté par une flèche avec son titre et lien.Displays a breadcrumb in which every navigation element is represented by an arrow with its title and link.','display',NULL,'ftl','<#if entries?has_content>\n <@liferay_util[\"html-top\"]>\n \n \n\n
\n <#assign cssClass = \"\" />\n\n <#list entries as entry>\n <#if entry?is_last>\n <#assign cssClass = \"active\" />\n \n\n
  • \n <#if entry?has_next>\n \n href=\"${entry.getURL()!\"\"}\"\n \n\n >\n \n\n
    \n ${htmlUtil.escape(entry.getTitle())}\n
    \n\n <#if entry?has_next>\n \n \n
  • \n \n
    \n',0,0,29761,NULL,NULL),('727b3db2-081c-4b2e-cc81-c8780a243757',29763,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.888000','2018-07-02 15:51:15.888000',29759,0,29705,'BREADCRUMB-HORIZONTAL-FTL','1.0','横向Horizontal水平方向HorizontaalVízszintesHorizontalHorizontalאופקיVaakasuoraanHorizontalHorizontalHorizontal','横向显示一个路径导航。Muestra un camino de navegación horizontalmente.ぱんくずリストを水平方向に表示するToont een klikpad horizontaal.Egy útvonalat jelenít meg vízszintesen.Exibir o caminho de navegação horizontalmente.Breadcrumbnavigation horizontal anzeigenמציג פירור לחם אופקיתNäyttää murupolun vaakasuoraan.Mostra una ruta d\'exploració horitzontalment.Affiche un fil d\'ariane horizontalement.Displays a breadcrumb horizontally.','display',NULL,'ftl','<#if entries?has_content>\n \n',0,0,29764,NULL,NULL),('a96df939-9bf1-6e21-eeb1-5f1fc7620e29',29766,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.902000','2018-07-02 15:51:15.902000',29759,0,29705,'BREADCRUMB-VERTICAL-FTL','1.0','纵向Vertical垂直方向VerticaalFüggőlegesVerticalVertikalאנכיPystysuoraanVerticalVerticalVertical','纵向显示一个路径导航。Muestra un camino de navegación verticalmente.ぱんくずリストを垂直方向に表示するToont een klikpad verticaal.Egy útvonalat jelenít meg függőlegesen.Exibir o caminho de navegação verticalmente.Breadcrumbnavigation vertikal anzeigenמציג פירור לחם אנכיתNäyttää murupolun pystysuoraan.Mostra una ruta d\'exploració verticalment.Affiche un fil d\'ariane verticalement.Displays a breadcrumb vertically.','display',NULL,'ftl','<#if entries?has_content>\n \n',0,0,29767,NULL,NULL),('dde91c91-5247-cdaf-20ad-31b9e81980a2',29770,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.924000','2018-07-02 15:51:15.924000',29769,0,29705,'DOCUMENTLIBRARY-CAROUSEL-FTL','1.0','CarouselCarruselカルーセルCarrouselKörhintaCarrosselKarusselקרוסלהKaruselliCarrusselCarrouselCarousel','把图片显示在转盘中。Muestra imágenes en un carrusel.カルーセル内にイメージを表示Geeft afbeeldingen weer in een carrousel.Megjeleníti a képeket körhintaszerűen.Exibe imagens num carrossel.Darstellung von Bildern in einem Karussell.מציג את התמונות בקרוסלה.Näyttää kuvat karusellissa.Mostra imatges en format carrusel.Affiche les images dans un carrousel.Displays images in a carousel.','display',NULL,'ftl','<#if entries?has_content>\n \n\n
    carousel\">\n <#assign imageMimeTypes = propsUtil.getArray(\"dl.file.entry.preview.image.mime.types\") />\n\n <#list entries as entry>\n <#if imageMimeTypes?seq_contains(entry.getMimeType())>\n
    \n \n
    \n \n \n
    \n\n <@liferay_aui.script use=\"aui-carousel\">\n var carousel = new A.Carousel(\n {\n after: {\n responsive: function(event) {\n event.stopImmediatePropagation();\n\n var boundingBox = event.currentTarget.get(\'boundingBox\');\n\n boundingBox.all(\'.image-viewer-base-image-list, .image-viewer-base-image\').setStyles(\n {\n height: \'auto\',\n maxHeight: event.height,\n maxWidth: event.width,\n width: \'auto\'\n }\n );\n }\n },\n\n contentBox: \'#<@portlet.namespace />carousel\',\n height: 250,\n intervalTime: 2,\n width: 700\n }\n ).render();\n \n',0,0,29771,NULL,NULL),('ea9a6648-50c7-d1e2-1926-31578a2dbdd3',29774,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.960000','2018-07-02 15:51:15.960000',29773,0,29705,'LANGUAGE-ICON-FTL','1.0','图标IconoアイコンPictogramIkonÍconeSymbolסמלIkoniIconaIcôneIcon','显示与每种语言相关标志的图标。Muestra el icono de la bandera asociada a cada idiomaそれぞれの言語に対応する国旗のアイコンを表示する。Toon het pictogram van de vlag verbonden met iedere taal.Megjeleníti az egyes nyelvekhez kapcsolódó zászlók ikonjait.Exibe o ícone da bandeira associada a cada idioma.Zeigt Flaggensymbole für jede Sprache.מציג את הסמל של הדגל המיוחס לכל שפה.Näyttää lippuikonin liitettynä jokaiseen kieleen.Mostra la icona de la bandera associada a cada idioma.Affiche l\'icône du drapeau associé avec chaque langue.Displays the icon of the flag associated with each language.','display',NULL,'ftl','<#if entries?has_content>\n <#list entries as entry>\n <#if entry.isSelected()>\n <#assign cssClass = \"current-language\" />\n \n\n <#if !entry.isDisabled()>\n <@liferay_aui[\"icon\"]\n cssClass=cssClass\n image=entry.getW3cLanguageId()?lower_case\n markupView=\"lexicon\"\n message=entry.getLongDisplayName()\n url=entry.getURL()\n />\n \n \n',0,0,29775,NULL,NULL),('38d8dd92-3961-d5af-b895-213c80d81086',29777,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.979000','2018-07-02 15:51:15.979000',29773,0,29705,'LANGUAGE-ICON-MENU-FTL','1.0','图标菜单Menú de iconosアイコンメニューPictogram menuIkon menüMenu de ÍconesSymbolmenüתפריט סמליםIkonivalikkoIcona de menúMenu d\'icôneIcon Menu','显示所选语言的图标菜单。Muestra un menú de iconos con los idiomas seleccionados.選択された言語でアイコンメニューを表示するToon een pictogram menu met de geselecteerde talen.Megjeleníti az ikon menüt a választott nyelveken.Exibe um menu de ícones com os idiomas selecionados.Zeigt ein Symbolmenü mit den ausgewählten Sprachen.מציג תפריט שמאלים עם השפות הנבחרות.Näyttää ikonivalikon, missä on valittuja kieliä.Mostra un menú d\'icones amb els idiomes seleccionats.Affiche un menu d\'icônes avec des langues sélectionnées.Displays an icon menu with the selected languages.','display',NULL,'ftl','<#if entries?has_content>\n
    \n <@liferay_ui[\"icon-menu\"]\n icon=\"../aui/globe\"\n message=locale.getDisplayName(locale)\n >\n <#list entries as entry>\n <#if !entry.isSelected() && !entry.isDisabled()>\n <@liferay_ui[\"icon\"]\n image=\"../language/\" + entry.getLanguageId()\n label=true\n lang=entry.getW3cLanguageId()\n message=entry.getLongDisplayName()\n url=entry.getURL()\n />\n \n \n \n
    \n',0,0,29778,NULL,NULL),('1224fc84-2cc4-1e35-d285-b33bd2d716ca',29780,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:15.991000','2018-07-02 15:51:15.991000',29773,0,29705,'LANGUAGE-LONG-TEXT-FTL','1.0','长文本Texto largo長いテキストLange tekstHosszú szövegTexto LongoLanger Textטקסט ארוךPitkätekstiText llargTexte longLong Text','显示每种语言的全名(例如,西班牙语)。Muestra el nombre completo de cada idioma (ej.: Español)それぞれの言語の正式名を表示する(例:日本語)Toon de volledige naam van iedere taal (bv Spaans).Megjeleníti a teljes nevet az egyes nyelvekhez (pl.: spanyol).Exibe o nome completo de cada idioma (ex.: Espanhol).Zeigt den vollständigen Namen jeder Sprache (z.B. Spanisch).מציג את השם המלא של כל שפה (למשל ספרדית).Näyttää kokonimen joka kielellä (esim. suomeksi).Mostra el nom complet de cada idioma (per exemple, Català).Affiche le nom complet de chaque langue (par exemple: Espagnol).Displays the full name of each language (e.g. Spanish).','display',NULL,'ftl','\n\n<#if entries?has_content>\n <#list entries as entry>\n <#if !entry.isDisabled()>\n <@liferay_aui[\"a\"]\n cssClass=\"language-entry-long-text\"\n href=entry.getURL()\n label=entry.getLongDisplayName()\n lang=entry.getW3cLanguageId()\n />\n \n \n',0,0,29781,NULL,NULL),('50233f65-48f5-9465-29e2-896a85a49952',29783,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.005000','2018-07-02 15:51:16.005000',29773,0,29705,'LANGUAGE-SELECT-BOX-FTL','1.0','选择框Caja de selecciónセレクトボックスKeuze veldVálasztó dobozCaixa de SeleçãoAuswahllisteתיבת בחירהValintalaatikkoCaixa de seleccióSélectionner boiteSelect Box','显示所选语言的选择框Muestra una caja de selección con los idiomas seleccionados.選択された言語でアイコンメニューを表示するToen keuze veld met de geselecteerde talen.Megjeleníti az ikon menüt a választott nyelveken.Exibe uma caixa de seleção com os idiomas selecionados.Zeigt eine Auswahllist mit den ausgewählten Sprachen anמציג תיבת בחירה עם השפות הנבחרות.Näyttää valintalaatikon valituilla kielillä.Mostra un quadre de selecció amb els idiomes seleccionatsAffiche une boite sélectionnée avec les langues sélectionnées.Displays a select box with the selected languages','display',NULL,'ftl','<#if entries?has_content>\n <#assign languageId = localeUtil.toLanguageId(locale) />\n\n \n\n <@liferay_aui[\"form\"]\n action=formAction\n method=\"post\"\n name=\'${namespace + formName}\'\n useNamespace=false\n >\n <@liferay_aui[\"select\"]\n changesContext=true\n id=\'${namespace + formName}\'\n label=\"\"\n name=\'${name}\'\n onChange=\'${namespace + \"changeLanguage();\"}\'\n title=\"language\"\n >\n <#list entries as entry>\n <@liferay_aui[\"option\"]\n cssClass=\"taglib-language-option taglib-language-option-${entry.getW3cLanguageId()}\"\n disabled=entry.isDisabled()\n label=entry.getLongDisplayName()\n lang=entry.getW3cLanguageId()\n selected=entry.isSelected()\n value=entry.getLanguageId()\n />\n \n \n \n\n <@liferay_aui[\"script\"]>\n function ${namespace}changeLanguage() {\n var languageId = AUI.$(document.${namespace + formName}.${name}).val();\n\n submitForm(document.${namespace + formName});\n }\n \n',0,0,29784,NULL,NULL),('471565a3-2e7b-47df-4aff-00c401d17788',29786,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.018000','2018-07-02 15:51:16.018000',29773,0,29705,'LANGUAGE-SHORT-TEXT-FTL','1.0','短文本Texto corto短いテキストKorte tekstRövid szövegTexto CurtoKurzer Textטקסט קצרLyhyttekstiText curtTexte courtShort Text','显示每种语言的缩写(例如,ES)。Muestra una abreviación de cada idioma (ej.: ES)それぞれの言語の略称を表示する(例:JP)Toont een afkorting van iedere taal (bijv. SP).Megjeleníti az egyes nyelvek rövidítését (pl.: ES).Exibe uma abreviação de cada idioma (ex.: ES).Zeigt ein Kürzel jeder Sprache (z.B. ES).מציג קיצור של כל שפה (למשל ES).Näyttää lyhenteen jokaiselle kielelle (esim. FI)Mostra una abreviatura de cada idioma (per exemple, CA).Affiche une abréviation de chaque langue (par exemple ES).Displays an abbreviation of each language (e.g. ES).','display',NULL,'ftl','\n\n<#if entries?has_content>\n <#list entries as entry>\n <#if !entry.isDisabled()>\n <@liferay_aui[\"a\"]\n cssClass=\"language-entry-short-text\"\n href=entry.getURL()\n label=entry.getShortDisplayName()\n lang=entry.getW3cLanguageId()\n />\n \n \n',0,0,29787,NULL,NULL),('cbf0e418-110b-e0bb-603f-a5d50441bc8a',29789,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.039000','2018-07-02 15:51:16.039000',20006,0,29705,'ASSET-PUBLISHER-GEOLOCALIZED','1.0','映射Mapa地図KaartTérképMapaLandkarteמפהKarttaMapaCarteMap','显示在地图上定位的资源Muestra activos geolocalizados en un mapa.地図内にジオローカライズされたアセットを表示するToon geolocale content op een kaart.Megjeleníti a földrajzi tartalmakat egy térképen.Exibe os conteúdos geolocalizados em um mapa.Stellt Assets mit geografischen Informationen in einer Karte dar.מציג נכסים המכילים מיקום גיאו-לוקלי על גבי מפה.Näyttää maantieteelliset sisällöt kartalla.Mostra contingut geolocalitzat en un mapa.Affiche les assets géolocalisés dans un planDisplays geolocalized assets in a map.','display',NULL,'ftl','<#assign\n defaultLatitude = -3.6833\n defaultLongitude = 40.40\n\n group = themeDisplay.getScopeGroup()\n\n mapsAPIProvider = group.getLiveParentTypeSettingsProperty(\"mapsAPIProvider\")!\"\"\n\n companyPortletPreferences = prefsPropsUtil.getPreferences(companyId)\n/>\n\n<#if validator.isNull(mapsAPIProvider)>\n <#assign mapsAPIProvider = companyPortletPreferences.getValue(\"mapsAPIProvider\", \"Google\") />\n\n\n<#assign featureCollectionJSONObject = jsonFactoryUtil.createJSONObject() />\n\n<@liferay.silently featureCollectionJSONObject.put(\"type\", \"FeatureCollection\") />\n\n<#assign featureJSONArray = jsonFactoryUtil.createJSONArray() />\n\n<#list entries as entry>\n <#assign\n assetRenderer = entry.getAssetRenderer()\n\n ddmFormValuesReader = assetRenderer.getDDMFormValuesReader()\n\n ddmFormFieldValues = ddmFormValuesReader.getDDMFormFieldValues(\"ddm-geolocation\")\n\n coordinatesJSONObjects = []\n />\n\n <#list ddmFormFieldValues as ddmFormFieldValue>\n <#assign\n value = ddmFormFieldValue.getValue()\n\n coordinatesJSONObject = jsonFactoryUtil.createJSONObject(value.getString(locale))\n\n coordinatesJSONObjects = coordinatesJSONObjects + [coordinatesJSONObject]\n />\n \n\n <#list coordinatesJSONObjects as coordinatesJSONObject>\n <#assign featureJSONObject = jsonFactoryUtil.createJSONObject() />\n\n <@liferay.silently featureJSONObject.put(\"type\", \"Feature\") />\n\n <#assign geometryJSONObject = jsonFactoryUtil.createJSONObject() />\n\n <@liferay.silently geometryJSONObject.put(\"type\", \"Point\") />\n\n <#assign coordinatesJSONArray = [coordinatesJSONObject.getDouble(\"longitude\"), coordinatesJSONObject.getDouble(\"latitude\")] />\n\n <@liferay.silently geometryJSONObject.put(\"coordinates\", coordinatesJSONArray) />\n\n <@liferay.silently featureJSONObject.put(\"geometry\", geometryJSONObject) />\n\n <#assign propertiesJSONObject = jsonFactoryUtil.createJSONObject() />\n\n <@liferay.silently propertiesJSONObject.put(\"title\", assetRenderer.getTitle(locale)) />\n\n <#assign entryAbstract>\n <@getAbstract asset=entry />\n \n\n <@liferay.silently propertiesJSONObject.put(\"abstract\", entryAbstract) />\n\n <#if stringUtil.equals(mapsAPIProvider, \"Google\")>\n <#assign\n images = {\n \"com.liferay.document.library.kernel.model.DLFileEntry\": \"${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/green-dot.png\",\n \"com.liferay.portlet.dynamicdatalists.model.DDLRecord\": \"${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/red-dot.png\",\n \"com.liferay.journal.model.JournalArticle\": \"${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/blue-dot.png\",\n \"default\": \"${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/yellow-dot.png\"\n }\n />\n\n <#if images?keys?seq_contains(entry.getClassName())>\n <@liferay.silently propertiesJSONObject.put(\"icon\", images[entry.getClassName()]) />\n <#else>\n <@liferay.silently propertiesJSONObject.put(\"icon\", images[\"default\"]) />\n \n \n\n <@liferay.silently featureJSONObject.put(\"properties\", propertiesJSONObject) />\n\n <@liferay.silently featureJSONArray.put(featureJSONObject) />\n \n\n\n<@liferay.silently featureCollectionJSONObject.put(\"features\", featureJSONArray) />\n\n\n\n<@liferay_map[\"map-display\"]\n name=\'Map\'\n points=\"${featureCollectionJSONObject}\"\n/>\n\n<@liferay_aui.script use=\"liferay-map-base\">\n var map = Liferay.component(\'<@portlet.namespace />Map\');\n\n map.on(\n \'featureClick\',\n function(event) {\n var feature = event.feature;\n\n map.openDialog(\n {\n content: feature.getProperty(\'abstract\'),\n marker: feature.getMarker(),\n position: feature.getGeometry().get(\'location\')\n }\n );\n }\n );\n\n\n<#macro getAbstract asset>\n
    assetEntryAbstract\">\n <#assign\n showEditURL = paramUtil.getBoolean(renderRequest, \"showEditURL\", true)\n\n assetRenderer = asset.getAssetRenderer()\n />\n\n <#if showEditURL && assetRenderer.hasEditPermission(permissionChecker)>\n <#assign redirectURL = renderResponse.createLiferayPortletURL(themeDisplay.getPlid(), themeDisplay.getPortletDisplay().getId(), \"RENDER_PHASE\", false) />\n\n ${redirectURL.setParameter(\"mvcPath\", \"/add_asset_redirect.jsp\")}\n\n <#assign\n editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState(\"POP_UP\"), redirectURL)\n\n taglibEditURL = \"javascript:Liferay.Util.openWindow({id: \'\" + renderResponse.getNamespace() + \"editAsset\', title: \'\" + htmlUtil.escapeJS(languageUtil.format(locale, \"edit-x\", htmlUtil.escape(assetRenderer.getTitle(locale)), false)) + \"\', uri:\'\" + htmlUtil.escapeJS(editPortletURL.toString()) + \"\'});\"\n />\n\n <@liferay_ui.icon\n image=\"edit\"\n label=true\n message=\"edit\"\n url=taglibEditURL\n />\n \n\n <#if assetRenderer.getThumbnailPath(renderRequest)??>\n
    \n \n
    \n \n\n <#assign assetURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, assetRenderer, asset, false) />\n\n
    \n

    ${assetRenderer.getTitle(locale)}

    \n\n
    \n ${assetRenderer.getSummary(renderRequest, renderResponse)}\n
    \n
    \n\n
    \n ${languageUtil.get(locale, \"read-more\")} »\n
    \n
    \n',0,0,29790,NULL,NULL),('ad7db178-46c8-0756-fb86-7bc2d3a3d5cd',29792,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:16.067000','2018-07-02 15:51:16.067000',20006,0,29705,'ASSET-PUBLISHER-RICH-SUMMARY-FTL','1.0','丰富总结Resumen completo要約(文字数多め)Rijke samenvattingBő összesítőSumário RicoRich-Text-Zusammenfassungתקציר עשירMuotoiltu yhteenvetoResum enriquitSommaire enrichiRich Summary','显示资源的摘要,图标,相关资源以及打印和编辑的功能。可选择地包含资源书签和评级。Muestra abstractos, iconos, activos relacionados e imprime/edita acciones para activos. Opcionalmente incluye marcadores de activos y calificaciones.概要、アイコン、関連するアセット、アセットの印刷/編集を表示する。アセットのブックマークとレーティングも設定できますToon samenvattingen, pictogrammen, gerelateerde content en afdruk en bewerk acties voor content. Voeg optioneel bladwijzers en beoordelingen toe.Megjeleníti a kivonatokat, ikonokat, a kapcsolódó tartalmakat, és a nyomtatási/szerkesztési műveleteket a tarlamakhoz. Opcionálisan tartalmazza a tartalom könyvjelzőket és értékeléseket.Exibe abstracts, ícones, conteúdos relacionados e ações de imprimir/editar para os conteúdos. Opcionalmente, inclui marcadores e classificações de conteúdos.Stellt Kurzfassungen, Icons, verwandte Assets sowie Druck- und Bearbeitungsoptionen für Assets dar. Kann auch Bookmarks und Bewertungen enthalten.מציג תקצירים, סמלים, נכסים קשורים ופעולות הדפסה/עריכה עבור נכסים. אופציונלית מכיל סימניות נכסים ודירוגים.Näyttää lyhenteet, kuvakkeet, liittyvät sisällöt ja sisältöjen tulosta/muokkaa toiminnot. Voit ottaa mukaan myös sisältöjen kirjanmerkit ja arvostelut.Mostra resums, icones, continguts relacionats i accions d\'impressió o edició per continguts. Opcionalment, inclou enllaços i valoracions.Affiche les résumés, icons, les assets relatifs, et les actions imprimer/éditer pour les assets. Facultativement inclut les signets et les notations d\'assets.Displays abstracts, icons, related assets, and print/edit actions for assets. Optionally include asset bookmarks and ratings.','display',NULL,'ftl','<#if !entries?has_content>\n <#if !themeDisplay.isSignedIn()>\n ${renderRequest.setAttribute(\"PORTLET_CONFIGURATOR_VISIBILITY\", true)}\n \n\n
    \n <@liferay_ui[\"message\"] key=\"there-are-no-results\" />\n
    \n\n\n<#list entries as entry>\n <#assign\n entry = entry\n\n assetRenderer = entry.getAssetRenderer()\n\n entryTitle = htmlUtil.escape(assetRenderer.getTitle(locale))\n\n viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, assetRenderer, entry, !stringUtil.equals(assetLinkBehavior, \"showFullContent\"))\n />\n\n
    \n
    \n <@getPrintIcon />\n\n <@getFlagsIcon />\n\n <@getEditIcon />\n
    \n\n

    \n \n ${entryTitle}\n \n

    \n\n <@getMetadataField fieldName=\"tags\" />\n\n <@getMetadataField fieldName=\"create-date\" />\n\n <@getMetadataField fieldName=\"view-count\" />\n\n
    \n <@getSocialBookmarks />\n\n
    \n <@getMetadataField fieldName=\"author\" />\n\n ${htmlUtil.escape(assetRenderer.getSummary(renderRequest, renderResponse))}\n\n <@liferay.language key=\"read-more\" /><@liferay.language key=\"about\" />${entryTitle} »\n
    \n\n <@getRatings />\n\n <@getRelatedAssets />\n\n <@getDiscussion />\n
    \n
    \n\n\n<#macro getDiscussion>\n <#if getterUtil.getBoolean(enableComments) && assetRenderer.isCommentable()>\n
    \n\n <#assign discussionURL = renderResponse.createActionURL() />\n\n ${discussionURL.setParameter(\"javax.portlet.action\", \"invokeTaglibDiscussion\")}\n\n <@liferay_ui[\"discussion\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n formAction=discussionURL?string\n formName=\"fm\" + entry.getClassPK()\n ratingsEnabled=getterUtil.getBoolean(enableCommentRatings)\n redirect=currentURL\n userId=assetRenderer.getUserId()\n />\n \n\n\n<#macro getEditIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign redirectURL = renderResponse.createRenderURL() />\n\n ${redirectURL.setParameter(\"mvcPath\", \"/add_asset_redirect.jsp\")}\n ${redirectURL.setWindowState(\"pop_up\")}\n\n <#assign editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState(\"pop_up\"), redirectURL)!\"\" />\n\n <#if validator.isNotNull(editPortletURL)>\n <#assign title = languageUtil.format(locale, \"edit-x\", entryTitle, false) />\n\n <@liferay_ui[\"icon\"]\n cssClass=\"icon-monospaced visible-interaction\"\n icon=\"pencil\"\n markupView=\"lexicon\"\n message=title\n url=\"javascript:Liferay.Util.openWindow({id:\'\" + renderResponse.getNamespace() + \"editAsset\', title: \'\" + title + \"\', uri:\'\" + htmlUtil.escapeURL(editPortletURL.toString()) + \"\'});\"\n />\n \n \n\n\n<#macro getFlagsIcon>\n <#if getterUtil.getBoolean(enableFlags)>\n <@liferay_flags[\"flags\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n contentTitle=entry.getTitle(locale)\n label=false\n reportedUserId=entry.getUserId()\n />\n \n\n\n<#macro getMetadataField\n fieldName\n>\n <#if stringUtil.split(metadataFields)?seq_contains(fieldName)>\n \n <#assign dateFormat = \"dd MMM yyyy - HH:mm:ss\" />\n\n <#if stringUtil.equals(fieldName, \"author\")>\n <@liferay.language key=\"by\" /> ${htmlUtil.escape(portalUtil.getUserName(assetRenderer.getUserId(), assetRenderer.getUserName()))}\n <#elseif stringUtil.equals(fieldName, \"categories\")>\n <@liferay_ui[\"asset-categories-summary\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n portletURL=renderResponse.createRenderURL()\n />\n <#elseif stringUtil.equals(fieldName, \"create-date\")>\n ${dateUtil.getDate(entry.getCreateDate(), dateFormat, locale)}\n <#elseif stringUtil.equals(fieldName, \"expiration-date\")>\n ${dateUtil.getDate(entry.getExpirationDate(), dateFormat, locale)}\n <#elseif stringUtil.equals(fieldName, \"modified-date\")>\n ${dateUtil.getDate(entry.getModifiedDate(), dateFormat, locale)}\n <#elseif stringUtil.equals(fieldName, \"priority\")>\n ${entry.getPriority()}\n <#elseif stringUtil.equals(fieldName, \"publish-date\")>\n ${dateUtil.getDate(entry.getPublishDate(), dateFormat, locale)}\n <#elseif stringUtil.equals(fieldName, \"tags\")>\n <@liferay_ui[\"asset-tags-summary\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n portletURL=renderResponse.createRenderURL()\n />\n <#elseif stringUtil.equals(fieldName, \"view-count\")>\n ${entry.getViewCount()} <@liferay.language key=\"views\" />\n \n \n \n\n\n<#macro getPrintIcon>\n <#if getterUtil.getBoolean(enablePrint)>\n <#assign printURL = renderResponse.createRenderURL() />\n\n ${printURL.setParameter(\"mvcPath\", \"/view_content.jsp\")}\n ${printURL.setParameter(\"assetEntryId\", entry.getEntryId()?string)}\n ${printURL.setParameter(\"viewMode\", \"print\")}\n ${printURL.setParameter(\"type\", entry.getAssetRendererFactory().getType())}\n\n <#if assetRenderer.getUrlTitle()?? && validator.isNotNull(assetRenderer.getUrlTitle())>\n <#if assetRenderer.getGroupId() != themeDisplay.getScopeGroupId()>\n ${printURL.setParameter(\"groupId\", assetRenderer.getGroupId()?string)}\n \n\n ${printURL.setParameter(\"urlTitle\", assetRenderer.getUrlTitle())}\n \n\n ${printURL.setWindowState(\"pop_up\")}\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-print\"\n message=\"print\"\n url=\"javascript:Liferay.Util.openWindow({id:\'\" + renderResponse.getNamespace() + \"printAsset\', title: \'\" + languageUtil.format(locale, \"print-x-x\", [\"hide-accessible\", entryTitle], false) + \"\', uri: \'\" + htmlUtil.escapeURL(printURL.toString()) + \"\'});\"\n />\n \n\n\n<#macro getRatings>\n <#if getterUtil.getBoolean(enableRatings) && assetRenderer.isRatable()>\n
    \n <@liferay_ui[\"ratings\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n />\n
    \n \n\n\n<#macro getRelatedAssets>\n <#if getterUtil.getBoolean(enableRelatedAssets)>\n <@liferay_ui[\"asset-links\"]\n assetEntryId=entry.getEntryId()\n viewInContext=!stringUtil.equals(assetLinkBehavior, \"showFullContent\")\n />\n \n\n\n<#macro getSocialBookmarks>\n <#if getterUtil.getBoolean(enableSocialBookmarks)>\n <@liferay_ui[\"social-bookmarks\"]\n displayStyle=\"${socialBookmarksDisplayStyle}\"\n target=\"_blank\"\n title=entry.getTitle(locale)\n url=viewURL\n />\n \n',0,0,29793,NULL,NULL),('b6d8a8e9-941c-8309-867b-740ec68b46e4',31173,20151,20115,20119,NULL,20119,NULL,'2018-07-02 15:51:24.411000','2018-07-02 15:51:24.411000',29607,31170,30901,'BASIC-WEB-CONTENT','1.0','基本网页内容Contenido web básico基本WebコンテンツBasiswebcontentAlapvető webtartalomConteúdo Web básicoEinfacher Webcontentתוכן אינטרנטי בסיסיTavallinen web-sisältöContigut web bàsicContenu web de baseBasic Web Content','','display','create','ftl','${content.getData()}',1,0,31174,NULL,NULL); /*!40000 ALTER TABLE `DDMTemplate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMTemplateLink` -- DROP TABLE IF EXISTS `DDMTemplateLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMTemplateLink` ( `templateLinkId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `templateId` bigint(20) DEFAULT NULL, PRIMARY KEY (`templateLinkId`), UNIQUE KEY `IX_6F3B3E9C` (`classNameId`,`classPK`), KEY `IX_85278170` (`templateId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMTemplateLink` -- LOCK TABLES `DDMTemplateLink` WRITE; /*!40000 ALTER TABLE `DDMTemplateLink` DISABLE KEYS */; /*!40000 ALTER TABLE `DDMTemplateLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DDMTemplateVersion` -- DROP TABLE IF EXISTS `DDMTemplateVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DDMTemplateVersion` ( `templateVersionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `templateId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `language` varchar(75) DEFAULT NULL, `script` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`templateVersionId`), UNIQUE KEY `IX_8854A128` (`templateId`,`version`), KEY `IX_66382FC6` (`templateId`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DDMTemplateVersion` -- LOCK TABLES `DDMTemplateVersion` WRITE; /*!40000 ALTER TABLE `DDMTemplateVersion` DISABLE KEYS */; INSERT INTO `DDMTemplateVersion` VALUES (29708,20151,20115,20119,NULL,'2018-07-02 15:51:15.470000',28202,0,29706,'1.0','社交SocialソーシャルSociaalKözösségiSocialSocialחברתיSosiaalinenSocialSocialSocial','显示社交书签和维基页的评分和它们的子页。Muestra los marcadores sociales y las clasificaciones para páginas wiki y sus páginas secundarias.ウィキページとそのサブページ用のソーシャルブックマークとレーティングを表示するGeeft sociale favorieten en waarderingen van wikipagina\'s en onderliggende wikipagina\'s weer.Megjeleníti a közösségi könyvjelzőket és értékeléseket a wiki oldalak és gyermek oldalaik részére.Exibe marcadores sociais e avaliações para páginas da wiki e suas páginas filhas.Darstellung für Social Bookmarks und Bewertungen von Wikiseiten und deren Unterseiten.מציג סימניות חברתיות ודירוגים עבור דפי וויקי והדפים הבנים שלהם.Näyttää sosiaaliset kirjanmerkit ja arvostelut wikisivuilla ja niiden alisivuilla.Mostra adreces d\'interès socials i classificacions per a planes del wiki.Affiche les signets sociaux and les notations pour page wiki et leur pages enfants.Displays social bookmarks and ratings for wiki pages and their child pages.','ftl','<#assign\n wikiPageClassName = \"com.liferay.wiki.model.WikiPage\"\n\n assetRenderer = assetEntry.getAssetRenderer()\n/>\n\n
    \n

    ${entry.getTitle()}

    \n
    \n\n
    \n <@getEditIcon />\n\n <@getPageDetailsIcon />\n\n <@getPrintIcon />\n
    \n\n
    \n
    \n ${assetEntry.getViewCount()} <@liferay.language key=\"views\" /> |\n\n <@liferay.language key=\"last-modified\" /> ${dateUtil.getDate(entry.getModifiedDate(), \"dd MMM yyyy - HH:mm:ss\", locale)}\n\n <@liferay.language key=\"by\" /> ${htmlUtil.escape(portalUtil.getUserName(entry.getUserId(), entry.getUserName()))}\n
    \n\n
    \n <@liferay_ui[\"social-bookmarks\"]\n displayStyle=\"normal\"\n target=\"_blank\"\n title=entry.getTitle()\n url=viewURL\n />\n\n ${formattedContent}\n
    \n\n
    \n
    \n <@getAddChildPageIcon />\n\n <@getAttatchmentsIcon />\n
    \n
    \n\n
    \n\n <@getRatings\n cssClass=\"page-ratings\"\n entry=entry\n />\n\n <@getRelatedAssets />\n
    \n\n
    \n
    \n <#assign viewCategorizedPagesURL = renderResponse.createRenderURL() />\n\n ${viewCategorizedPagesURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view_categorized_pages\")}\n ${viewCategorizedPagesURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n\n <@liferay_ui[\"asset-categories-summary\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n portletURL=viewCategorizedPagesURL\n />\n
    \n\n
    \n <#assign viewTaggedPagesURL = renderResponse.createRenderURL() />\n\n ${viewTaggedPagesURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view_tagged_pages\")}\n ${viewTaggedPagesURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n\n <@liferay_ui[\"asset-tags-summary\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n portletURL=viewTaggedPagesURL\n />\n
    \n
    \n\n<#assign childPages = entry.getChildPages() />\n\n<#if (childPages?has_content)>\n
    \n

    <@liferay.language key=\"children-pages\" />

    \n\n \n \n \n \n \n \n\n <#list childPages as childPage>\n \n <#assign viewPageURL = renderResponse.createRenderURL() />\n\n ${viewPageURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view\")}\n\n <#assign childNode = childPage.getNode() />\n\n ${viewPageURL.setParameter(\"nodeName\", childNode.getName())}\n ${viewPageURL.setParameter(\"title\", childPage.getTitle())}\n\n \n \n \n \n \n
    \n <@liferay.language key=\"page\" />\n \n <@liferay.language key=\"last-modified\" />\n \n <@liferay.language key=\"ratings\" />\n
    \n ${childPage.getTitle()}\n \n ${dateUtil.getDate(childPage.getModifiedDate(),\"dd MMM yyyy - HH:mm:ss\", locale)} <@liferay.language key=\"by\" /> ${htmlUtil.escape(portalUtil.getUserName(childPage.getUserId(), childPage.getUserName()))}\n \n <@getRatings\n cssClass=\"child-ratings\"\n entry=childPage\n />\n
    \n
    \n\n\n<@getDiscussion />\n\n<#macro getAddChildPageIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign addPageURL = renderResponse.createRenderURL() />\n\n ${addPageURL.setParameter(\"mvcRenderCommandName\", \"/wiki/edit_page\")}\n ${addPageURL.setParameter(\"redirect\", currentURL)}\n ${addPageURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n ${addPageURL.setParameter(\"title\", \"\")}\n ${addPageURL.setParameter(\"editTitle\", \"1\")}\n ${addPageURL.setParameter(\"parentTitle\", entry.getTitle())}\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-plus\"\n label=true\n message=\"add-child-page\"\n url=addPageURL?string\n />\n \n\n\n<#macro getAttatchmentsIcon>\n <#assign viewPageAttachmentsURL = renderResponse.createRenderURL() />\n\n ${viewPageAttachmentsURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view_page_attachments\") }\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-paperclip\"\n label=true\n message=\'${entry.getAttachmentsFileEntriesCount() + languageUtil.get(locale, \"attachments\")}\'\n url=viewPageAttachmentsURL?string\n />\n\n\n<#macro getDiscussion>\n <#if validator.isNotNull(assetRenderer.getDiscussionPath()) && wikiPortletInstanceConfiguration.enableComments()>\n
    \n\n <#assign discussionURL = renderResponse.createActionURL() />\n\n ${discussionURL.setParameter(\"javax.portlet.action\", \"/wiki/\" + assetRenderer.getDiscussionPath())}\n\n <@liferay_ui[\"discussion\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n formAction=discussionURL?string\n formName=\"fm2\"\n ratingsEnabled=wikiPortletInstanceConfiguration.enableCommentRatings()\n redirect=currentURL\n subject=assetRenderer.getTitle(locale)\n userId=assetRenderer.getUserId()\n />\n \n\n\n<#macro getEditIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign editPageURL = renderResponse.createRenderURL() />\n\n ${editPageURL.setParameter(\"mvcRenderCommandName\", \"/wiki/edit_page\")}\n ${editPageURL.setParameter(\"redirect\", currentURL)}\n ${editPageURL.setParameter(\"nodeId\", entry.getNodeId()?string)}\n ${editPageURL.setParameter(\"title\", entry.getTitle())}\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-edit\"\n message=entry.getTitle()\n url=editPageURL?string\n />\n \n\n\n<#macro getPageDetailsIcon>\n <#assign viewPageDetailsURL = renderResponse.createRenderURL() />\n\n ${viewPageDetailsURL.setParameter(\"mvcRenderCommandName\", \"/wiki/view_page_details\")}\n ${viewPageDetailsURL.setParameter(\"redirect\", currentURL)}\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-file-alt\"\n message=\"details\"\n url=viewPageDetailsURL?string\n />\n\n\n<#macro getPrintIcon>\n <#assign printURL = renderResponse.createRenderURL() />\n\n ${printURL.setParameter(\"viewMode\", \"print\")}\n ${printURL.setWindowState(\"pop_up\")}\n\n <#assign\n title = languageUtil.format(locale, \"print-x-x\", [\"hide-accessible\", htmlUtil.escape(assetRenderer.getTitle(locale))], false)\n taglibPrintURL = \"javascript:Liferay.Util.openWindow({dialog: {width: 960}, id:\'\" + renderResponse.getNamespace() + \"printAsset\', title: \'\" + title + \"\', uri: \'\" + htmlUtil.escapeURL(printURL.toString()) + \"\'});\"\n />\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-print\"\n message=\"print\"\n url=taglibPrintURL\n />\n\n\n<#macro getRatings\n cssClass\n entry\n>\n <#if wikiPortletInstanceConfiguration.enablePageRatings()>\n
    \n <@liferay_ui[\"ratings\"]\n className=wikiPageClassName\n classPK=entry.getResourcePrimKey()\n />\n
    \n \n\n\n<#macro getRelatedAssets>\n <#if assetEntry?? && wikiPortletInstanceConfiguration.enableRelatedAssets()>\n <@liferay_ui[\"asset-links\"] assetEntryId=assetEntry.getEntryId() />\n \n',0,20119,NULL,'2018-07-02 15:51:15.470000'),(29712,20151,20115,20119,NULL,'2018-07-02 15:51:15.508000',29709,0,29710,'1.0','导航NavegaciónナビゲーションNavigatieNavigációNavegaçãoNavigationניווטNavigointiNavegacióNavigationNavigation','在左侧面板上显示RSS源的导航栏。在右侧面板上点击Feed显示提要条目的列表。Muestra los feeds RSS como una barra de navegación del panel izquierdo. Al hacer clic en un feed se muestra una lista de entradas de feed en el panel derecho.RSSフィードを左のパネルにナビゲーションバーとして表示します。フィードをクリックすると、右パネルにフィードの内容がリスト表示されますGeeft de RSS-feeds als een navigatiebalk in het linkerpaneel weer. Als u op een feed klikt wordt een lijst van van feed-entries in het rechterpaneel getoond.Megjeleníti az RSS hírcsatornákat navigációs oszlopként a bal oldalon. Egy hírcsatornára kattintva megjeleníti a hírcsatorna bejegyzések listáját a jobb oldalon.Exibe os feeds RSS como uma barra de navegação no painel esquerdo. Clicar em um feed exibe uma lista de entradas de feed no painel direito.Stellt die RSS-Feeds als Navigationsleiste im linken Bereich dar. Nach Anklicken eines Feeds werden die entsprechenden Feedeinträge im rechten Bereich dargestellt.מציג את הזנות ה-RSS כסרגל ניווט בחלונית השמאלית. לחיצה על הזנה מציגה רשימה של רשומות הזנה בחלונית הימנית.Näyttää RSS-syötteet navigaatiopalkissa vasemmassa paneelissa. Klikkaamalla syötettä näytetään syötteen arvot oikeassa paneelissa.Mostra els canals RSS com una barra de navegació en el tauler esquerra. Al fer un clic en un canal es mostraran la llista d\'entrades en el tauler dret.Affiche les flux RSS en tant que barre de navigation dans le panneau gauche. Cliquer sur un flux affiche une liste d\'entrées de flux sur le panneau droit.Displays the RSS feeds as a navigation bar on the left panel. Clicking on a feed displays a list of feed entries on the right panel.','ftl','<#assign rssPortletInstanceConfiguration = rssDisplayContext.getRSSPortletInstanceConfiguration() />\n\n\n\n<#if entries?has_content>\n <#assign dateFormat = \"dd MMM yyyy - HH:mm:ss\" />\n\n
    \n
    feedsTab\">\n \n\n
    \n <#list entries as curEntry>\n <#assign rssFeedEntries = curEntry.getRSSFeedEntries(themeDisplay) />\n\n <#if rssFeedEntries??>\n
    \n <#list rssFeedEntries as rssFeedEntry>\n <#if (rssFeedEntry_index > entriesPerFeed?number)>\n <#break>\n \n\n <#assign syndEntry = rssFeedEntry.getSyndEntry() />\n\n
    \n
    \n <@liferay_aui[\"a\"] href=\"${htmlUtil.escapeJSLink(rssFeedEntry.getSyndEntryLink())}\">${htmlUtil.escape(syndEntry.getTitle())}\n
    \n\n <#if rssPortletInstanceConfiguration.showFeedTitle() && syndEntry.getAuthor()??>\n \n \n\n <#if syndEntry.getPublishedDate()??>\n
    \n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-calendar\"\n label=true\n message=\"${dateUtil.getDate(syndEntry.getPublishedDate(), dateFormat, locale)}\"\n />\n
    \n \n\n ${rssFeedEntry.getSanitizedContent()}\n
    \n \n
    \n \n \n
    \n
    \n
    \n\n <@liferay_aui[\"script\"] use=\"aui-base,aui-tabview\">\n new A.TabView(\n {\n srcNode: \'#<@portlet.namespace />feedsTab\',\n stacked: true,\n type: \'pills\'\n }\n ).render();\n \n',0,20119,NULL,'2018-07-02 15:51:15.508000'),(29715,20151,20115,20119,NULL,'2018-07-02 15:51:15.544000',20004,0,29713,'1.0','多列布局Diseño con varias columnas複数カラムレイアウトLay-out met meerdere kolommenTöbb oszlopos elrendezésLayout em Múltiplas ColunasMulti-Spalten-Layoutתצורה מרובת עמודותUsean sarakkeen asetteluPlana multi-columnaMise en page multi-colonneMulti Column Layout','显示一列中的每个词汇,每列包括顶级类别之下的词汇名字。Despliega una columna para cada vocabulario. Cada columna incluye el nombre de un vocabulario con las categorías de mayor nivel del vocabulario listadas debajo.各用語用に列を表示する。各列は以下にリストになっている、最上位に設定されている用語名を含んでいますToon een kolom voor ieder woordenboek. Iedere kolom bevat de naam van een woordenboek met de hoofd categorieën eronder.Megjelenít egy oszlopot minden szótár számára. Minden oszlop tartalmazza a szótár nevét, alatta a szótár felső szintű kategóriáival.Exibe uma coluna para cada vocabulário. Cada coluna inclui o nome do vocabulário com as categorias de nível mais alto listadas abaixo dele.Stellt eine Spalte für jedes Vokabular dar. Jede Spalte enthält den Namen eines Vokabulars mit der obersten Kategorienebene darunter.מציג עמודה עבור כל אוצר מילים. כל עמודה מכילה את השם של אוצר מילים , כאשר הקטגוריות ברמה הגבוהה ביותר מופיעות מתחתיה.Näyttää sarakkeen jokaiselle sanastolle. Jokainen sarake sisältää sanaston nimen, missä sanaston ylätason luokitukset on listattu.Visualitza una columna per a cada vocabulari. Cada columna inclou el nom del vocabulari amb la categoria de nivell més alta a sota.Affiche une colonne pour chaque vocabulaire. Chaque colonne inclut le nom d\'un vocabulaire avec les catégories du niveau racine listées en dessous.Displays a column for each vocabulary. Each column includes the name of a vocabulary with the vocabulary\'s top level categories listed underneath.','ftl','<#if entries?has_content>\n <@liferay_aui.row>\n <#list entries as entry>\n <@liferay_aui.col width=25>\n
    \n

    \n ${entry.getUnambiguousTitle(entries, themeDisplay.getSiteGroupId(), themeDisplay.getLocale())}\n

    \n
    \n\n <#assign categories = entry.getCategories() />\n\n <@displayCategories categories=categories />\n \n \n \n\n\n<#macro displayCategories\n categories\n>\n <#if categories?has_content>\n \n \n',0,20119,NULL,'2018-07-02 15:51:15.544000'),(29719,20151,20115,20119,NULL,'2018-07-02 15:51:15.574000',29716,0,29717,'1.0','列表式菜单Menú de listaリストメニューLijstmenuLista menüMenu de ListaMenülisteתפריט רשימהListavalikkoMenú de llistaMenu de listeList Menu','显示带列表的导航菜单。Muestra un menú de navegación con una lista.リストスタイルでナビゲーションメニューを表示Geef een navigatiemenu met een lijst weer.Megjelenít egy navigációs menüt egy listával.Exibe um menu de navegação com uma lista.Zeigt ein Navigationsmenü mit einer Liste.מציג תפריט ניווט עם רשימה.Näyttää navigaatiovalikon listassa.Mostra un menú de navegació amb una llista.Affiche un menu de navigation avec une liste.Displays a navigation menu with a list.','ftl','<#include \"${templatesPath}/NAVIGATION-MACRO-FTL\" />\n\n<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign includeAllChildNavItems = false />\n\n <#if stringUtil.equals(includedLayouts, \"all\")>\n <#assign includeAllChildNavItems = true />\n \n\n
    \" class=\"list-menu\">\n <@buildNavigation\n branchNavItems=branchNavItems\n cssClass=\"layouts\"\n displayDepth=displayDepth\n includeAllChildNavItems=includeAllChildNavItems\n navItemLevel=1\n navItems=entries\n />\n
    \n',0,20119,NULL,'2018-07-02 15:51:15.574000'),(29722,20151,20115,20119,NULL,'2018-07-02 15:51:15.603000',29716,0,29720,'1.0','胶囊式导航Pills Horizontal水平方向ピルスタイルPills HorizontalNavigációs buborékPílulas de NavegaçãoPills-Darstellung, horizontalPills HorizontalPills HorizontalPastilles horitzontalsPills HorizontalPills Horizontal','显示有Bootstrap中胶囊式的导航菜单。Displays a navigation menu with navigation items shown as pills.ピルスタイルのBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with navigation items shown as pills.Egy navigációs menüt jelenít meg Bootstrap navigációs elemekkel.Exibir um menu de navegação com as pílulas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit Navigationselementen in Pills-Darstellung.Displays a navigation menu with navigation items shown as pills.Displays a navigation menu with navigation items shown as pills.Mostra un menú de navegació amb elements de navegació que es mostren en forma de pastilles.Displays a navigation menu with navigation items shown as pills.Displays a navigation menu with navigation items shown as pills.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.603000'),(29725,20151,20115,20119,NULL,'2018-07-02 15:51:15.617000',29716,0,29723,'1.0','调整的胶囊式导航Pills Justified等幅ピルPills JustifiedSorkizárt navigációs buborékPílulas JustificadasPills-Darstellung, bündigPills JustifiedPills JustifiedPastilles justificadesPills JustifiedPills Justified','显示调整的Bootstrap中胶囊式的导航菜单。Displays a navigation menu with justified navigation items shown as pills.等幅表示のBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with justified navigation items shown as pills.Egy navigációs menüt jelenít meg igazított Bootstrap navigációs elemekkel.Exibir um menu de navegação com as pílulas justificadas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit bündig ausgerichteten Navigationselementen in Pills-Darstellung.Displays a navigation menu with justified navigation items shown as pills.Displays a navigation menu with justified navigation items shown as pills.Mostra un menú de navegació amb elements de navegació que apareixen justificats en forma de pastilles.Displays a navigation menu with justified navigation items shown as pills.Displays a navigation menu with justified navigation items shown as pills.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.617000'),(29728,20151,20115,20119,NULL,'2018-07-02 15:51:15.635000',29716,0,29726,'1.0','堆叠的胶囊式导航Pills Stacked縦方向ピルスタイルPills StackedHalmozott navigációs buborékokPílulas EstacadasPills-Darstellung, horizontal, gestapeltPills StackedPills StackedPastilles apiladesPills StackedPills Stacked','显示堆叠的Bootstrap中胶囊式的导航菜单。Displays a navigation menu with stacked navigation items shown as pills.垂直スタイルのBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with stacked navigation items shown as pills.Egy navigációs menüt jelenít meg halmozott Bootstrap navigációs elemekkel.Exibir um menu de navegação com as pílulas estacadas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit gestapelten Navigationselementen in Pills-Darstellung.Displays a navigation menu with stacked navigation items shown as pills.Displays a navigation menu with stacked navigation items shown as pills.Mostra un menú de navegació amb elements de navegació que es mostren apilats en forma de pastilles.Displays a navigation menu with stacked navigation items shown as pills.Displays a navigation menu with stacked navigation items shown as pills.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.635000'),(29731,20151,20115,20119,NULL,'2018-07-02 15:51:15.647000',29716,0,29729,'1.0','导航标签TabsタブTabsNavigációs tabulátorokAbasReiterTabsTabsPestanyesTabsTabs','显示有Bootstrap中导航标签的导航菜单。Displays a navigation menu with navigation items shown as tabs.タブスタイルのBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with navigation items shown as tabs.Egy navigációs menüt jelenít meg Bootstrap navigációs fülekkel.Exibir um menu de navegação com abas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit Navigationselementen in Reiter-Darstellung.Displays a navigation menu with navigation items shown as tabs.Displays a navigation menu with navigation items shown as tabs.Mostra un menú de navegació amb elements de navegació que es mostren com a pestanyes.Displays a navigation menu with navigation items shown as tabs.Displays a navigation menu with navigation items shown as tabs.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.647000'),(29734,20151,20115,20119,NULL,'2018-07-02 15:51:15.666000',29716,0,29732,'1.0','调整的导航标签Tabs Justified等幅タブTabs JustifiedSorkizárt navigációs tabulátorokAbas JustificadasReiter, bündigTabs JustifiedTabs JustifiedPestanyes justificadesTabs JustifiedTabs Justified','显示调整的Bootstrap中导航标签的导航菜单。Displays a navigation menu with justified navigation items shown as tabs.等幅タブスタイルのBootstrap形式でナビゲーションメニューを表示するDisplays a navigation menu with justified navigation items shown as tabs.Egy navigációs menüt jelenít meg igazított Bootstrap navigációs fülekkelExibir um menu de navegação com abas justificadas de navegação do Bootstrap.Zeigt ein Navigationsmenü mit bündig ausgerichteten Navigationselementen in Reiter-Darstellung.Displays a navigation menu with justified navigation items shown as tabs.Displays a navigation menu with justified navigation items shown as tabs.Mostra un menú de navegació amb elements de navegació que es mostren com a pestanyes justificades.Displays a navigation menu with justified navigation items shown as tabs.Displays a navigation menu with justified navigation items shown as tabs.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.666000'),(29737,20151,20115,20119,NULL,'2018-07-02 15:51:15.698000',29716,0,29735,'1.0','简约风格栏Barra minimalista最小限スタイルのバーMinimaal vormgegeven balkMinimálisan dizájnolt sáv.Barra minimalistaLeiste, minimal gestaltetסרגל בעיצוב מינימליסטיPalkki minimaalisestityyliteltyBarra d\'estil minimalistaBarre de style minimalBar minimally styled','显示带有简约风格导航栏的导航菜单。Muestra un menú de navegación con una barra de navegación minimalista.最小限スタイリングのBootstrap形式でのナビゲーションバーを表示するToont een navigatiemenu met een minimaal gestijlde navigatiebalk.Megjelenít egy navigációs menüt egy minimálisan dizájnolt navigációs sávval.Exibe um menu de navegação com uma barra de navegação minimalista.Zeigt ein Navigationsmenü mit minimal gestalteter Navigationsleiste.מציג תפריט ניווט עם סרגל ניווט בעיצוב מינימליסטיNäyttää navigaatiovalikon käyttäen minimaalista tyylittelyä.Mostra un menú de navegació amb una barra de navegació d\'estil minimalista.Affiche un menu de navigation avec une barre de navigation de style minimal.Displays a navigation menu with a minimally styled navigation bar.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.698000'),(29740,20151,20115,20119,NULL,'2018-07-02 15:51:15.711000',29716,0,29738,'1.0','最小程度调整风格栏Barra minimalista y ajustadaバーの最小等幅スタイルBalk miniem verlengd gestijldA sáv minimális szövegelosztási stílusúBarra minimamente justificada e estilizadaLeiste, minimal gestaltet und bündigעיצוב סרגל ביישור מינימליPalkki minimaalisesti sovitettu tyyliteltyBarra d\'estil mínimament justificadaBarre de style peu justifiéeBar minimally justified styled','通过最小程度调整风格导航栏显示导航菜单。Muestra un menú de navegación con una barra de navegación minimalista y ajustada.ナビゲーションメニューを、最小等幅表示スタイルで表示するGeeft een navigatiemenu weer met een miniem verlengde, gestijlde navigatiebalk.Egy minimális szövegelosztási stílusú navigációs sávval rendelkező navigációs menüt jelenít meg.Exibe um menu de navegação com uma barra de navegação minimamente justificada e estilizada.Zeigt ein Navigationsmenü mit minimal gestalteten, bündig ausgerichteten Navigationselementen.מציג תפריט ניווט עם סרגל ניווט המעוצב עם יישור מינימליNäyttää siirtymisvalikon ja minimaalisesti sovitetun siirtymispalkin.Mostra un menú de navegació amb una barra de navegació d\'estil mínimament justificada.Affiche un menu de navigation avec une barre de navigation stylisée justifiée de façon minimale.Displays a navigation menu with a minimally justified styled navigation bar.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.711000'),(29743,20151,20115,20119,NULL,'2018-07-02 15:51:15.723000',29716,0,29741,'1.0','默认导航栏Bar default styledデフォルトスタイルのバーBar default styledBar default styledBarra de Navegação PadrãoLeiste, normal gestaltetBar default styledBar default styledBarra amb estil per defecteNavbar par défautBar default styled','显示有Bootstrap中导航栏的导航菜单。Displays a navigation menu with a default styled navigation bar.デフォルトスタイルでナビゲーションバーを表示するDisplays a navigation menu with a default styled navigation bar.Egy navigációs menüt jelenít meg Bootstrap navigációs sávval.Exibir um menu de navegação com barra de navegação do Bootstrap.Zeigt ein Navigationsmenü mit normal gestalteter Navigationsleiste.Displays a navigation menu with a default styled navigation bar.Displays a navigation menu with a default styled navigation bar.Mostra un menú de navegació amb una barra de navegació amb un estil per defecte.Displays a navigation menu with a default styled navigation bar.Displays a navigation menu with a default styled navigation bar.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.723000'),(29746,20151,20115,20119,NULL,'2018-07-02 15:51:15.734000',29716,0,29744,'1.0','导航菜单宏Navigation common macrosナビゲーション共通マクロNavigation common macrosNavigation common macrosMacro do Menu de NavegaçãoNavigation, geläufige MakrosNavigation common macrosNavigation common macrosMacros de navegació comunsMacro de menu de navigationNavigation common macros','包含用于导航菜单模板的常见宏。Contiene macros comunes para las plantillas de menús de navegación.共通マクロをナビゲーションメニュー・テンプレートに含むBevat veelvoorkomende macro\'s voor navigatiemenu-sjablonen.Általános makrókat tartalmaz a navigációs menü sablonokhoz.Contém macros comuns para modelos de menus de navegação.Enthält geläufig Makros für Navigationsmenü-Vorlagen.מכיל פונקציות מאקרו משותפות עבור תבניות תפריט ניווטSisältää yleisiä makroja navigaatiovalikon esitysmalleihin.Conté macros comuns per a les plantilles de menú de navegació.Contient les macros communs pour les gabarits de menu de navigation.Contains common macros for navigation menu templates.','ftl','<#macro buildNavigation\n branchNavItems\n cssClass\n displayDepth\n includeAllChildNavItems\n navItemLevel\n navItems\n>\n <#if navItems?has_content && ((displayDepth == 0) || (navItemLevel <= displayDepth))>\n \n \n',0,20119,NULL,'2018-07-02 15:51:15.734000'),(29749,20151,20115,20119,NULL,'2018-07-02 15:51:15.746000',29716,0,29747,'1.0','拆分下拉菜单按钮Botón de división de menús desplegables分割ボタンドロップダウンSplit Button DropdownsOsztó gomb legördülőkBotões Suspensos SeparadosSplit-Button-Dropdownsתיבות נפתחות עם כפתור מפוצלJaettu pudotuslistanappiMenús desplegables amb botó de divisióBouton séparer de listes déroulantesSplit Button Dropdowns','显示有Bootstrap按钮的下拉式导航菜单。Displays a dropdown navigation menu with root menu items shown as buttons.ルートメニューの内容をボタンとして、ドロップダウン・ナビゲーションメニューを表示する。Displays a dropdown navigation menu with root menu items shown as buttons.Megjelenít egy legördülő navigációs menüt Bootstrap gombokkal.Exibir um menu de navegação dropdown com botões do Bootstrap.Zeigt ein Dropdown-Navigationsmenü, wobei die Wurzelelemente als Schaltflächen dargestellt werden.Displays a dropdown navigation menu with root menu items shown as buttons.Displays a dropdown navigation menu with root menu items shown as buttons.Mostra un menú de navegació desplegable amb els elements del menú arrel que es mostren com a botons.Displays a dropdown navigation menu with root menu items shown as buttons.Displays a dropdown navigation menu with root menu items shown as buttons.','ftl','<#if !entries?has_content>\n <#if preview>\n
    \n <@liferay.language key=\"there-are-no-pages-to-display-for-the-current-page-level\" />\n
    \n \n<#else>\n <#assign\n portletDisplay = themeDisplay.getPortletDisplay()\n\n navbarId = \"navbar_\" + portletDisplay.getId()\n />\n\n
    \n \n
    \n\n <@liferay_aui.script use=\"liferay-navigation-interaction\">\n var navigation = A.one(\'#${navbarId}\');\n\n Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = \'.navbar-site\';\n Liferay.Data.NAV_LIST_SELECTOR = \'.navbar-site\';\n\n if (navigation) {\n navigation.plug(Liferay.NavigationInteraction);\n }\n \n',0,20119,NULL,'2018-07-02 15:51:15.746000'),(29752,20151,20115,20119,NULL,'2018-07-02 15:51:15.764000',20052,0,29750,'1.0','多列布局Diseño con varias columnas複数カラムレイアウトLay-out met meerdere kolommenTöbb oszlopos elrendezésLayout em Múltiplas ColunasMulti-Spalten-Layoutתצורה מרובת עמודותUsean sarakkeen asetteluPlana multi-columnaMise en page multi-colonneMulti Column Layout','为每一个顶层页面显示一列,每一列都包含一个顶层页面的名称,顶层页面下面列出其直接子页面。Muestra una columna por cada página primaria. Cada columna contiene el nombre de una página primaria con las subordinadas inmediatas de esta página listadas debajo de ella.最上位ページの列を表示する。それぞれの列には最上位ページの名前が、直下のサブページ名と共に表示されますToon een kolom voor elke top level pagina. Elke kolom bevat de naam van een top level pagina met de directe onderliggende pagina\'s eronder.Megjelenít egy oszlopot minden felső szintű oldal számára. Minden oszlop tartalmazza a felső szintű oldal nevét, alatta a felső szintű oldal gyerekével.Exibe uma coluna para cada página primária. Cada coluna contém o nome de uma página primária com as subordinadas imediatas desta página listadas abaixo dela.Zeigt eine Spalte für jede Seite der obersten Ebene an. Jede Spalte enthält den Namen der Seite der obersten Ebene sowie die Seiten der direkt untergeordneten Ebene.מציג עמודה עבור כל דף מרמה עליונה. כל עמודה כוללת את שם דף הרמה העליונה ותחתיו ההבנים המיידיים שלו.Näyttää sarakkeen jokaisella ylätason sivulla. Jokainen sarake sisältää nimen ja ylätason sivun, missä alisivut on listattu alla.Mostra una columna per a cada pàgina de nivell superior. Cada columna inclou el nom d\'una pàgina de nivell superior amb pàgines fill immediates indicades a sota.Affiche une colonne pour chaque page du niveau racine. Chaque colonne inclut le nom d\'une page du niveau racine avec ses pages enfants listées en dessous.Displays a column for each top level page. Each column includes the name of a top level page with the page\'s immediate children listed underneath.','ftl','<#if entries?has_content>\n <@liferay_aui.row>\n <#list entries as entry>\n <@liferay_aui.col width=25>\n
    \n

    \n \n\n <#if layoutType.isBrowsable()>\n href=\"${portalUtil.getLayoutURL(entry, themeDisplay)}\"\n \n\n >${entry.getName(locale)}\n

    \n
    \n\n <@displayPages pages=entry.getChildren() />\n \n \n \n\n\n<#macro displayPages\n pages\n>\n <#if pages?has_content>\n \n \n',0,20119,NULL,'2018-07-02 15:51:15.764000'),(29755,20151,20115,20119,NULL,'2018-07-02 15:51:15.795000',20008,0,29753,'1.0','受欢迎的颜色Color por popularidad頻出度により色分けするKleur op populariteitSzín népszerűség alapjánColorir por PopularidadeNach Popularität färbenצבע בהתאם לפופולריותVäri suosion mukaanColor per popularitatCouleur par popularitéColor by Popularity','显示资源标签颜色等级: 红色 (高), 黄色 (中), 绿色 (低).Muestra las etiquetas de contenido coloreadas según su popularidad : rojo (alta), amarilla (media) y verde (baja).アセットタグを人気順に表示する:赤(高い)、黄色(普通)、緑(低い)Toon content labels volgens populariteit: rood (hoog), geel (midden) en groen (laag).Megjeleníti a tartalom címkéket népszerűség szerint színezve: vörös (magas), sárga (közepes), és zöld (alacsony).Exibe as tags coloridas por popularidade: vermelho (alta), amarelo (média) e verde (baixa).Schlagwörter nach Popularität färben: Rot (hoch), gelb (mittel), grün (niedrig).מציג את תגיות הנכסים על פי מידת הפופולריות שלהם: אדום (גבוהה), צהוב (בינונית) וירוק (נמוכה).Näyttää sisältötageja, mitkä on väritetty suosion mukaan: punainen (korkea), keltainen (keskiverto) ja virheä (alhainen)Mostra les etiquetes per colors segons popularitat: vermell (alta), groga (mitjana) i verda (baixa).Affiche les étiquettes d\'asset coloriées par popularité: rouge (élevé), jaune (moyen), et vert (bas).Displays asset tags colored by popularity: red (high), yellow (medium), and green (low).','ftl','<#if entries?has_content>\n \n\n
    \n',0,20119,NULL,'2018-07-02 15:51:15.795000'),(29758,20151,20115,20119,NULL,'2018-07-02 15:51:15.831000',20011,0,29756,'1.0','基本的Básico通常の検索に戻るBasisEgyszerűBásicoEinfachבסיסיPerusBàsicBasiqueBasic','简介显示博客的名字,作者和摘要。Muestra de forma compacta títulos, autores y resúmenes para las entradas del blog.タイトル、作成者、要約は、ブログエントリー用に小さくまとめられますGeeft titels, auteurs en samenvatting compact weer voor blogs.Megjeleníti kompakt módon a címeket, szerzőket és kivonatokat a blog bejegyzésekhez.Exibe títulos, autores e resumos compactamente para posts de blog.Kompakte Darstellung von Titel, Autoren und Kurzfassungen für Blogeinträge.מציג כותרים, מחברים ומקצר באופן קומפקטי עבור מאמרי בלוג.Näyttää blogien otsikot, tekijät ja lyhenteet lyhyestiMostra els titles, autors i resums de forma compacta per les entrades del blog.Affiche titres, auteurs, et abstraits de manière compacte pour les entrées de blog.Displays titles, authors, and abstracts compactly for blog entries.','ftl','<#list entries as entry>\n
    \n <#assign viewURL = renderResponse.createRenderURL() />\n\n ${viewURL.setParameter(\"mvcRenderCommandName\", \"/blogs/view_entry\")}\n ${viewURL.setParameter(\"redirect\", currentURL)}\n ${viewURL.setParameter(\"urlTitle\", entry.getUrlTitle())}\n\n
    \n \n
    \n\n
    \n
    \n <@liferay.language key=\"written-by\" /> ${htmlUtil.escape(portalUtil.getUserName(entry.getUserId(), entry.getUserName()))}\n
    \n\n <#assign summary = entry.getDescription() />\n\n <#if validator.isNull(summary)>\n <#assign summary = entry.getContent() />\n \n\n ${stringUtil.shorten(htmlUtil.stripHtml(summary), 100)}\n\n <@liferay.language key=\"read-more\" /> <@liferay.language key=\"about\"/>${htmlUtil.escape(entry.getTitle())} »\n
    \n\n
    \n \n ${dateUtil.getDate(entry.getCreateDate(), \"dd MMM yyyy - HH:mm:ss\", locale)}\n \n\n <#assign blogsEntryClassName = \"com.liferay.blogs.kernel.model.BlogsEntry\" />\n\n <#if blogsPortletInstanceConfiguration.enableFlags()>\n <@liferay_flags[\"flags\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n contentTitle=entry.getTitle()\n reportedUserId=entry.getUserId()\n />\n \n\n \n <@liferay_ui[\"asset-categories-summary\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n portletURL=renderResponse.createRenderURL()\n />\n \n \n <@liferay_ui[\"asset-tags-summary\"]\n className=blogsEntryClassName\n classPK=entry.getEntryId()\n portletURL=renderResponse.createRenderURL()\n />\n \n
    \n
    \n\n
    \n',0,20119,NULL,'2018-07-02 15:51:15.831000'),(29762,20151,20115,20119,NULL,'2018-07-02 15:51:15.867000',29759,0,29760,'1.0','箭头Flechas矢印PijltjesNyilakSetasPfeileחיציםNuoletFletxesFlèchesArrows','标题和链接的箭头代表了显示在路径导航里的每个元素。Muestra el camino de navegación en la que todo elemento de navegación es representado por una flecha con su título y enlace.矢印についているタイトルとリンクに表される、それぞれのナビゲーション要素のぱんくずリストを表示します。Toont een klikpad waarin elke navigatie-element wordt weergegeven door een pijltje met de titel en de link.Egy útvonalat jelenít meg, amelyben minden navigációs elemet egy nyíl képvisel a címkéjével és a linkkel együtt.Exibe o caminho de navegação no qual todo elemento de navegação é representado por uma seta com seu título e link.Stellt eine Breadcrumbnavigation dar, in der jedes Navigationselement als Pfeil mit Titel und Link angezeigt wird.מציג פירור לחם שבו כל רכיב ניווט מיוצג על ידי חץ עם הכותר שלו וקישור.Näyttää murupolun, missä jokainen navigaatio elementti näytetään nuolella otsikon kanssa ja linkillä.Mostra una ruta de navegació en què cada element de navegació està representat per una fletxa amb el seu títol i enllaç.Affiche un fil d\'ariane dans lequel chaque élément de navigation est représenté par une flèche avec son titre et lien.Displays a breadcrumb in which every navigation element is represented by an arrow with its title and link.','ftl','<#if entries?has_content>\n <@liferay_util[\"html-top\"]>\n \n \n\n
    \n <#assign cssClass = \"\" />\n\n <#list entries as entry>\n <#if entry?is_last>\n <#assign cssClass = \"active\" />\n \n\n
  • \n <#if entry?has_next>\n \n href=\"${entry.getURL()!\"\"}\"\n \n\n >\n \n\n
    \n ${htmlUtil.escape(entry.getTitle())}\n
    \n\n <#if entry?has_next>\n \n \n
  • \n \n
    \n',0,20119,NULL,'2018-07-02 15:51:15.867000'),(29765,20151,20115,20119,NULL,'2018-07-02 15:51:15.888000',29759,0,29763,'1.0','横向Horizontal水平方向HorizontaalVízszintesHorizontalHorizontalאופקיVaakasuoraanHorizontalHorizontalHorizontal','横向显示一个路径导航。Muestra un camino de navegación horizontalmente.ぱんくずリストを水平方向に表示するToont een klikpad horizontaal.Egy útvonalat jelenít meg vízszintesen.Exibir o caminho de navegação horizontalmente.Breadcrumbnavigation horizontal anzeigenמציג פירור לחם אופקיתNäyttää murupolun vaakasuoraan.Mostra una ruta d\'exploració horitzontalment.Affiche un fil d\'ariane horizontalement.Displays a breadcrumb horizontally.','ftl','<#if entries?has_content>\n \n',0,20119,NULL,'2018-07-02 15:51:15.888000'),(29768,20151,20115,20119,NULL,'2018-07-02 15:51:15.902000',29759,0,29766,'1.0','纵向Vertical垂直方向VerticaalFüggőlegesVerticalVertikalאנכיPystysuoraanVerticalVerticalVertical','纵向显示一个路径导航。Muestra un camino de navegación verticalmente.ぱんくずリストを垂直方向に表示するToont een klikpad verticaal.Egy útvonalat jelenít meg függőlegesen.Exibir o caminho de navegação verticalmente.Breadcrumbnavigation vertikal anzeigenמציג פירור לחם אנכיתNäyttää murupolun pystysuoraan.Mostra una ruta d\'exploració verticalment.Affiche un fil d\'ariane verticalement.Displays a breadcrumb vertically.','ftl','<#if entries?has_content>\n \n',0,20119,NULL,'2018-07-02 15:51:15.902000'),(29772,20151,20115,20119,NULL,'2018-07-02 15:51:15.924000',29769,0,29770,'1.0','CarouselCarruselカルーセルCarrouselKörhintaCarrosselKarusselקרוסלהKaruselliCarrusselCarrouselCarousel','把图片显示在转盘中。Muestra imágenes en un carrusel.カルーセル内にイメージを表示Geeft afbeeldingen weer in een carrousel.Megjeleníti a képeket körhintaszerűen.Exibe imagens num carrossel.Darstellung von Bildern in einem Karussell.מציג את התמונות בקרוסלה.Näyttää kuvat karusellissa.Mostra imatges en format carrusel.Affiche les images dans un carrousel.Displays images in a carousel.','ftl','<#if entries?has_content>\n \n\n
    carousel\">\n <#assign imageMimeTypes = propsUtil.getArray(\"dl.file.entry.preview.image.mime.types\") />\n\n <#list entries as entry>\n <#if imageMimeTypes?seq_contains(entry.getMimeType())>\n
    \n \n
    \n \n \n
    \n\n <@liferay_aui.script use=\"aui-carousel\">\n var carousel = new A.Carousel(\n {\n after: {\n responsive: function(event) {\n event.stopImmediatePropagation();\n\n var boundingBox = event.currentTarget.get(\'boundingBox\');\n\n boundingBox.all(\'.image-viewer-base-image-list, .image-viewer-base-image\').setStyles(\n {\n height: \'auto\',\n maxHeight: event.height,\n maxWidth: event.width,\n width: \'auto\'\n }\n );\n }\n },\n\n contentBox: \'#<@portlet.namespace />carousel\',\n height: 250,\n intervalTime: 2,\n width: 700\n }\n ).render();\n \n',0,20119,NULL,'2018-07-02 15:51:15.924000'),(29776,20151,20115,20119,NULL,'2018-07-02 15:51:15.960000',29773,0,29774,'1.0','图标IconoアイコンPictogramIkonÍconeSymbolסמלIkoniIconaIcôneIcon','显示与每种语言相关标志的图标。Muestra el icono de la bandera asociada a cada idiomaそれぞれの言語に対応する国旗のアイコンを表示する。Toon het pictogram van de vlag verbonden met iedere taal.Megjeleníti az egyes nyelvekhez kapcsolódó zászlók ikonjait.Exibe o ícone da bandeira associada a cada idioma.Zeigt Flaggensymbole für jede Sprache.מציג את הסמל של הדגל המיוחס לכל שפה.Näyttää lippuikonin liitettynä jokaiseen kieleen.Mostra la icona de la bandera associada a cada idioma.Affiche l\'icône du drapeau associé avec chaque langue.Displays the icon of the flag associated with each language.','ftl','<#if entries?has_content>\n <#list entries as entry>\n <#if entry.isSelected()>\n <#assign cssClass = \"current-language\" />\n \n\n <#if !entry.isDisabled()>\n <@liferay_aui[\"icon\"]\n cssClass=cssClass\n image=entry.getW3cLanguageId()?lower_case\n markupView=\"lexicon\"\n message=entry.getLongDisplayName()\n url=entry.getURL()\n />\n \n \n',0,20119,NULL,'2018-07-02 15:51:15.960000'),(29779,20151,20115,20119,NULL,'2018-07-02 15:51:15.979000',29773,0,29777,'1.0','图标菜单Menú de iconosアイコンメニューPictogram menuIkon menüMenu de ÍconesSymbolmenüתפריט סמליםIkonivalikkoIcona de menúMenu d\'icôneIcon Menu','显示所选语言的图标菜单。Muestra un menú de iconos con los idiomas seleccionados.選択された言語でアイコンメニューを表示するToon een pictogram menu met de geselecteerde talen.Megjeleníti az ikon menüt a választott nyelveken.Exibe um menu de ícones com os idiomas selecionados.Zeigt ein Symbolmenü mit den ausgewählten Sprachen.מציג תפריט שמאלים עם השפות הנבחרות.Näyttää ikonivalikon, missä on valittuja kieliä.Mostra un menú d\'icones amb els idiomes seleccionats.Affiche un menu d\'icônes avec des langues sélectionnées.Displays an icon menu with the selected languages.','ftl','<#if entries?has_content>\n
    \n <@liferay_ui[\"icon-menu\"]\n icon=\"../aui/globe\"\n message=locale.getDisplayName(locale)\n >\n <#list entries as entry>\n <#if !entry.isSelected() && !entry.isDisabled()>\n <@liferay_ui[\"icon\"]\n image=\"../language/\" + entry.getLanguageId()\n label=true\n lang=entry.getW3cLanguageId()\n message=entry.getLongDisplayName()\n url=entry.getURL()\n />\n \n \n \n
    \n',0,20119,NULL,'2018-07-02 15:51:15.979000'),(29782,20151,20115,20119,NULL,'2018-07-02 15:51:15.991000',29773,0,29780,'1.0','长文本Texto largo長いテキストLange tekstHosszú szövegTexto LongoLanger Textטקסט ארוךPitkätekstiText llargTexte longLong Text','显示每种语言的全名(例如,西班牙语)。Muestra el nombre completo de cada idioma (ej.: Español)それぞれの言語の正式名を表示する(例:日本語)Toon de volledige naam van iedere taal (bv Spaans).Megjeleníti a teljes nevet az egyes nyelvekhez (pl.: spanyol).Exibe o nome completo de cada idioma (ex.: Espanhol).Zeigt den vollständigen Namen jeder Sprache (z.B. Spanisch).מציג את השם המלא של כל שפה (למשל ספרדית).Näyttää kokonimen joka kielellä (esim. suomeksi).Mostra el nom complet de cada idioma (per exemple, Català).Affiche le nom complet de chaque langue (par exemple: Espagnol).Displays the full name of each language (e.g. Spanish).','ftl','\n\n<#if entries?has_content>\n <#list entries as entry>\n <#if !entry.isDisabled()>\n <@liferay_aui[\"a\"]\n cssClass=\"language-entry-long-text\"\n href=entry.getURL()\n label=entry.getLongDisplayName()\n lang=entry.getW3cLanguageId()\n />\n \n \n',0,20119,NULL,'2018-07-02 15:51:15.991000'),(29785,20151,20115,20119,NULL,'2018-07-02 15:51:16.005000',29773,0,29783,'1.0','选择框Caja de selecciónセレクトボックスKeuze veldVálasztó dobozCaixa de SeleçãoAuswahllisteתיבת בחירהValintalaatikkoCaixa de seleccióSélectionner boiteSelect Box','显示所选语言的选择框Muestra una caja de selección con los idiomas seleccionados.選択された言語でアイコンメニューを表示するToen keuze veld met de geselecteerde talen.Megjeleníti az ikon menüt a választott nyelveken.Exibe uma caixa de seleção com os idiomas selecionados.Zeigt eine Auswahllist mit den ausgewählten Sprachen anמציג תיבת בחירה עם השפות הנבחרות.Näyttää valintalaatikon valituilla kielillä.Mostra un quadre de selecció amb els idiomes seleccionatsAffiche une boite sélectionnée avec les langues sélectionnées.Displays a select box with the selected languages','ftl','<#if entries?has_content>\n <#assign languageId = localeUtil.toLanguageId(locale) />\n\n \n\n <@liferay_aui[\"form\"]\n action=formAction\n method=\"post\"\n name=\'${namespace + formName}\'\n useNamespace=false\n >\n <@liferay_aui[\"select\"]\n changesContext=true\n id=\'${namespace + formName}\'\n label=\"\"\n name=\'${name}\'\n onChange=\'${namespace + \"changeLanguage();\"}\'\n title=\"language\"\n >\n <#list entries as entry>\n <@liferay_aui[\"option\"]\n cssClass=\"taglib-language-option taglib-language-option-${entry.getW3cLanguageId()}\"\n disabled=entry.isDisabled()\n label=entry.getLongDisplayName()\n lang=entry.getW3cLanguageId()\n selected=entry.isSelected()\n value=entry.getLanguageId()\n />\n \n \n \n\n <@liferay_aui[\"script\"]>\n function ${namespace}changeLanguage() {\n var languageId = AUI.$(document.${namespace + formName}.${name}).val();\n\n submitForm(document.${namespace + formName});\n }\n \n',0,20119,NULL,'2018-07-02 15:51:16.005000'),(29788,20151,20115,20119,NULL,'2018-07-02 15:51:16.018000',29773,0,29786,'1.0','短文本Texto corto短いテキストKorte tekstRövid szövegTexto CurtoKurzer Textטקסט קצרLyhyttekstiText curtTexte courtShort Text','显示每种语言的缩写(例如,ES)。Muestra una abreviación de cada idioma (ej.: ES)それぞれの言語の略称を表示する(例:JP)Toont een afkorting van iedere taal (bijv. SP).Megjeleníti az egyes nyelvek rövidítését (pl.: ES).Exibe uma abreviação de cada idioma (ex.: ES).Zeigt ein Kürzel jeder Sprache (z.B. ES).מציג קיצור של כל שפה (למשל ES).Näyttää lyhenteen jokaiselle kielelle (esim. FI)Mostra una abreviatura de cada idioma (per exemple, CA).Affiche une abréviation de chaque langue (par exemple ES).Displays an abbreviation of each language (e.g. ES).','ftl','\n\n<#if entries?has_content>\n <#list entries as entry>\n <#if !entry.isDisabled()>\n <@liferay_aui[\"a\"]\n cssClass=\"language-entry-short-text\"\n href=entry.getURL()\n label=entry.getShortDisplayName()\n lang=entry.getW3cLanguageId()\n />\n \n \n',0,20119,NULL,'2018-07-02 15:51:16.018000'),(29791,20151,20115,20119,NULL,'2018-07-02 15:51:16.039000',20006,0,29789,'1.0','映射Mapa地図KaartTérképMapaLandkarteמפהKarttaMapaCarteMap','显示在地图上定位的资源Muestra activos geolocalizados en un mapa.地図内にジオローカライズされたアセットを表示するToon geolocale content op een kaart.Megjeleníti a földrajzi tartalmakat egy térképen.Exibe os conteúdos geolocalizados em um mapa.Stellt Assets mit geografischen Informationen in einer Karte dar.מציג נכסים המכילים מיקום גיאו-לוקלי על גבי מפה.Näyttää maantieteelliset sisällöt kartalla.Mostra contingut geolocalitzat en un mapa.Affiche les assets géolocalisés dans un planDisplays geolocalized assets in a map.','ftl','<#assign\n defaultLatitude = -3.6833\n defaultLongitude = 40.40\n\n group = themeDisplay.getScopeGroup()\n\n mapsAPIProvider = group.getLiveParentTypeSettingsProperty(\"mapsAPIProvider\")!\"\"\n\n companyPortletPreferences = prefsPropsUtil.getPreferences(companyId)\n/>\n\n<#if validator.isNull(mapsAPIProvider)>\n <#assign mapsAPIProvider = companyPortletPreferences.getValue(\"mapsAPIProvider\", \"Google\") />\n\n\n<#assign featureCollectionJSONObject = jsonFactoryUtil.createJSONObject() />\n\n<@liferay.silently featureCollectionJSONObject.put(\"type\", \"FeatureCollection\") />\n\n<#assign featureJSONArray = jsonFactoryUtil.createJSONArray() />\n\n<#list entries as entry>\n <#assign\n assetRenderer = entry.getAssetRenderer()\n\n ddmFormValuesReader = assetRenderer.getDDMFormValuesReader()\n\n ddmFormFieldValues = ddmFormValuesReader.getDDMFormFieldValues(\"ddm-geolocation\")\n\n coordinatesJSONObjects = []\n />\n\n <#list ddmFormFieldValues as ddmFormFieldValue>\n <#assign\n value = ddmFormFieldValue.getValue()\n\n coordinatesJSONObject = jsonFactoryUtil.createJSONObject(value.getString(locale))\n\n coordinatesJSONObjects = coordinatesJSONObjects + [coordinatesJSONObject]\n />\n \n\n <#list coordinatesJSONObjects as coordinatesJSONObject>\n <#assign featureJSONObject = jsonFactoryUtil.createJSONObject() />\n\n <@liferay.silently featureJSONObject.put(\"type\", \"Feature\") />\n\n <#assign geometryJSONObject = jsonFactoryUtil.createJSONObject() />\n\n <@liferay.silently geometryJSONObject.put(\"type\", \"Point\") />\n\n <#assign coordinatesJSONArray = [coordinatesJSONObject.getDouble(\"longitude\"), coordinatesJSONObject.getDouble(\"latitude\")] />\n\n <@liferay.silently geometryJSONObject.put(\"coordinates\", coordinatesJSONArray) />\n\n <@liferay.silently featureJSONObject.put(\"geometry\", geometryJSONObject) />\n\n <#assign propertiesJSONObject = jsonFactoryUtil.createJSONObject() />\n\n <@liferay.silently propertiesJSONObject.put(\"title\", assetRenderer.getTitle(locale)) />\n\n <#assign entryAbstract>\n <@getAbstract asset=entry />\n \n\n <@liferay.silently propertiesJSONObject.put(\"abstract\", entryAbstract) />\n\n <#if stringUtil.equals(mapsAPIProvider, \"Google\")>\n <#assign\n images = {\n \"com.liferay.document.library.kernel.model.DLFileEntry\": \"${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/green-dot.png\",\n \"com.liferay.portlet.dynamicdatalists.model.DDLRecord\": \"${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/red-dot.png\",\n \"com.liferay.journal.model.JournalArticle\": \"${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/blue-dot.png\",\n \"default\": \"${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/yellow-dot.png\"\n }\n />\n\n <#if images?keys?seq_contains(entry.getClassName())>\n <@liferay.silently propertiesJSONObject.put(\"icon\", images[entry.getClassName()]) />\n <#else>\n <@liferay.silently propertiesJSONObject.put(\"icon\", images[\"default\"]) />\n \n \n\n <@liferay.silently featureJSONObject.put(\"properties\", propertiesJSONObject) />\n\n <@liferay.silently featureJSONArray.put(featureJSONObject) />\n \n\n\n<@liferay.silently featureCollectionJSONObject.put(\"features\", featureJSONArray) />\n\n\n\n<@liferay_map[\"map-display\"]\n name=\'Map\'\n points=\"${featureCollectionJSONObject}\"\n/>\n\n<@liferay_aui.script use=\"liferay-map-base\">\n var map = Liferay.component(\'<@portlet.namespace />Map\');\n\n map.on(\n \'featureClick\',\n function(event) {\n var feature = event.feature;\n\n map.openDialog(\n {\n content: feature.getProperty(\'abstract\'),\n marker: feature.getMarker(),\n position: feature.getGeometry().get(\'location\')\n }\n );\n }\n );\n\n\n<#macro getAbstract asset>\n
    assetEntryAbstract\">\n <#assign\n showEditURL = paramUtil.getBoolean(renderRequest, \"showEditURL\", true)\n\n assetRenderer = asset.getAssetRenderer()\n />\n\n <#if showEditURL && assetRenderer.hasEditPermission(permissionChecker)>\n <#assign redirectURL = renderResponse.createLiferayPortletURL(themeDisplay.getPlid(), themeDisplay.getPortletDisplay().getId(), \"RENDER_PHASE\", false) />\n\n ${redirectURL.setParameter(\"mvcPath\", \"/add_asset_redirect.jsp\")}\n\n <#assign\n editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState(\"POP_UP\"), redirectURL)\n\n taglibEditURL = \"javascript:Liferay.Util.openWindow({id: \'\" + renderResponse.getNamespace() + \"editAsset\', title: \'\" + htmlUtil.escapeJS(languageUtil.format(locale, \"edit-x\", htmlUtil.escape(assetRenderer.getTitle(locale)), false)) + \"\', uri:\'\" + htmlUtil.escapeJS(editPortletURL.toString()) + \"\'});\"\n />\n\n <@liferay_ui.icon\n image=\"edit\"\n label=true\n message=\"edit\"\n url=taglibEditURL\n />\n \n\n <#if assetRenderer.getThumbnailPath(renderRequest)??>\n
    \n \n
    \n \n\n <#assign assetURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, assetRenderer, asset, false) />\n\n
    \n

    ${assetRenderer.getTitle(locale)}

    \n\n
    \n ${assetRenderer.getSummary(renderRequest, renderResponse)}\n
    \n
    \n\n
    \n ${languageUtil.get(locale, \"read-more\")} »\n
    \n
    \n',0,20119,NULL,'2018-07-02 15:51:16.039000'),(29794,20151,20115,20119,NULL,'2018-07-02 15:51:16.067000',20006,0,29792,'1.0','丰富总结Resumen completo要約(文字数多め)Rijke samenvattingBő összesítőSumário RicoRich-Text-Zusammenfassungתקציר עשירMuotoiltu yhteenvetoResum enriquitSommaire enrichiRich Summary','显示资源的摘要,图标,相关资源以及打印和编辑的功能。可选择地包含资源书签和评级。Muestra abstractos, iconos, activos relacionados e imprime/edita acciones para activos. Opcionalmente incluye marcadores de activos y calificaciones.概要、アイコン、関連するアセット、アセットの印刷/編集を表示する。アセットのブックマークとレーティングも設定できますToon samenvattingen, pictogrammen, gerelateerde content en afdruk en bewerk acties voor content. Voeg optioneel bladwijzers en beoordelingen toe.Megjeleníti a kivonatokat, ikonokat, a kapcsolódó tartalmakat, és a nyomtatási/szerkesztési műveleteket a tarlamakhoz. Opcionálisan tartalmazza a tartalom könyvjelzőket és értékeléseket.Exibe abstracts, ícones, conteúdos relacionados e ações de imprimir/editar para os conteúdos. Opcionalmente, inclui marcadores e classificações de conteúdos.Stellt Kurzfassungen, Icons, verwandte Assets sowie Druck- und Bearbeitungsoptionen für Assets dar. Kann auch Bookmarks und Bewertungen enthalten.מציג תקצירים, סמלים, נכסים קשורים ופעולות הדפסה/עריכה עבור נכסים. אופציונלית מכיל סימניות נכסים ודירוגים.Näyttää lyhenteet, kuvakkeet, liittyvät sisällöt ja sisältöjen tulosta/muokkaa toiminnot. Voit ottaa mukaan myös sisältöjen kirjanmerkit ja arvostelut.Mostra resums, icones, continguts relacionats i accions d\'impressió o edició per continguts. Opcionalment, inclou enllaços i valoracions.Affiche les résumés, icons, les assets relatifs, et les actions imprimer/éditer pour les assets. Facultativement inclut les signets et les notations d\'assets.Displays abstracts, icons, related assets, and print/edit actions for assets. Optionally include asset bookmarks and ratings.','ftl','<#if !entries?has_content>\n <#if !themeDisplay.isSignedIn()>\n ${renderRequest.setAttribute(\"PORTLET_CONFIGURATOR_VISIBILITY\", true)}\n \n\n
    \n <@liferay_ui[\"message\"] key=\"there-are-no-results\" />\n
    \n\n\n<#list entries as entry>\n <#assign\n entry = entry\n\n assetRenderer = entry.getAssetRenderer()\n\n entryTitle = htmlUtil.escape(assetRenderer.getTitle(locale))\n\n viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, assetRenderer, entry, !stringUtil.equals(assetLinkBehavior, \"showFullContent\"))\n />\n\n
    \n
    \n <@getPrintIcon />\n\n <@getFlagsIcon />\n\n <@getEditIcon />\n
    \n\n

    \n \n ${entryTitle}\n \n

    \n\n <@getMetadataField fieldName=\"tags\" />\n\n <@getMetadataField fieldName=\"create-date\" />\n\n <@getMetadataField fieldName=\"view-count\" />\n\n
    \n <@getSocialBookmarks />\n\n
    \n <@getMetadataField fieldName=\"author\" />\n\n ${htmlUtil.escape(assetRenderer.getSummary(renderRequest, renderResponse))}\n\n <@liferay.language key=\"read-more\" /><@liferay.language key=\"about\" />${entryTitle} »\n
    \n\n <@getRatings />\n\n <@getRelatedAssets />\n\n <@getDiscussion />\n
    \n
    \n\n\n<#macro getDiscussion>\n <#if getterUtil.getBoolean(enableComments) && assetRenderer.isCommentable()>\n
    \n\n <#assign discussionURL = renderResponse.createActionURL() />\n\n ${discussionURL.setParameter(\"javax.portlet.action\", \"invokeTaglibDiscussion\")}\n\n <@liferay_ui[\"discussion\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n formAction=discussionURL?string\n formName=\"fm\" + entry.getClassPK()\n ratingsEnabled=getterUtil.getBoolean(enableCommentRatings)\n redirect=currentURL\n userId=assetRenderer.getUserId()\n />\n \n\n\n<#macro getEditIcon>\n <#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\n <#assign redirectURL = renderResponse.createRenderURL() />\n\n ${redirectURL.setParameter(\"mvcPath\", \"/add_asset_redirect.jsp\")}\n ${redirectURL.setWindowState(\"pop_up\")}\n\n <#assign editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState(\"pop_up\"), redirectURL)!\"\" />\n\n <#if validator.isNotNull(editPortletURL)>\n <#assign title = languageUtil.format(locale, \"edit-x\", entryTitle, false) />\n\n <@liferay_ui[\"icon\"]\n cssClass=\"icon-monospaced visible-interaction\"\n icon=\"pencil\"\n markupView=\"lexicon\"\n message=title\n url=\"javascript:Liferay.Util.openWindow({id:\'\" + renderResponse.getNamespace() + \"editAsset\', title: \'\" + title + \"\', uri:\'\" + htmlUtil.escapeURL(editPortletURL.toString()) + \"\'});\"\n />\n \n \n\n\n<#macro getFlagsIcon>\n <#if getterUtil.getBoolean(enableFlags)>\n <@liferay_flags[\"flags\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n contentTitle=entry.getTitle(locale)\n label=false\n reportedUserId=entry.getUserId()\n />\n \n\n\n<#macro getMetadataField\n fieldName\n>\n <#if stringUtil.split(metadataFields)?seq_contains(fieldName)>\n \n <#assign dateFormat = \"dd MMM yyyy - HH:mm:ss\" />\n\n <#if stringUtil.equals(fieldName, \"author\")>\n <@liferay.language key=\"by\" /> ${htmlUtil.escape(portalUtil.getUserName(assetRenderer.getUserId(), assetRenderer.getUserName()))}\n <#elseif stringUtil.equals(fieldName, \"categories\")>\n <@liferay_ui[\"asset-categories-summary\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n portletURL=renderResponse.createRenderURL()\n />\n <#elseif stringUtil.equals(fieldName, \"create-date\")>\n ${dateUtil.getDate(entry.getCreateDate(), dateFormat, locale)}\n <#elseif stringUtil.equals(fieldName, \"expiration-date\")>\n ${dateUtil.getDate(entry.getExpirationDate(), dateFormat, locale)}\n <#elseif stringUtil.equals(fieldName, \"modified-date\")>\n ${dateUtil.getDate(entry.getModifiedDate(), dateFormat, locale)}\n <#elseif stringUtil.equals(fieldName, \"priority\")>\n ${entry.getPriority()}\n <#elseif stringUtil.equals(fieldName, \"publish-date\")>\n ${dateUtil.getDate(entry.getPublishDate(), dateFormat, locale)}\n <#elseif stringUtil.equals(fieldName, \"tags\")>\n <@liferay_ui[\"asset-tags-summary\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n portletURL=renderResponse.createRenderURL()\n />\n <#elseif stringUtil.equals(fieldName, \"view-count\")>\n ${entry.getViewCount()} <@liferay.language key=\"views\" />\n \n \n \n\n\n<#macro getPrintIcon>\n <#if getterUtil.getBoolean(enablePrint)>\n <#assign printURL = renderResponse.createRenderURL() />\n\n ${printURL.setParameter(\"mvcPath\", \"/view_content.jsp\")}\n ${printURL.setParameter(\"assetEntryId\", entry.getEntryId()?string)}\n ${printURL.setParameter(\"viewMode\", \"print\")}\n ${printURL.setParameter(\"type\", entry.getAssetRendererFactory().getType())}\n\n <#if assetRenderer.getUrlTitle()?? && validator.isNotNull(assetRenderer.getUrlTitle())>\n <#if assetRenderer.getGroupId() != themeDisplay.getScopeGroupId()>\n ${printURL.setParameter(\"groupId\", assetRenderer.getGroupId()?string)}\n \n\n ${printURL.setParameter(\"urlTitle\", assetRenderer.getUrlTitle())}\n \n\n ${printURL.setWindowState(\"pop_up\")}\n\n <@liferay_ui[\"icon\"]\n iconCssClass=\"icon-print\"\n message=\"print\"\n url=\"javascript:Liferay.Util.openWindow({id:\'\" + renderResponse.getNamespace() + \"printAsset\', title: \'\" + languageUtil.format(locale, \"print-x-x\", [\"hide-accessible\", entryTitle], false) + \"\', uri: \'\" + htmlUtil.escapeURL(printURL.toString()) + \"\'});\"\n />\n \n\n\n<#macro getRatings>\n <#if getterUtil.getBoolean(enableRatings) && assetRenderer.isRatable()>\n
    \n <@liferay_ui[\"ratings\"]\n className=entry.getClassName()\n classPK=entry.getClassPK()\n />\n
    \n \n\n\n<#macro getRelatedAssets>\n <#if getterUtil.getBoolean(enableRelatedAssets)>\n <@liferay_ui[\"asset-links\"]\n assetEntryId=entry.getEntryId()\n viewInContext=!stringUtil.equals(assetLinkBehavior, \"showFullContent\")\n />\n \n\n\n<#macro getSocialBookmarks>\n <#if getterUtil.getBoolean(enableSocialBookmarks)>\n <@liferay_ui[\"social-bookmarks\"]\n displayStyle=\"${socialBookmarksDisplayStyle}\"\n target=\"_blank\"\n title=entry.getTitle(locale)\n url=viewURL\n />\n \n',0,20119,NULL,'2018-07-02 15:51:16.067000'),(31175,20151,20115,20119,NULL,'2018-07-02 15:51:24.411000',29607,31170,31173,'1.0','基本网页内容Contenido web básico基本WebコンテンツBasiswebcontentAlapvető webtartalomConteúdo Web básicoEinfacher Webcontentתוכן אינטרנטי בסיסיTavallinen web-sisältöContigut web bàsicContenu web de baseBasic Web Content','','ftl','${content.getData()}',0,20119,NULL,'2018-07-02 15:51:24.411000'); /*!40000 ALTER TABLE `DDMTemplateVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLContent` -- DROP TABLE IF EXISTS `DLContent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLContent` ( `contentId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `path_` varchar(255) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `data_` longblob, `size_` bigint(20) DEFAULT NULL, PRIMARY KEY (`contentId`), UNIQUE KEY `IX_FDD1AAA8` (`companyId`,`repositoryId`,`path_`,`version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLContent` -- LOCK TABLES `DLContent` WRITE; /*!40000 ALTER TABLE `DLContent` DISABLE KEYS */; /*!40000 ALTER TABLE `DLContent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntry` -- DROP TABLE IF EXISTS `DLFileEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntry` ( `uuid_` varchar(75) DEFAULT NULL, `fileEntryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(255) DEFAULT NULL, `fileName` varchar(255) DEFAULT NULL, `extension` varchar(75) DEFAULT NULL, `mimeType` varchar(75) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `description` longtext, `extraSettings` longtext, `fileEntryTypeId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `readCount` int(11) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `largeImageId` bigint(20) DEFAULT NULL, `custom1ImageId` bigint(20) DEFAULT NULL, `custom2ImageId` bigint(20) DEFAULT NULL, `manualCheckInRequired` tinyint(4) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`fileEntryId`), UNIQUE KEY `IX_DF37D92E` (`groupId`,`folderId`,`fileName`), UNIQUE KEY `IX_5391712` (`groupId`,`folderId`,`name`), UNIQUE KEY `IX_ED5CA615` (`groupId`,`folderId`,`title`), UNIQUE KEY `IX_BC2E7E6A` (`uuid_`,`groupId`), KEY `IX_5444C427` (`companyId`,`fileEntryTypeId`), KEY `IX_B8526DBE` (`custom1ImageId`), KEY `IX_AC9BDEDD` (`custom2ImageId`), KEY `IX_772ECDE7` (`fileEntryTypeId`), KEY `IX_8F6C75D0` (`folderId`,`name`), KEY `IX_BAF654E5` (`groupId`,`fileEntryTypeId`), KEY `IX_29D0AF28` (`groupId`,`folderId`,`fileEntryTypeId`), KEY `IX_D20C434D` (`groupId`,`userId`,`folderId`), KEY `IX_4DB7A143` (`largeImageId`), KEY `IX_D9492CF6` (`mimeType`), KEY `IX_1B352F4A` (`repositoryId`,`folderId`), KEY `IX_25F5CAB9` (`smallImageId`,`largeImageId`,`custom1ImageId`,`custom2ImageId`), KEY `IX_31079DE8` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntry` -- LOCK TABLES `DLFileEntry` WRITE; /*!40000 ALTER TABLE `DLFileEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntryMetadata` -- DROP TABLE IF EXISTS `DLFileEntryMetadata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntryMetadata` ( `uuid_` varchar(75) DEFAULT NULL, `fileEntryMetadataId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `DDMStorageId` bigint(20) DEFAULT NULL, `DDMStructureId` bigint(20) DEFAULT NULL, `fileEntryId` bigint(20) DEFAULT NULL, `fileVersionId` bigint(20) DEFAULT NULL, PRIMARY KEY (`fileEntryMetadataId`), UNIQUE KEY `IX_7332B44F` (`DDMStructureId`,`fileVersionId`), KEY `IX_4F40FE5E` (`fileEntryId`), KEY `IX_1FE9C04` (`fileVersionId`), KEY `IX_E69431B7` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntryMetadata` -- LOCK TABLES `DLFileEntryMetadata` WRITE; /*!40000 ALTER TABLE `DLFileEntryMetadata` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileEntryMetadata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntryType` -- DROP TABLE IF EXISTS `DLFileEntryType`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntryType` ( `uuid_` varchar(75) DEFAULT NULL, `fileEntryTypeId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `fileEntryTypeKey` varchar(75) DEFAULT NULL, `name` longtext, `description` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`fileEntryTypeId`), UNIQUE KEY `IX_5B6BEF5F` (`groupId`,`fileEntryTypeKey`), UNIQUE KEY `IX_1399D844` (`uuid_`,`groupId`), KEY `IX_5B03E942` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntryType` -- LOCK TABLES `DLFileEntryType` WRITE; /*!40000 ALTER TABLE `DLFileEntryType` DISABLE KEYS */; INSERT INTO `DLFileEntryType` VALUES ('2913a59a-3fd0-d161-3920-a8a2c7193d19',0,0,0,0,NULL,'2018-07-02 15:51:23.736000','2018-07-02 15:51:23.736000','BASIC-DOCUMENT','basic-document',NULL,NULL),('97ea3c2c-f89a-dfc7-13f8-56552e3cf452',29804,20151,20115,20119,NULL,'2018-07-02 15:51:16.327000','2018-07-02 15:51:16.327000','CONTRACT','合同ContratosコントラクトContractenSzerződésContratoVertragחוזיםSopimusContractesContratsContract','合同ContratosコントラクトContractenSzerződésContratoVertragחוזיםSopimusContractesContratsContract',NULL),('8f93b06c-7881-4673-ac29-59ec094a2283',29809,20151,20115,20119,NULL,'2018-07-02 15:51:16.393000','2018-07-02 15:51:16.393000','MARKETING BANNER','营销标语Banner comercialマーケティングバナーMarketingbannerHírdetési csíkBanner de MarketingMarketingbannerבאנר שיווקיMarkkinointimainospalkkiBàner de màrquetingBannière commercialeMarketing Banner','营销标语Banner comercialマーケティングバナーMarketingbannerHírdetési csíkBanner de MarketingMarketingbannerבאנר שיווקיMarkkinointimainospalkkiBàner de màrquetingBannière commercialeMarketing Banner',NULL),('a4a6362a-af04-0bfd-1c92-539f38f29205',29815,20151,20115,20119,NULL,'2018-07-02 15:51:16.425000','2018-07-02 15:51:16.425000','ONLINE TRAINING','在线培训Formación en líneaオンライントレーニングOnline trainingOnline tanfolyamTreinamento OnlineOnline-Trainingהכשרה מקוונתOnline koulutusFromació en líniaFormation en ligneOnline Training','在线培训Formación en líneaオンライントレーニングOnline trainingOnline tanfolyamTreinamento OnlineOnline-Trainingהכשרה מקוונתOnline koulutusFromació en líniaFormation en ligneOnline Training',NULL),('b2305ace-770c-7279-7dec-0a46f33cfd98',29821,20151,20115,20119,NULL,'2018-07-02 15:51:16.457000','2018-07-02 15:51:16.457000','SALES PRESENTATION','销售报告Presentación de ventasセールスプレゼンテーションVerkooppresentatieKereskedői előadásApresentação de VendasVertriebspräsentationמצגת מכירותMyynti esitysPresentació de vendesPrésentation des ventesSales Presentation','销售报告Presentación de ventasセールスプレゼンテーションVerkooppresentatieKereskedői előadásApresentação de VendasVertriebspräsentationמצגת מכירותMyynti esitysPresentació de vendesPrésentation des ventesSales Presentation',NULL); /*!40000 ALTER TABLE `DLFileEntryType` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileEntryTypes_DLFolders` -- DROP TABLE IF EXISTS `DLFileEntryTypes_DLFolders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileEntryTypes_DLFolders` ( `companyId` bigint(20) NOT NULL, `fileEntryTypeId` bigint(20) NOT NULL, `folderId` bigint(20) NOT NULL, PRIMARY KEY (`fileEntryTypeId`,`folderId`), KEY `IX_2E64D9F9` (`companyId`), KEY `IX_5BB6AD6C` (`fileEntryTypeId`), KEY `IX_6E00A2EC` (`folderId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileEntryTypes_DLFolders` -- LOCK TABLES `DLFileEntryTypes_DLFolders` WRITE; /*!40000 ALTER TABLE `DLFileEntryTypes_DLFolders` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileEntryTypes_DLFolders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileRank` -- DROP TABLE IF EXISTS `DLFileRank`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileRank` ( `fileRankId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `fileEntryId` bigint(20) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`fileRankId`), KEY `IX_38F0315` (`companyId`,`userId`,`fileEntryId`), KEY `IX_A65A1F8B` (`fileEntryId`), KEY `IX_4E96195B` (`groupId`,`userId`,`active_`), KEY `IX_EED06670` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileRank` -- LOCK TABLES `DLFileRank` WRITE; /*!40000 ALTER TABLE `DLFileRank` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileRank` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileShortcut` -- DROP TABLE IF EXISTS `DLFileShortcut`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileShortcut` ( `uuid_` varchar(75) DEFAULT NULL, `fileShortcutId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `toFileEntryId` bigint(20) DEFAULT NULL, `treePath` longtext, `active_` tinyint(4) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`fileShortcutId`), UNIQUE KEY `IX_FDB4A946` (`uuid_`,`groupId`), KEY `IX_8571953E` (`companyId`,`status`), KEY `IX_17EE3098` (`groupId`,`folderId`,`active_`,`status`), KEY `IX_4B7247F6` (`toFileEntryId`), KEY `IX_29AE81C4` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileShortcut` -- LOCK TABLES `DLFileShortcut` WRITE; /*!40000 ALTER TABLE `DLFileShortcut` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileShortcut` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFileVersion` -- DROP TABLE IF EXISTS `DLFileVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFileVersion` ( `uuid_` varchar(75) DEFAULT NULL, `fileVersionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `fileEntryId` bigint(20) DEFAULT NULL, `treePath` longtext, `fileName` varchar(255) DEFAULT NULL, `extension` varchar(75) DEFAULT NULL, `mimeType` varchar(75) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `description` longtext, `changeLog` varchar(75) DEFAULT NULL, `extraSettings` longtext, `fileEntryTypeId` bigint(20) DEFAULT NULL, `version` varchar(75) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `checksum` varchar(75) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`fileVersionId`), UNIQUE KEY `IX_E2815081` (`fileEntryId`,`version`), UNIQUE KEY `IX_C99B2650` (`uuid_`,`groupId`), KEY `IX_A0A283F4` (`companyId`,`status`), KEY `IX_D47BB14D` (`fileEntryId`,`status`), KEY `IX_DFD809D3` (`groupId`,`folderId`,`status`), KEY `IX_9BE769ED` (`groupId`,`folderId`,`title`,`version`), KEY `IX_FFB3395C` (`mimeType`), KEY `IX_95E9E44E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFileVersion` -- LOCK TABLES `DLFileVersion` WRITE; /*!40000 ALTER TABLE `DLFileVersion` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFileVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLFolder` -- DROP TABLE IF EXISTS `DLFolder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLFolder` ( `uuid_` varchar(75) DEFAULT NULL, `folderId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `mountPoint` tinyint(4) DEFAULT NULL, `parentFolderId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(255) DEFAULT NULL, `description` longtext, `lastPostDate` datetime(6) DEFAULT NULL, `defaultFileEntryTypeId` bigint(20) DEFAULT NULL, `hidden_` tinyint(4) DEFAULT NULL, `restrictionType` int(11) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`folderId`), UNIQUE KEY `IX_902FD874` (`groupId`,`parentFolderId`,`name`), UNIQUE KEY `IX_3CC1DED2` (`uuid_`,`groupId`), KEY `IX_E79BE432` (`companyId`,`status`), KEY `IX_C88430AB` (`groupId`,`mountPoint`,`parentFolderId`,`hidden_`,`status`), KEY `IX_CE360BF6` (`groupId`,`parentFolderId`,`hidden_`,`status`), KEY `IX_51556082` (`parentFolderId`,`name`), KEY `IX_6F63F140` (`repositoryId`,`mountPoint`), KEY `IX_6747B2BC` (`repositoryId`,`parentFolderId`), KEY `IX_DA448450` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLFolder` -- LOCK TABLES `DLFolder` WRITE; /*!40000 ALTER TABLE `DLFolder` DISABLE KEYS */; /*!40000 ALTER TABLE `DLFolder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DLSyncEvent` -- DROP TABLE IF EXISTS `DLSyncEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `DLSyncEvent` ( `syncEventId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `modifiedTime` bigint(20) DEFAULT NULL, `event` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `typePK` bigint(20) DEFAULT NULL, PRIMARY KEY (`syncEventId`), UNIQUE KEY `IX_57D82B06` (`typePK`), KEY `IX_3D8E1607` (`modifiedTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DLSyncEvent` -- LOCK TABLES `DLSyncEvent` WRITE; /*!40000 ALTER TABLE `DLSyncEvent` DISABLE KEYS */; /*!40000 ALTER TABLE `DLSyncEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `EmailAddress` -- DROP TABLE IF EXISTS `EmailAddress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `EmailAddress` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `emailAddressId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `address` varchar(254) DEFAULT NULL, `typeId` bigint(20) DEFAULT NULL, `primary_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`emailAddressId`), KEY `IX_2A2CB130` (`companyId`,`classNameId`,`classPK`,`primary_`), KEY `IX_7B43CD8` (`userId`), KEY `IX_F74AB912` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `EmailAddress` -- LOCK TABLES `EmailAddress` WRITE; /*!40000 ALTER TABLE `EmailAddress` DISABLE KEYS */; /*!40000 ALTER TABLE `EmailAddress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpandoColumn` -- DROP TABLE IF EXISTS `ExpandoColumn`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExpandoColumn` ( `columnId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `tableId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `defaultData` longtext, `typeSettings` longtext, PRIMARY KEY (`columnId`), UNIQUE KEY `IX_FEFC8DA7` (`tableId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpandoColumn` -- LOCK TABLES `ExpandoColumn` WRITE; /*!40000 ALTER TABLE `ExpandoColumn` DISABLE KEYS */; INSERT INTO `ExpandoColumn` VALUES (20163,20115,20162,'googleAccessToken',15,'','hidden=true\nvisible-with-update-permission=false\n'),(20164,20115,20162,'googleRefreshToken',15,'','hidden=true\nvisible-with-update-permission=false\n'),(31114,20115,31113,'accessSecret',15,'',''),(31115,20115,31113,'accessToken',15,'',''),(31116,20115,31113,'requestSecret',15,'',''),(31117,20115,31113,'requestToken',15,'',''); /*!40000 ALTER TABLE `ExpandoColumn` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpandoRow` -- DROP TABLE IF EXISTS `ExpandoRow`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExpandoRow` ( `rowId_` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `tableId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, PRIMARY KEY (`rowId_`), UNIQUE KEY `IX_81EFBFF5` (`tableId`,`classPK`), KEY `IX_49EB3118` (`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpandoRow` -- LOCK TABLES `ExpandoRow` WRITE; /*!40000 ALTER TABLE `ExpandoRow` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpandoRow` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpandoTable` -- DROP TABLE IF EXISTS `ExpandoTable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExpandoTable` ( `tableId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, PRIMARY KEY (`tableId`), UNIQUE KEY `IX_37562284` (`companyId`,`classNameId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpandoTable` -- LOCK TABLES `ExpandoTable` WRITE; /*!40000 ALTER TABLE `ExpandoTable` DISABLE KEYS */; INSERT INTO `ExpandoTable` VALUES (20162,20115,20087,'CUSTOM_FIELDS'),(31113,20115,20087,'MP'); /*!40000 ALTER TABLE `ExpandoTable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpandoValue` -- DROP TABLE IF EXISTS `ExpandoValue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExpandoValue` ( `valueId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `tableId` bigint(20) DEFAULT NULL, `columnId` bigint(20) DEFAULT NULL, `rowId_` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `data_` longtext, PRIMARY KEY (`valueId`), UNIQUE KEY `IX_9DDD21E5` (`columnId`,`rowId_`), UNIQUE KEY `IX_D27B03E7` (`tableId`,`columnId`,`classPK`), KEY `IX_B29FEF17` (`classNameId`,`classPK`), KEY `IX_9112A7A0` (`rowId_`), KEY `IX_1BD3F4C` (`tableId`,`classPK`), KEY `IX_B71E92D5` (`tableId`,`rowId_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpandoValue` -- LOCK TABLES `ExpandoValue` WRITE; /*!40000 ALTER TABLE `ExpandoValue` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpandoValue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExportImportConfiguration` -- DROP TABLE IF EXISTS `ExportImportConfiguration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ExportImportConfiguration` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `exportImportConfigurationId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `type_` int(11) DEFAULT NULL, `settings_` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`exportImportConfigurationId`), KEY `IX_1827A2E5` (`companyId`), KEY `IX_38FA468D` (`groupId`,`status`), KEY `IX_47CC6234` (`groupId`,`type_`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExportImportConfiguration` -- LOCK TABLES `ExportImportConfiguration` WRITE; /*!40000 ALTER TABLE `ExportImportConfiguration` DISABLE KEYS */; /*!40000 ALTER TABLE `ExportImportConfiguration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Group_` -- DROP TABLE IF EXISTS `Group_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Group_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `groupId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `creatorUserId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `parentGroupId` bigint(20) DEFAULT NULL, `liveGroupId` bigint(20) DEFAULT NULL, `treePath` longtext, `groupKey` varchar(150) DEFAULT NULL, `name` longtext, `description` longtext, `type_` int(11) DEFAULT NULL, `typeSettings` longtext, `manualMembership` tinyint(4) DEFAULT NULL, `membershipRestriction` int(11) DEFAULT NULL, `friendlyURL` varchar(255) DEFAULT NULL, `site` tinyint(4) DEFAULT NULL, `remoteStagingGroupCount` int(11) DEFAULT NULL, `inheritContent` tinyint(4) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`groupId`), UNIQUE KEY `IX_D0D5E397` (`companyId`,`classNameId`,`classPK`), UNIQUE KEY `IX_A729E3A6` (`companyId`,`classNameId`,`liveGroupId`,`groupKey`), UNIQUE KEY `IX_5BDDB872` (`companyId`,`friendlyURL`), UNIQUE KEY `IX_ACD2B296` (`companyId`,`groupKey`), UNIQUE KEY `IX_AACD15F0` (`companyId`,`liveGroupId`,`groupKey`), UNIQUE KEY `IX_754FBB1C` (`uuid_`,`groupId`), KEY `IX_8257E37B` (`classNameId`,`classPK`), KEY `IX_BD3CB13A` (`classNameId`,`groupId`,`companyId`,`parentGroupId`), KEY `IX_DDC91A87` (`companyId`,`active_`), KEY `IX_ABE2D54` (`companyId`,`classNameId`,`parentGroupId`), KEY `IX_D4BFF38B` (`companyId`,`parentGroupId`,`site`,`inheritContent`), KEY `IX_63A2AABD` (`companyId`,`site`), KEY `IX_16218A38` (`liveGroupId`), KEY `IX_7B590A7A` (`type_`,`active_`), KEY `IX_26CC761A` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Group_` -- LOCK TABLES `Group_` WRITE; /*!40000 ALTER TABLE `Group_` DISABLE KEYS */; INSERT INTO `Group_` VALUES (0,'5aca17dc-0d5e-2bd6-3567-50918826b5f8',20132,20115,20119,20045,20132,0,0,'/20132/','Control Panel','Control Panel',NULL,3,'',1,0,'/control_panel',0,0,0,1),(0,'bf0e3ace-23af-d1e1-19b8-53248b39da79',20139,20115,20119,20045,20139,0,0,'/20139/','Forms','Forms',NULL,3,'',1,0,'/forms',0,0,0,1),(0,'e9fa8492-7592-ab77-1ac9-58bd28436067',20142,20115,20119,20045,20142,0,0,'/20142/','Guest','Guest',NULL,1,'',1,0,'/guest',1,0,0,1),(0,'5fcf00cf-5e8d-75fd-b6ca-2ba1f5bcb2f9',20148,20115,20119,20134,20119,0,0,'/20148/','User Personal Site','User Personal Site',NULL,3,'',1,0,'/personal_site',0,0,0,1),(0,'3b9b8df0-ec14-f1c3-5db2-fb0b14b8df55',20151,20115,20119,20041,20115,0,0,'/20151/','20115','Global',NULL,0,'',1,0,'/global',1,0,0,1),(0,'f4597faa-072f-5f25-0a66-1a3d02d131e8',20158,20115,20155,20087,20155,0,0,'/20158/','20155',NULL,NULL,0,'',1,0,'/test',0,0,0,1),(0,'d1f34c3f-17be-e30b-412c-bff58735c44c',31231,20115,20119,20050,31230,0,0,'/31231/','31230','选择显示页面Seleccione una página de visualizaciónコンテンツディスプレイページKies een weergavepaginaTartalom megjelenítő oldaPágina de Exibição de ConteúdoAnzeigeseite auswählenבחר דף תצוגהWeb-sisälllön esityssivuEscolliu una pàgina de presentacióChoisir une page d\'affichageContent Display Page',NULL,0,'',1,0,'/template-31230',0,0,0,1),(0,'826d5dd1-2f44-1550-a4bf-a63fbb152cf9',31294,20115,20119,20054,31293,0,0,'/31294/','31293','社区网站Sitio de la ComunidadコミュニティーサイトCommunity websiteKözösségi webhelySite da ComunidadeCommunity-Siteאתר קהילהYhteisösivustoLloc comunitariSite de communautéCommunity Site',NULL,0,'',1,0,'/template-31293',0,0,0,1),(0,'62bce26e-52e5-9c73-9aa9-5da4fdee235b',31311,20115,20119,20050,31310,0,0,'/31311/','31310','WikiWikiウィキWikiWikiWikiWikiויקיWikiWikiWikiWiki',NULL,0,'',1,0,'/template-31310',0,0,0,1),(0,'c437183c-69e3-4d54-0033-94015382d7ef',31322,20115,20119,20050,31321,0,0,'/31322/','31321','博客BlogブログBlogBlogBlogBlogבלוגBlogitBlocBlogueBlog',NULL,0,'',1,0,'/template-31321',0,0,0,1),(0,'ff1fb6e7-e843-7a29-eff9-a0a3b04e7d2c',31349,20115,20119,20054,31348,0,0,'/31349/','31348','内网Sitio de intranetイントラネットサイトIntranet WebsiteIntranetes webhelySite da IntranetIntranet-Siteאתר אינטראנטIntranet sivustoLloc web tipus IntranetSite intranetIntranet Site',NULL,0,'',1,0,'/template-31348',0,0,0,1); /*!40000 ALTER TABLE `Group_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Groups_Orgs` -- DROP TABLE IF EXISTS `Groups_Orgs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Groups_Orgs` ( `companyId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `organizationId` bigint(20) NOT NULL, PRIMARY KEY (`groupId`,`organizationId`), KEY `IX_8BFD4548` (`companyId`), KEY `IX_75267DCA` (`groupId`), KEY `IX_6BBB7682` (`organizationId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Groups_Orgs` -- LOCK TABLES `Groups_Orgs` WRITE; /*!40000 ALTER TABLE `Groups_Orgs` DISABLE KEYS */; /*!40000 ALTER TABLE `Groups_Orgs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Groups_Roles` -- DROP TABLE IF EXISTS `Groups_Roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Groups_Roles` ( `companyId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, PRIMARY KEY (`groupId`,`roleId`), KEY `IX_557D8550` (`companyId`), KEY `IX_84471FD2` (`groupId`), KEY `IX_3103EF3D` (`roleId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Groups_Roles` -- LOCK TABLES `Groups_Roles` WRITE; /*!40000 ALTER TABLE `Groups_Roles` DISABLE KEYS */; /*!40000 ALTER TABLE `Groups_Roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Groups_UserGroups` -- DROP TABLE IF EXISTS `Groups_UserGroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Groups_UserGroups` ( `companyId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `userGroupId` bigint(20) NOT NULL, PRIMARY KEY (`groupId`,`userGroupId`), KEY `IX_676FC818` (`companyId`), KEY `IX_31FB749A` (`groupId`), KEY `IX_3B69160F` (`userGroupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Groups_UserGroups` -- LOCK TABLES `Groups_UserGroups` WRITE; /*!40000 ALTER TABLE `Groups_UserGroups` DISABLE KEYS */; /*!40000 ALTER TABLE `Groups_UserGroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `IM_MemberRequest` -- DROP TABLE IF EXISTS `IM_MemberRequest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `IM_MemberRequest` ( `memberRequestId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `key_` varchar(75) DEFAULT NULL, `receiverUserId` bigint(20) DEFAULT NULL, `invitedRoleId` bigint(20) DEFAULT NULL, `invitedTeamId` bigint(20) DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`memberRequestId`), KEY `IX_4C831DF9` (`groupId`,`receiverUserId`,`status`), KEY `IX_B4BCD9B4` (`key_`), KEY `IX_B312EB0F` (`receiverUserId`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `IM_MemberRequest` -- LOCK TABLES `IM_MemberRequest` WRITE; /*!40000 ALTER TABLE `IM_MemberRequest` DISABLE KEYS */; /*!40000 ALTER TABLE `IM_MemberRequest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Image` -- DROP TABLE IF EXISTS `Image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Image` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `imageId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `height` int(11) DEFAULT NULL, `width` int(11) DEFAULT NULL, `size_` int(11) DEFAULT NULL, PRIMARY KEY (`imageId`), KEY `IX_6A925A4D` (`size_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Image` -- LOCK TABLES `Image` WRITE; /*!40000 ALTER TABLE `Image` DISABLE KEYS */; INSERT INTO `Image` VALUES (0,31194,20115,'2018-07-02 15:51:52.055000','png',256,256,39937); /*!40000 ALTER TABLE `Image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalArticle` -- DROP TABLE IF EXISTS `JournalArticle`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalArticle` ( `uuid_` varchar(75) DEFAULT NULL, `id_` bigint(20) NOT NULL, `resourcePrimKey` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `folderId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `treePath` longtext, `articleId` varchar(75) DEFAULT NULL, `version` double DEFAULT NULL, `title` longtext, `urlTitle` varchar(150) DEFAULT NULL, `description` longtext, `content` longtext, `DDMStructureKey` varchar(75) DEFAULT NULL, `DDMTemplateKey` varchar(75) DEFAULT NULL, `layoutUuid` varchar(75) DEFAULT NULL, `displayDate` datetime(6) DEFAULT NULL, `expirationDate` datetime(6) DEFAULT NULL, `reviewDate` datetime(6) DEFAULT NULL, `indexable` tinyint(4) DEFAULT NULL, `smallImage` tinyint(4) DEFAULT NULL, `smallImageId` bigint(20) DEFAULT NULL, `smallImageURL` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`id_`), UNIQUE KEY `IX_85C52EEC` (`groupId`,`articleId`,`version`), UNIQUE KEY `IX_3463D95B` (`uuid_`,`groupId`), KEY `IX_17806804` (`DDMStructureKey`), KEY `IX_75CCA4D1` (`DDMTemplateKey`), KEY `IX_C761B675` (`classNameId`,`DDMTemplateKey`), KEY `IX_323DF109` (`companyId`,`status`), KEY `IX_E82F322B` (`companyId`,`version`,`status`), KEY `IX_EA05E9E1` (`displayDate`,`status`), KEY `IX_D8EB0D84` (`groupId`,`DDMStructureKey`), KEY `IX_31B74F51` (`groupId`,`DDMTemplateKey`), KEY `IX_4D5CD982` (`groupId`,`articleId`,`status`), KEY `IX_353BD560` (`groupId`,`classNameId`,`DDMStructureKey`), KEY `IX_6E801BF5` (`groupId`,`classNameId`,`DDMTemplateKey`), KEY `IX_9CE6E0FA` (`groupId`,`classNameId`,`classPK`), KEY `IX_A2534AC2` (`groupId`,`classNameId`,`layoutUuid`), KEY `IX_F35391E8` (`groupId`,`folderId`,`status`), KEY `IX_3C028C1E` (`groupId`,`layoutUuid`), KEY `IX_301D024B` (`groupId`,`status`), KEY `IX_D2D249E8` (`groupId`,`urlTitle`,`status`), KEY `IX_43A0F80F` (`groupId`,`userId`,`classNameId`), KEY `IX_3F1EA19E` (`layoutUuid`), KEY `IX_451D63EC` (`resourcePrimKey`,`indexable`,`status`), KEY `IX_3E2765FC` (`resourcePrimKey`,`status`), KEY `IX_EF9B7028` (`smallImageId`), KEY `IX_71520099` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalArticle` -- LOCK TABLES `JournalArticle` WRITE; /*!40000 ALTER TABLE `JournalArticle` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalArticle` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalArticleImage` -- DROP TABLE IF EXISTS `JournalArticleImage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalArticleImage` ( `articleImageId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `articleId` varchar(75) DEFAULT NULL, `version` double DEFAULT NULL, `elInstanceId` varchar(75) DEFAULT NULL, `elName` varchar(75) DEFAULT NULL, `languageId` varchar(75) DEFAULT NULL, `tempImage` tinyint(4) DEFAULT NULL, PRIMARY KEY (`articleImageId`), UNIQUE KEY `IX_103D6207` (`groupId`,`articleId`,`version`,`elInstanceId`,`elName`,`languageId`), KEY `IX_D4121315` (`tempImage`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalArticleImage` -- LOCK TABLES `JournalArticleImage` WRITE; /*!40000 ALTER TABLE `JournalArticleImage` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalArticleImage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalArticleResource` -- DROP TABLE IF EXISTS `JournalArticleResource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalArticleResource` ( `uuid_` varchar(75) DEFAULT NULL, `resourcePrimKey` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `articleId` varchar(75) DEFAULT NULL, PRIMARY KEY (`resourcePrimKey`), UNIQUE KEY `IX_88DF994A` (`groupId`,`articleId`), UNIQUE KEY `IX_84AB0309` (`uuid_`,`groupId`), KEY `IX_CC7576C7` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalArticleResource` -- LOCK TABLES `JournalArticleResource` WRITE; /*!40000 ALTER TABLE `JournalArticleResource` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalArticleResource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalContentSearch` -- DROP TABLE IF EXISTS `JournalContentSearch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalContentSearch` ( `contentSearchId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `layoutId` bigint(20) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `articleId` varchar(75) DEFAULT NULL, PRIMARY KEY (`contentSearchId`), UNIQUE KEY `IX_C3AA93B8` (`groupId`,`privateLayout`,`layoutId`,`portletId`,`articleId`), KEY `IX_9207CB31` (`articleId`), KEY `IX_6838E427` (`groupId`,`articleId`), KEY `IX_7CC7D73E` (`groupId`,`privateLayout`,`articleId`), KEY `IX_8DAF8A35` (`portletId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalContentSearch` -- LOCK TABLES `JournalContentSearch` WRITE; /*!40000 ALTER TABLE `JournalContentSearch` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalContentSearch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalFeed` -- DROP TABLE IF EXISTS `JournalFeed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalFeed` ( `uuid_` varchar(75) DEFAULT NULL, `id_` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `feedId` varchar(75) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `DDMStructureKey` varchar(75) DEFAULT NULL, `DDMTemplateKey` varchar(75) DEFAULT NULL, `DDMRendererTemplateKey` varchar(75) DEFAULT NULL, `delta` int(11) DEFAULT NULL, `orderByCol` varchar(75) DEFAULT NULL, `orderByType` varchar(75) DEFAULT NULL, `targetLayoutFriendlyUrl` varchar(255) DEFAULT NULL, `targetPortletId` varchar(200) DEFAULT NULL, `contentField` varchar(75) DEFAULT NULL, `feedFormat` varchar(75) DEFAULT NULL, `feedVersion` double DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`id_`), UNIQUE KEY `IX_65576CBC` (`groupId`,`feedId`), UNIQUE KEY `IX_39031F51` (`uuid_`,`groupId`), KEY `IX_CB37A10F` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalFeed` -- LOCK TABLES `JournalFeed` WRITE; /*!40000 ALTER TABLE `JournalFeed` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalFeed` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JournalFolder` -- DROP TABLE IF EXISTS `JournalFolder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `JournalFolder` ( `uuid_` varchar(75) DEFAULT NULL, `folderId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `parentFolderId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(100) DEFAULT NULL, `description` longtext, `restrictionType` int(11) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`folderId`), UNIQUE KEY `IX_65026705` (`groupId`,`parentFolderId`,`name`), UNIQUE KEY `IX_E002061` (`uuid_`,`groupId`), KEY `IX_C36B0443` (`companyId`,`status`), KEY `IX_E988689E` (`groupId`,`name`), KEY `IX_EFD9CAC` (`groupId`,`parentFolderId`,`status`), KEY `IX_54F89E1F` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JournalFolder` -- LOCK TABLES `JournalFolder` WRITE; /*!40000 ALTER TABLE `JournalFolder` DISABLE KEYS */; /*!40000 ALTER TABLE `JournalFolder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoAction` -- DROP TABLE IF EXISTS `KaleoAction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoAction` ( `kaleoActionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeName` varchar(200) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `executionType` varchar(20) DEFAULT NULL, `script` longtext, `scriptLanguage` varchar(75) DEFAULT NULL, `scriptRequiredContexts` longtext, `priority` int(11) DEFAULT NULL, PRIMARY KEY (`kaleoActionId`), KEY `IX_50E9112C` (`companyId`), KEY `IX_4B2545E8` (`kaleoClassName`,`kaleoClassPK`,`executionType`), KEY `IX_F95A622` (`kaleoDefinitionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoAction` -- LOCK TABLES `KaleoAction` WRITE; /*!40000 ALTER TABLE `KaleoAction` DISABLE KEYS */; INSERT INTO `KaleoAction` VALUES (29835,0,20115,20119,NULL,'2018-07-02 15:51:17.686000','2018-07-02 15:51:17.686000','com.liferay.portal.workflow.kaleo.model.KaleoNode',29834,29833,'approved','approve',NULL,'onEntry','\n \n import com.liferay.portal.kernel.workflow.WorkflowStatusManagerUtil;\n import com.liferay.portal.kernel.workflow.WorkflowConstants;\n\n WorkflowStatusManagerUtil.updateStatus(WorkflowConstants.getLabelStatus(\"approved\"), workflowContext);\n \n ','groovy',NULL,0),(29854,0,20115,20119,NULL,'2018-07-02 15:51:17.824000','2018-07-02 15:51:17.824000','com.liferay.portal.workflow.kaleo.model.KaleoNode',29853,29833,'update','reject',NULL,'onAssignment','\n \n import com.liferay.portal.kernel.workflow.WorkflowStatusManagerUtil;\n import com.liferay.portal.kernel.workflow.WorkflowConstants;\n\n WorkflowStatusManagerUtil.updateStatus(WorkflowConstants.getLabelStatus(\"denied\"), workflowContext);\n WorkflowStatusManagerUtil.updateStatus(WorkflowConstants.getLabelStatus(\"pending\"), workflowContext);\n \n ','groovy',NULL,0); /*!40000 ALTER TABLE `KaleoAction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoCondition` -- DROP TABLE IF EXISTS `KaleoCondition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoCondition` ( `kaleoConditionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeId` bigint(20) DEFAULT NULL, `script` longtext, `scriptLanguage` varchar(75) DEFAULT NULL, `scriptRequiredContexts` longtext, PRIMARY KEY (`kaleoConditionId`), KEY `IX_FEE46067` (`companyId`), KEY `IX_DC978A5D` (`kaleoDefinitionId`), KEY `IX_86CBD4C` (`kaleoNodeId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoCondition` -- LOCK TABLES `KaleoCondition` WRITE; /*!40000 ALTER TABLE `KaleoCondition` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoCondition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoDefinition` -- DROP TABLE IF EXISTS `KaleoDefinition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoDefinition` ( `kaleoDefinitionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `title` longtext, `description` longtext, `content` longtext, `version` int(11) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, `startKaleoNodeId` bigint(20) DEFAULT NULL, PRIMARY KEY (`kaleoDefinitionId`), KEY `IX_408542BA` (`companyId`,`active_`), KEY `IX_4C23F11B` (`companyId`,`name`,`active_`), KEY `IX_EC14F81A` (`companyId`,`name`,`version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoDefinition` -- LOCK TABLES `KaleoDefinition` WRITE; /*!40000 ALTER TABLE `KaleoDefinition` DISABLE KEYS */; INSERT INTO `KaleoDefinition` VALUES (29833,0,20115,20119,NULL,'2018-07-02 15:51:17.658000','2018-07-02 15:51:17.855000','Single Approver','Single Approver','A single approver can approve a workflow content.','\n\n\n Single Approver\n A single approver can approve a workflow content.\n 1\n \n created\n \n true\n \n \n review\n review\n \n \n \n \n update\n \n \n \n reject\n \n groovy\n onAssignment\n \n \n Creator Modification Notification\n \n freemarker\n email\n user-notification\n onAssignment\n \n \n \n \n \n \n \n resubmit\n review\n \n \n \n \n review\n \n \n \n Review Notification\n \n freemarker\n email\n user-notification\n onAssignment\n \n \n Review Completion Notification\n \n freemarker\n email\n \n \n \n onExit\n \n \n \n \n \n organization\n Organization Administrator\n \n \n organization\n Organization Content Reviewer\n \n \n organization\n Organization Owner\n \n \n regular\n Administrator\n \n \n regular\n Portal Content Reviewer\n \n \n site\n Site Administrator\n \n \n site\n Site Content Reviewer\n \n \n site\n Site Owner\n \n \n \n \n \n approve\n approved\n \n \n reject\n update\n false\n \n \n \n \n approved\n \n \n \n approve\n \n groovy\n onEntry\n \n \n \n',1,1,29836); /*!40000 ALTER TABLE `KaleoDefinition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoDraftDefinition` -- DROP TABLE IF EXISTS `KaleoDraftDefinition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoDraftDefinition` ( `kaleoDraftDefinitionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `title` longtext, `content` longtext, `version` int(11) DEFAULT NULL, `draftVersion` int(11) DEFAULT NULL, PRIMARY KEY (`kaleoDraftDefinitionId`), UNIQUE KEY `IX_A500C06` (`companyId`,`name`,`version`,`draftVersion`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoDraftDefinition` -- LOCK TABLES `KaleoDraftDefinition` WRITE; /*!40000 ALTER TABLE `KaleoDraftDefinition` DISABLE KEYS */; INSERT INTO `KaleoDraftDefinition` VALUES (29862,0,20115,20119,NULL,'2018-07-02 15:51:17.894000','2018-07-02 15:51:17.894000','Single Approver','Single Approver','\n\n\n Single Approver\n A single approver can approve a workflow content.\n 1\n \n created\n \n true\n \n \n review\n review\n \n \n \n \n update\n \n \n \n reject\n \n groovy\n onAssignment\n \n \n Creator Modification Notification\n \n freemarker\n email\n user-notification\n onAssignment\n \n \n \n \n \n \n \n resubmit\n review\n \n \n \n \n review\n \n \n \n Review Notification\n \n freemarker\n email\n user-notification\n onAssignment\n \n \n Review Completion Notification\n \n freemarker\n email\n \n \n \n onExit\n \n \n \n \n \n organization\n Organization Administrator\n \n \n organization\n Organization Content Reviewer\n \n \n organization\n Organization Owner\n \n \n regular\n Administrator\n \n \n regular\n Portal Content Reviewer\n \n \n site\n Site Administrator\n \n \n site\n Site Content Reviewer\n \n \n site\n Site Owner\n \n \n \n \n \n approve\n approved\n \n \n reject\n update\n false\n \n \n \n \n approved\n \n \n \n approve\n \n groovy\n onEntry\n \n \n \n',1,1); /*!40000 ALTER TABLE `KaleoDraftDefinition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoInstance` -- DROP TABLE IF EXISTS `KaleoInstance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoInstance` ( `kaleoInstanceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoDefinitionName` varchar(200) DEFAULT NULL, `kaleoDefinitionVersion` int(11) DEFAULT NULL, `rootKaleoInstanceTokenId` bigint(20) DEFAULT NULL, `className` varchar(200) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime(6) DEFAULT NULL, `workflowContext` longtext, PRIMARY KEY (`kaleoInstanceId`), KEY `IX_58D85ECB` (`className`,`classPK`), KEY `IX_BF5839F8` (`companyId`,`kaleoDefinitionName`,`kaleoDefinitionVersion`,`completionDate`), KEY `IX_C6D7A867` (`companyId`,`userId`), KEY `IX_ACF16238` (`kaleoDefinitionId`,`completed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoInstance` -- LOCK TABLES `KaleoInstance` WRITE; /*!40000 ALTER TABLE `KaleoInstance` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoInstance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoInstanceToken` -- DROP TABLE IF EXISTS `KaleoInstanceToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoInstanceToken` ( `kaleoInstanceTokenId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `parentKaleoInstanceTokenId` bigint(20) DEFAULT NULL, `currentKaleoNodeId` bigint(20) DEFAULT NULL, `currentKaleoNodeName` varchar(200) DEFAULT NULL, `className` varchar(200) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`kaleoInstanceTokenId`), KEY `IX_360D34D9` (`companyId`,`parentKaleoInstanceTokenId`,`completionDate`), KEY `IX_7BDB04B4` (`kaleoDefinitionId`), KEY `IX_F42AAFF6` (`kaleoInstanceId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoInstanceToken` -- LOCK TABLES `KaleoInstanceToken` WRITE; /*!40000 ALTER TABLE `KaleoInstanceToken` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoInstanceToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoLog` -- DROP TABLE IF EXISTS `KaleoLog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoLog` ( `kaleoLogId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `kaleoInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoNodeName` varchar(200) DEFAULT NULL, `terminalKaleoNode` tinyint(4) DEFAULT NULL, `kaleoActionId` bigint(20) DEFAULT NULL, `kaleoActionName` varchar(200) DEFAULT NULL, `kaleoActionDescription` longtext, `previousKaleoNodeId` bigint(20) DEFAULT NULL, `previousKaleoNodeName` varchar(200) DEFAULT NULL, `previousAssigneeClassName` varchar(200) DEFAULT NULL, `previousAssigneeClassPK` bigint(20) DEFAULT NULL, `currentAssigneeClassName` varchar(200) DEFAULT NULL, `currentAssigneeClassPK` bigint(20) DEFAULT NULL, `type_` varchar(50) DEFAULT NULL, `comment_` longtext, `startDate` datetime(6) DEFAULT NULL, `endDate` datetime(6) DEFAULT NULL, `duration` bigint(20) DEFAULT NULL, `workflowContext` longtext, PRIMARY KEY (`kaleoLogId`), KEY `IX_73B5F4DE` (`companyId`), KEY `IX_E66A153A` (`kaleoClassName`,`kaleoClassPK`,`kaleoInstanceTokenId`,`type_`), KEY `IX_6C64B7D4` (`kaleoDefinitionId`), KEY `IX_5BC6AB16` (`kaleoInstanceId`), KEY `IX_470B9FF8` (`kaleoInstanceTokenId`,`type_`), KEY `IX_B0CDCA38` (`kaleoTaskInstanceTokenId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoLog` -- LOCK TABLES `KaleoLog` WRITE; /*!40000 ALTER TABLE `KaleoLog` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoLog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoNode` -- DROP TABLE IF EXISTS `KaleoNode`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoNode` ( `kaleoNodeId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `metadata` longtext, `description` longtext, `type_` varchar(20) DEFAULT NULL, `initial_` tinyint(4) DEFAULT NULL, `terminal` tinyint(4) DEFAULT NULL, PRIMARY KEY (`kaleoNodeId`), KEY `IX_F28C443E` (`companyId`,`kaleoDefinitionId`), KEY `IX_32E94DD6` (`kaleoDefinitionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoNode` -- LOCK TABLES `KaleoNode` WRITE; /*!40000 ALTER TABLE `KaleoNode` DISABLE KEYS */; INSERT INTO `KaleoNode` VALUES (29834,0,20115,20119,NULL,'2018-07-02 15:51:17.671000','2018-07-02 15:51:17.671000',29833,'approved','{\"xy\":[380,51]}',NULL,'STATE',0,1),(29836,0,20115,20119,NULL,'2018-07-02 15:51:17.716000','2018-07-02 15:51:17.716000',29833,'created','{\"xy\":[36,51]}',NULL,'STATE',1,0),(29837,0,20115,20119,NULL,'2018-07-02 15:51:17.724000','2018-07-02 15:51:17.724000',29833,'review','{\"xy\":[168,36]}',NULL,'TASK',0,0),(29853,0,20115,20119,NULL,'2018-07-02 15:51:17.824000','2018-07-02 15:51:17.824000',29833,'update','{\"transitions\":{\"resubmit\":{\"bendpoints\":[[303,140]]}},\"xy\":[328,199]}',NULL,'TASK',0,0); /*!40000 ALTER TABLE `KaleoNode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoNotification` -- DROP TABLE IF EXISTS `KaleoNotification`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoNotification` ( `kaleoNotificationId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeName` varchar(200) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `executionType` varchar(20) DEFAULT NULL, `template` longtext, `templateLanguage` varchar(75) DEFAULT NULL, `notificationTypes` varchar(25) DEFAULT NULL, PRIMARY KEY (`kaleoNotificationId`), KEY `IX_38829497` (`companyId`), KEY `IX_F3362E93` (`kaleoClassName`,`kaleoClassPK`,`executionType`), KEY `IX_4B968E8D` (`kaleoDefinitionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoNotification` -- LOCK TABLES `KaleoNotification` WRITE; /*!40000 ALTER TABLE `KaleoNotification` DISABLE KEYS */; INSERT INTO `KaleoNotification` VALUES (29838,0,20115,20119,NULL,'2018-07-02 15:51:17.727000','2018-07-02 15:51:17.727000','com.liferay.portal.workflow.kaleo.model.KaleoNode',29837,29833,'review','Review Notification',NULL,'onAssignment','${userName} sent you a ${entryType} for review in the workflow.','freemarker','email,user-notification'),(29839,0,20115,20119,NULL,'2018-07-02 15:51:17.736000','2018-07-02 15:51:17.736000','com.liferay.portal.workflow.kaleo.model.KaleoNode',29837,29833,'review','Review Completion Notification',NULL,'onExit','Your submission was reviewed<#if taskComments?has_content> and the reviewer applied the following ${taskComments}.','freemarker','email'),(29855,0,20115,20119,NULL,'2018-07-02 15:51:17.825000','2018-07-02 15:51:17.825000','com.liferay.portal.workflow.kaleo.model.KaleoNode',29853,29833,'update','Creator Modification Notification',NULL,'onAssignment','Your submission was rejected by ${userName}, please modify and resubmit.','freemarker','email,user-notification'); /*!40000 ALTER TABLE `KaleoNotification` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoNotificationRecipient` -- DROP TABLE IF EXISTS `KaleoNotificationRecipient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoNotificationRecipient` ( `kaleoNotificationRecipientId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNotificationId` bigint(20) DEFAULT NULL, `recipientClassName` varchar(200) DEFAULT NULL, `recipientClassPK` bigint(20) DEFAULT NULL, `recipientRoleType` int(11) DEFAULT NULL, `recipientScript` longtext, `recipientScriptLanguage` varchar(75) DEFAULT NULL, `recipientScriptContexts` longtext, `address` varchar(255) DEFAULT NULL, `notificationReceptionType` varchar(3) DEFAULT NULL, PRIMARY KEY (`kaleoNotificationRecipientId`), KEY `IX_2C8C4AF4` (`companyId`), KEY `IX_AA6697EA` (`kaleoDefinitionId`), KEY `IX_7F4FED02` (`kaleoNotificationId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoNotificationRecipient` -- LOCK TABLES `KaleoNotificationRecipient` WRITE; /*!40000 ALTER TABLE `KaleoNotificationRecipient` DISABLE KEYS */; INSERT INTO `KaleoNotificationRecipient` VALUES (29840,0,20115,20119,NULL,'2018-07-02 15:51:17.738000','2018-07-02 15:51:17.738000',29833,29839,'com.liferay.portal.kernel.model.User',0,0,'',NULL,NULL,NULL,'to'); /*!40000 ALTER TABLE `KaleoNotificationRecipient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoProcess` -- DROP TABLE IF EXISTS `KaleoProcess`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoProcess` ( `uuid_` varchar(75) DEFAULT NULL, `kaleoProcessId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `DDLRecordSetId` bigint(20) DEFAULT NULL, `DDMTemplateId` bigint(20) DEFAULT NULL, `workflowDefinitionName` varchar(75) DEFAULT NULL, `workflowDefinitionVersion` int(11) DEFAULT NULL, PRIMARY KEY (`kaleoProcessId`), UNIQUE KEY `IX_C6B8ACEB` (`uuid_`,`groupId`), KEY `IX_65CA6CC9` (`DDLRecordSetId`), KEY `IX_A29A06D5` (`groupId`), KEY `IX_C1C03029` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoProcess` -- LOCK TABLES `KaleoProcess` WRITE; /*!40000 ALTER TABLE `KaleoProcess` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoProcess` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoProcessLink` -- DROP TABLE IF EXISTS `KaleoProcessLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoProcessLink` ( `kaleoProcessLinkId` bigint(20) NOT NULL, `kaleoProcessId` bigint(20) DEFAULT NULL, `workflowTaskName` varchar(75) DEFAULT NULL, `DDMTemplateId` bigint(20) DEFAULT NULL, PRIMARY KEY (`kaleoProcessLinkId`), UNIQUE KEY `IX_10E0E9D0` (`kaleoProcessId`,`workflowTaskName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoProcessLink` -- LOCK TABLES `KaleoProcessLink` WRITE; /*!40000 ALTER TABLE `KaleoProcessLink` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoProcessLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTask` -- DROP TABLE IF EXISTS `KaleoTask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTask` ( `kaleoTaskId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeId` bigint(20) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, PRIMARY KEY (`kaleoTaskId`), KEY `IX_E1F8B23D` (`companyId`), KEY `IX_3FFA633` (`kaleoDefinitionId`), KEY `IX_77B3F1A2` (`kaleoNodeId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTask` -- LOCK TABLES `KaleoTask` WRITE; /*!40000 ALTER TABLE `KaleoTask` DISABLE KEYS */; INSERT INTO `KaleoTask` VALUES (29841,0,20115,20119,NULL,'2018-07-02 15:51:17.762000','2018-07-02 15:51:17.762000',29833,29837,'review',NULL),(29856,0,20115,20119,NULL,'2018-07-02 15:51:17.828000','2018-07-02 15:51:17.828000',29833,29853,'update',NULL); /*!40000 ALTER TABLE `KaleoTask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTaskAssignment` -- DROP TABLE IF EXISTS `KaleoTaskAssignment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTaskAssignment` ( `kaleoTaskAssignmentId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeId` bigint(20) DEFAULT NULL, `assigneeClassName` varchar(200) DEFAULT NULL, `assigneeClassPK` bigint(20) DEFAULT NULL, `assigneeActionId` varchar(75) DEFAULT NULL, `assigneeScript` longtext, `assigneeScriptLanguage` varchar(75) DEFAULT NULL, `assigneeScriptRequiredContexts` longtext, PRIMARY KEY (`kaleoTaskAssignmentId`), KEY `IX_611732B0` (`companyId`), KEY `IX_1087068E` (`kaleoClassName`,`kaleoClassPK`,`assigneeClassName`), KEY `IX_575C03A6` (`kaleoDefinitionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTaskAssignment` -- LOCK TABLES `KaleoTaskAssignment` WRITE; /*!40000 ALTER TABLE `KaleoTaskAssignment` DISABLE KEYS */; INSERT INTO `KaleoTaskAssignment` VALUES (29842,0,20115,20119,NULL,'2018-07-02 15:51:17.774000','2018-07-02 15:51:17.774000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29841,29833,0,'com.liferay.portal.kernel.model.Role',29843,NULL,'',NULL,NULL),(29844,0,20115,20119,NULL,'2018-07-02 15:51:17.794000','2018-07-02 15:51:17.794000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29841,29833,0,'com.liferay.portal.kernel.model.Role',20121,NULL,'',NULL,NULL),(29845,0,20115,20119,NULL,'2018-07-02 15:51:17.794000','2018-07-02 15:51:17.794000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29841,29833,0,'com.liferay.portal.kernel.model.Role',20126,NULL,'',NULL,NULL),(29846,0,20115,20119,NULL,'2018-07-02 15:51:17.795000','2018-07-02 15:51:17.795000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29841,29833,0,'com.liferay.portal.kernel.model.Role',20127,NULL,'',NULL,NULL),(29847,0,20115,20119,NULL,'2018-07-02 15:51:17.795000','2018-07-02 15:51:17.795000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29841,29833,0,'com.liferay.portal.kernel.model.Role',20129,NULL,'',NULL,NULL),(29848,0,20115,20119,NULL,'2018-07-02 15:51:17.795000','2018-07-02 15:51:17.795000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29841,29833,0,'com.liferay.portal.kernel.model.Role',29849,NULL,'',NULL,NULL),(29850,0,20115,20119,NULL,'2018-07-02 15:51:17.801000','2018-07-02 15:51:17.801000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29841,29833,0,'com.liferay.portal.kernel.model.Role',20131,NULL,'',NULL,NULL),(29851,0,20115,20119,NULL,'2018-07-02 15:51:17.801000','2018-07-02 15:51:17.801000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29841,29833,0,'com.liferay.portal.kernel.model.Role',29852,NULL,'',NULL,NULL),(29857,0,20115,20119,NULL,'2018-07-02 15:51:17.829000','2018-07-02 15:51:17.829000','com.liferay.portal.workflow.kaleo.model.KaleoTask',29856,29833,0,'com.liferay.portal.kernel.model.User',0,NULL,'',NULL,NULL); /*!40000 ALTER TABLE `KaleoTaskAssignment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTaskAssignmentInstance` -- DROP TABLE IF EXISTS `KaleoTaskAssignmentInstance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTaskAssignmentInstance` ( `kaleoTaskAssignmentInstanceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `kaleoInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskId` bigint(20) DEFAULT NULL, `kaleoTaskName` varchar(200) DEFAULT NULL, `assigneeClassName` varchar(200) DEFAULT NULL, `assigneeClassPK` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`kaleoTaskAssignmentInstanceId`), KEY `IX_3BD436FD` (`assigneeClassName`,`assigneeClassPK`), KEY `IX_6E3CDA1B` (`companyId`), KEY `IX_38A47B17` (`groupId`,`assigneeClassPK`), KEY `IX_C851011` (`kaleoDefinitionId`), KEY `IX_67A9EE93` (`kaleoInstanceId`), KEY `IX_D4C2235B` (`kaleoTaskInstanceTokenId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTaskAssignmentInstance` -- LOCK TABLES `KaleoTaskAssignmentInstance` WRITE; /*!40000 ALTER TABLE `KaleoTaskAssignmentInstance` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoTaskAssignmentInstance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTaskInstanceToken` -- DROP TABLE IF EXISTS `KaleoTaskInstanceToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTaskInstanceToken` ( `kaleoTaskInstanceTokenId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `kaleoInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskId` bigint(20) DEFAULT NULL, `kaleoTaskName` varchar(200) DEFAULT NULL, `className` varchar(200) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `completionUserId` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime(6) DEFAULT NULL, `dueDate` datetime(6) DEFAULT NULL, `workflowContext` longtext, PRIMARY KEY (`kaleoTaskInstanceTokenId`), KEY `IX_A3271995` (`className`,`classPK`), KEY `IX_997FE723` (`companyId`), KEY `IX_608E9519` (`kaleoDefinitionId`), KEY `IX_B857A115` (`kaleoInstanceId`,`kaleoTaskId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTaskInstanceToken` -- LOCK TABLES `KaleoTaskInstanceToken` WRITE; /*!40000 ALTER TABLE `KaleoTaskInstanceToken` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoTaskInstanceToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTimer` -- DROP TABLE IF EXISTS `KaleoTimer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTimer` ( `kaleoTimerId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `blocking` tinyint(4) DEFAULT NULL, `description` longtext, `duration` double DEFAULT NULL, `scale` varchar(75) DEFAULT NULL, `recurrenceDuration` double DEFAULT NULL, `recurrenceScale` varchar(75) DEFAULT NULL, PRIMARY KEY (`kaleoTimerId`), KEY `IX_1A479F32` (`kaleoClassName`,`kaleoClassPK`,`blocking`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTimer` -- LOCK TABLES `KaleoTimer` WRITE; /*!40000 ALTER TABLE `KaleoTimer` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoTimer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTimerInstanceToken` -- DROP TABLE IF EXISTS `KaleoTimerInstanceToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTimerInstanceToken` ( `kaleoTimerInstanceTokenId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoClassName` varchar(200) DEFAULT NULL, `kaleoClassPK` bigint(20) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoInstanceId` bigint(20) DEFAULT NULL, `kaleoInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTaskInstanceTokenId` bigint(20) DEFAULT NULL, `kaleoTimerId` bigint(20) DEFAULT NULL, `kaleoTimerName` varchar(200) DEFAULT NULL, `blocking` tinyint(4) DEFAULT NULL, `completionUserId` bigint(20) DEFAULT NULL, `completed` tinyint(4) DEFAULT NULL, `completionDate` datetime(6) DEFAULT NULL, `workflowContext` longtext, PRIMARY KEY (`kaleoTimerInstanceTokenId`), KEY `IX_DB96C55B` (`kaleoInstanceId`), KEY `IX_9932524C` (`kaleoInstanceTokenId`,`completed`,`blocking`), KEY `IX_13A5BA2C` (`kaleoInstanceTokenId`,`kaleoTimerId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTimerInstanceToken` -- LOCK TABLES `KaleoTimerInstanceToken` WRITE; /*!40000 ALTER TABLE `KaleoTimerInstanceToken` DISABLE KEYS */; /*!40000 ALTER TABLE `KaleoTimerInstanceToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `KaleoTransition` -- DROP TABLE IF EXISTS `KaleoTransition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `KaleoTransition` ( `kaleoTransitionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(200) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `kaleoDefinitionId` bigint(20) DEFAULT NULL, `kaleoNodeId` bigint(20) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `description` longtext, `sourceKaleoNodeId` bigint(20) DEFAULT NULL, `sourceKaleoNodeName` varchar(200) DEFAULT NULL, `targetKaleoNodeId` bigint(20) DEFAULT NULL, `targetKaleoNodeName` varchar(200) DEFAULT NULL, `defaultTransition` tinyint(4) DEFAULT NULL, PRIMARY KEY (`kaleoTransitionId`), KEY `IX_41D6C6D` (`companyId`), KEY `IX_479F3063` (`kaleoDefinitionId`), KEY `IX_A38E2194` (`kaleoNodeId`,`defaultTransition`), KEY `IX_85268A11` (`kaleoNodeId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `KaleoTransition` -- LOCK TABLES `KaleoTransition` WRITE; /*!40000 ALTER TABLE `KaleoTransition` DISABLE KEYS */; INSERT INTO `KaleoTransition` VALUES (29858,0,20115,20119,NULL,'2018-07-02 15:51:17.834000','2018-07-02 15:51:17.834000',29833,29836,'review',NULL,29836,'created',29837,'review',1),(29859,0,20115,20119,NULL,'2018-07-02 15:51:17.847000','2018-07-02 15:51:17.847000',29833,29837,'approve',NULL,29837,'review',29834,'approved',1),(29860,0,20115,20119,NULL,'2018-07-02 15:51:17.848000','2018-07-02 15:51:17.848000',29833,29837,'reject',NULL,29837,'review',29853,'update',0),(29861,0,20115,20119,NULL,'2018-07-02 15:51:17.850000','2018-07-02 15:51:17.850000',29833,29853,'resubmit',NULL,29853,'update',29837,'review',1); /*!40000 ALTER TABLE `KaleoTransition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Layout` -- DROP TABLE IF EXISTS `Layout`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Layout` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `plid` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `layoutId` bigint(20) DEFAULT NULL, `parentLayoutId` bigint(20) DEFAULT NULL, `name` longtext, `title` longtext, `description` longtext, `keywords` longtext, `robots` longtext, `type_` varchar(75) DEFAULT NULL, `typeSettings` longtext, `hidden_` tinyint(4) DEFAULT NULL, `friendlyURL` varchar(255) DEFAULT NULL, `iconImageId` bigint(20) DEFAULT NULL, `themeId` varchar(75) DEFAULT NULL, `colorSchemeId` varchar(75) DEFAULT NULL, `css` longtext, `priority` int(11) DEFAULT NULL, `layoutPrototypeUuid` varchar(75) DEFAULT NULL, `layoutPrototypeLinkEnabled` tinyint(4) DEFAULT NULL, `sourcePrototypeLayoutUuid` varchar(75) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`plid`), UNIQUE KEY `IX_BC2C4231` (`groupId`,`privateLayout`,`friendlyURL`), UNIQUE KEY `IX_7162C27C` (`groupId`,`privateLayout`,`layoutId`), UNIQUE KEY `IX_E118C537` (`uuid_`,`groupId`,`privateLayout`), KEY `IX_881EABCB` (`companyId`,`layoutPrototypeUuid`), KEY `IX_7399B71E` (`groupId`,`privateLayout`,`parentLayoutId`,`priority`), KEY `IX_8CE8C0D9` (`groupId`,`privateLayout`,`sourcePrototypeLayoutUuid`), KEY `IX_1A1B61D2` (`groupId`,`privateLayout`,`type_`), KEY `IX_23922F7D` (`iconImageId`), KEY `IX_B529BFD3` (`layoutPrototypeUuid`), KEY `IX_3BC009C0` (`privateLayout`,`iconImageId`), KEY `IX_39A18ECC` (`sourcePrototypeLayoutUuid`), KEY `IX_2CE4BE84` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Layout` -- LOCK TABLES `Layout` WRITE; /*!40000 ALTER TABLE `Layout` DISABLE KEYS */; INSERT INTO `Layout` VALUES (0,'a00eb7c0-476d-97ab-5768-adc42bbc64ad',20136,20132,20115,20119,NULL,'2018-07-02 15:51:00.711000','2018-07-02 15:51:00.711000',1,1,0,'Control Panel',NULL,NULL,NULL,NULL,'control_panel','privateLayout=true\n',0,'/manage',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(1,'a4e56534-fc28-e874-b054-fa9725396450',20145,20142,20115,20119,NULL,'2018-07-02 15:51:00.843000','2018-07-02 15:51:00.895000',0,1,0,'Welcome',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_hello_world_web_portlet_HelloWorldPortlet,\nlayout-template-id=1_column\n',0,'/home',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(0,'d493950e-4900-39a0-e8aa-e9b1aef6f3eb',20165,20139,20115,20119,NULL,'2018-07-02 15:51:01.307000','2018-07-02 15:51:01.307000',0,1,0,'Shared',NULL,NULL,NULL,NULL,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet','layoutUpdateable=false\n',1,'/shared',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(5,'8ae6357f-acb2-070c-48bf-99ec0358ccfb',31234,31231,20115,20119,NULL,'2018-07-02 15:52:11.624000','2018-07-02 15:52:11.671000',1,1,0,'选择显示页面Seleccione una página de visualizaciónコンテンツディスプレイページKies een weergavepaginaTartalom megjelenítő oldaPágina de Exibição de ConteúdoAnzeigeseite auswählenבחר דף תצוגהWeb-sisälllön esityssivuEscolliu una pàgina de presentacióChoisir une page d\'affichageContent Display Page',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet_INSTANCE_xUEQ8IxPt8rQ,com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet_INSTANCE_9u7lDlvzhbwY,\ncolumn-2=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_eZh8XHgPyUlG,\ndefault-asset-publisher-portlet-id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_eZh8XHgPyUlG\nlayout-template-id=2_columns_ii\nprivateLayout=true\n',0,'/layout',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(5,'d646c6db-9065-68c3-1f31-7a2f7f8caec7',31303,31294,20115,20119,NULL,'2018-07-02 15:52:19.877000','2018-07-02 15:52:19.938000',1,1,0,'主页InicioホームStartpaginaNyitólapInícioStartseiteביתEtusivuIniciAccueilHome',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_message_boards_web_portlet_MBPortlet,\ncolumn-2=com_liferay_polls_web_portlet_PollsDisplayPortlet_INSTANCE_3mHxUYNjfTMN,com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet,com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_gk81Z4quQw5B,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/home',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(3,'1f0ae575-8a7c-c87e-568f-bac14b5f58f7',31307,31294,20115,20119,NULL,'2018-07-02 15:52:19.947000','2018-07-02 15:52:19.977000',1,2,0,'维基WikiウィキWikiWikiWikiWikiויקיWikiWikiWikiWiki',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_wiki_web_portlet_WikiPortlet,\ncolumn-2=com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet_INSTANCE_si8UiHDcUBHe,com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet_INSTANCE_Sfi8GnnWrMdG,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/wiki',0,NULL,NULL,'',1,NULL,0,NULL,NULL),(4,'691c4c33-77c3-4857-6bf6-9f687f0ca388',31314,31311,20115,20119,NULL,'2018-07-02 15:52:20.010000','2018-07-02 15:52:20.041000',1,1,0,'WikiWikiウィキWikiWikiWikiWikiויקיWikiWikiWikiWiki',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_wiki_web_portlet_WikiPortlet,\ncolumn-2=com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet_INSTANCE_VM9nRfMq0lTo,com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet_INSTANCE_Vaha3Le7Hi83,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/layout',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(4,'b59242e5-8634-d4f0-bf2f-c71f15d050f9',31325,31322,20115,20119,NULL,'2018-07-02 15:52:20.299000','2018-07-02 15:52:20.329000',1,1,0,'博客BlogブログBlogBlogBlogBlogבלוגBlogitBlocBlogueBlog',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_blogs_web_portlet_BlogsPortlet,\ncolumn-2=com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet_INSTANCE_41XwUaTZmhhT,com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/layout',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(4,'8f0a691b-f287-14b1-f96a-d9b8e5e898b9',31358,31349,20115,20119,NULL,'2018-07-02 15:52:21.891000','2018-07-02 15:52:21.927000',1,1,0,'主页InicioホームStartpaginaNyitólapInícioStartseiteביתEtusivuIniciAccueilHome',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_social_activities_web_portlet_SocialActivitiesPortlet,\ncolumn-2=com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet,com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_sdoCyFjQoI7t,\nlayout-template-id=2_columns_i\nprivateLayout=true\n',0,'/home',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(2,'ecafadf4-e9e4-16df-079f-dffcfa88e409',31362,31349,20115,20119,NULL,'2018-07-02 15:52:21.935000','2018-07-02 15:52:21.961000',1,2,0,'文档和媒体Documentos y multimediaドキュメントとメディアDocumenten en MediaDokumentumok és médiafájlokDocumentos e MídiasDokumente & MedienDocuments and MediaAsiakirjat ja mediaDocuments i fitxers multimèdiaDocuments and MediaDocuments and Media',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_document_library_web_portlet_DLPortlet_INSTANCE_Dn3uYEUZE0br,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/documents',0,NULL,NULL,'',1,NULL,0,NULL,NULL),(4,'5b87733d-758f-6d16-4785-32f2ffce9abc',31366,31349,20115,20119,NULL,'2018-07-02 15:52:21.968000','2018-07-02 15:52:21.999000',1,3,0,'NewsNewsNewsNewsNewsNewsNewsNewsNewsNewsNewsNews',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_rss_web_portlet_RSSPortlet_INSTANCE_CGnI0DBt1nyD,\ncolumn-2=com_liferay_rss_web_portlet_RSSPortlet_INSTANCE_JIulpMp22u6P,\nlayout-template-id=2_columns_iii\nprivateLayout=true\n',0,'/news',0,NULL,NULL,'',2,NULL,0,NULL,NULL),(1,'c8d5fc4d-ce5e-d1c5-d19e-f5b4e5c436ed',31402,20158,20115,20155,'Test Test','2018-07-02 16:07:32.801000','2018-07-02 16:07:32.822000',1,1,0,'Welcome',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_site_my_sites_web_portlet_MySitesPortlet,\nlayout-template-id=1_column\nprivateLayout=true\n',0,'/home',0,NULL,NULL,'',0,NULL,0,NULL,NULL),(1,'c6f72f78-8ca9-0688-0532-3e797f514f02',31405,20158,20115,20155,'Test Test','2018-07-02 16:07:32.833000','2018-07-02 16:07:32.853000',0,1,0,'Welcome',NULL,NULL,NULL,NULL,'portlet','layout-template-id=1_column\n',0,'/home',0,NULL,NULL,'',0,NULL,0,NULL,NULL); /*!40000 ALTER TABLE `Layout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutBranch` -- DROP TABLE IF EXISTS `LayoutBranch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutBranch` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `layoutBranchId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `layoutSetBranchId` bigint(20) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `master` tinyint(4) DEFAULT NULL, PRIMARY KEY (`layoutBranchId`), UNIQUE KEY `IX_FD57097D` (`layoutSetBranchId`,`plid`,`name`), KEY `IX_A705FF94` (`layoutSetBranchId`,`plid`,`master`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutBranch` -- LOCK TABLES `LayoutBranch` WRITE; /*!40000 ALTER TABLE `LayoutBranch` DISABLE KEYS */; /*!40000 ALTER TABLE `LayoutBranch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutFriendlyURL` -- DROP TABLE IF EXISTS `LayoutFriendlyURL`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutFriendlyURL` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `layoutFriendlyURLId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `friendlyURL` varchar(255) DEFAULT NULL, `languageId` varchar(75) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`layoutFriendlyURLId`), UNIQUE KEY `IX_A6FC2B28` (`groupId`,`privateLayout`,`friendlyURL`,`languageId`), UNIQUE KEY `IX_C5762E72` (`plid`,`languageId`), UNIQUE KEY `IX_326525D6` (`uuid_`,`groupId`), KEY `IX_EAB317C8` (`companyId`), KEY `IX_59051329` (`plid`,`friendlyURL`), KEY `IX_F4321A54` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutFriendlyURL` -- LOCK TABLES `LayoutFriendlyURL` WRITE; /*!40000 ALTER TABLE `LayoutFriendlyURL` DISABLE KEYS */; INSERT INTO `LayoutFriendlyURL` VALUES (0,'5696ad7c-cead-2711-e37e-73e5bb7fca2d',20137,20132,20115,20119,NULL,'2018-07-02 15:51:00.738000','2018-07-02 15:51:00.738000',20136,1,'/manage','en_US',NULL),(0,'e1b2bb3d-cda6-7c1c-38db-901e4c3735f5',20146,20142,20115,20119,NULL,'2018-07-02 15:51:00.871000','2018-07-02 15:51:00.871000',20145,0,'/home','en_US',NULL),(0,'c7e392dc-15a0-94a0-e128-26016aa9b18a',20166,20139,20115,20119,NULL,'2018-07-02 15:51:01.312000','2018-07-02 15:51:01.312000',20165,0,'/shared','en_US',NULL),(0,'abc44797-324f-1ed7-75b1-4429a804c8b3',31235,31231,20115,20119,NULL,'2018-07-02 15:52:11.635000','2018-07-02 15:52:11.635000',31234,1,'/layout','en_US',NULL),(0,'1fe11c67-ad1d-ed32-340f-5cb25e7c43dd',31304,31294,20115,20119,NULL,'2018-07-02 15:52:19.885000','2018-07-02 15:52:19.885000',31303,1,'/home','en_US',NULL),(0,'871f447e-e242-9001-dce2-3e197a5868db',31308,31294,20115,20119,NULL,'2018-07-02 15:52:19.955000','2018-07-02 15:52:19.955000',31307,1,'/wiki','en_US',NULL),(0,'d208d207-b757-bde0-fe75-1f846402f4f7',31315,31311,20115,20119,NULL,'2018-07-02 15:52:20.017000','2018-07-02 15:52:20.017000',31314,1,'/layout','en_US',NULL),(0,'9f2021ee-113d-f8aa-663e-64548f639b7d',31326,31322,20115,20119,NULL,'2018-07-02 15:52:20.306000','2018-07-02 15:52:20.306000',31325,1,'/layout','en_US',NULL),(0,'bb1c5085-ac76-382c-b300-81bb17455e52',31359,31349,20115,20119,NULL,'2018-07-02 15:52:21.900000','2018-07-02 15:52:21.900000',31358,1,'/home','en_US',NULL),(0,'5340d0aa-be24-86f2-5bd8-241dc729d169',31363,31349,20115,20119,NULL,'2018-07-02 15:52:21.943000','2018-07-02 15:52:21.943000',31362,1,'/documents','en_US',NULL),(0,'9c19bd72-a3b7-08cc-34ba-dfbc8436b145',31367,31349,20115,20119,NULL,'2018-07-02 15:52:21.975000','2018-07-02 15:52:21.975000',31366,1,'/news','en_US',NULL),(0,'f11a58ad-3385-08cd-2f45-1e410f6bd87f',31403,20158,20115,20155,'Test Test','2018-07-02 16:07:32.808000','2018-07-02 16:07:32.808000',31402,1,'/home','en_US',NULL),(0,'a370da03-31f8-6db3-f702-03c3b63af56f',31406,20158,20115,20155,'Test Test','2018-07-02 16:07:32.838000','2018-07-02 16:07:32.838000',31405,0,'/home','en_US',NULL); /*!40000 ALTER TABLE `LayoutFriendlyURL` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutPrototype` -- DROP TABLE IF EXISTS `LayoutPrototype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutPrototype` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `layoutPrototypeId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` longtext, `description` longtext, `settings_` longtext, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`layoutPrototypeId`), KEY `IX_557A639F` (`companyId`,`active_`), KEY `IX_63ED2532` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutPrototype` -- LOCK TABLES `LayoutPrototype` WRITE; /*!40000 ALTER TABLE `LayoutPrototype` DISABLE KEYS */; INSERT INTO `LayoutPrototype` VALUES (0,'f096bcb4-6c41-33cd-2859-64335b7ed5dc',31230,20115,20119,NULL,'2018-07-02 15:52:11.519000','2018-07-02 15:52:11.519000','选择显示页面Seleccione una página de visualizaciónコンテンツディスプレイページKies een weergavepaginaTartalom megjelenítő oldaPágina de Exibição de ConteúdoAnzeigeseite auswählenבחר דף תצוגהWeb-sisälllön esityssivuEscolliu una pàgina de presentacióChoisir une page d\'affichageContent Display Page','在此页创建、编辑和浏览网页内容。搜索可用的内容、探索带有标签的相关内容,并浏览内容类别。Cree, edite y explore contenidos web de esta página. Busque contenido adicional, explore contenido relacionado con etiquetas y hojee las categorías del contenido.このページからWebコンテンツの作成、編集ができます。コンテンツの検索、タグを利用した関連するコンテンツの検索と、コンテンツのカテゴリを閲覧できますU kunt vanaf deze pagina webinhoud aanmaken, bewerken en ontdekken. Zoek beschikbare inhoud, ontdek gerelateerde inhoud met tag en blader door inhoudscategorieën.Hozzon létre, szerkesszen és fedezzen fel webes tartalmat erről az oldalról. Keressen elérhető tartalmat, fedezze fel a kapcsolódó tartalmat címkékkel és böngésszen tartalomkategóriákat.Crie, edite e explore conteúdo web a partir desta página. Pesquise conteúdo disponível, explore o conteúdo relacionado com tags e navegue as categorias de conteúdo.Erstellen, bearbeiten und finden von Webcontent dieser Seite. Durchsuchen Sie verfügbare Inhalte, erkunden Sie ähnliche Inhalte über Schlagwörter und durchsuchen Sie Kategorien.צור, ערוך וחקור תוכן רשת מעמוד זה. חפש תוכן זמין, חקור תוכן קשור עם תגיות ודפדף בין קטגוריות התוכן.Luo, muokkaa ja tutustu web-sisältöön tältä sivulta. Hae saatavilla olevaa sisältöä, tutustu aiheeseen liittyvään sisältöön tunnisteilla ja selaa sisältöluokkia.Crear, editar, i explorar el contingut web des d\'aquesta pàgina. Cercar contingut disponible, explorar contingut relacionat amb les etiquetes i navegar per les categories de contingut.Créer, éditer et explorer le contenu web de cette page. Rechercher un contenu disponible, explorer le contenu à l\'aide des tags et parcourir les catégories du contenu.Create, edit, and explore web content from this page. Search available content, explore related content with tags, and browse content categories.',NULL,1),(0,'7d46e71a-ec3a-806a-0248-a755baaccc7c',31310,20115,20119,NULL,'2018-07-02 15:52:19.987000','2018-07-02 15:52:19.987000','WikiWikiウィキWikiWikiWikiWikiויקיWikiWikiWikiWiki','通过此页的Wiki与成员协作。通过标签搜索相关的内容,快速导航、轻松的类别。Colabora con los miembros a través de la wiki en esta página. Descubre el contenido relacionado a través de etiquetas y navega rápida y fácilmente por las categorías.このページのウィキを通じてメンバーとコラボレーションできます。タグを利用して関連するコンテンツを見つけたり、カテゴリを使って簡単に情報をたどることができますWerk samen met leden via de wiki op deze pagina. Ontdek verwante inhoud via tags en navigeer snel en eenvoudig met behulp van categorieën.Működjön együtt a tagokkal az ezen az oldalon található wiki-n keresztül. Fedezzen fel kapcsolódó tartalmat címkékkel, és navigáljon gyorsan és könnyen kategóriákkal.Colabore com os membros através do wiki nesta página. Descubra conteúdo relacionado através de etiquetas e navegue rápida e facilmente com as categorias.Arbeiten Sie mit Hilfe des Wikis dieser Seite mit anderen Mitgliedern zusammen. Entdecken Sie in Verbindung stehende Inhalte über Tags und navigieren Sie schnell und einfach mit Kategorien.שתפו פעולה עם חברים באמצעות הוויקי בדף זה. גלו תוכן קשור באמצעות תגיות ונווטו מהר ובקלות בין קטגוריות.Tee yhteistyötä jäsenten kanssa wikin kautta tällä sivulla. Tutustu aiheeseen liittyvään sisältöön tunnisteiden kautta ja siirry helposti ja nopeasti luokkien välillä.Col·labora amb els membres a través de la wiki en aquesta pàgina. Descobreix el contingut relacionat a través d\'etiquetes i navega d\'una forma ràpida i fàcil amb les categories.Collaborez avec les membres par le bias de wiki sur cette page. Découvrez le contenu lié par le biais des tags et naviguez rapidement et facilement avec les catégories.Collaborate with members through the wiki on this page. Discover related content through tags, and navigate quickly and easily with categories.',NULL,1),(0,'311c0cae-678e-3e1f-e32f-20108a705bdc',31321,20115,20119,NULL,'2018-07-02 15:52:20.276000','2018-07-02 15:52:20.276000','博客BlogブログBlogBlogBlogBlogבלוגBlogitBlocBlogueBlog','在页面中创建,编辑并且预览博客。通便签导出主题,并也博客中的其他成员联系。Cree, edite y vea blogs desde esta página. Explore los temas usando etiquetas y conecte con otros miembros del blog.このページからブログの作成、編集、閲覧ができます。タグを使用して記事を検索したり、ブログの他のメンバーを結びつけることができます。Vanaf deze pagina kunt u blogs aanmaken, bewerken en bekijken. Ontdek onderwerpen aan de hand van tags, en verbind met andere leden die bloggen.Hozz létre, szerkessz és tekints meg blogokat erről az oldalról. Fedetd fel a témákat a címkék segítségével és lépj kapcsolatba a többi blog taggal.Crie, edite e visualize blogs a partir desta página. Explore tópicos utilizando tags e conecte-se a outros membros deste blog.Erstellen, bearbeiten und ansehen von Blogs dieser Seite. Erkunden Sie Themen mit Hilfe von Tags und verbinden Sie sich mit anderen Mitgliedern, die bloggen.צור, ערוך וצפה בבלוגים מעמוד זה. חקור נושאים באמצעות תגיות והתחבר עם חברים אחרים שכותבים בלוגים.Luo, muokkaa ja näytä tämän sivun blogit. Selaa aiheita käytämällä tunnisteita ja tutustu muihin tämän blogin kirjoittajiin.Crear, editar i veure els blogs d\'aquesta pàgina. Explorar temes fent ús de les etiquetes i connectar-se amb altres membres d\'aquest blog.Créer, éditer et visualiser les blogs de cette page. Explorer les sujets en utilisant des tags et se connecter à d\'autres membres de ce blog.Create, edit, and view blogs from this page. Explore topics using tags, and connect with other members that blog.',NULL,1); /*!40000 ALTER TABLE `LayoutPrototype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutRevision` -- DROP TABLE IF EXISTS `LayoutRevision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutRevision` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `layoutRevisionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `layoutSetBranchId` bigint(20) DEFAULT NULL, `layoutBranchId` bigint(20) DEFAULT NULL, `parentLayoutRevisionId` bigint(20) DEFAULT NULL, `head` tinyint(4) DEFAULT NULL, `major` tinyint(4) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `name` longtext, `title` longtext, `description` longtext, `keywords` longtext, `robots` longtext, `typeSettings` longtext, `iconImageId` bigint(20) DEFAULT NULL, `themeId` varchar(75) DEFAULT NULL, `colorSchemeId` varchar(75) DEFAULT NULL, `css` longtext, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`layoutRevisionId`), KEY `IX_43E8286A` (`head`,`plid`), KEY `IX_E10AC39` (`layoutSetBranchId`,`head`,`plid`), KEY `IX_38C5DF14` (`layoutSetBranchId`,`layoutBranchId`,`head`,`plid`), KEY `IX_13984800` (`layoutSetBranchId`,`layoutBranchId`,`plid`), KEY `IX_4A84AF43` (`layoutSetBranchId`,`parentLayoutRevisionId`,`plid`), KEY `IX_70DA9ECB` (`layoutSetBranchId`,`plid`,`status`), KEY `IX_7FFAE700` (`layoutSetBranchId`,`status`), KEY `IX_8EC3D2BC` (`plid`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutRevision` -- LOCK TABLES `LayoutRevision` WRITE; /*!40000 ALTER TABLE `LayoutRevision` DISABLE KEYS */; /*!40000 ALTER TABLE `LayoutRevision` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutSet` -- DROP TABLE IF EXISTS `LayoutSet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutSet` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `layoutSetId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `logoId` bigint(20) DEFAULT NULL, `themeId` varchar(75) DEFAULT NULL, `colorSchemeId` varchar(75) DEFAULT NULL, `css` longtext, `pageCount` int(11) DEFAULT NULL, `settings_` longtext, `layoutSetPrototypeUuid` varchar(75) DEFAULT NULL, `layoutSetPrototypeLinkEnabled` tinyint(4) DEFAULT NULL, PRIMARY KEY (`layoutSetId`), UNIQUE KEY `IX_48550691` (`groupId`,`privateLayout`), KEY `IX_72BBA8B7` (`layoutSetPrototypeUuid`), KEY `IX_1B698D9` (`privateLayout`,`logoId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutSet` -- LOCK TABLES `LayoutSet` WRITE; /*!40000 ALTER TABLE `LayoutSet` DISABLE KEYS */; INSERT INTO `LayoutSet` VALUES (1,20133,20132,20115,'2018-07-02 15:51:00.658000','2018-07-02 15:51:00.752000',1,0,'classic_WAR_classictheme','01','',1,'',NULL,0),(0,20135,20132,20115,'2018-07-02 15:51:00.670000','2018-07-02 15:51:00.670000',0,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(0,20140,20139,20115,'2018-07-02 15:51:00.798000','2018-07-02 15:51:00.798000',1,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(1,20141,20139,20115,'2018-07-02 15:51:00.799000','2018-07-02 15:51:01.317000',0,0,'classic_WAR_classictheme','01','',1,'',NULL,0),(0,20143,20142,20115,'2018-07-02 15:51:00.826000','2018-07-02 15:51:00.826000',1,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(2,20144,20142,20115,'2018-07-02 15:51:00.827000','2018-07-02 15:51:52.033000',0,31194,'classic_WAR_classictheme','01','',1,'',NULL,0),(0,20149,20148,20115,'2018-07-02 15:51:00.905000','2018-07-02 15:51:00.905000',1,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(0,20150,20148,20115,'2018-07-02 15:51:00.906000','2018-07-02 15:51:00.906000',0,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(0,20152,20151,20115,'2018-07-02 15:51:00.929000','2018-07-02 15:51:00.929000',1,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(0,20153,20151,20115,'2018-07-02 15:51:00.930000','2018-07-02 15:51:00.930000',0,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(2,20159,20158,20115,'2018-07-02 15:51:01.156000','2018-07-02 16:07:32.812000',1,0,'userdashboard_WAR_userdashboardtheme','01','',1,'',NULL,0),(2,20160,20158,20115,'2018-07-02 15:51:01.157000','2018-07-02 16:07:32.843000',0,0,'userprofile_WAR_userprofiletheme','01','',1,'',NULL,0),(1,31232,31231,20115,'2018-07-02 15:52:11.541000','2018-07-02 15:52:11.638000',1,0,'classic_WAR_classictheme','01','',1,'',NULL,0),(0,31233,31231,20115,'2018-07-02 15:52:11.542000','2018-07-02 15:52:11.542000',0,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(16,31295,31294,20115,'2018-07-02 15:52:19.757000','2018-07-02 15:52:19.977000',1,0,'classic_WAR_classictheme','01','',2,'',NULL,0),(0,31296,31294,20115,'2018-07-02 15:52:19.762000','2018-07-02 15:52:19.762000',0,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(1,31312,31311,20115,'2018-07-02 15:52:20.000000','2018-07-02 15:52:20.021000',1,0,'classic_WAR_classictheme','01','',1,'',NULL,0),(0,31313,31311,20115,'2018-07-02 15:52:20.000000','2018-07-02 15:52:20.000000',0,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(1,31323,31322,20115,'2018-07-02 15:52:20.290000','2018-07-02 15:52:20.308000',1,0,'classic_WAR_classictheme','01','',1,'',NULL,0),(0,31324,31322,20115,'2018-07-02 15:52:20.290000','2018-07-02 15:52:20.290000',0,0,'classic_WAR_classictheme','01','',0,'',NULL,0),(20,31350,31349,20115,'2018-07-02 15:52:21.843000','2018-07-02 15:52:21.999000',1,0,'classic_WAR_classictheme','01','',3,'',NULL,0),(0,31351,31349,20115,'2018-07-02 15:52:21.844000','2018-07-02 15:52:21.844000',0,0,'classic_WAR_classictheme','01','',0,'',NULL,0); /*!40000 ALTER TABLE `LayoutSet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutSetBranch` -- DROP TABLE IF EXISTS `LayoutSetBranch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutSetBranch` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `layoutSetBranchId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `privateLayout` tinyint(4) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `master` tinyint(4) DEFAULT NULL, `logoId` bigint(20) DEFAULT NULL, `themeId` varchar(75) DEFAULT NULL, `colorSchemeId` varchar(75) DEFAULT NULL, `css` longtext, `settings_` longtext, `layoutSetPrototypeUuid` varchar(75) DEFAULT NULL, `layoutSetPrototypeLinkEnabled` tinyint(4) DEFAULT NULL, PRIMARY KEY (`layoutSetBranchId`), UNIQUE KEY `IX_5FF18552` (`groupId`,`privateLayout`,`name`), KEY `IX_CCF0DA29` (`groupId`,`privateLayout`,`master`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutSetBranch` -- LOCK TABLES `LayoutSetBranch` WRITE; /*!40000 ALTER TABLE `LayoutSetBranch` DISABLE KEYS */; /*!40000 ALTER TABLE `LayoutSetBranch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LayoutSetPrototype` -- DROP TABLE IF EXISTS `LayoutSetPrototype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LayoutSetPrototype` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `layoutSetPrototypeId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` longtext, `description` longtext, `settings_` longtext, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`layoutSetPrototypeId`), KEY `IX_9178FC71` (`companyId`,`active_`), KEY `IX_D9FFCA84` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LayoutSetPrototype` -- LOCK TABLES `LayoutSetPrototype` WRITE; /*!40000 ALTER TABLE `LayoutSetPrototype` DISABLE KEYS */; INSERT INTO `LayoutSetPrototype` VALUES (17,'3dd4e23c-c975-7af8-979a-77454ede08b4',31293,20115,20119,NULL,'2018-07-02 15:52:19.738000','2018-07-02 15:52:19.977000','社区网站Sitio de la ComunidadコミュニティーサイトCommunity websiteKözösségi webhelySite da ComunidadeCommunity-Siteאתר קהילהYhteisösivustoLloc comunitariSite de communautéCommunity Site','有论坛和Wiki的站点Sitio con foro y wikiウィキとフォーラムのサイトSite met forum en wikiWebhely Fórumokkal és WikivelSite com Fóruns e WikiSite mit Forum und Wikiאתר עם פורומים עם וויקיםSivusto foorumeilla ja wikilläLlocs amb fòrums i WikiSite avec forums et wikiSite with Forums and Wiki','layoutsUpdateable=true\n',1),(21,'d4c378d4-e8d3-f5a8-86e8-15d1a15df198',31348,20115,20119,NULL,'2018-07-02 15:52:21.830000','2018-07-02 15:52:21.999000','内网Sitio de intranetイントラネットサイトIntranet WebsiteIntranetes webhelySite da IntranetIntranet-Siteאתר אינטראנטIntranet sivustoLloc web tipus IntranetSite intranetIntranet Site','有内容和新闻的网站Sitio con documentos y noticiasドキュメントとニュースのサイトSite met documenten en nieuwsWebhely dokumentumokkal és hírekkelSite com Documentos e NotíciasSite mit Dokumenten und Nachrichtenאתר עם מסמכים וחדשותAsiakirjoja ja uutisia sisältävä sivustoLloc amb documents i notíciesSite avec documents et actualitésSite with Documents and News','layoutsUpdateable=true\n',1); /*!40000 ALTER TABLE `LayoutSetPrototype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ListType` -- DROP TABLE IF EXISTS `ListType`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ListType` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `listTypeId` bigint(20) NOT NULL, `name` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, PRIMARY KEY (`listTypeId`), KEY `IX_77729718` (`name`,`type_`), KEY `IX_2932DD37` (`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ListType` -- LOCK TABLES `ListType` WRITE; /*!40000 ALTER TABLE `ListType` DISABLE KEYS */; INSERT INTO `ListType` VALUES (0,10000,'billing','com.liferay.portal.kernel.model.Account.address'),(0,10001,'other','com.liferay.portal.kernel.model.Account.address'),(0,10002,'p-o-box','com.liferay.portal.kernel.model.Account.address'),(0,10003,'shipping','com.liferay.portal.kernel.model.Account.address'),(0,10004,'email-address','com.liferay.portal.kernel.model.Account.emailAddress'),(0,10005,'email-address-2','com.liferay.portal.kernel.model.Account.emailAddress'),(0,10006,'email-address-3','com.liferay.portal.kernel.model.Account.emailAddress'),(0,10007,'fax','com.liferay.portal.kernel.model.Account.phone'),(0,10008,'local','com.liferay.portal.kernel.model.Account.phone'),(0,10009,'other','com.liferay.portal.kernel.model.Account.phone'),(0,10010,'toll-free','com.liferay.portal.kernel.model.Account.phone'),(0,10011,'tty','com.liferay.portal.kernel.model.Account.phone'),(0,10012,'intranet','com.liferay.portal.kernel.model.Account.website'),(0,10013,'public','com.liferay.portal.kernel.model.Account.website'),(0,11000,'business','com.liferay.portal.kernel.model.Contact.address'),(0,11001,'other','com.liferay.portal.kernel.model.Contact.address'),(0,11002,'personal','com.liferay.portal.kernel.model.Contact.address'),(0,11003,'email-address','com.liferay.portal.kernel.model.Contact.emailAddress'),(0,11004,'email-address-2','com.liferay.portal.kernel.model.Contact.emailAddress'),(0,11005,'email-address-3','com.liferay.portal.kernel.model.Contact.emailAddress'),(0,11006,'business','com.liferay.portal.kernel.model.Contact.phone'),(0,11007,'business-fax','com.liferay.portal.kernel.model.Contact.phone'),(0,11008,'mobile-phone','com.liferay.portal.kernel.model.Contact.phone'),(0,11009,'other','com.liferay.portal.kernel.model.Contact.phone'),(0,11010,'pager','com.liferay.portal.kernel.model.Contact.phone'),(0,11011,'personal','com.liferay.portal.kernel.model.Contact.phone'),(0,11012,'personal-fax','com.liferay.portal.kernel.model.Contact.phone'),(0,11013,'tty','com.liferay.portal.kernel.model.Contact.phone'),(0,11014,'dr','com.liferay.portal.kernel.model.Contact.prefix'),(0,11015,'mr','com.liferay.portal.kernel.model.Contact.prefix'),(0,11016,'mrs','com.liferay.portal.kernel.model.Contact.prefix'),(0,11017,'ms','com.liferay.portal.kernel.model.Contact.prefix'),(0,11020,'ii','com.liferay.portal.kernel.model.Contact.suffix'),(0,11021,'iii','com.liferay.portal.kernel.model.Contact.suffix'),(0,11022,'iv','com.liferay.portal.kernel.model.Contact.suffix'),(0,11023,'jr','com.liferay.portal.kernel.model.Contact.suffix'),(0,11024,'phd','com.liferay.portal.kernel.model.Contact.suffix'),(0,11025,'sr','com.liferay.portal.kernel.model.Contact.suffix'),(0,11026,'blog','com.liferay.portal.kernel.model.Contact.website'),(0,11027,'business','com.liferay.portal.kernel.model.Contact.website'),(0,11028,'other','com.liferay.portal.kernel.model.Contact.website'),(0,11029,'personal','com.liferay.portal.kernel.model.Contact.website'),(0,12000,'billing','com.liferay.portal.kernel.model.Organization.address'),(0,12001,'other','com.liferay.portal.kernel.model.Organization.address'),(0,12002,'p-o-box','com.liferay.portal.kernel.model.Organization.address'),(0,12003,'shipping','com.liferay.portal.kernel.model.Organization.address'),(0,12004,'email-address','com.liferay.portal.kernel.model.Organization.emailAddress'),(0,12005,'email-address-2','com.liferay.portal.kernel.model.Organization.emailAddress'),(0,12006,'email-address-3','com.liferay.portal.kernel.model.Organization.emailAddress'),(0,12007,'fax','com.liferay.portal.kernel.model.Organization.phone'),(0,12008,'local','com.liferay.portal.kernel.model.Organization.phone'),(0,12009,'other','com.liferay.portal.kernel.model.Organization.phone'),(0,12010,'toll-free','com.liferay.portal.kernel.model.Organization.phone'),(0,12011,'tty','com.liferay.portal.kernel.model.Organization.phone'),(0,12012,'administrative','com.liferay.portal.kernel.model.Organization.service'),(0,12013,'contracts','com.liferay.portal.kernel.model.Organization.service'),(0,12014,'donation','com.liferay.portal.kernel.model.Organization.service'),(0,12015,'retail','com.liferay.portal.kernel.model.Organization.service'),(0,12016,'training','com.liferay.portal.kernel.model.Organization.service'),(0,12017,'full-member','com.liferay.portal.kernel.model.Organization.status'),(0,12018,'provisional-member','com.liferay.portal.kernel.model.Organization.status'),(0,12019,'intranet','com.liferay.portal.kernel.model.Organization.website'),(0,12020,'public','com.liferay.portal.kernel.model.Organization.website'); /*!40000 ALTER TABLE `ListType` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Lock_` -- DROP TABLE IF EXISTS `Lock_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Lock_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `lockId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `className` varchar(75) DEFAULT NULL, `key_` varchar(200) DEFAULT NULL, `owner` varchar(1024) DEFAULT NULL, `inheritable` tinyint(4) DEFAULT NULL, `expirationDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`lockId`), UNIQUE KEY `IX_228562AD` (`className`,`key_`), KEY `IX_E3F1286B` (`expirationDate`), KEY `IX_2C418EAE` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Lock_` -- LOCK TABLES `Lock_` WRITE; /*!40000 ALTER TABLE `Lock_` DISABLE KEYS */; /*!40000 ALTER TABLE `Lock_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBBan` -- DROP TABLE IF EXISTS `MBBan`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBBan` ( `uuid_` varchar(75) DEFAULT NULL, `banId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `banUserId` bigint(20) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`banId`), UNIQUE KEY `IX_8ABC4E3B` (`groupId`,`banUserId`), UNIQUE KEY `IX_2A3B68F6` (`uuid_`,`groupId`), KEY `IX_69951A25` (`banUserId`), KEY `IX_48814BBA` (`userId`), KEY `IX_4F841574` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBBan` -- LOCK TABLES `MBBan` WRITE; /*!40000 ALTER TABLE `MBBan` DISABLE KEYS */; /*!40000 ALTER TABLE `MBBan` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBCategory` -- DROP TABLE IF EXISTS `MBCategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBCategory` ( `uuid_` varchar(75) DEFAULT NULL, `categoryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `parentCategoryId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `displayStyle` varchar(75) DEFAULT NULL, `threadCount` int(11) DEFAULT NULL, `messageCount` int(11) DEFAULT NULL, `lastPostDate` datetime(6) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`categoryId`), UNIQUE KEY `IX_F7D28C2F` (`uuid_`,`groupId`), KEY `IX_D1642361` (`categoryId`,`groupId`,`parentCategoryId`,`status`), KEY `IX_E15A5DB5` (`companyId`,`status`), KEY `IX_C295DBEE` (`groupId`,`parentCategoryId`,`status`), KEY `IX_DA84A9F7` (`groupId`,`status`), KEY `IX_13DF4E6D` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBCategory` -- LOCK TABLES `MBCategory` WRITE; /*!40000 ALTER TABLE `MBCategory` DISABLE KEYS */; /*!40000 ALTER TABLE `MBCategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBDiscussion` -- DROP TABLE IF EXISTS `MBDiscussion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBDiscussion` ( `uuid_` varchar(75) DEFAULT NULL, `discussionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `threadId` bigint(20) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`discussionId`), UNIQUE KEY `IX_33A4DE38` (`classNameId`,`classPK`), UNIQUE KEY `IX_B5CA2DC` (`threadId`), UNIQUE KEY `IX_F7AAC799` (`uuid_`,`groupId`), KEY `IX_7E965757` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBDiscussion` -- LOCK TABLES `MBDiscussion` WRITE; /*!40000 ALTER TABLE `MBDiscussion` DISABLE KEYS */; /*!40000 ALTER TABLE `MBDiscussion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBMailingList` -- DROP TABLE IF EXISTS `MBMailingList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBMailingList` ( `uuid_` varchar(75) DEFAULT NULL, `mailingListId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `emailAddress` varchar(254) DEFAULT NULL, `inProtocol` varchar(75) DEFAULT NULL, `inServerName` varchar(75) DEFAULT NULL, `inServerPort` int(11) DEFAULT NULL, `inUseSSL` tinyint(4) DEFAULT NULL, `inUserName` varchar(75) DEFAULT NULL, `inPassword` varchar(75) DEFAULT NULL, `inReadInterval` int(11) DEFAULT NULL, `outEmailAddress` varchar(254) DEFAULT NULL, `outCustom` tinyint(4) DEFAULT NULL, `outServerName` varchar(75) DEFAULT NULL, `outServerPort` int(11) DEFAULT NULL, `outUseSSL` tinyint(4) DEFAULT NULL, `outUserName` varchar(75) DEFAULT NULL, `outPassword` varchar(75) DEFAULT NULL, `allowAnonymous` tinyint(4) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`mailingListId`), UNIQUE KEY `IX_76CE9CDD` (`groupId`,`categoryId`), UNIQUE KEY `IX_E858F170` (`uuid_`,`groupId`), KEY `IX_BFEB984F` (`active_`), KEY `IX_FC61676E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBMailingList` -- LOCK TABLES `MBMailingList` WRITE; /*!40000 ALTER TABLE `MBMailingList` DISABLE KEYS */; /*!40000 ALTER TABLE `MBMailingList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBMessage` -- DROP TABLE IF EXISTS `MBMessage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBMessage` ( `uuid_` varchar(75) DEFAULT NULL, `messageId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `threadId` bigint(20) DEFAULT NULL, `rootMessageId` bigint(20) DEFAULT NULL, `parentMessageId` bigint(20) DEFAULT NULL, `subject` varchar(75) DEFAULT NULL, `body` longtext, `format` varchar(75) DEFAULT NULL, `anonymous` tinyint(4) DEFAULT NULL, `priority` double DEFAULT NULL, `allowPingbacks` tinyint(4) DEFAULT NULL, `answer` tinyint(4) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`messageId`), UNIQUE KEY `IX_8D12316E` (`uuid_`,`groupId`), KEY `IX_F6687633` (`classNameId`,`classPK`,`status`), KEY `IX_1AD93C16` (`companyId`,`status`), KEY `IX_4257DB85` (`groupId`,`categoryId`,`status`), KEY `IX_CBFDBF0A` (`groupId`,`categoryId`,`threadId`,`answer`), KEY `IX_385E123E` (`groupId`,`categoryId`,`threadId`,`status`), KEY `IX_ED39AC98` (`groupId`,`status`), KEY `IX_377858D2` (`groupId`,`userId`,`status`), KEY `IX_9D7C3B23` (`threadId`,`answer`), KEY `IX_A7038CD7` (`threadId`,`parentMessageId`), KEY `IX_9DC8E57` (`threadId`,`status`), KEY `IX_4A4BB4ED` (`userId`,`classNameId`,`classPK`,`status`), KEY `IX_3321F142` (`userId`,`classNameId`,`status`), KEY `IX_57CA9FEC` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBMessage` -- LOCK TABLES `MBMessage` WRITE; /*!40000 ALTER TABLE `MBMessage` DISABLE KEYS */; /*!40000 ALTER TABLE `MBMessage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBStatsUser` -- DROP TABLE IF EXISTS `MBStatsUser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBStatsUser` ( `statsUserId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `messageCount` int(11) DEFAULT NULL, `lastPostDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`statsUserId`), UNIQUE KEY `IX_9168E2C9` (`groupId`,`userId`), KEY `IX_847F92B5` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBStatsUser` -- LOCK TABLES `MBStatsUser` WRITE; /*!40000 ALTER TABLE `MBStatsUser` DISABLE KEYS */; /*!40000 ALTER TABLE `MBStatsUser` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBThread` -- DROP TABLE IF EXISTS `MBThread`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBThread` ( `uuid_` varchar(75) DEFAULT NULL, `threadId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `categoryId` bigint(20) DEFAULT NULL, `rootMessageId` bigint(20) DEFAULT NULL, `rootMessageUserId` bigint(20) DEFAULT NULL, `messageCount` int(11) DEFAULT NULL, `viewCount` int(11) DEFAULT NULL, `lastPostByUserId` bigint(20) DEFAULT NULL, `lastPostDate` datetime(6) DEFAULT NULL, `priority` double DEFAULT NULL, `question` tinyint(4) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`threadId`), UNIQUE KEY `IX_3A200B7B` (`uuid_`,`groupId`), KEY `IX_41F6DC8A` (`categoryId`,`priority`), KEY `IX_50F1904A` (`groupId`,`categoryId`,`lastPostDate`), KEY `IX_485F7E98` (`groupId`,`categoryId`,`status`), KEY `IX_E1E7142B` (`groupId`,`status`), KEY `IX_AEDD9CB5` (`lastPostDate`,`priority`), KEY `IX_CC993ECB` (`rootMessageId`), KEY `IX_F8CA2AB9` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBThread` -- LOCK TABLES `MBThread` WRITE; /*!40000 ALTER TABLE `MBThread` DISABLE KEYS */; /*!40000 ALTER TABLE `MBThread` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MBThreadFlag` -- DROP TABLE IF EXISTS `MBThreadFlag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MBThreadFlag` ( `uuid_` varchar(75) DEFAULT NULL, `threadFlagId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `threadId` bigint(20) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`threadFlagId`), UNIQUE KEY `IX_33781904` (`userId`,`threadId`), UNIQUE KEY `IX_FEB0FC87` (`uuid_`,`groupId`), KEY `IX_8CB0A24A` (`threadId`), KEY `IX_DCE308C5` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MBThreadFlag` -- LOCK TABLES `MBThreadFlag` WRITE; /*!40000 ALTER TABLE `MBThreadFlag` DISABLE KEYS */; /*!40000 ALTER TABLE `MBThreadFlag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MDRAction` -- DROP TABLE IF EXISTS `MDRAction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MDRAction` ( `uuid_` varchar(75) DEFAULT NULL, `actionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `ruleGroupInstanceId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `type_` varchar(255) DEFAULT NULL, `typeSettings` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`actionId`), UNIQUE KEY `IX_75BE36AD` (`uuid_`,`groupId`), KEY `IX_FD90786C` (`ruleGroupInstanceId`), KEY `IX_C58A516B` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MDRAction` -- LOCK TABLES `MDRAction` WRITE; /*!40000 ALTER TABLE `MDRAction` DISABLE KEYS */; /*!40000 ALTER TABLE `MDRAction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MDRRule` -- DROP TABLE IF EXISTS `MDRRule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MDRRule` ( `uuid_` varchar(75) DEFAULT NULL, `ruleId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `ruleGroupId` bigint(20) DEFAULT NULL, `name` longtext, `description` longtext, `type_` varchar(255) DEFAULT NULL, `typeSettings` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`ruleId`), UNIQUE KEY `IX_F3EFDCB3` (`uuid_`,`groupId`), KEY `IX_4F4293F1` (`ruleGroupId`), KEY `IX_7DEA8DF1` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MDRRule` -- LOCK TABLES `MDRRule` WRITE; /*!40000 ALTER TABLE `MDRRule` DISABLE KEYS */; /*!40000 ALTER TABLE `MDRRule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MDRRuleGroup` -- DROP TABLE IF EXISTS `MDRRuleGroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MDRRuleGroup` ( `uuid_` varchar(75) DEFAULT NULL, `ruleGroupId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` longtext, `description` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`ruleGroupId`), UNIQUE KEY `IX_46665CC4` (`uuid_`,`groupId`), KEY `IX_5849891C` (`groupId`), KEY `IX_CC14DC2` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MDRRuleGroup` -- LOCK TABLES `MDRRuleGroup` WRITE; /*!40000 ALTER TABLE `MDRRuleGroup` DISABLE KEYS */; /*!40000 ALTER TABLE `MDRRuleGroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MDRRuleGroupInstance` -- DROP TABLE IF EXISTS `MDRRuleGroupInstance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MDRRuleGroupInstance` ( `uuid_` varchar(75) DEFAULT NULL, `ruleGroupInstanceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `ruleGroupId` bigint(20) DEFAULT NULL, `priority` int(11) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`ruleGroupInstanceId`), UNIQUE KEY `IX_808A0036` (`classNameId`,`classPK`,`ruleGroupId`), UNIQUE KEY `IX_9CBC6A39` (`uuid_`,`groupId`), KEY `IX_22DAB85C` (`groupId`,`classNameId`,`classPK`), KEY `IX_BF3E642B` (`ruleGroupId`), KEY `IX_25C9D1F7` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MDRRuleGroupInstance` -- LOCK TABLES `MDRRuleGroupInstance` WRITE; /*!40000 ALTER TABLE `MDRRuleGroupInstance` DISABLE KEYS */; /*!40000 ALTER TABLE `MDRRuleGroupInstance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Marketplace_App` -- DROP TABLE IF EXISTS `Marketplace_App`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Marketplace_App` ( `uuid_` varchar(75) DEFAULT NULL, `appId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `remoteAppId` bigint(20) DEFAULT NULL, `title` varchar(75) DEFAULT NULL, `description` longtext, `category` varchar(75) DEFAULT NULL, `iconURL` longtext, `version` varchar(75) DEFAULT NULL, `required` tinyint(4) DEFAULT NULL, PRIMARY KEY (`appId`), KEY `IX_94A7EF25` (`category`), KEY `IX_865B7BD5` (`companyId`), KEY `IX_20F14D93` (`remoteAppId`), KEY `IX_A7807DA7` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Marketplace_App` -- LOCK TABLES `Marketplace_App` WRITE; /*!40000 ALTER TABLE `Marketplace_App` DISABLE KEYS */; INSERT INTO `Marketplace_App` VALUES ('c0a3e4ae-165a-4e47-b034-2f29d42005a1',30104,20115,0,NULL,'2018-07-02 15:51:19.316000','2018-07-02 15:51:19.316000',74593617,'Liferay Collaboration','The Liferay Collaboration suite provides applications and features that help users share ideas, implement them, and produce terrific results. Its apps such as Message Boards and Blogs help users start discussions, ask questions, share ideas, and connect with other users. Wiki allows users to share in-depth information. And Alerts and Announcements facilitate broadcasting information and notifications.As users collaborate, they\'re sure to produce important files. The suite\'s Documents and Media Library allows users to store files, share them, and publish them. It not only works with Liferay\'s built-in repository but also allows you to integrate with external repositories, such CMIS repositories. Users can add and share all kinds of files, including documents, presentations, images, and videos. And the suite\'s Documents and Media app and Media Gallery help users display files the way they like them.As users engage in site activities, you\'ll want to recognize them and connect them with other users. The suite\'s social networking apps and features enable you to attribute social equity to active users automatically by increasing their rank on the site. You can even highlight user activities to show your site\'s liveliness. The Mentions feature facilitates notifying specific users in the context of site content, discussions, and comments. The social apps also help users share their thoughts on the your sites and other social sites, such as Facebook and Twitter. Combined with the suite\'s collaboration and document management features, the Collaboration suite’s social features help develop awesome communities, foster high morale, and make work interesting.Apps and Features: Activities, Alerts, Announcements, Blogs, Bookmarks, Comments, Friends/My Sites/Portal/Site Members Directory, Documents and Media, Friend Requests, Image Uploader, Invite Members, Media Gallery, Message Boards, Mentions, Microblogs, Page Flags/Comments/Ratings, Quick Note, Requests, Social Activity, User/Group Statistics, Wiki.This suite may contain modules that depend on Foundation suite modules. This suite is available in the Liferay bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/104880301','7.0.40',1),('20d4e894-a046-fddb-c99b-07e3c5d49b47',30191,20115,0,NULL,'2018-07-02 15:51:19.487000','2018-07-02 15:51:19.487000',15188537,'Liferay Sharepoint Connector','The SharePoint Connector app lets users interact with files in SharePoint libraries from within a Liferay Documents and Media library. This app makes available in the Documents and Media Library a SharePoint repository type for mounting SharePoint libraries. Within such a repository, users can view, add, modify, and move files and folders. The app propagates actions performed in the SharePoint library to the SharePoint repository in the Liferay Documents and Media Library, and vice versa.Here are some of the app\'s capabilities:* Reading/writing documents and folders* Document check-in, check-out, and undo check-out* Downloading documents* Moving folders and documents within the repository* Getting revision history* Reverting to a revisionThe current version of the app requires Liferay DXP Digital Enterprise 7.0+ and works with both SharePoint 2013 and SharePoint 2010.Connect your Liferay Digital Experience Platform with your SharePoint libraries today!The current version of this app depends on modules in the Liferay Collaboration App Suite and the Liferay Foundation App Suite.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/77084635','3.0.3',0),('afb4507d-9507-1f0f-5119-b52ff63e0a34',30193,20115,0,NULL,'2018-07-02 15:51:19.491000','2018-07-02 15:51:19.491000',74860500,'Liferay Static','The Static app contains an important group of extenders and utilities that Liferay statically installs before installing any dynamic OSGi modules. The app\'s functionality includes a log4j extender, an OSGi WAB extender, configuration utilities, OSGi deployment utilities, target platform indexing, and more.This suite is available in the Liferay bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/104880579','7.0.43',1),('83a91071-bc29-b42a-615f-62a62c511f24',30235,20115,0,NULL,'2018-07-02 15:51:19.586000','2018-07-02 15:51:19.586000',15100579,'Liferay IP Geocoder','The IP Geocoder app uses Max Mind\'s GeoIP City Database to locate your geological position, often in conjunction with other apps like the Google Maps app. IP geolocation can be performed by associating a geographic location with the user\'s Internet Protocol (IP) address. Geolocation usually works by automatically looking up an IP address on a WHOIS service and retrieving the registrant\'s geographic location.This app will appear in your Applications menu once installed.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/92609700','3.0.1',0),('6723e4a2-313d-66ca-1350-94ea26a2b67f',30240,20115,0,NULL,'2018-07-02 15:51:19.595000','2018-07-02 15:51:19.595000',74593865,'Liferay Forms and Workflow','Apps and Features: Calendar, Dynamic Data Lists, Dynamic Data Mapping, Forms, Polls, WorkflowAn increase in productivity means you\'re saving time and effort; you’re becoming more efficient. The Forms and Workflow apps help you do that by giving you built-in calendars and the ability to create your own forms and list applications. These are powerful, flexible apps that can be quickly leveraged for basic tasks, or carefully configured and mastered to perfect business processes.Need a quick survey or complex Sign Up form? Use the Liferay Forms app and make any forms you want. If there\'s a forms feature you need, this app probably has it.Maybe you need an entire list application, and you need it today. Dynamic Data Lists lets you do it without any developer expertise.Do you need personal calendars for your users, and/or site calendars? Do you need the calendar to be highly configurable? Use the Calendar app.Would you like to initiate a review process when new content, or any new asset, is created? The Kaleo Workflow Engine lets you send any asset through review before it gets published.Want to quickly get the opinion of your users on something? The Polls app is extremely easy to use. This suite may contain modules that depend on Foundation suite modules. This suite is available in the Liferay bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/104880123','7.0.40',1),('a758ccd0-3caa-73f3-b360-8be9a8ab9e5c',30302,20115,0,NULL,'2018-07-02 15:51:19.710000','2018-07-02 15:51:19.710000',31709100,'Liferay Sync Connector','Liferay Sync Connector 4.1.1 requires the installation of the Liferay Digital Enterprise 7.0 Fix Pack 19 or higher.The Sync Connector app lets users connect to their portals from the Liferay Sync desktop and mobile clients. It also lets administrators control how these clients interact with their portal. Once installed, the Sync Connector app provides the portal services required by the clients. No additional portal configuration is required. However, portal administrators can use the Sync Admin portlet installed with this app to control what sites are available for Sync. They can also use this portlet to disable Sync across the portal.After installing, the Sync Admin portlet is available in the Control Panel’s Configuration section.Please visit http://www.liferay.com/products/liferay-sync/features for more information on downloading the Liferay Sync desktop and mobile clients. Liferay Sync is compatible with Windows, Mac OS, iOS, and Android. The Sync Connector app requires version 3.0+ of the Sync desktop or mobile client, as well as the IP Geocoder and OAuth Provider apps.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/91191843','4.1.1',0),('890fda21-94cc-3d12-6c8b-3e94994c54a5',30308,20115,0,NULL,'2018-07-02 15:51:19.720000','2018-07-02 15:51:19.720000',74594163,'Liferay Web Experience','Apps and Features: Application Display Templates, Asset Publisher, Breadcrumb, Categories, Google Analytics, IFrame, Language, Navigation, Recycle Bin, Related Content, RSS, Search, Site and Page Templates, Sitemap, Sites Directory, Tags, Web Content, XSL ContentThe Web Experience suite provides features that help create, manage, and track content. The Web Content app lets you express your ideas and plans by creating dynamic content that can be structured to fit a specific design. You can also use templates to design web content for an appealing look and feel. Templates can be used in other realms of Liferay besides web content too. Site and Page Templates let you reproduce sites and pages that have been organized to address specific needs. Application Display Templates are another type of Liferay template that lets you develop the look and feel of applications. The IFrame and XSL Content apps let you create other forms of content by embedding HTML and XSL content on a site page.As administrators create content, organization is critical to keeping things tidy in your site. The suite\'s Tags and Categories apps lets you organize your web content to follow an organizational hierarchy. These organizational apps also aid with Liferay\'s Search app, which you can utilize to dynamically search content you\'ve created. The suite\'s Navigation, Breadcrumb, Sitemap, and Sites Directory apps aid in Liferay\'s organizational structure, providing a top level view of sites and their pages that have been created. To promote content in an organized way, the Asset Publisher and Related Assets apps broadcast assets and their related information. Inevitably, some content you create becomes stale and requires removal; the Recycle Bin app lets you delete content, with the option to restore that content.As a site accumulates content, administrators should have a way to easily track their content. The Google Analytics app allows the use of Google\'s tool set for analyzing site traffic data. The suite\'s RSS app provides a web feed used to publish updated works such as blog entries and news articles. The suite\'s Language app provides a way to change Liferay\'s language to cater to your site\'s international audience. This suite\'s content creation and organization focus lets site administrators develop dynamic content, organize content for easy managing, and track content for ideas to better improve the content creation process in the future.This suite may contain modules that depend on Foundation suite modules. This suite is available in the Liferay bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/104880701','7.0.42',1),('1d332032-2d02-fd91-ae8a-1785b4c800af',30430,20115,0,NULL,'2018-07-02 15:51:19.996000','2018-07-02 15:51:19.996000',15098914,'Liferay Documentum Connector','You can use this hook to integrate Liferay and its Documents and Media functionality with Documentum. Before configuring Documentum, you must install this app. To use this hook, set dl.hook.impl=liferay.documentum.hook.DocumentumHook. If you are using Documentum, there are additional settings that must be configured in the ${liferay_home}/documentum-hook/docroot/WEB-INF/src/dfc.properties and documentum-hook/docroot/WEB-INF/src/portlet.properties files. This app installs as a new Repository Type option in the Documents and Media Library.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/94855250','3.0.2',0),('29de4821-1c90-9dc7-d83a-90f9e3bf8b0c',30432,20115,0,NULL,'2018-07-02 15:51:20.003000','2018-07-02 15:51:20.003000',45261909,'Liferay OAuth Provider','The OAuth app authorizes third-party applications to interact with a Liferay user\'s applications. OAuth is a \"handshake mechanism\" that redirects Liferay users to a service provider, where they can tell the service provider to allow a plugin limited access to their Liferay accounts. This keeps the plugin from storing any of the user\'s credentials, avoiding security risks. The OAuth app provides two portlets that allow for registering a plugin for OAuth and authorizing OAuth users, respectively. Once the plugin is registered for OAuth and accessed, the user is redirected to the service provider to delegate user authentication.This app will appear in your Control Panel and My Account menu.','Security','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/77134116','3.0.0',0),('2f304054-9811-2132-665d-ac3105019180',30436,20115,0,NULL,'2018-07-02 15:51:20.014000','2018-07-02 15:51:20.014000',74593955,'Liferay Foundation','Apps and Features: System Settings, Web Content Editors, Web Content Template Languages, Theme Tools, Mobile Device Rules, Facebook Authentication, LDAP Authentication, NTLM Authentication, OpenID Authentication, OpenSSO Authentication, Remote Authentication (AuthVerifiers), SSO-based Authentication, Token-based Authentication, Portal Scripting, Elasticsearch Support, Solr Support, Documents and Media Store Implementations, and more.The Foundation suite provides applications and features that extend the functionality provided by Liferay\'s core. Much of the functionality that belonged to Liferay\'s core prior to Liferay 7 has been extracted into the modules of the Foundation suite. The authentication modules provide a variety of mechanisms for allowing users and remote applications to authenticate to Liferay. The LDAP Authentication module allows administrators to establish connections to one or more LDAP directories from which users can be imported or exported. The SSO modules allow users to authenticate to Liferay using a variety of single-sign on solutions. The Token-based Authentication module allows users or remote applications to authenticate to Liferay without a password. The Scripting modules allow scripts to be written to invoke Liferay\'s API in several languages including Groovy, Beanshell, Python, Ruby, and JavaScript.This suite is available in the Liferay bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/104881054','7.0.42',1),('9bdd5a10-f46b-c69d-e928-b6f61ee219fa',30653,20115,0,NULL,'2018-07-02 15:51:20.420000','2018-07-02 15:51:20.420000',25019275,'Liferay Marketplace','Liferay Marketplace is an integral part of the Liferay platform experience for all users. Enterprise subscribers also have exclusive access to Liferay Subscription Apps through the Liferay Marketplace. Log in with your Liferay account to browse hundreds of apps to help you build your business or technical solution.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/90760637','9',1),('b819bc61-afcb-be06-fcdc-ebb0377b2ea3',30659,20115,0,NULL,'2018-07-02 15:51:20.429000','2018-07-02 15:51:20.429000',71774947,'Liferay Connected Services Client','The Liferay Connected Services app connects your Liferay instance to Liferay Connected Services (LCS). LCS is an online service that offers fix pack management, server metrics, Liferay subscription management, and more. LCS provides single-click download and install of fix packs, even across a cluster. The server metrics service provides information on how your Liferay instance is running. This includes data on pages, portlets, memory usage, JVM performance, and more. Note that the fix pack and subscription management features require an active Liferay subscription.In order to offer the best service possible, we store the following information about your servers on the LCS servers: patches installed on each server, portal.properties (except sensitive data), JVM metrics, portal and portlet metrics, cache and server metrics. Sensitive data is defined as any key-value pair containing usernames or passwords.This app will appear in your Control Panel once installed.Liferay Connected Services Client requires the installation of the Liferay Portal 6.2 EE SP15+.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/103475851','4.1.3',0); /*!40000 ALTER TABLE `Marketplace_App` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Marketplace_Module` -- DROP TABLE IF EXISTS `Marketplace_Module`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Marketplace_Module` ( `uuid_` varchar(75) DEFAULT NULL, `moduleId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `appId` bigint(20) DEFAULT NULL, `bundleSymbolicName` varchar(500) DEFAULT NULL, `bundleVersion` varchar(75) DEFAULT NULL, `contextName` varchar(75) DEFAULT NULL, PRIMARY KEY (`moduleId`), KEY `IX_5848F52D` (`appId`,`bundleSymbolicName`(255),`bundleVersion`), KEY `IX_C6938724` (`appId`,`contextName`), KEY `IX_DD03D499` (`bundleSymbolicName`(255)), KEY `IX_F2F1E964` (`contextName`), KEY `IX_896A375A` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Marketplace_Module` -- LOCK TABLES `Marketplace_Module` WRITE; /*!40000 ALTER TABLE `Marketplace_Module` DISABLE KEYS */; INSERT INTO `Marketplace_Module` VALUES ('7381ed0d-0aee-fd4e-c0f8-5a8646c1e91b',30105,20115,30104,'com.liferay.announcements.api','1.0.1',NULL),('572d2253-870a-8f6a-c323-3c14fd4b734a',30106,20115,30104,'com.liferay.announcements.web','2.0.7','announcements-web'),('54df3756-920d-f317-cd35-db51d9eaf973',30107,20115,30104,'com.liferay.blogs.api','3.1.0',NULL),('f85ff410-31a7-171e-f788-282b3beec57f',30108,20115,30104,'com.liferay.blogs.editor.configuration','1.0.10',NULL),('286b330c-fdb9-a270-e21b-448ce31f5452',30109,20115,30104,'com.liferay.blogs.item.selector.api','1.1.0',NULL),('2ca8b997-7e9d-18eb-0595-7bd83dd57c5c',30110,20115,30104,'com.liferay.blogs.item.selector.web','2.0.0','blogs-item-selector-web'),('823ccb5f-f75f-555b-032e-88a491174e87',30111,20115,30104,'com.liferay.blogs.layout.prototype','2.0.13',NULL),('7b49d23c-701f-065f-e0a1-b0ab8cb1e0c6',30112,20115,30104,'com.liferay.blogs.recent.bloggers.api','1.0.1',NULL),('3014c458-f46c-b603-687e-7c6d885cf659',30113,20115,30104,'com.liferay.blogs.recent.bloggers.web','2.0.0','blogs-recent-bloggers-web'),('ece71a56-62a1-0cac-6917-6af4f6abc47e',30114,20115,30104,'com.liferay.blogs.service','1.1.11',NULL),('0f0eb4e4-59bb-0fda-f310-21f4ab3aec48',30115,20115,30104,'com.liferay.blogs.web','2.0.3','blogs-web'),('1e587579-2d08-24f2-0318-ee828da966f1',30116,20115,30104,'com.liferay.bookmarks.api','2.0.11',NULL),('bbb6e868-08ee-ca91-07e2-22a1d3056c5b',30117,20115,30104,'com.liferay.bookmarks.service','1.1.24',NULL),('196b309a-ff6a-b4cb-28ba-da1c5e5da4c3',30118,20115,30104,'com.liferay.bookmarks.web','1.0.34','bookmarks-web'),('e9067ff8-d7eb-b69f-7199-cf07c38ee14e',30119,20115,30104,'com.liferay.comment.api','2.0.1',NULL),('700459c5-c76a-ef5b-99be-fc236faa7b09',30120,20115,30104,'com.liferay.comment.editor.configuration','1.0.2',NULL),('9815b1c8-3329-a5e5-c54a-9913e1e17abf',30121,20115,30104,'com.liferay.comment.page.comments.web','1.0.11',NULL),('dd08f240-e716-84ba-4c8c-4f68e7913e8c',30122,20115,30104,'com.liferay.comment.ratings.definition','2.0.2',NULL),('cccd5070-492a-5e60-fc70-1b2477508081',30123,20115,30104,'com.liferay.comment.sanitizer','2.0.5',NULL),('a69ee646-8285-cd92-8373-05799bfa561d',30124,20115,30104,'com.liferay.comment.web','2.0.4','comment-web'),('0244d68c-b38a-4e2f-f52f-2683403a3bfb',30125,20115,30104,'com.liferay.directory.web','1.0.21',NULL),('aaac944b-048e-b1e6-1072-809ee436012c',30126,20115,30104,'com.liferay.document.library.api','3.4.0',NULL),('40313af3-1182-c32b-f5b7-e48d55417d89',30127,20115,30104,'com.liferay.document.library.item.selector.web','1.0.9','document-library-item-selector-web'),('783c7187-623b-24c0-cb12-158f5e21ed57',30128,20115,30104,'com.liferay.document.library.layout.set.prototype','2.0.13',NULL),('dc4cea0a-e4b1-98ba-d7f5-2b15c9071ead',30129,20115,30104,'com.liferay.document.library.repository.authorization.api','1.0.2',NULL),('2f49f5cd-1989-bca2-f2d7-3ed801561ad3',30130,20115,30104,'com.liferay.document.library.repository.cmis.api','1.1.11',NULL),('27442392-2f7a-2a17-8a4d-4bbd355ce6f3',30131,20115,30104,'com.liferay.document.library.repository.cmis.impl','2.0.27',NULL),('c88a1b43-11e2-0673-dd2a-617fa84847e7',30132,20115,30104,'com.liferay.document.library.repository.external.api','1.0.2',NULL),('9dc42c16-0de3-2b2a-5a17-5fa91b4fe584',30133,20115,30104,'com.liferay.document.library.repository.search','3.0.2',NULL),('3ba1ffe9-ce60-9eea-bcd7-5aff8fb76745',30134,20115,30104,'com.liferay.document.library.service','2.0.6',NULL),('ecb71dc5-42f9-70ac-7a1d-2e84c6eee84b',30135,20115,30104,'com.liferay.document.library.web','2.0.5','document-library-web'),('09a1fdf1-a35f-c2b0-6836-91a6d2ce5ec9',30136,20115,30104,'com.liferay.flags.api','2.0.9',NULL),('603be5de-e191-2459-9154-d4090d6162f8',30137,20115,30104,'com.liferay.flags.service','2.0.12',NULL),('774ba1e5-c7b2-ae6b-41ea-0def156df90c',30138,20115,30104,'com.liferay.flags.taglib','2.0.10','flags-taglib'),('b720eff4-8fe9-563a-3ecd-ceef55e2aa93',30139,20115,30104,'com.liferay.flags.web','2.0.13','flags-web'),('e71fa7c9-0e58-5e66-d45d-a3b558317723',30140,20115,30104,'com.liferay.image.uploader.web','1.0.17',NULL),('d9d4f602-15c9-caa5-f251-714b1bf0d81f',30141,20115,30104,'com.liferay.invitation.invite.members.api','2.1.3',NULL),('1ac92af8-fad1-a1f8-920e-3911c853ae2f',30142,20115,30104,'com.liferay.invitation.invite.members.service','3.0.4',NULL),('d2c0fe77-47b5-37cc-e049-c9fe9ee60864',30143,20115,30104,'com.liferay.invitation.invite.members.web','1.0.28','invitation-invite-members-web'),('bd6d3d3e-a00d-e0d5-4b9b-e01d1a8635a5',30144,20115,30104,'com.liferay.item.selector.api','2.4.2',NULL),('9a7b88f7-4338-433d-547d-bfc4c306fd1a',30145,20115,30104,'com.liferay.item.selector.criteria.api','2.1.1',NULL),('9bf0bddf-3d04-087b-7771-794e5ebee39c',30146,20115,30104,'com.liferay.item.selector.editor.configuration','2.0.4',NULL),('2d545e0e-0d49-d400-e9a9-595e57566e79',30147,20115,30104,'com.liferay.item.selector.taglib','1.1.15','item-selector-taglib'),('bf2cc482-a4de-b7f6-08e3-cee931fbceb1',30148,20115,30104,'com.liferay.item.selector.upload.web','2.0.8','item-selector-upload-web'),('475753bc-fcbe-78a2-4d26-01a9d8da4c75',30149,20115,30104,'com.liferay.item.selector.url.web','2.0.8','item-selector-url-web'),('3ccdcd42-c795-17be-4150-aa7d2f01c02d',30150,20115,30104,'com.liferay.item.selector.web','3.0.6',NULL),('941dcc49-f4d7-423c-bc6a-82824c0c683a',30151,20115,30104,'com.liferay.mentions.api','2.2.1',NULL),('874d0b15-55e5-3fb2-50b6-f8999f8545ed',30152,20115,30104,'com.liferay.mentions.service','2.0.16',NULL),('3a16d3be-88ef-d227-257a-d57cc8746643',30153,20115,30104,'com.liferay.mentions.web','2.0.3','mentions-web'),('758a4ddb-2e3f-5370-d310-6ffdbc7810df',30154,20115,30104,'com.liferay.message.boards.api','3.1.7',NULL),('2077671b-801b-1cf8-8289-79185decb282',30155,20115,30104,'com.liferay.message.boards.comment','2.0.18',NULL),('27e979ee-b311-2ce1-c7c3-fe660ef274d5',30156,20115,30104,'com.liferay.message.boards.editor.configuration','1.0.2',NULL),('3af5ad2b-8cc3-5a45-73d9-3e6c6201c000',30157,20115,30104,'com.liferay.message.boards.layout.set.prototype','1.0.14',NULL),('3102fd8f-b426-b299-1db3-96e13e7f534e',30158,20115,30104,'com.liferay.message.boards.parser.bbcode','2.0.12',NULL),('f6793815-bd16-1e54-f080-d898514fed6b',30159,20115,30104,'com.liferay.message.boards.service','1.0.16',NULL),('ff0686af-fc72-10f1-29bd-b07d97ca4578',30160,20115,30104,'com.liferay.message.boards.web','1.2.39','message-boards-web'),('89a2391e-f7bf-7ed2-750a-01ec95c1c129',30161,20115,30104,'com.liferay.microblogs.api','2.1.3',NULL),('cda5ef44-96c5-6799-16d3-58084d685e30',30162,20115,30104,'com.liferay.microblogs.service','2.1.15',NULL),('c0b18e43-3472-f639-2093-7d5d6e1f2ede',30163,20115,30104,'com.liferay.microblogs.web','2.0.25','microblogs-web'),('bc28b431-14fc-7e94-79b5-0e5c229db898',30164,20115,30104,'com.liferay.notifications.web','1.0.30','notifications-web'),('15876b68-bf69-e2bb-04db-9a6934f5e2db',30165,20115,30104,'com.liferay.quick.note.web','2.0.5',NULL),('deafd37e-365e-f87f-9305-65b2596783cb',30166,20115,30104,'com.liferay.ratings.api','2.0.1',NULL),('e9e2d0bf-46ca-9f31-d9b4-9172e7c88c15',30167,20115,30104,'com.liferay.ratings.page.ratings.web','2.0.9',NULL),('7ce5f60c-159d-65a5-7fef-990dfc7af201',30168,20115,30104,'com.liferay.ratings.service','1.0.10',NULL),('84770a87-52f9-67c8-94da-f701ef5fdc50',30169,20115,30104,'com.liferay.recent.documents.web','2.0.15',NULL),('4f6aec65-ac65-c603-bbc4-8ec76295e1a2',30170,20115,30104,'com.liferay.social.activities.api','1.0.1',NULL),('8688c5b6-74ac-560d-7891-1100f8ed06af',30171,20115,30104,'com.liferay.social.activities.web','2.0.7','social-activities-web'),('efd1f6c3-4ec1-b918-8dfc-6142439fd150',30172,20115,30104,'com.liferay.social.activity.api','1.0.6',NULL),('07ce52f8-fcfd-0001-46c9-39d076ee11c8',30173,20115,30104,'com.liferay.social.activity.web','2.0.11','social-activity-web'),('4963135b-32d8-361b-6e7e-a36dbb43c28c',30174,20115,30104,'com.liferay.social.group.statistics.web','2.0.13','social-group-statistics-web'),('43804836-e038-377b-6f5b-56dc0f12ebed',30175,20115,30104,'com.liferay.social.requests.web','1.0.7',NULL),('9cb0f16e-8f02-91f2-eea0-0fbbbedca94e',30176,20115,30104,'com.liferay.social.user.statistics.api','1.0.1',NULL),('53b95a94-7246-c3d3-274c-8551d1fc365e',30177,20115,30104,'com.liferay.social.user.statistics.web','3.0.3','social-user-statistics-web'),('5f5ae940-9535-11e1-8754-9e6f108fd92f',30178,20115,30104,'com.liferay.upload.api','1.0.1',NULL),('cb4fe0f5-6053-d521-3eff-2759650696c4',30179,20115,30104,'com.liferay.upload.web','1.0.6',NULL),('db0cbc2a-9b42-e746-154e-28448cd85c4e',30180,20115,30104,'com.liferay.wiki.api','2.5.3',NULL),('9854fb18-1672-4ede-cffa-bf571d8861b6',30181,20115,30104,'com.liferay.wiki.editor.configuration','1.0.9',NULL),('74c5d592-b45e-f103-613e-25cc1cf2b342',30182,20115,30104,'com.liferay.wiki.engine.creole','2.0.16','wiki-engine-creole'),('ba283341-563a-ea9d-e498-67598f6f5d2c',30183,20115,30104,'com.liferay.wiki.engine.html','2.0.6','wiki-engine-html'),('35ffaf1b-e41c-a2b4-9636-89e5f86e5c0a',30184,20115,30104,'com.liferay.wiki.engine.input.editor.common','3.0.1','wiki-engine-input-editor-common'),('9ae1c52a-f2d1-a14c-6e49-ec88739d1628',30185,20115,30104,'com.liferay.wiki.engine.lang','1.0.4',NULL),('a2fc968c-36d7-1e7d-4722-a4066dddc79a',30186,20115,30104,'com.liferay.wiki.engine.text','2.0.6','wiki-engine-text'),('adc989ba-a621-2e9d-93ef-a054e3253636',30187,20115,30104,'com.liferay.wiki.layout.prototype','1.0.16',NULL),('056d0f48-4d58-6074-0c57-ddca8087de31',30188,20115,30104,'com.liferay.wiki.navigation.web','2.0.13','wiki-navigation-web'),('d3dd95a1-a5d1-d58b-e02d-9a25cd6151d4',30189,20115,30104,'com.liferay.wiki.service','1.6.21',NULL),('9a1767ce-5b1a-94a8-9d41-d3bf6511024a',30190,20115,30104,'com.liferay.wiki.web','3.0.10','wiki-web'),('5fe62df9-0825-dcd0-2553-5f2df94f215c',30192,20115,30191,'Liferay Sharepoint Connector-sharepoint-hook-wrapper','7.0.10.4',NULL),('49a83f73-ca01-4042-d711-09e4fa843bbd',30194,20115,30193,'com.liferay.modules.compat','2.0.7',NULL),('6152431a-8b23-eaac-2a05-231a3b1c0b70',30195,20115,30193,'com.liferay.osgi.felix.file.install.configuration.cleaner','1.0.3',NULL),('6b314a07-e72a-76c3-988b-4714cad7f91e',30196,20115,30193,'com.liferay.osgi.util','3.2.0',NULL),('5f824018-19ee-4f55-22de-334bb7a3f8e5',30197,20115,30193,'com.liferay.portal.bundle.blacklist','1.1.4',NULL),('43add950-8dea-26d8-40d5-8192daad5fca',30198,20115,30193,'com.liferay.portal.classloader.tracker','1.0.2',NULL),('709654dc-7001-2c1d-1c86-5586a1c3cb1c',30199,20115,30193,'com.liferay.portal.component.blacklist.api','1.0.1',NULL),('6e724248-3f8c-32f6-89df-7110ff2e264b',30200,20115,30193,'com.liferay.portal.component.blacklist.impl','1.0.2',NULL),('2d63420f-ef8b-075b-f236-683335da60dd',30201,20115,30193,'com.liferay.portal.configuration.metatype','2.0.11',NULL),('0c3cf601-fdce-c683-3335-f1e07594a56f',30202,20115,30193,'com.liferay.portal.configuration.persistence','2.1.1',NULL),('20cfd608-eb07-1402-bc1f-90aa3310f6c3',30203,20115,30193,'com.liferay.portal.log4j.extender','2.0.5',NULL),('6705ca99-916b-5a04-c611-fa25747b173f',30204,20115,30193,'com.liferay.portal.lpkg.deployer','2.1.6',NULL),('08e5bdc6-826e-e6eb-6a8b-fb917c03ea4e',30205,20115,30193,'com.liferay.portal.osgi.web.portlet.tracker','2.0.13',NULL),('5fb258e4-e669-65f7-91b9-3f96c8b19f89',30206,20115,30193,'com.liferay.portal.osgi.web.servlet.context.helper','2.1.15',NULL),('f44f5503-ff31-05fb-a4e2-3997b48225e4',30207,20115,30193,'com.liferay.portal.osgi.web.servlet.jsp.compiler','2.0.28',NULL),('88a9610a-30d6-12b9-8374-14a7df61b837',30208,20115,30193,'com.liferay.portal.osgi.web.wab.extender','2.0.27',NULL),('8733a43c-05b9-b1c7-b55e-7aeaca4f7db6',30209,20115,30193,'com.liferay.portal.osgi.web.wab.generator','2.1.43',NULL),('62e192b2-daf2-6b39-0966-c30e7418ba6b',30210,20115,30193,'com.liferay.portal.osgi.web.wab.reference.support','1.0.7',NULL),('4b2b2272-3f8d-f52e-349b-2b28e7bd881d',30211,20115,30193,'com.liferay.portal.profile.api','1.0.1',NULL),('117eecd8-fa7e-fbad-c736-a1e9a9cd6048',30212,20115,30193,'com.liferay.portal.profile.impl','1.0.2',NULL),('dcc445dc-6721-ee8e-5841-7f7fdf080739',30213,20115,30193,'com.liferay.portal.target.platform.indexer','4.0.5',NULL),('6a4f5263-8d20-4e27-c913-4db25d442d84',30214,20115,30193,'com.sun.el.javax.el','3.0.0',NULL),('3c65adaf-c5c6-e573-e38a-daec1f170d05',30215,20115,30193,'javax.servlet.jsp-api','2.3.2.b01',NULL),('2fc66cb3-ea7a-f556-c097-55f5f6788d47',30216,20115,30193,'javax.servlet.jsp.jstl','1.2.3.LIFERAY-PATCHED-2',NULL),('70d7ef62-39c9-d120-9f12-d0c17981d8b8',30217,20115,30193,'javax.servlet.jsp.jstl-api','1.2.1',NULL),('c57db3e9-2dfb-6866-b2d0-c29a445ced4f',30218,20115,30193,'org.apache.commons.fileupload','1.3.2',NULL),('c8ee17b0-0e51-d01e-642d-908a979a71d7',30219,20115,30193,'org.apache.commons.io','2.2.0',NULL),('6d03efad-8923-184a-6702-921f30fcd1af',30220,20115,30193,'org.apache.felix.bundlerepository','2.0.2.LIFERAY-PATCHED-1',NULL),('c73f1f92-77cd-3e19-e5ea-ffd7f8cd58f5',30221,20115,30193,'org.apache.felix.configadmin','1.8.8',NULL),('73a3ef32-84ce-380e-147c-21dbfa5aa3cb',30222,20115,30193,'org.apache.felix.dependencymanager','3.2.0',NULL),('c04a68e7-c5df-28ab-123e-f03b5139da50',30223,20115,30193,'org.apache.felix.dependencymanager.shell','3.2.0',NULL),('10b3e925-7f79-2954-8ef4-1a49ab867151',30224,20115,30193,'org.apache.felix.eventadmin','1.4.6',NULL),('a4ceb366-30c6-ca0c-49bb-bf2ca438e397',30225,20115,30193,'org.apache.felix.fileinstall','3.5.4.LIFERAY-PATCHED-2',NULL),('03e5f5f2-6aae-2733-0fa6-a7f5b9c2534a',30226,20115,30193,'org.apache.felix.gogo.command','0.12.0',NULL),('66f5f3b6-0b6f-d870-cbfa-f36b0c38884b',30227,20115,30193,'org.apache.felix.gogo.runtime','0.10.0',NULL),('dcffafbb-f9f8-afca-03b9-b6476192b502',30228,20115,30193,'org.apache.felix.gogo.shell','0.10.0',NULL),('b2dcea7d-bcee-44d2-aeea-573c90e40592',30229,20115,30193,'org.apache.felix.scr','2.0.6',NULL),('c98b7bf2-c05f-4904-ccb3-1d56ae430654',30230,20115,30193,'org.eclipse.equinox.console','1.1.100.v20141023-1406',NULL),('a86748e4-2f15-4a4e-b6b0-63683a6326d9',30231,20115,30193,'org.eclipse.equinox.http.servlet','1.2.2.v20180117-2202',NULL),('c3ad5e08-49fc-67ff-dd3a-6cf31e603db9',30232,20115,30193,'org.eclipse.equinox.metatype','1.4.200.v20150715-1528',NULL),('a55a20ab-cf5c-d278-cf2f-9513b8a03365',30233,20115,30193,'org.osgi.service.http','3.5.0.LIFERAY-PATCHED-2',NULL),('96d55ab4-734c-94d6-6728-1dcd3c351814',30234,20115,30193,'org.osgi.service.metatype','1.3.0.201505202024',NULL),('6e5ed09f-ca02-0819-e618-e15cdae29a6d',30236,20115,30235,'com.liferay.ip.geocoder','2.0.9',NULL),('d3c84681-f552-59b7-c00c-907746ed14d1',30237,20115,30235,'com.liferay.ip.geocoder.sample.web','2.0.5','ip-geocoder-sample-web'),('1fcc256d-3cc2-0ae5-be40-479fb4ae40f9',30238,20115,30235,'com.maxmind.geoip.api','1.2.14',NULL),('63ae3982-5e3b-af1e-e9f0-799ee66810cf',30239,20115,30235,'org.tukaani.xz','1.5.0',NULL),('1422f0c7-f3fb-2fcd-546c-0d612b02330e',30241,20115,30240,'com.liferay.calendar.api','2.3.1',NULL),('35e2e321-97c6-498d-b30a-a3d47ae0c4e9',30242,20115,30240,'com.liferay.calendar.service','2.7.0',NULL),('bbe14620-57e4-e81a-3230-685faa4f743f',30243,20115,30240,'com.liferay.dynamic.data.lists.api','2.1.8',NULL),('99c307aa-b2f7-6546-bdd1-8eb98cd891e9',30244,20115,30240,'com.liferay.dynamic.data.lists.service','1.1.46',NULL),('b85c62b2-a1d1-40db-15b7-15396e33f209',30245,20115,30240,'com.liferay.dynamic.data.mapping.api','3.8.0',NULL),('6c1b497d-52b0-4542-75ce-a097e7ef2533',30246,20115,30240,'com.liferay.dynamic.data.mapping.data.provider','2.0.3',NULL),('e1e04985-3aae-35e6-b52d-f6e502511a6a',30247,20115,30240,'com.liferay.dynamic.data.mapping.data.provider.impl','1.0.6',NULL),('f9dfcddb-6e60-8d1b-8d61-00114d96f64f',30248,20115,30240,'com.liferay.dynamic.data.mapping.expression','2.0.8',NULL),('9ed03828-cf2d-6757-49da-9e2718ff9edc',30249,20115,30240,'com.liferay.dynamic.data.mapping.form.evaluator','2.0.4',NULL),('768d3f17-ce61-90d5-1c2c-962d29da4ee3',30250,20115,30240,'com.liferay.dynamic.data.mapping.form.field.type','2.0.10',NULL),('0b2b449d-6c41-e829-2fd8-ad9d3c33498e',30251,20115,30240,'com.liferay.dynamic.data.mapping.form.values.factory','2.0.9',NULL),('ea4007b9-9432-aa3f-59ad-7b2ffc48ff20',30252,20115,30240,'com.liferay.dynamic.data.mapping.form.values.query','2.0.12',NULL),('ef6b4f56-e3d2-9909-4889-1da33247e0eb',30253,20115,30240,'com.liferay.dynamic.data.mapping.io','2.0.14',NULL),('d32a4ed1-c7e8-1100-e96a-79c5d6893c81',30254,20115,30240,'com.liferay.dynamic.data.mapping.lang','2.0.7',NULL),('b01326cc-a1bf-cc69-2997-0e95c037f9d1',30255,20115,30240,'com.liferay.dynamic.data.mapping.service','2.5.0',NULL),('437468de-74e1-44b4-3781-019230cb682e',30256,20115,30240,'com.liferay.dynamic.data.mapping.validator','2.1.7',NULL),('6c632e91-427a-ceea-a955-b693c9700f32',30257,20115,30240,'com.liferay.polls.api','4.0.2',NULL),('1dc3ff1b-8171-0281-a552-e2b459777107',30258,20115,30240,'com.liferay.polls.service','3.0.24',NULL),('9757e9b9-6a45-7e5f-0152-2034dbb71a1f',30259,20115,30240,'com.liferay.portal.reports.engine.api','3.0.1',NULL),('d31a37ea-31cf-1384-12bd-344065c747ab',30260,20115,30240,'com.liferay.portal.rules.engine.api','2.0.5',NULL),('6f4e246e-88b8-7c6b-3ff6-22d26cb38712',30261,20115,30240,'com.liferay.portal.rules.engine.wiring','2.0.3',NULL),('f34014e9-0d46-17f1-917e-4d935e4be917',30262,20115,30240,'com.liferay.portal.workflow.definition.link.web','1.0.9',NULL),('b96d2e81-8cc3-e0b4-fd6b-f336dc986def',30263,20115,30240,'com.liferay.portal.workflow.instance.web','1.0.10',NULL),('f0bed3ba-ddef-6481-eaec-f838f6b409cb',30264,20115,30240,'com.liferay.portal.workflow.kaleo.api','2.2.1',NULL),('11723cae-e329-353c-7ac0-4d16a1ec7971',30265,20115,30240,'com.liferay.portal.workflow.kaleo.definition.api','2.1.0',NULL),('4088aa72-c6ec-bb16-4c7a-aca4beeab70d',30266,20115,30240,'com.liferay.portal.workflow.kaleo.definition.impl','2.0.11',NULL),('3de4053c-d245-e4d3-5437-c91e3d581de7',30267,20115,30240,'com.liferay.portal.workflow.kaleo.designer.api','1.0.5',NULL),('bed8767a-b16b-a4d9-18f1-c261e640f17e',30268,20115,30240,'com.liferay.portal.workflow.kaleo.designer.service','1.1.7',NULL),('4800c2e4-8bfd-b954-0755-3dba05b8016e',30269,20115,30240,'com.liferay.portal.workflow.kaleo.designer.web','1.0.26',NULL),('06bdd34a-4fba-5756-8fd2-484c11f63128',30270,20115,30240,'com.liferay.portal.workflow.kaleo.forms.api','1.1.3',NULL),('2cde194a-751e-a033-d9a4-5ec2b756dc90',30271,20115,30240,'com.liferay.portal.workflow.kaleo.forms.service','1.1.15',NULL),('e01032ed-99e3-7cb6-00c3-bfc28f1af09b',30272,20115,30240,'com.liferay.portal.workflow.kaleo.runtime.api','2.2.3',NULL),('0b7bf3fb-ca3e-e450-8208-ae686005e7ff',30273,20115,30240,'com.liferay.portal.workflow.kaleo.runtime.impl','2.0.20',NULL),('fb92b650-af2d-9e2b-e82a-5316e4510d59',30274,20115,30240,'com.liferay.portal.workflow.kaleo.runtime.integration.impl','1.0.14',NULL),('7046da66-cb19-10bd-e86c-1045c7d6e03e',30275,20115,30240,'com.liferay.portal.workflow.kaleo.runtime.scripting.impl','1.0.5',NULL),('d3a145ea-e16c-f0c5-bfbb-c2075b355220',30276,20115,30240,'com.liferay.portal.workflow.kaleo.service','2.0.34',NULL),('abee8d93-d72c-be5f-ccbe-913ce99e6f5a',30277,20115,30240,'com.liferay.portal.workflow.lang','2.0.7',NULL),('06d1024c-e391-68dc-68e6-dbaa9edc1af9',30278,20115,30240,'com.liferay.calendar.web','1.0.51','calendar-web'),('2034963c-02c1-e094-5716-43ba47ee36b1',30279,20115,30240,'com.liferay.dynamic.data.lists.form.web','2.0.11','dynamic-data-lists-form-web'),('b912bbeb-0814-4f04-d787-7dbc51a0ba6e',30280,20115,30240,'com.liferay.dynamic.data.lists.web','2.0.8','dynamic-data-lists-web'),('15c6dfba-a2d3-85d9-6f11-ce52dea1053b',30281,20115,30240,'com.liferay.dynamic.data.mapping.data.provider.web','1.0.13','dynamic-data-mapping-data-provider-web'),('25ed37ae-851a-6892-540f-a936d78c3a90',30282,20115,30240,'com.liferay.dynamic.data.mapping.form.renderer','2.1.15','dynamic-data-mapping-form-renderer'),('82e96755-3f44-d229-0476-2c5e63efa2cf',30283,20115,30240,'com.liferay.dynamic.data.mapping.taglib','2.1.10','dynamic-data-mapping-taglib'),('3827e95e-c914-070b-2899-06421c4eac2a',30284,20115,30240,'com.liferay.dynamic.data.mapping.type.captcha','2.0.7','dynamic-data-mapping-type-captcha'),('d0bd3351-f627-d0cc-f2bc-5d07d482ed1a',30285,20115,30240,'com.liferay.dynamic.data.mapping.type.checkbox','2.0.13','dynamic-data-mapping-type-checkbox'),('c6711dc2-04fe-ef62-6724-6e0905e2890f',30286,20115,30240,'com.liferay.dynamic.data.mapping.type.checkbox.multiple','1.0.6','dynamic-data-mapping-type-checkbox-multiple'),('f97a7cc9-c571-4a5d-9702-185f9f4c941a',30287,20115,30240,'com.liferay.dynamic.data.mapping.type.date','2.0.10','dynamic-data-mapping-type-date'),('fad7d9f8-d687-56c7-5e38-cf248ad08588',30288,20115,30240,'com.liferay.dynamic.data.mapping.type.editor','2.0.8','dynamic-data-mapping-type-editor'),('2f19f321-385f-dfdf-037b-85ec7c7bce95',30289,20115,30240,'com.liferay.dynamic.data.mapping.type.key.value','2.0.5','dynamic-data-mapping-type-key-value'),('cacdb04a-0b09-eefb-fa13-d59cef53246a',30290,20115,30240,'com.liferay.dynamic.data.mapping.type.options','2.0.11','dynamic-data-mapping-type-options'),('e1d7ef91-4fba-0f76-8128-bfee33da6c99',30291,20115,30240,'com.liferay.dynamic.data.mapping.type.paragraph','2.0.10','dynamic-data-mapping-type-paragraph'),('ca2cdc6b-6f84-bef2-4f8a-003fee5dd81e',30292,20115,30240,'com.liferay.dynamic.data.mapping.type.password','1.0.3','dynamic-data-mapping-type-password'),('e2fa4264-8010-5184-4e67-f91c5e37ac27',30293,20115,30240,'com.liferay.dynamic.data.mapping.type.radio','2.0.16','dynamic-data-mapping-type-radio'),('164981da-39c3-8224-928f-c2c9cf97396d',30294,20115,30240,'com.liferay.dynamic.data.mapping.type.select','2.0.15','dynamic-data-mapping-type-select'),('d8907614-887a-d2bc-0221-9df2607c86d0',30295,20115,30240,'com.liferay.dynamic.data.mapping.type.text','2.0.11','dynamic-data-mapping-type-text'),('9d7a36d0-4b53-3485-6447-dbc44cf3fa1a',30296,20115,30240,'com.liferay.dynamic.data.mapping.type.validation','2.0.7','dynamic-data-mapping-type-validation'),('b7c11cc8-97e9-507e-a7a3-4de0479a339c',30297,20115,30240,'com.liferay.dynamic.data.mapping.web','1.0.56','dynamic-data-mapping-web'),('eb88f81e-813a-5dfe-67ed-5c2dca4098e5',30298,20115,30240,'com.liferay.polls.web','2.0.22','polls-web'),('56698982-12f9-b4a0-4896-65f5c89f76b6',30299,20115,30240,'com.liferay.portal.workflow.definition.web','1.0.11','portal-workflow-definition-web'),('ba9d0a41-51ab-fa18-8e84-65cb4c857af0',30300,20115,30240,'com.liferay.portal.workflow.kaleo.forms.web','1.0.30','portal-workflow-kaleo-forms-web'),('33f6384a-94c9-cc12-6f18-f3c0ff94b5b6',30301,20115,30240,'com.liferay.portal.workflow.task.web','1.0.29','portal-workflow-task-web'),('efb920c0-29d2-f114-8efc-d9c88161007c',30303,20115,30302,'com.liferay.sync.api','3.0.0',NULL),('24c140f7-1098-3149-13fa-6ff4e958a3b0',30304,20115,30302,'com.liferay.sync.oauth','1.0.2',NULL),('b81a7fd9-3bb9-d33e-32f9-fda17522472c',30305,20115,30302,'com.liferay.sync.security','2.0.7',NULL),('08f25ede-c3c4-3d0d-ac23-b8b1207da05c',30306,20115,30302,'com.liferay.sync.service','1.5.2',NULL),('9b470c9d-0306-95c3-1095-b6e85e0a6ac0',30307,20115,30302,'com.liferay.sync.web','1.0.10',NULL),('7a14e885-9d6e-648a-3ed7-ff4a26621c69',30309,20115,30308,'com.liferay.application.list.api','2.2.4',NULL),('164dfdc0-eb1a-90e6-13bc-19d04d943659',30310,20115,30308,'com.liferay.application.list.taglib','2.0.11','application-list-taglib'),('84eb447e-0edf-808a-bfcb-a312ad3a7f91',30311,20115,30308,'com.liferay.application.list.user.personal.site.permissions','2.0.6',NULL),('93ac5381-bd6b-2f15-693b-a688dc7a00dd',30312,20115,30308,'com.liferay.asset.browser.web','1.0.23',NULL),('e470db59-cac3-346c-7688-935038a92f59',30313,20115,30308,'com.liferay.asset.categories.admin.web','1.1.13',NULL),('4d3710b2-4527-d7dc-0f90-bf1d2ec988a4',30314,20115,30308,'com.liferay.asset.categories.navigation.api','1.0.1',NULL),('5a6ba9e2-a678-8e06-9da4-273587637e72',30315,20115,30308,'com.liferay.asset.categories.navigation.web','2.0.5','asset-categories-navigation-web'),('a0ab446b-b767-39f7-f5a3-1c9e73144e01',30316,20115,30308,'com.liferay.asset.categories.service','1.0.11',NULL),('43d8789f-feca-cf71-d0cb-9105556b873a',30317,20115,30308,'com.liferay.asset.display.web','1.0.8',NULL),('f6103629-906b-0d22-1743-f00bed407a17',30318,20115,30308,'com.liferay.asset.entry.query.processor.custom.user.attributes','2.0.8','asset-entry-query-processor-custom-user-attributes'),('152200fc-9991-1cf9-17e3-80c9c3e3d6d3',30319,20115,30308,'com.liferay.asset.publisher.layout.prototype','1.0.14',NULL),('23bc2613-6edf-25fb-91df-e03b4d937844',30320,20115,30308,'com.liferay.asset.publisher.web','1.8.8','asset-publisher-web'),('d4f21ff7-bf23-21cf-5bc5-2076d378e040',30321,20115,30308,'com.liferay.asset.service','1.1.3',NULL),('0920676e-04a4-2b0a-1427-2a4537cbd372',30322,20115,30308,'com.liferay.asset.taglib','2.0.9','asset-taglib'),('69bb1c4e-7359-658a-7496-f4006c621819',30323,20115,30308,'com.liferay.asset.tags.admin.web','1.0.13',NULL),('2a2e9b3e-37ef-60cf-60a8-55dd507425ba',30324,20115,30308,'com.liferay.asset.tags.api','1.0.2',NULL),('aea45b9c-57d7-cbff-e310-cb5a10d47a38',30325,20115,30308,'com.liferay.asset.tags.compiler.web','2.0.6',NULL),('04e903a4-ad08-328f-c984-2b547bee5c0a',30326,20115,30308,'com.liferay.asset.tags.navigation.api','1.0.1',NULL),('86079254-807d-a07e-d496-1295c1fcc4f0',30327,20115,30308,'com.liferay.asset.tags.navigation.web','3.0.6','asset-tags-navigation-web'),('3cb1424c-0c44-58a9-4775-cbc7d402ac22',30328,20115,30308,'com.liferay.asset.tags.service','2.0.3',NULL),('fb60348b-b27e-ca47-a6ec-cdc1c6f823ea',30329,20115,30308,'com.liferay.asset.web','2.0.5',NULL),('3e27a7ca-7048-fcf9-2d4c-79c91c2bee4f',30330,20115,30308,'com.liferay.exportimport.api','2.2.1',NULL),('91ff2473-381f-7eb5-9ce6-9a9a8947360a',30331,20115,30308,'com.liferay.exportimport.resources.importer','2.0.1',NULL),('ee5a5806-dc74-b531-ac35-2ae1fc404e27',30332,20115,30308,'com.liferay.exportimport.service','4.0.6',NULL),('cdeadd14-5be8-16a7-6ed9-f9f1df0db66f',30333,20115,30308,'com.liferay.exportimport.web','1.0.36','exportimport-web'),('4b5eb8db-7c71-fa99-8c0b-a1aa8d483f1f',30334,20115,30308,'com.liferay.iframe.web','1.0.15','iframe-web'),('a6baec55-351a-2892-d24b-eaa3630ed09f',30335,20115,30308,'com.liferay.journal.api','2.12.6',NULL),('e5badb49-2db4-023a-88b8-526e970dfd92',30336,20115,30308,'com.liferay.journal.content.asset.addon.entry.comments','1.0.9','journal-content-asset-addon-entry-comments'),('a20a0704-9997-49a6-45fd-5194106d5c21',30337,20115,30308,'com.liferay.journal.content.asset.addon.entry.common','2.0.3',NULL),('97bbdd8f-898b-b454-e5ac-84762902d021',30338,20115,30308,'com.liferay.journal.content.asset.addon.entry.conversions','2.0.8','journal-content-asset-addon-entry-conversions'),('c239f468-52c8-3b21-eaae-313ce6de8e6c',30339,20115,30308,'com.liferay.journal.content.asset.addon.entry.locales','1.0.6','journal-content-asset-addon-entry-locales'),('91362c7c-cf5a-2374-ce0b-6bd1e7fa5251',30340,20115,30308,'com.liferay.journal.content.asset.addon.entry.print','2.0.4','journal-content-asset-addon-entry-print'),('fbe13502-2436-2a25-5bdb-d4ce727f2131',30341,20115,30308,'com.liferay.journal.content.asset.addon.entry.ratings','2.0.4','journal-content-asset-addon-entry-ratings'),('340cd768-af20-0ba4-9a09-ffcd8ba8d2c3',30342,20115,30308,'com.liferay.journal.content.asset.addon.entry.related.assets','2.0.4','journal-content-asset-addon-entry-related-assets'),('e1c79cdd-55e8-22fe-a0a6-9480e8f28d9e',30343,20115,30308,'com.liferay.journal.content.search.web','1.0.14','journal-content-search-web'),('5f704320-3154-7a69-e9c8-7fefa2c15ede',30344,20115,30308,'com.liferay.journal.content.web','2.0.6','journal-content-web'),('6f1c8685-85c9-8142-0c23-53d673a8ee31',30345,20115,30308,'com.liferay.journal.editor.configuration','1.0.2',NULL),('de2030a9-52ae-0588-cf8b-03f94797e7ae',30346,20115,30308,'com.liferay.journal.item.selector.api','1.0.2',NULL),('49a7b05d-561a-59b3-b748-492f9c818ace',30347,20115,30308,'com.liferay.journal.item.selector.web','1.0.4','journal-item-selector-web'),('7db78f65-1858-4a77-264d-b28aebdff44f',30348,20115,30308,'com.liferay.journal.lang','2.0.14',NULL),('ea42a1eb-8cc3-41ca-c241-e9648d9d566d',30349,20115,30308,'com.liferay.journal.ratings.definition','2.0.2',NULL),('870e9d71-4bb8-29e3-1787-7d02f649dbde',30350,20115,30308,'com.liferay.journal.service','3.24.4',NULL),('5368469e-8eaf-1cd3-7ef0-2e8ad5b6ed19',30351,20115,30308,'com.liferay.journal.taglib','1.0.6','journal-taglib'),('053b1a5a-080f-64c7-75fb-a5fb612eb3a2',30352,20115,30308,'com.liferay.journal.terms.of.use','2.0.25','journal-terms-of-use'),('e40a4034-0de6-56eb-bb80-5b7ddcd1a04d',30353,20115,30308,'com.liferay.journal.web','1.10.14','journal-web'),('8c718b97-6b37-8264-c61d-afd782959804',30354,20115,30308,'com.liferay.layout.admin.web','1.0.62','layout-admin-web'),('f19430b7-8f50-782d-57d5-c801efe88352',30355,20115,30308,'com.liferay.layout.impl','2.0.4',NULL),('563ae477-ae40-5f90-e104-c9e1e696dbef',30356,20115,30308,'com.liferay.layout.item.selector.api','1.0.3',NULL),('c263fb41-239b-1b91-89d4-045323667f50',30357,20115,30308,'com.liferay.layout.item.selector.web','1.1.9','layout-item-selector-web'),('262a0873-9fe4-ec46-7b91-36300a38e0d1',30358,20115,30308,'com.liferay.layout.prototype.api','1.0.1',NULL),('616e59ed-2c40-f587-ae53-da2b0f6f35dc',30359,20115,30308,'com.liferay.layout.prototype.impl','1.0.5',NULL),('b0f9fec3-90f0-8ea9-5138-40680763ca98',30360,20115,30308,'com.liferay.layout.prototype.web','1.0.13',NULL),('3f29723c-facc-be50-913e-32d3463b538a',30361,20115,30308,'com.liferay.layout.set.prototype.api','1.0.2',NULL),('cc046c3c-f305-79e8-5600-39684e84ddc1',30362,20115,30308,'com.liferay.layout.set.prototype.impl','2.0.1',NULL),('acde5eff-004d-20a6-fe7b-5c4b86b5a2b4',30363,20115,30308,'com.liferay.layout.set.prototype.web','1.0.14',NULL),('30182c83-75e4-6709-37e3-cabb8b7109ce',30364,20115,30308,'com.liferay.layout.taglib','2.1.6','layout-taglib'),('ee79c895-d698-e219-f82f-7491f9ce3137',30365,20115,30308,'com.liferay.layout.type.controller.control.panel','2.0.3','layout-type-controller-control-panel'),('c47e4371-fbc1-8682-114e-8e815692c07d',30366,20115,30308,'com.liferay.layout.type.controller.full.page.application','2.0.8','layout-type-controller-full-page-application'),('f50d41e5-d8c2-d353-5ccb-7fd955941f2f',30367,20115,30308,'com.liferay.layout.type.controller.node','2.0.6','layout-type-controller-node'),('5e213f1f-d314-57b4-988d-57df5103c40b',30368,20115,30308,'com.liferay.layout.type.controller.shared.portlet','2.0.5','layout-type-controller-shared-portlet'),('cb28c1b4-4778-2c47-dd21-f194849c5b30',30369,20115,30308,'com.liferay.nested.portlets.web','2.0.16','nested-portlet'),('e30eda78-7412-f703-f31c-6efe8dd3b33a',30370,20115,30308,'com.liferay.portlet.configuration.css.web','2.0.18','portlet-configuration-css-web'),('ebe31546-0966-3c0d-188b-a8c2ec4e7c12',30371,20115,30308,'com.liferay.portlet.configuration.icon.close','2.0.2',NULL),('9ab91f4f-928d-0eed-dbe4-874f26270c61',30372,20115,30308,'com.liferay.portlet.configuration.icon.edit','2.0.2',NULL),('358df07d-3e80-1bad-e139-6e9b54324216',30373,20115,30308,'com.liferay.portlet.configuration.icon.edit.defaults','2.0.2',NULL),('6803de8f-b6b1-51c2-17e6-dc5e04ed6d4a',30374,20115,30308,'com.liferay.portlet.configuration.icon.edit.guest','2.0.2',NULL),('fd08255d-189b-2bc0-e78d-46522f77ba0c',30375,20115,30308,'com.liferay.portlet.configuration.icon.help','2.0.2',NULL),('e31f2328-a26d-f940-e9f8-a2f1335166b7',30376,20115,30308,'com.liferay.portlet.configuration.icon.locator.api','2.0.3',NULL),('519676a9-b530-272d-8488-5840cf485cdf',30377,20115,30308,'com.liferay.portlet.configuration.icon.maximize','2.0.2',NULL),('6e9aab72-24fd-3cfe-e9fa-7239d2287240',30378,20115,30308,'com.liferay.portlet.configuration.icon.minimize','2.0.2',NULL),('46e85b63-68b6-7f73-30ec-0e0fbffc3145',30379,20115,30308,'com.liferay.portlet.configuration.icon.print','2.0.2',NULL),('6b84b3e5-4d3c-9b5b-cd67-83cddf98a4b5',30380,20115,30308,'com.liferay.portlet.configuration.icon.refresh','2.0.2',NULL),('c92fd067-60b7-3c6a-71bc-8f2aa462f846',30381,20115,30308,'com.liferay.portlet.configuration.sharing.web','2.0.10',NULL),('e04a9af6-e8ce-72f3-5846-51c254a68803',30382,20115,30308,'com.liferay.portlet.configuration.toolbar.contributor.locator.api','2.0.2',NULL),('0cf7e0b5-ab2b-8a58-c718-f45b98eb4691',30383,20115,30308,'com.liferay.portlet.configuration.web','1.0.26',NULL),('5bb8a4fc-6eb3-f1f5-0460-bb2501e079a1',30384,20115,30308,'com.liferay.portlet.display.template','2.2.2',NULL),('be6386df-0cc9-2e8a-c1f2-6c3806db303f',30385,20115,30308,'com.liferay.portlet.display.template.web','2.0.7',NULL),('acac8736-b8db-7ee6-07f8-8d4fa39c7726',30386,20115,30308,'com.liferay.product.navigation.control.menu.api','3.0.0',NULL),('0e0dff70-0d03-30a0-eb86-784b11ab7800',30387,20115,30308,'com.liferay.product.navigation.control.menu.dxp.theme.contributor','1.0.13','product-navigation-control-menu-dxp-theme'),('6547ca90-23d1-298b-6f78-120051d5525a',30388,20115,30308,'com.liferay.product.navigation.control.menu.web','2.0.16','product-navigation-control-menu-web'),('3845db06-a7e2-d08a-838b-b98fa21dbffb',30389,20115,30308,'com.liferay.product.navigation.control.panel','2.0.2',NULL),('d29a7e61-38cb-fd42-eba8-3ce02e50589e',30390,20115,30308,'com.liferay.product.navigation.product.menu.dxp.theme.contributor','1.0.11','product-navigation-product-menu-dxp-theme'),('9e96257f-9fdf-a95f-332c-e5dff1c183f7',30391,20115,30308,'com.liferay.product.navigation.product.menu.web','2.0.22','product-navigation-product-menu-web'),('89060246-97f8-2d9e-0da7-dbc1250c55ea',30392,20115,30308,'com.liferay.product.navigation.simulation.api','1.1.0',NULL),('060e7e24-8fa7-ae12-4d66-076f6e2f5da7',30393,20115,30308,'com.liferay.product.navigation.simulation.device','2.0.12','product-navigation-simulation-device'),('35ebc1ab-1c0a-4169-418b-99c67d954862',30394,20115,30308,'com.liferay.product.navigation.simulation.theme.contributor','2.0.4','product-navigation-simulation-theme'),('aab1dbe3-926c-202c-6d33-ed4833f1b664',30395,20115,30308,'com.liferay.product.navigation.simulation.web','3.0.1','product-navigation-simulation-web'),('50556e0a-9393-c72b-ee01-6f08b168ebaa',30396,20115,30308,'com.liferay.product.navigation.site.administration','2.0.12','product-navigation-site-administration'),('881f61b0-ad50-2a74-d55a-d2f8a0697e48',30397,20115,30308,'com.liferay.product.navigation.taglib','2.0.13','product-navigation-taglib'),('568ea8ca-9326-b864-65b8-15ebc35c24d5',30398,20115,30308,'com.liferay.product.navigation.user','2.0.5','product-navigation-user'),('cfb6b74c-1eba-03b9-d20d-f128cca5f1d2',30399,20115,30308,'com.liferay.product.navigation.user.personal.bar.web','2.0.9',NULL),('9781fe5a-d167-a9e6-e601-3d511d14cc82',30400,20115,30308,'com.liferay.rss.api','1.0.1',NULL),('e0d4150d-b6c7-3710-bc00-c179a7db8b4b',30401,20115,30308,'com.liferay.rss.util','1.0.11',NULL),('0f9820da-d170-920f-e77a-1b52f1c96361',30402,20115,30308,'com.liferay.rss.web','3.0.0','rss-web'),('ab59191a-f032-1024-4161-0711f850d4a7',30403,20115,30308,'com.liferay.site.admin.web','1.0.37','site-admin-web'),('2245d096-d83e-5445-90fb-27db74d69ad8',30404,20115,30308,'com.liferay.site.api','2.1.8',NULL),('5da268fe-c6f8-6830-5127-f2506ac6417c',30405,20115,30308,'com.liferay.site.browser.web','2.0.16',NULL),('4fe25e0f-2869-0aa9-5201-6dce43ce8f71',30406,20115,30308,'com.liferay.site.item.selector.api','1.0.3',NULL),('ef4796e6-542e-a355-3c7f-4c1c709ab909',30407,20115,30308,'com.liferay.site.item.selector.web','2.0.19','site-item-selector-web'),('a2e79ba4-8797-9eb4-7da0-e51f85dd7022',30408,20115,30308,'com.liferay.site.memberships.web','1.0.26',NULL),('ded5ef96-c0e1-64fd-169e-30d7c312ec3e',30409,20115,30308,'com.liferay.site.my.sites.web','2.0.4',NULL),('4a8e7f4a-966e-6083-f889-390f5cd88957',30410,20115,30308,'com.liferay.site.navigation.breadcrumb.web','3.0.3','site-navigation-breadcrumb-web'),('9c45f438-ad17-7230-d700-800dc3fad23c',30411,20115,30308,'com.liferay.site.navigation.directory.web','2.0.9','site-navigation-directory-web'),('f105c387-714b-5f5f-c081-52a15e927e3c',30412,20115,30308,'com.liferay.site.navigation.language.api','1.0.1',NULL),('be067312-ac58-5c99-a494-6e3060fd7d1d',30413,20115,30308,'com.liferay.site.navigation.language.web','3.0.4','site-navigation-language-web'),('74110f97-0b85-9d4e-07c7-fac8e406acb3',30414,20115,30308,'com.liferay.site.navigation.menu.web','2.0.20','site-navigation-menu-web'),('72cd8c80-8d3b-fc39-da3b-038fc3f899f3',30415,20115,30308,'com.liferay.site.navigation.site.map.web','2.0.16','site-navigation-site-map-web'),('786800cf-30bc-86f9-4282-b98b94ab7028',30416,20115,30308,'com.liferay.site.navigation.taglib','2.1.8','site-navigation-taglib'),('4bafafce-9176-f47e-60ca-259055e180d7',30417,20115,30308,'com.liferay.site.teams.web','1.0.16',NULL),('0a3fc737-f0dd-c454-0f3b-9d3cc28845b3',30418,20115,30308,'com.liferay.staging.api','2.1.0',NULL),('ed199337-86a6-e401-5a01-76be1587217a',30419,20115,30308,'com.liferay.staging.bar.web','1.0.20','staging-bar-web'),('c7a2b5fa-0e59-ba24-a283-309f24edc5ac',30420,20115,30308,'com.liferay.staging.configuration.web','1.0.19',NULL),('4ec5965c-3282-9568-327b-e83e14954450',30421,20115,30308,'com.liferay.staging.lang','2.0.16',NULL),('e75e681c-8865-319f-689d-50fdad6b5ef7',30422,20115,30308,'com.liferay.staging.portlet.data.handler','3.0.0',NULL),('3f1a1414-80e4-7869-008b-141b9efa8bb5',30423,20115,30308,'com.liferay.staging.processes.web','1.0.25','staging-processes-web'),('9783bdf3-029a-7b6e-6cdd-068c8b2fb656',30424,20115,30308,'com.liferay.staging.security','2.0.28',NULL),('13ae2289-f32e-cb5d-6fd7-66109b656074',30425,20115,30308,'com.liferay.staging.taglib','3.1.18','staging-taglib'),('7c71b167-afe5-1fc9-a0e8-51fe381cd88d',30426,20115,30308,'com.liferay.trash.service','1.0.2',NULL),('da577c08-7e05-f168-7085-ac013b0b8191',30427,20115,30308,'com.liferay.trash.taglib','2.0.8','trash-taglib'),('18d5f18f-1ba8-e8f5-feda-627abba73f7c',30428,20115,30308,'com.liferay.trash.web','1.0.24','trash-web'),('e15c0a95-c09c-d148-e1b0-4fbe5cb6ecd5',30429,20115,30308,'com.liferay.xsl.content.web','2.0.10','xsl-content-web'),('106108e8-ca3f-7b96-c42f-9232a9f6d400',30431,20115,30430,'Liferay Documentum Connector-documentum-hook-wrapper','7.0.10.11',NULL),('926301f7-00b1-8df6-9f04-6ecb308919ed',30433,20115,30432,'com.liferay.oauth.api','1.0.1',NULL),('ff42d596-1118-00e5-4a85-e3eb64a4ebdf',30434,20115,30432,'com.liferay.oauth.service','1.0.1',NULL),('2955a614-9a43-c420-99ac-0b274298afcf',30435,20115,30432,'com.liferay.oauth.web','1.0.2',NULL),('66780378-eb79-43a1-aa75-138214f77e98',30437,20115,30436,'woodstox-core-asl','4.4.1',NULL),('f2d84874-e7fe-6d12-fd6c-2fa69755247c',30438,20115,30436,'com.liferay.alloy.mvc','2.3.1',NULL),('b51e299e-0abf-58e7-59f9-9cab11587f36',30439,20115,30436,'com.liferay.captcha.api','1.1.2',NULL),('4c5696e4-4f18-7380-461b-7ca665e03119',30440,20115,30436,'com.liferay.captcha.taglib','1.0.5','captcha-taglib'),('dff7d747-6cf2-d65c-a413-5ebe15169037',30441,20115,30436,'com.liferay.configuration.admin.web','1.0.42',NULL),('ccad2e81-7447-0649-4d67-8fafd185f55f',30442,20115,30436,'com.liferay.contacts.api','2.0.8',NULL),('1c5e7836-b060-1c26-af46-0247897ea22f',30443,20115,30436,'com.liferay.contacts.service','2.0.18',NULL),('586e4cd3-dde1-8a36-bfa5-7a67424fdff3',30444,20115,30436,'com.liferay.contacts.web','1.0.33',NULL),('c670e80a-df2e-bce8-aa08-be462b28cc63',30445,20115,30436,'com.liferay.expando.taglib','1.0.8','expando-taglib'),('4a7f18c3-f20d-dcc2-892d-55ee407524d1',30446,20115,30436,'com.liferay.expando.web','1.0.12',NULL),('53a3e40f-b8d4-ca1b-837e-6ce62791874e',30447,20115,30436,'com.liferay.frontend.compatibility.ie','1.0.1',NULL),('1d6c05b9-d607-7bd0-9990-957b4292f881',30448,20115,30436,'com.liferay.frontend.css.common','2.0.4',NULL),('63f413ae-91f3-16b6-a7af-2f58aae8b512',30449,20115,30436,'com.liferay.frontend.css.rtl.servlet','1.0.8',NULL),('c5edc7c8-f543-ed6f-6d58-c32810cf4722',30450,20115,30436,'com.liferay.frontend.css.web','1.0.37','frontend-css-web'),('37817590-bded-3492-1f54-09f1dbfc11e0',30451,20115,30436,'com.liferay.frontend.editor.alloyeditor.accessibility.web','1.0.5','frontend-editor-alloyeditor-accessibility-web'),('87e9afc8-8361-be3e-9b01-05b8e3a1c535',30452,20115,30436,'com.liferay.frontend.editor.alloyeditor.link.browse.web','1.0.6','frontend-editor-alloyeditor-link-browse-web'),('74dc132a-5240-51b4-dbde-309e3d27b83e',30453,20115,30436,'com.liferay.frontend.editor.alloyeditor.web','1.0.35','frontend-editor-alloyeditor-web'),('8913780e-89de-fc24-fa2b-1ed70f9afa67',30454,20115,30436,'com.liferay.frontend.editor.ckeditor.web','1.0.42','frontend-editor-ckeditor-web'),('bf8e7c5e-cf44-1a00-59dc-633a31bf307c',30455,20115,30436,'com.liferay.frontend.editor.lang','2.0.0',NULL),('aa6d7c66-7bc1-4427-b0ea-935e000094ce',30456,20115,30436,'com.liferay.frontend.editor.simple.web','1.0.9','frontend-editor-simple-web'),('8e1e59be-c9ef-c227-66f4-a5885afa6557',30457,20115,30436,'com.liferay.frontend.editor.tinymce.web','1.0.21','frontend-editor-tinymce-web'),('97aa77b6-d4d3-1a3e-a34f-0a28e1bf3f5f',30458,20115,30436,'com.liferay.frontend.image.editor.api','1.0.4',NULL),('d3645aac-5969-4d21-c558-a8371734c5c1',30459,20115,30436,'com.liferay.frontend.image.editor.capability.brightness','1.0.14','frontend-image-editor-capability-brightness'),('2cae6956-2f3d-58bf-7a3f-a14523118632',30460,20115,30436,'com.liferay.frontend.image.editor.capability.contrast','1.0.14','frontend-image-editor-capability-contrast'),('2bc77d0e-9c61-e32d-0787-0f41e0844ddd',30461,20115,30436,'com.liferay.frontend.image.editor.capability.crop','1.0.14','frontend-image-editor-capability-crop'),('01759981-c8ce-543b-8265-c81ff9f53f02',30462,20115,30436,'com.liferay.frontend.image.editor.capability.effects','1.0.15','frontend-image-editor-capability-effects'),('4f395b8b-72ac-146f-c5e1-597174073470',30463,20115,30436,'com.liferay.frontend.image.editor.capability.resize','1.0.14','frontend-image-editor-capability-resize'),('6220c0db-1d16-8435-8905-bbbbbdcfa131',30464,20115,30436,'com.liferay.frontend.image.editor.capability.rotate','1.0.14','frontend-image-editor-capability-rotate'),('edd80869-5c43-09e8-b7f9-dbea623af5cf',30465,20115,30436,'com.liferay.frontend.image.editor.capability.saturation','1.0.14','frontend-image-editor-capability-saturation'),('df663363-8c74-3d72-fbf4-e8ac1e6b7ffc',30466,20115,30436,'com.liferay.frontend.image.editor.integration.document.library','1.0.17','frontend-image-editor-integration-document-library'),('dee25148-3eb8-fa1b-3de2-7992784a75d2',30467,20115,30436,'com.liferay.frontend.image.editor.web','1.0.21','frontend-image-editor-web'),('3eb5a059-c6a7-30b5-998b-00fabeae2ded',30468,20115,30436,'com.liferay.frontend.js.aui.web','1.0.20',NULL),('659528fb-2b7b-6e01-248e-4ad129f04761',30469,20115,30436,'com.liferay.frontend.js.bundle.config.extender','1.0.11',NULL),('8ca40ed8-9bed-0212-22d9-a03023ddfdd6',30470,20115,30436,'com.liferay.frontend.js.loader.modules.extender','2.0.0',NULL),('028ac455-a789-324e-68b2-dc178d12b488',30471,20115,30436,'com.liferay.frontend.js.loader.modules.extender.api','1.0.1',NULL),('28b81bbb-5b88-3cea-d325-d16ec6f99e02',30472,20115,30436,'com.liferay.frontend.js.metal.web','1.0.19','frontend-js-metal-web'),('221561e4-528f-e67d-8c74-73b1d20bee98',30473,20115,30436,'com.liferay.frontend.js.node.shims','1.0.2','frontend-js-node-shims'),('0de16950-a14f-0c29-47eb-d94ed31cda3c',30474,20115,30436,'com.liferay.frontend.js.polyfill.babel.web','1.0.4','frontend-js-polyfill-babel-web'),('5b56d6e1-ac88-8219-69f8-f08fadca6ccc',30475,20115,30436,'com.liferay.frontend.js.soyutils.web','1.0.4','frontend-js-soyutils-web'),('d4a9abdc-3296-94ad-ab4c-1d8bdbfba34d',30476,20115,30436,'com.liferay.frontend.js.spa.web','1.0.47','frontend-js-spa-web'),('81db387b-53a7-e08a-6d96-ff30c32e3fbe',30477,20115,30436,'com.liferay.frontend.js.web','1.0.69','frontend-js-web'),('35b61892-981b-a2ad-cc3f-2e1930227a0c',30478,20115,30436,'com.liferay.frontend.taglib','2.2.12','frontend-taglib'),('4792ddd3-d958-010b-2e5e-3772af2b42a6',30479,20115,30436,'com.liferay.frontend.taglib.form.navigator','1.0.9',NULL),('0b611eac-78d2-7267-7005-fa8dd86c70c7',30480,20115,30436,'com.liferay.frontend.taglib.soy','1.0.9','frontend-taglib-soy'),('844e7e0d-c8ad-eee9-f709-36db508fc45b',30481,20115,30436,'com.liferay.frontend.taglib.util.freemarker.contributor','1.0.3',NULL),('0ae45411-51ad-cbc0-a88e-238a5efeae2c',30482,20115,30436,'com.liferay.frontend.theme.contributor.extender','2.0.2',NULL),('e54c8d7f-87aa-911c-74ab-023c76ec07bd',30483,20115,30436,'com.liferay.frontend.theme.favicon.servlet','1.0.1','frontend-theme'),('780d0551-f372-b53e-63c8-8ddd96fccfb8',30484,20115,30436,'com.liferay.frontend.theme.styled','2.1.3',NULL),('2feeead3-36af-c03b-c14b-a6af30100e7e',30485,20115,30436,'com.liferay.frontend.theme.unstyled','2.2.9','frontend-theme'),('e90df9ff-df77-07d7-432a-ccf5ecd50bb9',30486,20115,30436,'com.liferay.hello.soy.navigation.web','1.0.2','hello-soy-navigation-web'),('ab1ab948-e41d-083e-5565-cba481cba00d',30487,20115,30436,'com.liferay.hello.soy.web','1.0.14','hello-soy-web'),('4ed94a89-8d68-c476-ca30-1c3f776ce2eb',30488,20115,30436,'com.liferay.hello.velocity.web','2.0.7',NULL),('e3de142a-9182-f7fb-f220-31ebe77c64b7',30489,20115,30436,'com.liferay.hello.world.web','2.0.6',NULL),('f74aec5a-47d7-e15a-22a9-153d28821cc3',30490,20115,30436,'com.liferay.imageio.plugins','1.0.1',NULL),('85025024-419a-2868-3e28-f928d4275011',30491,20115,30436,'com.liferay.license.manager.web','2.0.7',NULL),('9e71be4d-c80f-d749-78d8-cacb6443022f',30492,20115,30436,'com.liferay.login.authentication.facebook.connect.web','2.0.10','login-authentication-facebook-connect-web'),('d641ea03-5401-1796-701a-08ba0fb70726',30493,20115,30436,'com.liferay.login.authentication.google.web','2.0.10','login-authentication-google-web'),('46418c3c-f799-c368-b3a2-be19c41dbc43',30494,20115,30436,'com.liferay.login.authentication.openid.web','2.0.7','login-authentication-openid-web'),('accaedbc-e79f-664b-77c8-c5c7f0714288',30495,20115,30436,'com.liferay.login.web','2.0.4',NULL),('93f46cc7-6e25-5e60-9741-477023c36adc',30496,20115,30436,'com.liferay.map.api','2.1.0',NULL),('6617bcb4-d369-bfd0-b718-5c22159b0b93',30497,20115,30436,'com.liferay.map.common','2.0.1','map-common'),('c9f5e462-58d8-77c3-1193-514e5fd02bc4',30498,20115,30436,'com.liferay.map.google.maps','1.0.15','map-google-maps'),('3296a1ef-1b6e-70b3-54d4-7252cbf14c2a',30499,20115,30436,'com.liferay.map.openstreetmap','2.0.13','map-openstreetmap'),('8a6887b7-b344-e8ea-6932-37695b6b901a',30500,20115,30436,'com.liferay.map.taglib','1.1.8','map-taglib'),('9318e436-9f50-50a0-7f08-3cbdb8f6e54e',30501,20115,30436,'com.liferay.microsoft.translator','1.0.6',NULL),('d21e9041-3903-7bce-ae0c-c420d1c68a7e',30502,20115,30436,'com.liferay.mobile.device.rules.api','2.1.2',NULL),('b04b4fdd-f8cb-c37e-4a06-74adeb6742d4',30503,20115,30436,'com.liferay.mobile.device.rules.service','1.2.25',NULL),('3651fd61-9f69-4c6b-9685-f0316fc95814',30504,20115,30436,'com.liferay.mobile.device.rules.web','1.0.22','mobile-device-rules-web'),('e3747a0f-5121-5945-d9b3-f1b48b8681a2',30505,20115,30436,'com.liferay.monitoring.web','1.0.13','monitoring-web'),('7c8ab748-69d0-1c93-1571-fa28c34fd41f',30506,20115,30436,'com.liferay.my.account.web','1.0.12',NULL),('3da3d0fd-8570-5016-40d1-45c05d54b6d4',30507,20115,30436,'com.liferay.password.policies.admin.api','2.0.1',NULL),('22d7fd13-255d-ed13-3433-3884b77f247a',30508,20115,30436,'com.liferay.password.policies.admin.impl','1.0.6',NULL),('6c4ac26d-f299-8503-310a-5376c35a3ff2',30509,20115,30436,'com.liferay.password.policies.admin.web','1.0.24',NULL),('6a03ff5f-88a5-03bd-a913-87ba08af296b',30510,20115,30436,'com.liferay.petra.doulos','3.5.2',NULL),('bd9d35a1-f272-3f8d-0cea-dfae142aab1e',30511,20115,30436,'com.liferay.petra.io.delta','1.1.2',NULL),('d840828a-b4f4-d76a-fece-7c99a2b82c61',30512,20115,30436,'com.liferay.petra.model.adapter','1.0.3',NULL),('1014d31c-73a2-b8ca-f87d-23fbeb7a74b4',30513,20115,30436,'com.liferay.plugins.admin.web','1.0.16',NULL),('946a099b-4229-8299-04d4-53da3b1180fb',30514,20115,30436,'com.liferay.portal.background.task.api','2.1.2',NULL),('0fd6aaf9-bfd0-6db8-26f1-da76633ad7ae',30515,20115,30436,'com.liferay.portal.background.task.service','3.0.7',NULL),('3ed76bb5-d633-95d9-06f5-4e288f00c462',30516,20115,30436,'com.liferay.portal.background.task.web','2.0.3',NULL),('445c2849-c088-4796-196c-df7877b49641',30517,20115,30436,'com.liferay.portal.cache','2.4.10',NULL),('44f73570-9a8e-abc0-d71f-34b71cdbfbf9',30518,20115,30436,'com.liferay.portal.cache.ehcache','2.1.16',NULL),('7c0218e9-bc9a-289d-4e6f-38d93782389d',30519,20115,30436,'com.liferay.portal.cache.ehcache.provider','2.0.6',NULL),('33739527-64f6-096f-9229-10344af7f5d7',30520,20115,30436,'com.liferay.portal.cache.multiple','1.0.20',NULL),('be409d9f-ff16-b804-07f5-73d8aff9b386',30521,20115,30436,'com.liferay.portal.cache.single','2.0.3',NULL),('f1fc6379-e4cb-b82a-1681-7bf16ba278ae',30522,20115,30436,'com.liferay.portal.cluster.multiple','1.0.28',NULL),('9ad4bc0d-6060-0361-7cc2-f56eb1e89de5',30523,20115,30436,'com.liferay.portal.cluster.single','2.0.3',NULL),('5240075b-a4db-b36b-84e6-47f12410d899',30524,20115,30436,'com.liferay.portal.compound.session.id','2.0.1',NULL),('56b1bc24-2126-93ce-d072-4237ea70cf71',30525,20115,30436,'com.liferay.portal.configuration.cluster','3.0.0',NULL),('10c5a2f0-a9fb-f888-5824-989a77ecd78d',30526,20115,30436,'com.liferay.portal.configuration.extender','3.0.1',NULL),('656e35b8-2f52-4aad-a669-b5677d08c584',30527,20115,30436,'com.liferay.portal.configuration.metatype.definitions.annotations','2.0.3',NULL),('f950f5c2-0d68-ace6-c445-b21737a32955',30528,20115,30436,'com.liferay.portal.configuration.metatype.definitions.equinox','2.0.5',NULL),('c435a364-2e51-b3a3-f367-02899fa10a12',30529,20115,30436,'com.liferay.portal.configuration.module.configuration','2.0.11',NULL),('58301aec-8131-5170-a682-2267f70fb3fc',30530,20115,30436,'com.liferay.portal.configuration.settings','2.0.15',NULL),('4904917e-3fd1-74b0-59cd-ad1b4a9c4822',30531,20115,30436,'com.liferay.portal.custom.jsp.bag.api','1.0.1',NULL),('6fe93857-2f2d-d5de-2f3f-34c1c38484f3',30532,20115,30436,'com.liferay.portal.dao.orm.custom.sql','1.0.13',NULL),('ba17932e-7e16-625c-7abe-ce940358b3b4',30533,20115,30436,'com.liferay.portal.executor','2.0.3',NULL),('05498d5c-d4db-a414-95d7-5f333d26aaa8',30534,20115,30436,'com.liferay.portal.init.servlet.filter','2.0.5',NULL),('16a8f5e6-4c0a-5afc-cb95-7d6fcc95f905',30535,20115,30436,'com.liferay.portal.instance.lifecycle','3.1.0',NULL),('12d171ce-741e-cb8c-6be6-be23b96368c4',30536,20115,30436,'com.liferay.portal.instances.api','1.0.2',NULL),('0390c368-ee18-289e-3a26-729404eeb762',30537,20115,30436,'com.liferay.portal.instances.service','1.0.6',NULL),('059cc0bf-d439-d2dc-08c2-c3e6069ddc30',30538,20115,30436,'com.liferay.portal.instances.web','1.0.12',NULL),('abfd22cc-1fae-a573-8cb3-b57194d11db5',30539,20115,30436,'com.liferay.portal.jmx','4.0.0',NULL),('7b3b4046-fb64-c549-0b5e-593e8b338db1',30540,20115,30436,'com.liferay.portal.jmx.api','1.0.1',NULL),('27c713df-9d71-7095-4d2e-b18da9bed51d',30541,20115,30436,'com.liferay.portal.language.extender','2.0.8',NULL),('3c06f7f4-bbea-59d4-216b-aec6b52f5631',30542,20115,30436,'com.liferay.portal.language.servlet.filter','2.0.7',NULL),('ac33b8f0-ed67-4f5b-b3db-8e5f239116cc',30543,20115,30436,'com.liferay.portal.license.deployer','1.0.6',NULL),('48851274-1a74-ba98-c3ef-a74a6ecf4ab2',30544,20115,30436,'com.liferay.portal.lock.api','2.1.2',NULL),('a939908e-f88c-4e90-b50d-a36affb1dbcb',30545,20115,30436,'com.liferay.portal.lock.service','2.0.16',NULL),('0290f3e7-051c-c3b2-bffd-852f55cb98af',30546,20115,30436,'com.liferay.portal.messaging','4.0.6',NULL),('e8d4b8f6-1606-453a-e1aa-e1f23f29df6d',30547,20115,30436,'com.liferay.portal.mobile.device.recognition.api','1.0.3',NULL),('99e3bb28-4fc3-8e0e-b7e4-2ecb816c87fe',30548,20115,30436,'com.liferay.portal.monitoring','5.0.2',NULL),('bedb3d07-1a30-80ab-c4cc-ccd2bb61fc0c',30549,20115,30436,'com.liferay.portal.osgi.debug.declarative.service','1.0.4',NULL),('599da643-5b7b-84a2-902d-e4a77c27baf4',30550,20115,30436,'com.liferay.portal.osgi.debug.spring.extender','1.0.7',NULL),('d1371da0-64f3-656f-61d4-080825c8a5a1',30551,20115,30436,'com.liferay.portal.output.stream.container','3.0.0',NULL),('56037378-940a-edd8-e427-6d0d9ac95d34',30552,20115,30436,'com.liferay.portal.output.stream.container.api','1.0.1',NULL),('6cb0d1df-8ea6-420a-5274-6a2c9f765a56',30553,20115,30436,'com.liferay.portal.pop.notifications','2.0.5',NULL),('c9c7311d-2d26-828d-7ffa-896c9a016d41',30554,20115,30436,'com.liferay.portal.portlet.bridge.soy','3.1.6','portal-portlet'),('a089b8c8-0c2f-869c-4cf8-978a834259a9',30555,20115,30436,'com.liferay.portal.properties.swapper','1.0.1',NULL),('b6cd88fb-a510-c4f1-abd7-6df5bd68d079',30556,20115,30436,'com.liferay.portal.remote.axis.extender','1.0.11',NULL),('ff604075-74cb-435e-1d38-85343950a1c1',30557,20115,30436,'com.liferay.portal.remote.cxf.common','3.0.8',NULL),('53e4d702-9e5f-474d-9d73-f9aeef7eb220',30558,20115,30436,'com.liferay.portal.remote.cxf.jaxrs.common','3.1.2',NULL),('a89c95e9-e419-8d29-c1bb-4d544edf0ac5',30559,20115,30436,'com.liferay.portal.remote.http.tunnel.extender','2.0.11',NULL),('fef32fcb-ffc7-b566-c359-64167e171558',30560,20115,30436,'com.liferay.portal.remote.json.web.service.extender','2.0.5',NULL),('76c8e2f5-d91d-c9b0-5f88-9e7d2216c960',30561,20115,30436,'com.liferay.portal.remote.rest.extender','2.0.14',NULL),('bcc3fe9a-a43f-0bfa-1870-cbec8d14a71f',30562,20115,30436,'com.liferay.portal.remote.soap.extender.api','1.0.1',NULL),('84362d0d-7dfb-31fc-a2bf-1532307eea0f',30563,20115,30436,'com.liferay.portal.remote.soap.extender.impl','1.0.3',NULL),('590c823e-4018-5648-39da-409e1cc36969',30564,20115,30436,'com.liferay.portal.scheduler','4.0.6',NULL),('096e2b75-8a58-f5d9-7943-ad3ce41da187',30565,20115,30436,'com.liferay.portal.scheduler.multiple','1.0.20',NULL),('240f34bc-716a-0599-94f6-d6b209899bd1',30566,20115,30436,'com.liferay.portal.scheduler.quartz','3.0.2',NULL),('23d3372d-b448-563c-10f9-c5824878b53d',30567,20115,30436,'com.liferay.portal.scheduler.single','2.0.7',NULL),('84cbf600-7af4-34e9-0f97-d725f99c6fb4',30568,20115,30436,'com.liferay.portal.scripting.api','1.1.1',NULL),('009614db-307e-39f1-a11a-d38a2c589034',30569,20115,30436,'com.liferay.portal.scripting.executor','3.0.2',NULL),('00b0be1e-a3ed-c07c-05a5-62b65ca7bbdd',30570,20115,30436,'com.liferay.portal.scripting.groovy','2.0.4',NULL),('94ba75d0-61a3-5bcc-074c-fefbb477b48e',30571,20115,30436,'com.liferay.portal.search','4.0.5',NULL),('62121a17-435e-6e25-201f-ba35370840e0',30572,20115,30436,'com.liferay.portal.search.api','1.0.2',NULL),('964cb011-df44-7657-d918-443582dae8ab',30573,20115,30436,'com.liferay.portal.search.elasticsearch','2.1.25',NULL),('596f46cb-7155-c606-ee79-be20eaad5581',30574,20115,30436,'com.liferay.portal.search.facet','2.0.10',NULL),('aadee64f-4f23-c5b9-0bc4-e408716a0505',30575,20115,30436,'com.liferay.portal.search.web','2.0.0','portal-search-web'),('be195a2d-d1ae-c853-fd90-e177f4153cb8',30576,20115,30436,'com.liferay.portal.search.web.api','1.0.1',NULL),('e75244e6-1dac-020d-9e5b-a449974f625b',30577,20115,30436,'com.liferay.portal.security.antisamy','2.0.18',NULL),('d22b3671-063f-4d45-37f5-fc4dd20d2c7a',30578,20115,30436,'com.liferay.portal.security.audit.api','2.0.6',NULL),('c4ff2b28-88f4-2cc1-22cf-edf0c7bf5f7e',30579,20115,30436,'com.liferay.portal.security.audit.event.generators','1.0.5',NULL),('39df5395-3de6-6bac-c50a-99aad972a873',30580,20115,30436,'com.liferay.portal.security.audit.router','1.0.14',NULL),('35d3d73a-4b20-997e-b90d-8b46467ad4cf',30581,20115,30436,'com.liferay.portal.security.audit.storage.api','1.0.4',NULL),('e53fd335-6a99-b63b-86a2-42875197d4f1',30582,20115,30436,'com.liferay.portal.security.audit.storage.service','1.0.13',NULL),('faca5a4f-676a-ef45-7e16-8d68fc045600',30583,20115,30436,'com.liferay.portal.security.audit.web','1.0.10','portal-security-audit-web'),('8ca1fe7e-007e-afbe-c304-04465d97fe0e',30584,20115,30436,'com.liferay.portal.security.audit.wiring','2.0.6',NULL),('7c8e7e62-8c56-539b-1d5c-04039e0457aa',30585,20115,30436,'com.liferay.portal.security.auth.verifier','2.1.7',NULL),('a7345358-cbcf-290c-ecb5-61c06072f301',30586,20115,30436,'com.liferay.portal.security.auto.login','2.1.7',NULL),('5ddf5ef4-8e24-d384-b84b-f440b007f974',30587,20115,30436,'com.liferay.portal.security.exportimport.api','2.0.1',NULL),('29adcbfc-fb92-f1f1-29dd-55d93f213264',30588,20115,30436,'com.liferay.portal.security.ldap','2.2.20',NULL),('8b635482-a5a3-d3f8-a88a-d9c3efa5d5ea',30589,20115,30436,'com.liferay.portal.security.service.access.policy.api','2.0.11',NULL),('8222c76d-8a36-9063-7e7b-712d5cf37607',30590,20115,30436,'com.liferay.portal.security.service.access.policy.service','2.1.4',NULL),('21c29fc2-12ff-6f7e-9ec9-5a6b3c3c9c9a',30591,20115,30436,'com.liferay.portal.security.service.access.policy.web','1.0.15',NULL),('951f513b-8358-5f54-a6db-0b74e3c55d6b',30592,20115,30436,'com.liferay.portal.security.sso.cas','4.0.1',NULL),('c74be873-1c5d-b1b8-2c3a-80e9916285df',30593,20115,30436,'com.liferay.portal.security.sso.cas.api','1.0.1',NULL),('21a8daf4-aa81-3c0f-c606-6febf200fbc4',30594,20115,30436,'com.liferay.portal.security.sso.facebook.connect','4.0.0',NULL),('c1991801-d9fc-4a88-7fc6-e9322cae943a',30595,20115,30436,'com.liferay.portal.security.sso.facebook.connect.api','1.0.1',NULL),('2f1ab722-444b-2efc-7bc9-72f9a0db3b76',30596,20115,30436,'com.liferay.portal.security.sso.google','3.0.0',NULL),('a3b49229-3824-a705-1696-ed102ed8de47',30597,20115,30436,'com.liferay.portal.security.sso.google.api','1.0.0',NULL),('7bb99e9b-c3b7-5400-e20b-fcc7a0aaf134',30598,20115,30436,'com.liferay.portal.security.sso.ntlm','4.0.1',NULL),('9c045243-050e-b173-19ed-3a7d7c648b46',30599,20115,30436,'com.liferay.portal.security.sso.ntlm.api','1.0.2',NULL),('39bd9970-b053-ff52-d907-34fe60f09a9a',30600,20115,30436,'com.liferay.portal.security.sso.openid','4.0.0',NULL),('a14cb8dd-a2f3-0e4f-6ded-934a9319332d',30601,20115,30436,'com.liferay.portal.security.sso.openid.api','1.0.2',NULL),('075ac3f0-ec28-75c3-5b52-f8dcce76bfc9',30602,20115,30436,'com.liferay.portal.security.sso.opensso','4.0.0',NULL),('954388db-7096-b38f-4f39-d41d7ddc919b',30603,20115,30436,'com.liferay.portal.security.sso.opensso.api','1.0.1',NULL),('9b69f5ab-e035-bddc-0e8a-a2663b1c52c3',30604,20115,30436,'com.liferay.portal.security.sso.token.api','1.0.1',NULL),('00e09607-2551-4e46-de13-63b64011036f',30605,20115,30436,'com.liferay.portal.security.sso.token.impl','1.0.2',NULL),('073f5cfc-865c-7652-b126-e9d831472a5a',30606,20115,30436,'com.liferay.portal.settings.api','2.0.4',NULL),('d2514f14-7b0c-d02d-7ba2-91b680133daf',30607,20115,30436,'com.liferay.portal.settings.authentication.cas.web','1.0.8','portal-settings-authentication-cas-web'),('e355a097-d2aa-885f-4c38-aacf7c2fa677',30608,20115,30436,'com.liferay.portal.settings.authentication.facebook.connect.web','1.0.7','portal-settings-authentication-facebook-connect-web'),('3361adf8-b4d6-5662-c7a9-6aa5a9b728f5',30609,20115,30436,'com.liferay.portal.settings.authentication.google.web','1.0.6','portal-settings-authentication-google-web'),('ecefe63d-fdf2-dfc0-2d26-7fc54066d4b8',30610,20115,30436,'com.liferay.portal.settings.authentication.ldap.web','1.0.20','portal-settings-authentication-ldap-web'),('eca98a6d-6309-5fba-c974-78f11c21f5f4',30611,20115,30436,'com.liferay.portal.settings.authentication.ntlm.web','1.0.7','portal-settings-authentication-ntlm-web'),('4cec0cb6-a98c-b91c-f340-d461a6f3a2cd',30612,20115,30436,'com.liferay.portal.settings.authentication.openid.web','1.0.7','portal-settings-authentication-openid-web'),('eb451625-bf90-53fd-ca79-8b6f7bbedad2',30613,20115,30436,'com.liferay.portal.settings.authentication.opensso.web','1.0.9','portal-settings-authentication-opensso-web'),('53392017-bae6-baa1-f176-f69d9d88b09f',30614,20115,30436,'com.liferay.portal.settings.lang','1.0.9',NULL),('44f36833-953d-7d25-8cc7-c65e45341402',30615,20115,30436,'com.liferay.portal.settings.web','1.2.3','portal-settings-web'),('b132aad3-1755-438f-e360-a8c6b28ef823',30616,20115,30436,'com.liferay.portal.spring.extender','2.1.6',NULL),('a7531ddc-eb92-a469-5a8d-aaaee87f2885',30617,20115,30436,'com.liferay.portal.store.cmis','2.0.17',NULL),('97994688-4c9a-be1d-d0a1-72eacaec39be',30618,20115,30436,'com.liferay.portal.store.db','2.0.3',NULL),('db85915a-0d4d-c5a3-002d-0e8314546e3c',30619,20115,30436,'com.liferay.portal.store.file.system','2.0.12',NULL),('76c43655-52a1-7063-5727-d048f3b6d83e',30620,20115,30436,'com.liferay.portal.store.ignore.duplicates.wrapper','1.0.2',NULL),('5f383a4c-18e0-1e2a-79fd-af6a19ae8a13',30621,20115,30436,'com.liferay.portal.store.jcr','2.0.17',NULL),('3530fc0e-88fd-4482-efed-6cb226131adc',30622,20115,30436,'com.liferay.portal.store.s3','2.0.18',NULL),('3297f9a2-0f27-7c42-92e2-dad88b477bff',30623,20115,30436,'com.liferay.portal.store.safe.file.name.wrapper','1.0.3',NULL),('11cf3cbd-3807-3d79-8ac8-0211c92c6659',30624,20115,30436,'com.liferay.portal.template.freemarker','3.0.8',NULL),('652618c4-f871-e8b8-9b39-a4b027e7b42b',30625,20115,30436,'com.liferay.portal.template.soy','2.4.13',NULL),('27c76193-1b70-f664-a27f-504154ff4f9b',30626,20115,30436,'com.liferay.portal.template.soy.context.contributor','1.0.1',NULL),('17337daf-bded-ef76-31c6-e863b4fe6711',30627,20115,30436,'com.liferay.portal.template.velocity','2.0.27',NULL),('22b2921a-0389-00f5-70b5-80b6b7eb9254',30628,20115,30436,'com.liferay.portal.template.xsl','2.0.9',NULL),('faf307cb-2a51-2138-7bee-a93004539453',30629,20115,30436,'com.liferay.portal.upgrade.api','1.0.1',NULL),('ef74ca2b-c7b3-d595-7f83-058326705dda',30630,20115,30436,'com.liferay.portal.upgrade.impl','1.0.1',NULL),('81040133-32d0-db39-7f19-444e8c5dead6',30631,20115,30436,'com.liferay.portal.verify.extender','3.0.0',NULL),('c4ce2aad-c49f-4ce8-a413-34aa8f6940e2',30632,20115,30436,'com.liferay.portal.weblogic.support','2.0.3',NULL),('82013c55-ce86-9720-e89d-72fd6877bb86',30633,20115,30436,'com.liferay.roles.admin.api','2.0.1',NULL),('f5c02313-c02d-ba32-ace0-418cd877c7b7',30634,20115,30436,'com.liferay.roles.admin.impl','1.0.9',NULL),('947555bc-2a54-2427-ce32-5e6514ba370e',30635,20115,30436,'com.liferay.roles.admin.web','1.0.40',NULL),('510eafc0-167d-79d1-9bf3-ad81e2b35d2c',30636,20115,30436,'com.liferay.roles.selector.web','1.0.11',NULL),('9d6d0f59-8cce-7752-31df-8c51218a9ed6',30637,20115,30436,'com.liferay.server.admin.web','1.0.30',NULL),('152d59d4-38c1-8af1-a4fd-de195ad8012d',30638,20115,30436,'com.liferay.user.groups.admin.api','2.0.1',NULL),('76d657e7-df71-65b3-aced-c76950922953',30639,20115,30436,'com.liferay.user.groups.admin.impl','1.0.8',NULL),('86856267-8f77-7eb0-9e74-dbf6a87484bc',30640,20115,30436,'com.liferay.user.groups.admin.web','1.0.18',NULL),('fccb0aef-a265-8c57-65d7-1dcf1b0d5b3a',30641,20115,30436,'com.liferay.users.admin.api','2.0.1',NULL),('3ec0f504-246c-9685-6494-efe77b125edb',30642,20115,30436,'com.liferay.users.admin.impl','1.0.15',NULL),('96f5f2b1-5395-b551-a93f-10b1ece1401f',30643,20115,30436,'com.liferay.users.admin.web','2.4.6','users-admin-web'),('6a477bea-9f69-b373-b88a-a4068dc26105',30644,20115,30436,'com.liferay.web.proxy.web','1.0.14','web-proxy-web'),('39097186-1e4e-4742-eaaa-fbf16b61c25b',30645,20115,30436,'com.liferay.websocket.whiteboard','1.0.2',NULL),('a056c07b-68fe-6b11-e2fc-85efb0b63be4',30646,20115,30436,'com.liferay.xstream.configurator.api','2.1.1',NULL),('e184c446-179e-7fd6-a751-2de781d4698c',30647,20115,30436,'javax.validation.api','1.1.0.Final',NULL),('465b2c1a-023b-413f-ed5c-7f2680740212',30648,20115,30436,'stax2-api','3.1.4',NULL),('ff8206bb-4841-ce17-8609-0de178591f8a',30649,20115,30436,'Liferay Foundation-admin-theme-wrapper','1.0.57',NULL),('40fd86d2-8764-ef18-f780-7f966e31f753',30650,20115,30436,'Liferay Foundation-classic-theme-wrapper','1.0.58',NULL),('ef992f13-8169-d87d-37fc-a221d959007b',30651,20115,30436,'Liferay Foundation-user-dashboard-theme-wrapper','1.0.59',NULL),('a9fce905-81ce-6a03-e1be-a261e2315a18',30652,20115,30436,'Liferay Foundation-user-profile-theme-wrapper','1.0.59',NULL),('8feb289c-32ce-8b10-9cf5-43b79decd871',30654,20115,30653,'com.liferay.marketplace.api','4.2.0',NULL),('0346237a-7d28-c963-d6c5-99518e30c952',30655,20115,30653,'com.liferay.marketplace.app.manager.web','1.0.17','marketplace-app-manager-web'),('7903bdfe-80ea-531b-2850-e76c0f777e71',30656,20115,30653,'com.liferay.marketplace.deployer','2.0.9',NULL),('0891cb79-7432-bca3-9ee1-0e18ba6ad904',30657,20115,30653,'com.liferay.marketplace.service','2.1.28',NULL),('b45a30a1-da95-c46d-22a2-8341aaba99b5',30658,20115,30653,'com.liferay.marketplace.store.web','2.0.11','marketplace-store-web'),('c60f3ad6-80e0-e9f0-e4da-baa5074ce6cd',30660,20115,30659,'Liferay Connected Services Client-lcs-portlet-wrapper','7.0.10.63',NULL); /*!40000 ALTER TABLE `Marketplace_Module` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MembershipRequest` -- DROP TABLE IF EXISTS `MembershipRequest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MembershipRequest` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `membershipRequestId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `comments` longtext, `replyComments` longtext, `replyDate` datetime(6) DEFAULT NULL, `replierUserId` bigint(20) DEFAULT NULL, `statusId` bigint(20) DEFAULT NULL, PRIMARY KEY (`membershipRequestId`), KEY `IX_C28C72EC` (`groupId`,`statusId`), KEY `IX_35AA8FA6` (`groupId`,`userId`,`statusId`), KEY `IX_66D70879` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MembershipRequest` -- LOCK TABLES `MembershipRequest` WRITE; /*!40000 ALTER TABLE `MembershipRequest` DISABLE KEYS */; /*!40000 ALTER TABLE `MembershipRequest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MicroblogsEntry` -- DROP TABLE IF EXISTS `MicroblogsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `MicroblogsEntry` ( `microblogsEntryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `creatorClassNameId` bigint(20) DEFAULT NULL, `creatorClassPK` bigint(20) DEFAULT NULL, `content` longtext, `type_` int(11) DEFAULT NULL, `parentMicroblogsEntryId` bigint(20) DEFAULT NULL, `socialRelationType` int(11) DEFAULT NULL, PRIMARY KEY (`microblogsEntryId`), KEY `IX_1D8CE137` (`companyId`,`creatorClassNameId`,`creatorClassPK`,`type_`), KEY `IX_CA299EF2` (`companyId`,`creatorClassNameId`,`type_`), KEY `IX_14ACFA9` (`creatorClassNameId`,`creatorClassPK`,`type_`), KEY `IX_6AA6B164` (`creatorClassNameId`,`type_`), KEY `IX_6BD29B9C` (`type_`,`parentMicroblogsEntryId`), KEY `IX_8F04FC09` (`userId`,`createDate`,`type_`,`socialRelationType`), KEY `IX_92BA6F0` (`userId`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MicroblogsEntry` -- LOCK TABLES `MicroblogsEntry` WRITE; /*!40000 ALTER TABLE `MicroblogsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `MicroblogsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OAuth_OAuthApplication` -- DROP TABLE IF EXISTS `OAuth_OAuthApplication`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OAuth_OAuthApplication` ( `oAuthApplicationId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `consumerKey` varchar(75) DEFAULT NULL, `consumerSecret` varchar(75) DEFAULT NULL, `accessLevel` int(11) DEFAULT NULL, `logoId` bigint(20) DEFAULT NULL, `shareableAccessToken` tinyint(4) DEFAULT NULL, `callbackURI` longtext, `websiteURL` longtext, PRIMARY KEY (`oAuthApplicationId`), UNIQUE KEY `IX_B12A5172` (`consumerKey`), KEY `IX_DD85AA60` (`companyId`,`name`), KEY `IX_2B33FAA0` (`userId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OAuth_OAuthApplication` -- LOCK TABLES `OAuth_OAuthApplication` WRITE; /*!40000 ALTER TABLE `OAuth_OAuthApplication` DISABLE KEYS */; /*!40000 ALTER TABLE `OAuth_OAuthApplication` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OAuth_OAuthUser` -- DROP TABLE IF EXISTS `OAuth_OAuthUser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OAuth_OAuthUser` ( `oAuthUserId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `oAuthApplicationId` bigint(20) DEFAULT NULL, `accessToken` varchar(75) DEFAULT NULL, `accessSecret` varchar(75) DEFAULT NULL, PRIMARY KEY (`oAuthUserId`), UNIQUE KEY `IX_84260D45` (`accessToken`), UNIQUE KEY `IX_7B260C62` (`userId`,`oAuthApplicationId`), KEY `IX_4167B528` (`oAuthApplicationId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OAuth_OAuthUser` -- LOCK TABLES `OAuth_OAuthUser` WRITE; /*!40000 ALTER TABLE `OAuth_OAuthUser` DISABLE KEYS */; /*!40000 ALTER TABLE `OAuth_OAuthUser` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OrgGroupRole` -- DROP TABLE IF EXISTS `OrgGroupRole`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OrgGroupRole` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `organizationId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, PRIMARY KEY (`organizationId`,`groupId`,`roleId`), KEY `IX_4A527DD3` (`groupId`), KEY `IX_AB044D1C` (`roleId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OrgGroupRole` -- LOCK TABLES `OrgGroupRole` WRITE; /*!40000 ALTER TABLE `OrgGroupRole` DISABLE KEYS */; /*!40000 ALTER TABLE `OrgGroupRole` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OrgLabor` -- DROP TABLE IF EXISTS `OrgLabor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `OrgLabor` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `orgLaborId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `organizationId` bigint(20) DEFAULT NULL, `typeId` bigint(20) DEFAULT NULL, `sunOpen` int(11) DEFAULT NULL, `sunClose` int(11) DEFAULT NULL, `monOpen` int(11) DEFAULT NULL, `monClose` int(11) DEFAULT NULL, `tueOpen` int(11) DEFAULT NULL, `tueClose` int(11) DEFAULT NULL, `wedOpen` int(11) DEFAULT NULL, `wedClose` int(11) DEFAULT NULL, `thuOpen` int(11) DEFAULT NULL, `thuClose` int(11) DEFAULT NULL, `friOpen` int(11) DEFAULT NULL, `friClose` int(11) DEFAULT NULL, `satOpen` int(11) DEFAULT NULL, `satClose` int(11) DEFAULT NULL, PRIMARY KEY (`orgLaborId`), KEY `IX_6AF0D434` (`organizationId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OrgLabor` -- LOCK TABLES `OrgLabor` WRITE; /*!40000 ALTER TABLE `OrgLabor` DISABLE KEYS */; /*!40000 ALTER TABLE `OrgLabor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Organization_` -- DROP TABLE IF EXISTS `Organization_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Organization_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `organizationId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `parentOrganizationId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(100) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `recursable` tinyint(4) DEFAULT NULL, `regionId` bigint(20) DEFAULT NULL, `countryId` bigint(20) DEFAULT NULL, `statusId` bigint(20) DEFAULT NULL, `comments` longtext, `logoId` bigint(20) DEFAULT NULL, PRIMARY KEY (`organizationId`), UNIQUE KEY `IX_E301BDF5` (`companyId`,`name`), KEY `IX_418E4522` (`companyId`,`parentOrganizationId`), KEY `IX_A9D85BA6` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Organization_` -- LOCK TABLES `Organization_` WRITE; /*!40000 ALTER TABLE `Organization_` DISABLE KEYS */; /*!40000 ALTER TABLE `Organization_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PasswordPolicy` -- DROP TABLE IF EXISTS `PasswordPolicy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PasswordPolicy` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `passwordPolicyId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `defaultPolicy` tinyint(4) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `changeable` tinyint(4) DEFAULT NULL, `changeRequired` tinyint(4) DEFAULT NULL, `minAge` bigint(20) DEFAULT NULL, `checkSyntax` tinyint(4) DEFAULT NULL, `allowDictionaryWords` tinyint(4) DEFAULT NULL, `minAlphanumeric` int(11) DEFAULT NULL, `minLength` int(11) DEFAULT NULL, `minLowerCase` int(11) DEFAULT NULL, `minNumbers` int(11) DEFAULT NULL, `minSymbols` int(11) DEFAULT NULL, `minUpperCase` int(11) DEFAULT NULL, `regex` varchar(75) DEFAULT NULL, `history` tinyint(4) DEFAULT NULL, `historyCount` int(11) DEFAULT NULL, `expireable` tinyint(4) DEFAULT NULL, `maxAge` bigint(20) DEFAULT NULL, `warningTime` bigint(20) DEFAULT NULL, `graceLimit` int(11) DEFAULT NULL, `lockout` tinyint(4) DEFAULT NULL, `maxFailure` int(11) DEFAULT NULL, `lockoutDuration` bigint(20) DEFAULT NULL, `requireUnlock` tinyint(4) DEFAULT NULL, `resetFailureCount` bigint(20) DEFAULT NULL, `resetTicketMaxAge` bigint(20) DEFAULT NULL, PRIMARY KEY (`passwordPolicyId`), UNIQUE KEY `IX_3FBFA9F4` (`companyId`,`name`), KEY `IX_2C1142E` (`companyId`,`defaultPolicy`), KEY `IX_E4D7EF87` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PasswordPolicy` -- LOCK TABLES `PasswordPolicy` WRITE; /*!40000 ALTER TABLE `PasswordPolicy` DISABLE KEYS */; INSERT INTO `PasswordPolicy` VALUES (0,'a6c76647-d06e-1e7b-038b-ef3040472622',20154,20115,20119,NULL,'2018-07-02 15:51:00.939000','2018-07-02 15:51:00.939000',1,'Default Password Policy','Default Password Policy',1,1,0,0,1,0,6,0,1,0,1,'(?=.{4})(?:[a-zA-Z0-9]*)',0,6,0,8640000,86400,0,0,3,0,1,600,86400); /*!40000 ALTER TABLE `PasswordPolicy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PasswordPolicyRel` -- DROP TABLE IF EXISTS `PasswordPolicyRel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PasswordPolicyRel` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `passwordPolicyRelId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `passwordPolicyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, PRIMARY KEY (`passwordPolicyRelId`), UNIQUE KEY `IX_C3A17327` (`classNameId`,`classPK`), KEY `IX_CD25266E` (`passwordPolicyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PasswordPolicyRel` -- LOCK TABLES `PasswordPolicyRel` WRITE; /*!40000 ALTER TABLE `PasswordPolicyRel` DISABLE KEYS */; /*!40000 ALTER TABLE `PasswordPolicyRel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PasswordTracker` -- DROP TABLE IF EXISTS `PasswordTracker`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PasswordTracker` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `passwordTrackerId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `password_` varchar(75) DEFAULT NULL, PRIMARY KEY (`passwordTrackerId`), KEY `IX_326F75BD` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PasswordTracker` -- LOCK TABLES `PasswordTracker` WRITE; /*!40000 ALTER TABLE `PasswordTracker` DISABLE KEYS */; /*!40000 ALTER TABLE `PasswordTracker` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Phone` -- DROP TABLE IF EXISTS `Phone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Phone` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `phoneId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `number_` varchar(75) DEFAULT NULL, `extension` varchar(75) DEFAULT NULL, `typeId` bigint(20) DEFAULT NULL, `primary_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`phoneId`), KEY `IX_812CE07A` (`companyId`,`classNameId`,`classPK`,`primary_`), KEY `IX_F202B9CE` (`userId`), KEY `IX_B271FA88` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Phone` -- LOCK TABLES `Phone` WRITE; /*!40000 ALTER TABLE `Phone` DISABLE KEYS */; /*!40000 ALTER TABLE `Phone` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PluginSetting` -- DROP TABLE IF EXISTS `PluginSetting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PluginSetting` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `pluginSettingId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `pluginId` varchar(75) DEFAULT NULL, `pluginType` varchar(75) DEFAULT NULL, `roles` longtext, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`pluginSettingId`), UNIQUE KEY `IX_7171B2E8` (`companyId`,`pluginId`,`pluginType`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PluginSetting` -- LOCK TABLES `PluginSetting` WRITE; /*!40000 ALTER TABLE `PluginSetting` DISABLE KEYS */; /*!40000 ALTER TABLE `PluginSetting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PollsChoice` -- DROP TABLE IF EXISTS `PollsChoice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PollsChoice` ( `uuid_` varchar(75) DEFAULT NULL, `choiceId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `questionId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`choiceId`), UNIQUE KEY `IX_D76DD2CF` (`questionId`,`name`), UNIQUE KEY `IX_C222BD31` (`uuid_`,`groupId`), KEY `IX_8AE746EF` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PollsChoice` -- LOCK TABLES `PollsChoice` WRITE; /*!40000 ALTER TABLE `PollsChoice` DISABLE KEYS */; /*!40000 ALTER TABLE `PollsChoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PollsQuestion` -- DROP TABLE IF EXISTS `PollsQuestion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PollsQuestion` ( `uuid_` varchar(75) DEFAULT NULL, `questionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `title` longtext, `description` longtext, `expirationDate` datetime(6) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `lastVoteDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`questionId`), UNIQUE KEY `IX_F3C9F36` (`uuid_`,`groupId`), KEY `IX_9FF342EA` (`groupId`), KEY `IX_F910BBB4` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PollsQuestion` -- LOCK TABLES `PollsQuestion` WRITE; /*!40000 ALTER TABLE `PollsQuestion` DISABLE KEYS */; /*!40000 ALTER TABLE `PollsQuestion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PollsVote` -- DROP TABLE IF EXISTS `PollsVote`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PollsVote` ( `uuid_` varchar(75) DEFAULT NULL, `voteId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `questionId` bigint(20) DEFAULT NULL, `choiceId` bigint(20) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `voteDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`voteId`), UNIQUE KEY `IX_A88C673A` (`uuid_`,`groupId`), KEY `IX_D5DF7B54` (`choiceId`), KEY `IX_1BBFD4D3` (`questionId`,`userId`), KEY `IX_7D8E92B8` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PollsVote` -- LOCK TABLES `PollsVote` WRITE; /*!40000 ALTER TABLE `PollsVote` DISABLE KEYS */; /*!40000 ALTER TABLE `PollsVote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PortalPreferences` -- DROP TABLE IF EXISTS `PortalPreferences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PortalPreferences` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `portalPreferencesId` bigint(20) NOT NULL, `ownerId` bigint(20) DEFAULT NULL, `ownerType` int(11) DEFAULT NULL, `preferences` longtext, PRIMARY KEY (`portalPreferencesId`), KEY `IX_D1F795F1` (`ownerId`,`ownerType`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PortalPreferences` -- LOCK TABLES `PortalPreferences` WRITE; /*!40000 ALTER TABLE `PortalPreferences` DISABLE KEYS */; INSERT INTO `PortalPreferences` VALUES (1,20116,20115,1,'sync.lan.server.uuidda3fd93a-8599-7c3a-f7dd-24555b47c724sync.lan.keyMIICdwIBADANBgkqhkiG9w0BAQEFAASCAmEwggJdAgEAAoGBALbZTuq6T+h2VOaTDHlCItWbi0nSKU9yQOtvAyuFq/dwSoX2wbVkYgNVCHYHps7mqDEZhqNtDp2zFDhuMltsEIYeKwlkegan2R4ZFF1SxpM6NFbqUOncHB3U3/am6QAsdZsCtIjLa9kBXNgSmdcKnQu72GApohSBNTGr0OqaIy4ZAgMBAAECgYBGLKBc9aQ1UzTCSS1AXGGCGXAbpMy18ON5d+F/ko2tKStwvoMZWq1DGh9lLQqX3W4vadyCXBh/7XqVLbWl4JN2PoHCSCqZvWymWm4P7f46TviaT4SEEAaDVVogHLtfRPA0V4YaqyN1cjgnyOfCOIk0MJZ4Xrl+JsHNYOhC6JmhAQJBAPH3MEvJXHSGCLfgaQG5Gf182yqNbmpzWARx5L+PKXD9ZlVPnGtc7uYYt46JD62xK2dahCQMGCxqOhNtdoct1AMCQQDBdFQcJETTgPf+okLZs9JYNW9KMqwXAdFBeUA/ApeLG8aDHBttGvWcbjQMDMHStVrbOQuvF/i++K+Wiiw/nVCzAkEAnzzoQdgAyoazEh/Tu1iP7CzRJ43wTooeML6rpg2XXk7Fm/tKm7WLW06E7n7xHIPuZpRBRl/XQNOf6M0vJgNY9QJATGlEZ7Eztk70pZE10oOii9DfWnFVY+kF3FSmOb0uWnXoHRVXB+tkJBurVy8ax712W6zWnpxbViMoR8/f1miu3QJBAICvsRpklF/eBIxr+h9gQWkthh8bJ1cEAjwY0K7WDGuMuGnBcXfbEjdISVUSP9FdWeKdpSiZlzMShnTncw/8gyU=sync.lan.certificateMIIB2zCCAUSgAwIBAgIIb/GnJRqbwlEwDQYJKoZIhvcNAQELBQAwLzEtMCsGA1UEAwwkZGEzZmQ5M2EtODU5OS03YzNhLWY3ZGQtMjQ1NTViNDdjNzI0MCAXDTE3MDcwMjE1NTEyMVoYDzMwMTcxMTAyMTU1MTIxWjAvMS0wKwYDVQQDDCRkYTNmZDkzYS04NTk5LTdjM2EtZjdkZC0yNDU1NWI0N2M3MjQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALbZTuq6T+h2VOaTDHlCItWbi0nSKU9yQOtvAyuFq/dwSoX2wbVkYgNVCHYHps7mqDEZhqNtDp2zFDhuMltsEIYeKwlkegan2R4ZFF1SxpM6NFbqUOncHB3U3/am6QAsdZsCtIjLa9kBXNgSmdcKnQu72GApohSBNTGr0OqaIy4ZAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAgslDxPg/XN96DdqG03ICYmLHnSMmnKT0tvnF2djLPXi1QQaJ7USl55biwrGphe0RmLrcnzu3As6V75dwUTulB6rXHqasnz4Kun0BcH1dc6uJs7oBbbxnZyuPPCPCyfHvcZETWOEma/1SOfj966Prc00xctDcRO2oBCj+rVyqSIE='),(0,20156,0,1,''),(0,31391,20119,4,''),(2,31408,20155,4,'com.liferay.portal.kernel.util.SessionClicks#com.liferay.product.navigation.product.menu.web_productMenuStateopencom.liferay.portal.kernel.util.SessionClicks#com.liferay.site.util_recentGroups20142'); /*!40000 ALTER TABLE `PortalPreferences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Portlet` -- DROP TABLE IF EXISTS `Portlet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Portlet` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `id_` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `roles` longtext, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`id_`), UNIQUE KEY `IX_12B5E51D` (`companyId`,`portletId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Portlet` -- LOCK TABLES `Portlet` WRITE; /*!40000 ALTER TABLE `Portlet` DISABLE KEYS */; INSERT INTO `Portlet` VALUES (0,31196,20115,'1_WAR_lcsportlet',NULL,1),(0,31198,20115,'com_liferay_comment_web_portlet_CommentPortlet',NULL,1),(0,31199,20115,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',NULL,1),(0,31201,20115,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet',NULL,1),(0,31202,20115,'com_liferay_polls_web_portlet_PollsDisplayPortlet',NULL,1),(0,31203,20115,'com_liferay_polls_web_portlet_PollsPortlet',NULL,1),(0,31204,20115,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet',NULL,1),(0,31205,20115,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',NULL,1),(0,31207,20115,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',NULL,1),(0,31208,20115,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',NULL,1),(0,31209,20115,'hello_soy_portlet',NULL,1),(0,31210,20115,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',NULL,1),(0,31211,20115,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',NULL,1),(0,31212,20115,'com_liferay_login_web_portlet_FastLoginPortlet',NULL,1),(0,31213,20115,'com_liferay_login_web_portlet_LoginPortlet',NULL,1),(0,31214,20115,'com_liferay_monitoring_web_portlet_MonitoringPortlet',NULL,1),(0,31215,20115,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',NULL,1),(0,31216,20115,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',NULL,1),(0,31217,20115,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',NULL,1),(0,31218,20115,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',NULL,1),(0,31220,20115,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',NULL,1),(0,31221,20115,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',NULL,1),(0,31222,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',NULL,1),(0,31223,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',NULL,1),(0,31224,20115,'com_liferay_iframe_web_portlet_IFramePortlet',NULL,1),(0,31225,20115,'com_liferay_rss_web_portlet_RSSPortlet',NULL,1),(0,31226,20115,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',NULL,1),(0,31227,20115,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',NULL,1),(0,31228,20115,'com_liferay_xsl_content_web_portlet_XSLContentPortlet',NULL,1),(0,31229,20115,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',NULL,1),(0,31238,20115,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',NULL,1),(0,31239,20115,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',NULL,1),(0,31240,20115,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',NULL,1),(0,31241,20115,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',NULL,1),(0,31242,20115,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',NULL,1),(0,31243,20115,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',NULL,1),(0,31244,20115,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',NULL,1),(0,31245,20115,'com_liferay_portal_search_web_portlet_SearchPortlet',NULL,1),(0,31246,20115,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',NULL,1),(0,31247,20115,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',NULL,1),(0,31248,20115,'com_liferay_mentions_web_portlet_MentionsPortlet',NULL,1),(0,31249,20115,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',NULL,1),(0,31250,20115,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',NULL,1),(0,31251,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',NULL,1),(0,31252,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',NULL,1),(0,31253,20115,'com_liferay_trash_web_portlet_TrashPortlet',NULL,1),(0,31254,20115,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',NULL,1),(0,31255,20115,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',NULL,1),(0,31256,20115,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',NULL,1),(0,31257,20115,'com_liferay_announcements_web_portlet_AlertsPortlet',NULL,1),(0,31258,20115,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet',NULL,1),(0,31259,20115,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',NULL,1),(0,31260,20115,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',NULL,1),(0,31261,20115,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet',NULL,1),(0,31262,20115,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',NULL,1),(0,31263,20115,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',NULL,1),(0,31264,20115,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet',NULL,1),(0,31265,20115,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet',NULL,1),(0,31266,20115,'com_liferay_directory_web_portlet_DirectoryPortlet',NULL,1),(0,31267,20115,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet',NULL,1),(0,31268,20115,'com_liferay_flags_web_portlet_FlagsPortlet',NULL,1),(0,31269,20115,'com_liferay_flags_web_portlet_PageFlagsPortlet',NULL,1),(0,31270,20115,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',NULL,1),(0,31271,20115,'com_liferay_quick_note_web_portlet_QuickNotePortlet',NULL,1),(0,31272,20115,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',NULL,1),(0,31273,20115,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',NULL,1),(0,31274,20115,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',NULL,1),(0,31275,20115,'com_liferay_social_activity_web_portlet_SocialActivityPortlet',NULL,1),(0,31276,20115,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',NULL,1),(0,31277,20115,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',NULL,1),(0,31278,20115,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',NULL,1),(0,31279,20115,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',NULL,1),(0,31280,20115,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',NULL,1),(0,31282,20115,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',NULL,1),(0,31283,20115,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',NULL,1),(0,31284,20115,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',NULL,1),(0,31285,20115,'com_liferay_document_library_web_portlet_DLAdminPortlet',NULL,1),(0,31286,20115,'com_liferay_document_library_web_portlet_DLPortlet',NULL,1),(0,31287,20115,'com_liferay_document_library_web_portlet_IGDisplayPortlet',NULL,1),(0,31288,20115,'com_liferay_message_boards_web_portlet_MBAdminPortlet',NULL,1),(0,31289,20115,'com_liferay_message_boards_web_portlet_MBPortlet',NULL,1),(0,31290,20115,'com_liferay_wiki_web_portlet_WikiAdminPortlet',NULL,1),(0,31291,20115,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',NULL,1),(0,31292,20115,'com_liferay_wiki_web_portlet_WikiPortlet',NULL,1),(0,31318,20115,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',NULL,1),(0,31319,20115,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',NULL,1),(0,31320,20115,'com_liferay_blogs_web_portlet_BlogsPortlet',NULL,1),(0,31329,20115,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',NULL,1),(0,31330,20115,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',NULL,1),(0,31331,20115,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',NULL,1),(0,31332,20115,'com_liferay_calendar_web_portlet_CalendarPortlet',NULL,1),(0,31333,20115,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet',NULL,1),(0,31334,20115,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',NULL,1),(0,31335,20115,'com_liferay_contacts_web_portlet_MembersPortlet',NULL,1),(0,31336,20115,'com_liferay_contacts_web_portlet_MyContactsPortlet',NULL,1),(0,31337,20115,'com_liferay_contacts_web_portlet_ProfilePortlet',NULL,1),(0,31338,20115,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',NULL,1),(0,31339,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',NULL,1),(0,31340,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',NULL,1),(0,31341,20115,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',NULL,1),(0,31342,20115,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',NULL,1),(0,31343,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',NULL,1),(0,31344,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',NULL,1),(0,31345,20115,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',NULL,1),(0,31346,20115,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',NULL,1),(0,31347,20115,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',NULL,1),(0,31371,20115,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',NULL,1),(0,31372,20115,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',NULL,1),(0,31373,20115,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',NULL,1),(0,31374,20115,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',NULL,1),(0,31375,20115,'com_liferay_oauth_web_internal_portlet_AdminPortlet',NULL,1),(0,31376,20115,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet',NULL,1),(0,31378,20115,'com_liferay_sync_web_portlet_SyncDevicesPortlet',NULL,1),(0,31380,20115,'com_liferay_sync_web_portlet_SyncAdminPortlet',NULL,1),(0,31381,20115,'com_liferay_journal_content_web_portlet_JournalContentPortlet',NULL,1),(0,31382,20115,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',NULL,1),(0,31383,20115,'com_liferay_journal_web_portlet_JournalPortlet',NULL,1),(0,31384,20115,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',NULL,1),(0,31385,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',NULL,1),(0,31386,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',NULL,1),(0,31387,20115,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',NULL,1),(0,31388,20115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',NULL,1),(0,31389,20115,'com_liferay_notifications_web_portlet_NotificationsPortlet',NULL,1); /*!40000 ALTER TABLE `Portlet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PortletItem` -- DROP TABLE IF EXISTS `PortletItem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PortletItem` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `portletItemId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, PRIMARY KEY (`portletItemId`), KEY `IX_96BDD537` (`groupId`,`classNameId`), KEY `IX_D699243F` (`groupId`,`name`,`portletId`,`classNameId`), KEY `IX_E922D6C0` (`groupId`,`portletId`,`classNameId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PortletItem` -- LOCK TABLES `PortletItem` WRITE; /*!40000 ALTER TABLE `PortletItem` DISABLE KEYS */; /*!40000 ALTER TABLE `PortletItem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PortletPreferences` -- DROP TABLE IF EXISTS `PortletPreferences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `PortletPreferences` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `portletPreferencesId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `ownerId` bigint(20) DEFAULT NULL, `ownerType` int(11) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `preferences` longtext, PRIMARY KEY (`portletPreferencesId`), UNIQUE KEY `IX_C7057FF7` (`ownerId`,`ownerType`,`plid`,`portletId`), KEY `IX_60C49142` (`companyId`,`ownerId`,`ownerType`,`portletId`), KEY `IX_C9A3FCE2` (`ownerId`,`ownerType`,`portletId`), KEY `IX_D5EDA3A1` (`ownerType`,`plid`,`portletId`), KEY `IX_A3B2A80C` (`ownerType`,`portletId`), KEY `IX_D340DB76` (`plid`,`portletId`), KEY `IX_8E6DA3A1` (`portletId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PortletPreferences` -- LOCK TABLES `PortletPreferences` WRITE; /*!40000 ALTER TABLE `PortletPreferences` DISABLE KEYS */; INSERT INTO `PortletPreferences` VALUES (1,31197,0,0,1,0,'1_WAR_lcsportlet','lcsPortletStateNOT_REGISTERED'),(1,31200,20115,20115,1,0,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet','myAccountAccessInControlPanelPermissionsInitializedtrue'),(1,31206,20115,20115,1,0,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue'),(1,31219,20115,20115,1,0,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue'),(1,31237,20115,0,3,31234,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_eZh8XHgPyUlG','showOnlyLayoutAssetstrue'),(1,31281,20115,20115,1,0,'com_liferay_my_account_web_portlet_MyAccountPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue'),(1,31306,20115,0,3,31303,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_gk81Z4quQw5B','portletSetupUseCustomTitletrueportletSetupTitle_en_USRecent ContentanyAssetTypefalse'),(1,31317,20115,0,3,31314,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet_INSTANCE_Vaha3Le7Hi83','showAssetCounttrueclassNameId28202'),(1,31328,20115,0,3,31325,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet_INSTANCE_41XwUaTZmhhT','displayStylecloudshowAssetCounttruemaxAssetTags10showZeroAssetCountfalseclassNameId20011'),(1,31361,20115,0,3,31358,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_sdoCyFjQoI7t','portletSetupUseCustomTitletrueportletSetupTitle_en_USRecent Content'),(1,31365,20115,0,3,31362,'com_liferay_document_library_web_portlet_DLPortlet_INSTANCE_Dn3uYEUZE0br','portletSetupPortletDecoratorIdborderless'),(1,31369,20115,0,3,31366,'com_liferay_rss_web_portlet_RSSPortlet_INSTANCE_CGnI0DBt1nyD','portletSetupUseCustomTitletrueurlshttp://www.nytimes.com/services/xml/rss/userland/Technology.xmlportletSetupTitle_en_USTechnology newsexpandedEntriesPerFeed3'),(1,31370,20115,0,3,31366,'com_liferay_rss_web_portlet_RSSPortlet_INSTANCE_JIulpMp22u6P','portletSetupUseCustomTitletrueurlshttps://www.liferay.com/about-us/newsroom/press-releases/-/asset_publisher/2oZC/rssportletSetupTitle_en_USLiferay newsexpandedEntriesPerFeed0titlesLiferay Press Releases'),(1,31377,20115,20115,1,0,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue'),(1,31379,20115,20115,1,0,'com_liferay_sync_web_portlet_SyncDevicesPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue'),(1,31390,20115,20115,1,0,'com_liferay_notifications_web_portlet_NotificationsPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue'),(0,31392,20115,20142,3,0,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',''),(0,31393,20115,0,3,20145,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',''),(0,31394,20115,20142,3,0,'com_liferay_portal_search_web_portlet_SearchPortlet','portletSetupPortletDecoratorIdbarebone'),(0,31396,20115,0,3,20145,'com_liferay_portal_search_web_portlet_SearchPortlet','portletSetupPortletDecoratorIdbarebone'),(0,31397,20115,20142,3,0,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','portletSetupPortletDecoratorIdbarebone'),(0,31399,20115,0,3,20145,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','portletSetupPortletDecoratorIdbarebone'),(0,31411,20115,20142,3,0,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',''),(0,31412,20115,0,3,20145,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',''),(0,31413,20115,0,3,20136,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',''); /*!40000 ALTER TABLE `PortletPreferences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_BLOB_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_BLOB_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_BLOB_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `BLOB_DATA` longblob, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_BLOB_TRIGGERS` -- LOCK TABLES `QUARTZ_BLOB_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_BLOB_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_BLOB_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_CALENDARS` -- DROP TABLE IF EXISTS `QUARTZ_CALENDARS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_CALENDARS` ( `SCHED_NAME` varchar(120) NOT NULL, `CALENDAR_NAME` varchar(200) NOT NULL, `CALENDAR` longblob NOT NULL, PRIMARY KEY (`SCHED_NAME`,`CALENDAR_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_CALENDARS` -- LOCK TABLES `QUARTZ_CALENDARS` WRITE; /*!40000 ALTER TABLE `QUARTZ_CALENDARS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_CALENDARS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_CRON_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_CRON_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_CRON_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `CRON_EXPRESSION` varchar(200) NOT NULL, `TIME_ZONE_ID` varchar(80) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_CRON_TRIGGERS` -- LOCK TABLES `QUARTZ_CRON_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_CRON_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_CRON_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_FIRED_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_FIRED_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_FIRED_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `ENTRY_ID` varchar(95) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `INSTANCE_NAME` varchar(200) NOT NULL, `FIRED_TIME` bigint(20) NOT NULL, `PRIORITY` int(11) NOT NULL, `STATE` varchar(16) NOT NULL, `JOB_NAME` varchar(200) DEFAULT NULL, `JOB_GROUP` varchar(200) DEFAULT NULL, `IS_NONCONCURRENT` tinyint(4) DEFAULT NULL, `REQUESTS_RECOVERY` tinyint(4) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`ENTRY_ID`), KEY `IX_BE3835E5` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), KEY `IX_4BD722BM` (`SCHED_NAME`,`TRIGGER_GROUP`), KEY `IX_204D31E8` (`SCHED_NAME`,`INSTANCE_NAME`), KEY `IX_339E078M` (`SCHED_NAME`,`INSTANCE_NAME`,`REQUESTS_RECOVERY`), KEY `IX_5005E3AF` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), KEY `IX_BC2F03B0` (`SCHED_NAME`,`JOB_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_FIRED_TRIGGERS` -- LOCK TABLES `QUARTZ_FIRED_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_FIRED_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_FIRED_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_JOB_DETAILS` -- DROP TABLE IF EXISTS `QUARTZ_JOB_DETAILS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_JOB_DETAILS` ( `SCHED_NAME` varchar(120) NOT NULL, `JOB_NAME` varchar(200) NOT NULL, `JOB_GROUP` varchar(200) NOT NULL, `DESCRIPTION` varchar(250) DEFAULT NULL, `JOB_CLASS_NAME` varchar(250) NOT NULL, `IS_DURABLE` tinyint(4) NOT NULL, `IS_NONCONCURRENT` tinyint(4) NOT NULL, `IS_UPDATE_DATA` tinyint(4) NOT NULL, `REQUESTS_RECOVERY` tinyint(4) NOT NULL, `JOB_DATA` longblob, PRIMARY KEY (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), KEY `IX_88328984` (`SCHED_NAME`,`JOB_GROUP`), KEY `IX_779BCA37` (`SCHED_NAME`,`REQUESTS_RECOVERY`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_JOB_DETAILS` -- LOCK TABLES `QUARTZ_JOB_DETAILS` WRITE; /*!40000 ALTER TABLE `QUARTZ_JOB_DETAILS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_JOB_DETAILS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_LOCKS` -- DROP TABLE IF EXISTS `QUARTZ_LOCKS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_LOCKS` ( `SCHED_NAME` varchar(120) NOT NULL, `LOCK_NAME` varchar(40) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`LOCK_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_LOCKS` -- LOCK TABLES `QUARTZ_LOCKS` WRITE; /*!40000 ALTER TABLE `QUARTZ_LOCKS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_LOCKS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_PAUSED_TRIGGER_GRPS` -- DROP TABLE IF EXISTS `QUARTZ_PAUSED_TRIGGER_GRPS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_PAUSED_TRIGGER_GRPS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_PAUSED_TRIGGER_GRPS` -- LOCK TABLES `QUARTZ_PAUSED_TRIGGER_GRPS` WRITE; /*!40000 ALTER TABLE `QUARTZ_PAUSED_TRIGGER_GRPS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_PAUSED_TRIGGER_GRPS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_SCHEDULER_STATE` -- DROP TABLE IF EXISTS `QUARTZ_SCHEDULER_STATE`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_SCHEDULER_STATE` ( `SCHED_NAME` varchar(120) NOT NULL, `INSTANCE_NAME` varchar(200) NOT NULL, `LAST_CHECKIN_TIME` bigint(20) NOT NULL, `CHECKIN_INTERVAL` bigint(20) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`INSTANCE_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_SCHEDULER_STATE` -- LOCK TABLES `QUARTZ_SCHEDULER_STATE` WRITE; /*!40000 ALTER TABLE `QUARTZ_SCHEDULER_STATE` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_SCHEDULER_STATE` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_SIMPLE_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_SIMPLE_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_SIMPLE_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `REPEAT_COUNT` bigint(20) NOT NULL, `REPEAT_INTERVAL` bigint(20) NOT NULL, `TIMES_TRIGGERED` bigint(20) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_SIMPLE_TRIGGERS` -- LOCK TABLES `QUARTZ_SIMPLE_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_SIMPLE_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_SIMPLE_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_SIMPROP_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_SIMPROP_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_SIMPROP_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `STR_PROP_1` varchar(512) DEFAULT NULL, `STR_PROP_2` varchar(512) DEFAULT NULL, `STR_PROP_3` varchar(512) DEFAULT NULL, `INT_PROP_1` int(11) DEFAULT NULL, `INT_PROP_2` int(11) DEFAULT NULL, `LONG_PROP_1` bigint(20) DEFAULT NULL, `LONG_PROP_2` bigint(20) DEFAULT NULL, `DEC_PROP_1` decimal(13,4) DEFAULT NULL, `DEC_PROP_2` decimal(13,4) DEFAULT NULL, `BOOL_PROP_1` tinyint(4) DEFAULT NULL, `BOOL_PROP_2` tinyint(4) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_SIMPROP_TRIGGERS` -- LOCK TABLES `QUARTZ_SIMPROP_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_SIMPROP_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_SIMPROP_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QUARTZ_TRIGGERS` -- DROP TABLE IF EXISTS `QUARTZ_TRIGGERS`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `QUARTZ_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `JOB_NAME` varchar(200) NOT NULL, `JOB_GROUP` varchar(200) NOT NULL, `DESCRIPTION` varchar(250) DEFAULT NULL, `NEXT_FIRE_TIME` bigint(20) DEFAULT NULL, `PREV_FIRE_TIME` bigint(20) DEFAULT NULL, `PRIORITY` int(11) DEFAULT NULL, `TRIGGER_STATE` varchar(16) NOT NULL, `TRIGGER_TYPE` varchar(8) NOT NULL, `START_TIME` bigint(20) NOT NULL, `END_TIME` bigint(20) DEFAULT NULL, `CALENDAR_NAME` varchar(200) DEFAULT NULL, `MISFIRE_INSTR` int(11) DEFAULT NULL, `JOB_DATA` longblob, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), KEY `IX_186442A4` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`), KEY `IX_1BA1F9DC` (`SCHED_NAME`,`TRIGGER_GROUP`), KEY `IX_91CA7CCE` (`SCHED_NAME`,`TRIGGER_GROUP`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`,`MISFIRE_INSTR`), KEY `IX_D219AFDE` (`SCHED_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`), KEY `IX_A85822A0` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), KEY `IX_8AA50BE1` (`SCHED_NAME`,`JOB_GROUP`), KEY `IX_EEFE382A` (`SCHED_NAME`,`NEXT_FIRE_TIME`), KEY `IX_F026CF4C` (`SCHED_NAME`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`), KEY `IX_F2DD7C7E` (`SCHED_NAME`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`,`MISFIRE_INSTR`), KEY `IX_1F92813C` (`SCHED_NAME`,`NEXT_FIRE_TIME`,`MISFIRE_INSTR`), KEY `IX_99108B6E` (`SCHED_NAME`,`TRIGGER_STATE`), KEY `IX_CD7132D0` (`SCHED_NAME`,`CALENDAR_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QUARTZ_TRIGGERS` -- LOCK TABLES `QUARTZ_TRIGGERS` WRITE; /*!40000 ALTER TABLE `QUARTZ_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `QUARTZ_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RatingsEntry` -- DROP TABLE IF EXISTS `RatingsEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RatingsEntry` ( `uuid_` varchar(75) DEFAULT NULL, `entryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `score` double DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_B47E3C11` (`userId`,`classNameId`,`classPK`), KEY `IX_A1A8CB8B` (`classNameId`,`classPK`,`score`), KEY `IX_9F242DF6` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RatingsEntry` -- LOCK TABLES `RatingsEntry` WRITE; /*!40000 ALTER TABLE `RatingsEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `RatingsEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RatingsStats` -- DROP TABLE IF EXISTS `RatingsStats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RatingsStats` ( `statsId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `totalEntries` int(11) DEFAULT NULL, `totalScore` double DEFAULT NULL, `averageScore` double DEFAULT NULL, PRIMARY KEY (`statsId`), UNIQUE KEY `IX_A6E99284` (`classNameId`,`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RatingsStats` -- LOCK TABLES `RatingsStats` WRITE; /*!40000 ALTER TABLE `RatingsStats` DISABLE KEYS */; /*!40000 ALTER TABLE `RatingsStats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RecentLayoutBranch` -- DROP TABLE IF EXISTS `RecentLayoutBranch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RecentLayoutBranch` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `recentLayoutBranchId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `layoutBranchId` bigint(20) DEFAULT NULL, `layoutSetBranchId` bigint(20) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, PRIMARY KEY (`recentLayoutBranchId`), UNIQUE KEY `IX_C27D6369` (`userId`,`layoutSetBranchId`,`plid`), KEY `IX_B91F79BD` (`groupId`), KEY `IX_351E86E8` (`layoutBranchId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RecentLayoutBranch` -- LOCK TABLES `RecentLayoutBranch` WRITE; /*!40000 ALTER TABLE `RecentLayoutBranch` DISABLE KEYS */; /*!40000 ALTER TABLE `RecentLayoutBranch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RecentLayoutRevision` -- DROP TABLE IF EXISTS `RecentLayoutRevision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RecentLayoutRevision` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `recentLayoutRevisionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `layoutRevisionId` bigint(20) DEFAULT NULL, `layoutSetBranchId` bigint(20) DEFAULT NULL, `plid` bigint(20) DEFAULT NULL, PRIMARY KEY (`recentLayoutRevisionId`), UNIQUE KEY `IX_4C600BD0` (`userId`,`layoutSetBranchId`,`plid`), KEY `IX_8D8A2724` (`groupId`), KEY `IX_DA0788DA` (`layoutRevisionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RecentLayoutRevision` -- LOCK TABLES `RecentLayoutRevision` WRITE; /*!40000 ALTER TABLE `RecentLayoutRevision` DISABLE KEYS */; /*!40000 ALTER TABLE `RecentLayoutRevision` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RecentLayoutSetBranch` -- DROP TABLE IF EXISTS `RecentLayoutSetBranch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RecentLayoutSetBranch` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `recentLayoutSetBranchId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `layoutSetBranchId` bigint(20) DEFAULT NULL, `layoutSetId` bigint(20) DEFAULT NULL, PRIMARY KEY (`recentLayoutSetBranchId`), UNIQUE KEY `IX_4654D204` (`userId`,`layoutSetId`), KEY `IX_711995A5` (`groupId`), KEY `IX_23FF0700` (`layoutSetBranchId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RecentLayoutSetBranch` -- LOCK TABLES `RecentLayoutSetBranch` WRITE; /*!40000 ALTER TABLE `RecentLayoutSetBranch` DISABLE KEYS */; /*!40000 ALTER TABLE `RecentLayoutSetBranch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Region` -- DROP TABLE IF EXISTS `Region`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Region` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `regionId` bigint(20) NOT NULL, `countryId` bigint(20) DEFAULT NULL, `regionCode` varchar(75) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`regionId`), UNIQUE KEY `IX_A2635F5C` (`countryId`,`regionCode`), KEY `IX_2D9A426F` (`active_`), KEY `IX_11FB3E42` (`countryId`,`active_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Region` -- LOCK TABLES `Region` WRITE; /*!40000 ALTER TABLE `Region` DISABLE KEYS */; INSERT INTO `Region` VALUES (0,1001,1,'AB','Alberta',1),(0,1002,1,'BC','British Columbia',1),(0,1003,1,'MB','Manitoba',1),(0,1004,1,'NB','New Brunswick',1),(0,1005,1,'NL','Newfoundland and Labrador',1),(0,1006,1,'NT','Northwest Territories',1),(0,1007,1,'NS','Nova Scotia',1),(0,1008,1,'NU','Nunavut',1),(0,1009,1,'ON','Ontario',1),(0,1010,1,'PE','Prince Edward Island',1),(0,1011,1,'QC','Quebec',1),(0,1012,1,'SK','Saskatchewan',1),(0,1013,1,'YT','Yukon',1),(0,2001,2,'CN-34','Anhui',1),(0,2002,2,'CN-92','Aomen',1),(0,2003,2,'CN-11','Beijing',1),(0,2004,2,'CN-50','Chongqing',1),(0,2005,2,'CN-35','Fujian',1),(0,2006,2,'CN-62','Gansu',1),(0,2007,2,'CN-44','Guangdong',1),(0,2008,2,'CN-45','Guangxi',1),(0,2009,2,'CN-52','Guizhou',1),(0,2010,2,'CN-46','Hainan',1),(0,2011,2,'CN-13','Hebei',1),(0,2012,2,'CN-23','Heilongjiang',1),(0,2013,2,'CN-41','Henan',1),(0,2014,2,'CN-42','Hubei',1),(0,2015,2,'CN-43','Hunan',1),(0,2016,2,'CN-32','Jiangsu',1),(0,2017,2,'CN-36','Jiangxi',1),(0,2018,2,'CN-22','Jilin',1),(0,2019,2,'CN-21','Liaoning',1),(0,2020,2,'CN-15','Nei Mongol',1),(0,2021,2,'CN-64','Ningxia',1),(0,2022,2,'CN-63','Qinghai',1),(0,2023,2,'CN-61','Shaanxi',1),(0,2024,2,'CN-37','Shandong',1),(0,2025,2,'CN-31','Shanghai',1),(0,2026,2,'CN-14','Shanxi',1),(0,2027,2,'CN-51','Sichuan',1),(0,2028,2,'CN-71','Taiwan',1),(0,2029,2,'CN-12','Tianjin',1),(0,2030,2,'CN-91','Xianggang',1),(0,2031,2,'CN-65','Xinjiang',1),(0,2032,2,'CN-54','Xizang',1),(0,2033,2,'CN-53','Yunnan',1),(0,2034,2,'CN-33','Zhejiang',1),(0,3001,3,'A','Alsace',1),(0,3002,3,'B','Aquitaine',1),(0,3003,3,'C','Auvergne',1),(0,3004,3,'P','Basse-Normandie',1),(0,3005,3,'D','Bourgogne',1),(0,3006,3,'E','Bretagne',1),(0,3007,3,'F','Centre',1),(0,3008,3,'G','Champagne-Ardenne',1),(0,3009,3,'H','Corse',1),(0,3010,3,'GF','Guyane',1),(0,3011,3,'I','Franche Comté',1),(0,3012,3,'GP','Guadeloupe',1),(0,3013,3,'Q','Haute-Normandie',1),(0,3014,3,'J','Île-de-France',1),(0,3015,3,'K','Languedoc-Roussillon',1),(0,3016,3,'L','Limousin',1),(0,3017,3,'M','Lorraine',1),(0,3018,3,'MQ','Martinique',1),(0,3019,3,'N','Midi-Pyrénées',1),(0,3020,3,'O','Nord Pas de Calais',1),(0,3021,3,'R','Pays de la Loire',1),(0,3022,3,'S','Picardie',1),(0,3023,3,'T','Poitou-Charentes',1),(0,3024,3,'U','Provence-Alpes-Côte-d\'Azur',1),(0,3025,3,'RE','Réunion',1),(0,3026,3,'V','Rhône-Alpes',1),(0,4001,4,'BW','Baden-Württemberg',1),(0,4002,4,'BY','Bayern',1),(0,4003,4,'BE','Berlin',1),(0,4004,4,'BB','Brandenburg',1),(0,4005,4,'HB','Bremen',1),(0,4006,4,'HH','Hamburg',1),(0,4007,4,'HE','Hessen',1),(0,4008,4,'MV','Mecklenburg-Vorpommern',1),(0,4009,4,'NI','Niedersachsen',1),(0,4010,4,'NW','Nordrhein-Westfalen',1),(0,4011,4,'RP','Rheinland-Pfalz',1),(0,4012,4,'SL','Saarland',1),(0,4013,4,'SN','Sachsen',1),(0,4014,4,'ST','Sachsen-Anhalt',1),(0,4015,4,'SH','Schleswig-Holstein',1),(0,4016,4,'TH','Thüringen',1),(0,8001,8,'AG','Agrigento',1),(0,8002,8,'AL','Alessandria',1),(0,8003,8,'AN','Ancona',1),(0,8004,8,'AO','Aosta',1),(0,8005,8,'AR','Arezzo',1),(0,8006,8,'AP','Ascoli Piceno',1),(0,8007,8,'AT','Asti',1),(0,8008,8,'AV','Avellino',1),(0,8009,8,'BA','Bari',1),(0,8010,8,'BT','Barletta-Andria-Trani',1),(0,8011,8,'BL','Belluno',1),(0,8012,8,'BN','Benevento',1),(0,8013,8,'BG','Bergamo',1),(0,8014,8,'BI','Biella',1),(0,8015,8,'BO','Bologna',1),(0,8016,8,'BZ','Bolzano',1),(0,8017,8,'BS','Brescia',1),(0,8018,8,'BR','Brindisi',1),(0,8019,8,'CA','Cagliari',1),(0,8020,8,'CL','Caltanissetta',1),(0,8021,8,'CB','Campobasso',1),(0,8022,8,'CI','Carbonia-Iglesias',1),(0,8023,8,'CE','Caserta',1),(0,8024,8,'CT','Catania',1),(0,8025,8,'CZ','Catanzaro',1),(0,8026,8,'CH','Chieti',1),(0,8027,8,'CO','Como',1),(0,8028,8,'CS','Cosenza',1),(0,8029,8,'CR','Cremona',1),(0,8030,8,'KR','Crotone',1),(0,8031,8,'CN','Cuneo',1),(0,8032,8,'EN','Enna',1),(0,8033,8,'FM','Fermo',1),(0,8034,8,'FE','Ferrara',1),(0,8035,8,'FI','Firenze',1),(0,8036,8,'FG','Foggia',1),(0,8037,8,'FC','Forli-Cesena',1),(0,8038,8,'FR','Frosinone',1),(0,8039,8,'GE','Genova',1),(0,8040,8,'GO','Gorizia',1),(0,8041,8,'GR','Grosseto',1),(0,8042,8,'IM','Imperia',1),(0,8043,8,'IS','Isernia',1),(0,8044,8,'AQ','L\'Aquila',1),(0,8045,8,'SP','La Spezia',1),(0,8046,8,'LT','Latina',1),(0,8047,8,'LE','Lecce',1),(0,8048,8,'LC','Lecco',1),(0,8049,8,'LI','Livorno',1),(0,8050,8,'LO','Lodi',1),(0,8051,8,'LU','Lucca',1),(0,8052,8,'MC','Macerata',1),(0,8053,8,'MN','Mantova',1),(0,8054,8,'MS','Massa-Carrara',1),(0,8055,8,'MT','Matera',1),(0,8056,8,'MA','Medio Campidano',1),(0,8057,8,'ME','Messina',1),(0,8058,8,'MI','Milano',1),(0,8059,8,'MO','Modena',1),(0,8060,8,'MB','Monza e Brianza',1),(0,8061,8,'NA','Napoli',1),(0,8062,8,'NO','Novara',1),(0,8063,8,'NU','Nuoro',1),(0,8064,8,'OG','Ogliastra',1),(0,8065,8,'OT','Olbia-Tempio',1),(0,8066,8,'OR','Oristano',1),(0,8067,8,'PD','Padova',1),(0,8068,8,'PA','Palermo',1),(0,8069,8,'PR','Parma',1),(0,8070,8,'PV','Pavia',1),(0,8071,8,'PG','Perugia',1),(0,8072,8,'PU','Pesaro e Urbino',1),(0,8073,8,'PE','Pescara',1),(0,8074,8,'PC','Piacenza',1),(0,8075,8,'PI','Pisa',1),(0,8076,8,'PT','Pistoia',1),(0,8077,8,'PN','Pordenone',1),(0,8078,8,'PZ','Potenza',1),(0,8079,8,'PO','Prato',1),(0,8080,8,'RG','Ragusa',1),(0,8081,8,'RA','Ravenna',1),(0,8082,8,'RC','Reggio Calabria',1),(0,8083,8,'RE','Reggio Emilia',1),(0,8084,8,'RI','Rieti',1),(0,8085,8,'RN','Rimini',1),(0,8086,8,'RM','Roma',1),(0,8087,8,'RO','Rovigo',1),(0,8088,8,'SA','Salerno',1),(0,8089,8,'SS','Sassari',1),(0,8090,8,'SV','Savona',1),(0,8091,8,'SI','Siena',1),(0,8092,8,'SR','Siracusa',1),(0,8093,8,'SO','Sondrio',1),(0,8094,8,'TA','Taranto',1),(0,8095,8,'TE','Teramo',1),(0,8096,8,'TR','Terni',1),(0,8097,8,'TO','Torino',1),(0,8098,8,'TP','Trapani',1),(0,8099,8,'TN','Trento',1),(0,8100,8,'TV','Treviso',1),(0,8101,8,'TS','Trieste',1),(0,8102,8,'UD','Udine',1),(0,8103,8,'VA','Varese',1),(0,8104,8,'VE','Venezia',1),(0,8105,8,'VB','Verbano-Cusio-Ossola',1),(0,8106,8,'VC','Vercelli',1),(0,8107,8,'VR','Verona',1),(0,8108,8,'VV','Vibo Valentia',1),(0,8109,8,'VI','Vicenza',1),(0,8110,8,'VT','Viterbo',1),(0,11001,11,'DR','Drenthe',1),(0,11002,11,'FL','Flevoland',1),(0,11003,11,'FR','Friesland',1),(0,11004,11,'GE','Gelderland',1),(0,11005,11,'GR','Groningen',1),(0,11006,11,'LI','Limburg',1),(0,11007,11,'NB','Noord-Brabant',1),(0,11008,11,'NH','Noord-Holland',1),(0,11009,11,'OV','Overijssel',1),(0,11010,11,'UT','Utrecht',1),(0,11011,11,'ZE','Zeeland',1),(0,11012,11,'ZH','Zuid-Holland',1),(0,15001,15,'AN','Andalusia',1),(0,15002,15,'AR','Aragon',1),(0,15003,15,'AS','Asturias',1),(0,15004,15,'IB','Balearic Islands',1),(0,15005,15,'PV','Basque Country',1),(0,15006,15,'CN','Canary Islands',1),(0,15007,15,'CB','Cantabria',1),(0,15008,15,'CL','Castile and Leon',1),(0,15009,15,'CM','Castile-La Mancha',1),(0,15010,15,'CT','Catalonia',1),(0,15011,15,'CE','Ceuta',1),(0,15012,15,'EX','Extremadura',1),(0,15013,15,'GA','Galicia',1),(0,15014,15,'LO','La Rioja',1),(0,15015,15,'M','Madrid',1),(0,15016,15,'ML','Melilla',1),(0,15017,15,'MU','Murcia',1),(0,15018,15,'NA','Navarra',1),(0,15019,15,'VC','Valencia',1),(0,19001,19,'AL','Alabama',1),(0,19002,19,'AK','Alaska',1),(0,19003,19,'AZ','Arizona',1),(0,19004,19,'AR','Arkansas',1),(0,19005,19,'CA','California',1),(0,19006,19,'CO','Colorado',1),(0,19007,19,'CT','Connecticut',1),(0,19008,19,'DC','District of Columbia',1),(0,19009,19,'DE','Delaware',1),(0,19010,19,'FL','Florida',1),(0,19011,19,'GA','Georgia',1),(0,19012,19,'HI','Hawaii',1),(0,19013,19,'ID','Idaho',1),(0,19014,19,'IL','Illinois',1),(0,19015,19,'IN','Indiana',1),(0,19016,19,'IA','Iowa',1),(0,19017,19,'KS','Kansas',1),(0,19018,19,'KY','Kentucky ',1),(0,19019,19,'LA','Louisiana ',1),(0,19020,19,'ME','Maine',1),(0,19021,19,'MD','Maryland',1),(0,19022,19,'MA','Massachusetts',1),(0,19023,19,'MI','Michigan',1),(0,19024,19,'MN','Minnesota',1),(0,19025,19,'MS','Mississippi',1),(0,19026,19,'MO','Missouri',1),(0,19027,19,'MT','Montana',1),(0,19028,19,'NE','Nebraska',1),(0,19029,19,'NV','Nevada',1),(0,19030,19,'NH','New Hampshire',1),(0,19031,19,'NJ','New Jersey',1),(0,19032,19,'NM','New Mexico',1),(0,19033,19,'NY','New York',1),(0,19034,19,'NC','North Carolina',1),(0,19035,19,'ND','North Dakota',1),(0,19036,19,'OH','Ohio',1),(0,19037,19,'OK','Oklahoma ',1),(0,19038,19,'OR','Oregon',1),(0,19039,19,'PA','Pennsylvania',1),(0,19040,19,'PR','Puerto Rico',1),(0,19041,19,'RI','Rhode Island',1),(0,19042,19,'SC','South Carolina',1),(0,19043,19,'SD','South Dakota',1),(0,19044,19,'TN','Tennessee',1),(0,19045,19,'TX','Texas',1),(0,19046,19,'UT','Utah',1),(0,19047,19,'VT','Vermont',1),(0,19048,19,'VA','Virginia',1),(0,19049,19,'WA','Washington',1),(0,19050,19,'WV','West Virginia',1),(0,19051,19,'WI','Wisconsin',1),(0,19052,19,'WY','Wyoming',1),(0,32001,32,'ACT','Australian Capital Territory',1),(0,32002,32,'NSW','New South Wales',1),(0,32003,32,'NT','Northern Territory',1),(0,32004,32,'QLD','Queensland',1),(0,32005,32,'SA','South Australia',1),(0,32006,32,'TAS','Tasmania',1),(0,32007,32,'VIC','Victoria',1),(0,32008,32,'WA','Western Australia',1),(0,33001,33,'AT-1','Burgenland',1),(0,33002,33,'AT-2','Kärnten',1),(0,33003,33,'AT-3','Niederösterreich',1),(0,33004,33,'AT-4','Oberösterreich',1),(0,33005,33,'AT-5','Salzburg',1),(0,33006,33,'AT-6','Steiermark',1),(0,33007,33,'AT-7','Tirol',1),(0,33008,33,'AT-8','Vorarlberg',1),(0,33009,33,'AT-9','Vienna',1),(0,144001,144,'MX-AGS','Aguascalientes',1),(0,144002,144,'MX-BCN','Baja California',1),(0,144003,144,'MX-BCS','Baja California Sur',1),(0,144004,144,'MX-CAM','Campeche',1),(0,144005,144,'MX-CHP','Chiapas',1),(0,144006,144,'MX-CHI','Chihuahua',1),(0,144007,144,'MX-COA','Coahuila',1),(0,144008,144,'MX-COL','Colima',1),(0,144009,144,'MX-DUR','Durango',1),(0,144010,144,'MX-GTO','Guanajuato',1),(0,144011,144,'MX-GRO','Guerrero',1),(0,144012,144,'MX-HGO','Hidalgo',1),(0,144013,144,'MX-JAL','Jalisco',1),(0,144014,144,'MX-MEX','Mexico',1),(0,144015,144,'MX-MIC','Michoacan',1),(0,144016,144,'MX-MOR','Morelos',1),(0,144017,144,'MX-NAY','Nayarit',1),(0,144018,144,'MX-NLE','Nuevo Leon',1),(0,144019,144,'MX-OAX','Oaxaca',1),(0,144020,144,'MX-PUE','Puebla',1),(0,144021,144,'MX-QRO','Queretaro',1),(0,144023,144,'MX-ROO','Quintana Roo',1),(0,144024,144,'MX-SLP','San Luis Potosí',1),(0,144025,144,'MX-SIN','Sinaloa',1),(0,144026,144,'MX-SON','Sonora',1),(0,144027,144,'MX-TAB','Tabasco',1),(0,144028,144,'MX-TAM','Tamaulipas',1),(0,144029,144,'MX-TLX','Tlaxcala',1),(0,144030,144,'MX-VER','Veracruz',1),(0,144031,144,'MX-YUC','Yucatan',1),(0,144032,144,'MX-ZAC','Zacatecas',1),(0,164001,164,'01','Østfold',1),(0,164002,164,'02','Akershus',1),(0,164003,164,'03','Oslo',1),(0,164004,164,'04','Hedmark',1),(0,164005,164,'05','Oppland',1),(0,164006,164,'06','Buskerud',1),(0,164007,164,'07','Vestfold',1),(0,164008,164,'08','Telemark',1),(0,164009,164,'09','Aust-Agder',1),(0,164010,164,'10','Vest-Agder',1),(0,164011,164,'11','Rogaland',1),(0,164012,164,'12','Hordaland',1),(0,164013,164,'14','Sogn og Fjordane',1),(0,164014,164,'15','Møre of Romsdal',1),(0,164015,164,'16','Sør-Trøndelag',1),(0,164016,164,'17','Nord-Trøndelag',1),(0,164017,164,'18','Nordland',1),(0,164018,164,'19','Troms',1),(0,164019,164,'20','Finnmark',1),(0,202001,202,'AG','Aargau',1),(0,202002,202,'AR','Appenzell Ausserrhoden',1),(0,202003,202,'AI','Appenzell Innerrhoden',1),(0,202004,202,'BL','Basel-Landschaft',1),(0,202005,202,'BS','Basel-Stadt',1),(0,202006,202,'BE','Bern',1),(0,202007,202,'FR','Fribourg',1),(0,202008,202,'GE','Geneva',1),(0,202009,202,'GL','Glarus',1),(0,202010,202,'GR','Graubünden',1),(0,202011,202,'JU','Jura',1),(0,202012,202,'LU','Lucerne',1),(0,202013,202,'NE','Neuchâtel',1),(0,202014,202,'NW','Nidwalden',1),(0,202015,202,'OW','Obwalden',1),(0,202016,202,'SH','Schaffhausen',1),(0,202017,202,'SZ','Schwyz',1),(0,202018,202,'SO','Solothurn',1),(0,202019,202,'SG','St. Gallen',1),(0,202020,202,'TG','Thurgau',1),(0,202021,202,'TI','Ticino',1),(0,202022,202,'UR','Uri',1),(0,202023,202,'VS','Valais',1),(0,202024,202,'VD','Vaud',1),(0,202025,202,'ZG','Zug',1),(0,202026,202,'ZH','Zürich',1); /*!40000 ALTER TABLE `Region` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Release_` -- DROP TABLE IF EXISTS `Release_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Release_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `releaseId` bigint(20) NOT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `servletContextName` varchar(75) DEFAULT NULL, `schemaVersion` varchar(75) DEFAULT NULL, `buildNumber` int(11) DEFAULT NULL, `buildDate` datetime(6) DEFAULT NULL, `verified` tinyint(4) DEFAULT NULL, `state_` int(11) DEFAULT NULL, `testString` varchar(1024) DEFAULT NULL, PRIMARY KEY (`releaseId`), UNIQUE KEY `IX_8BD6BCA7` (`servletContextName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Release_` -- LOCK TABLES `Release_` WRITE; /*!40000 ALTER TABLE `Release_` DISABLE KEYS */; INSERT INTO `Release_` VALUES (1,1,'2018-07-02 08:50:47.000000','2018-07-02 15:50:58.843000','portal','7.0.10',7010,'2016-06-15 00:00:00.000000',1,NULL,'You take the blue pill, the story ends, you wake up in your bed and believe whatever you want to believe. You take the red pill, you stay in Wonderland, and I show you how deep the rabbit hole goes.'),(2,20169,'2018-07-02 15:51:02.131000','2018-07-02 15:51:02.140000','com.liferay.announcements.web','1.0.3',0,NULL,0,0,NULL),(5,20201,'2018-07-02 15:51:02.173000','2018-07-02 15:51:02.390000','com.liferay.blogs.layout.prototype','1.0.1',0,NULL,0,0,NULL),(2,20301,'2018-07-02 15:51:02.399000','2018-07-02 15:51:02.402000','com.liferay.blogs.recent.bloggers.web','1.0.0',0,NULL,0,0,NULL),(2,20401,'2018-07-02 15:51:02.415000','2018-07-02 15:51:02.417000','com.liferay.bookmarks.web','1.0.0',0,NULL,0,0,NULL),(2,20501,'2018-07-02 15:51:02.436000','2018-07-02 15:51:02.449000','com.liferay.comment.page.comments.web','1.0.0',0,NULL,0,0,NULL),(2,20601,'2018-07-02 15:51:02.461000','2018-07-02 15:51:02.463000','com.liferay.directory.web','1.0.1',0,NULL,0,0,NULL),(2,20701,'2018-07-02 15:51:02.503000','2018-07-02 15:51:02.506000','com.liferay.document.library.layout.set.prototype','1.0.0',0,NULL,0,0,NULL),(3,20801,'2018-07-02 15:51:02.514000','2018-07-02 15:51:23.773000','com.liferay.document.library.service','1.0.0',0,NULL,1,0,NULL),(2,20901,'2018-07-02 15:51:02.526000','2018-07-02 15:51:02.528000','com.liferay.flags.web','1.0.0',0,NULL,0,0,NULL),(2,21001,'2018-07-02 15:51:02.538000','2018-07-02 15:51:02.541000','com.liferay.image.uploader.web','1.0.0',0,NULL,0,0,NULL),(2,21101,'2018-07-02 15:51:02.556000','2018-07-02 15:51:02.559000','com.liferay.item.selector.web','1.0.0',0,NULL,0,0,NULL),(2,21201,'2018-07-02 15:51:02.589000','2018-07-02 15:51:02.597000','com.liferay.message.boards.layout.set.prototype','1.0.0',0,NULL,0,0,NULL),(5,21301,'2018-07-02 15:51:02.613000','2018-07-02 15:51:02.649000','com.liferay.microblogs.web','1.0.1',0,NULL,0,0,NULL),(2,21401,'2018-07-02 15:51:02.661000','2018-07-02 15:51:02.663000','com.liferay.quick.note.web','1.0.0',0,NULL,0,0,NULL),(2,21501,'2018-07-02 15:51:02.674000','2018-07-02 15:51:02.676000','com.liferay.ratings.page.ratings.web','1.0.0',0,NULL,0,0,NULL),(2,21601,'2018-07-02 15:51:02.685000','2018-07-02 15:51:02.687000','com.liferay.recent.documents.web','1.0.1',0,NULL,0,0,NULL),(2,21701,'2018-07-02 15:51:02.696000','2018-07-02 15:51:02.699000','com.liferay.social.activities.web','1.0.0',0,NULL,0,0,NULL),(2,21801,'2018-07-02 15:51:02.709000','2018-07-02 15:51:02.711000','com.liferay.social.activity.web','1.0.0',0,NULL,0,0,NULL),(2,21901,'2018-07-02 15:51:02.720000','2018-07-02 15:51:02.722000','com.liferay.social.group.statistics.web','1.0.0',0,NULL,0,0,NULL),(2,22001,'2018-07-02 15:51:02.732000','2018-07-02 15:51:02.734000','com.liferay.social.requests.web','1.0.0',0,NULL,0,0,NULL),(2,22101,'2018-07-02 15:51:02.744000','2018-07-02 15:51:02.746000','com.liferay.social.user.statistics.web','1.0.0',0,NULL,0,0,NULL),(5,22201,'2018-07-02 15:51:02.754000','2018-07-02 15:51:02.787000','com.liferay.wiki.layout.prototype','1.0.1',0,NULL,0,0,NULL),(2,22301,'2018-07-02 15:51:02.809000','2018-07-02 15:51:02.812000','com.liferay.portal.workflow.kaleo.designer.web','1.0.0',0,NULL,0,0,NULL),(5,22401,'2018-07-02 15:51:02.833000','2018-07-02 15:51:02.853000','com.liferay.calendar.web','1.0.1',0,NULL,0,0,NULL),(2,22601,'2018-07-02 15:51:02.860000','2018-07-02 15:51:02.862000','com.liferay.dynamic.data.mapping.web','1.0.0',0,NULL,0,0,NULL),(5,22701,'2018-07-02 15:51:02.870000','2018-07-02 15:51:02.900000','com.liferay.portal.workflow.kaleo.forms.web','1.0.3',0,NULL,0,0,NULL),(5,22801,'2018-07-02 15:51:02.916000','2018-07-02 15:51:02.943000','com.liferay.contacts.web','1.0.1',0,NULL,0,0,NULL),(2,22901,'2018-07-02 15:51:02.953000','2018-07-02 15:51:02.956000','com.liferay.hello.velocity.web','1.0.0',0,NULL,0,0,NULL),(2,23001,'2018-07-02 15:51:02.967000','2018-07-02 15:51:02.970000','com.liferay.hello.world.web','1.0.0',0,NULL,0,0,NULL),(2,23101,'2018-07-02 15:51:02.978000','2018-07-02 15:51:02.980000','com.liferay.license.manager.web','1.0.0',0,NULL,0,0,NULL),(2,23201,'2018-07-02 15:51:02.988000','2018-07-02 15:51:02.990000','com.liferay.login.web','1.0.0',0,NULL,0,0,NULL),(2,23301,'2018-07-02 15:51:03.001000','2018-07-02 15:51:03.003000','com.liferay.mobile.device.rules.web','1.0.0',0,NULL,0,0,NULL),(2,23401,'2018-07-02 15:51:03.020000','2018-07-02 15:51:03.034000','com.liferay.monitoring.web','1.0.0',0,NULL,0,0,NULL),(2,23501,'2018-07-02 15:51:03.048000','2018-07-02 15:51:03.050000','com.liferay.my.account.web','1.0.0',0,NULL,0,0,NULL),(2,23601,'2018-07-02 15:51:03.059000','2018-07-02 15:51:03.061000','com.liferay.plugins.admin.web','1.0.0',0,NULL,0,0,NULL),(2,23701,'2018-07-02 15:51:03.080000','2018-07-02 15:51:03.088000','com.liferay.portal.instances.web','1.0.0',0,NULL,0,0,NULL),(2,23801,'2018-07-02 15:51:03.104000','2018-07-02 15:51:03.106000','com.liferay.portal.search.web','1.0.0',0,NULL,0,0,NULL),(2,23901,'2018-07-02 15:51:03.115000','2018-07-02 15:51:03.117000','com.liferay.portal.scheduler.quartz','1.0.0',0,NULL,0,0,NULL),(2,24001,'2018-07-02 15:51:03.352000','2018-07-02 15:51:03.360000','com.liferay.portal.settings.web','1.0.0',0,NULL,0,0,NULL),(2,24101,'2018-07-02 15:51:03.370000','2018-07-02 15:51:03.373000','com.liferay.server.admin.web','1.0.0',0,NULL,0,0,NULL),(2,24201,'2018-07-02 15:51:03.381000','2018-07-02 15:51:03.384000','com.liferay.web.proxy.web','1.0.0',0,NULL,0,0,NULL),(2,24301,'2018-07-02 15:51:03.416000','2018-07-02 15:51:03.471000','com.liferay.sync.web','1.0.0',0,NULL,0,0,NULL),(2,24401,'2018-07-02 15:51:03.505000','2018-07-02 15:51:03.508000','com.liferay.asset.browser.web','1.0.0',0,NULL,0,0,NULL),(2,24501,'2018-07-02 15:51:03.517000','2018-07-02 15:51:03.519000','com.liferay.asset.categories.navigation.web','1.0.0',0,NULL,0,0,NULL),(2,24601,'2018-07-02 15:51:03.527000','2018-07-02 15:51:03.529000','com.liferay.asset.display.web','1.0.0',0,NULL,0,0,NULL),(5,24701,'2018-07-02 15:51:03.537000','2018-07-02 15:51:03.571000','com.liferay.asset.publisher.layout.prototype','1.0.1',0,NULL,0,0,NULL),(2,24801,'2018-07-02 15:51:03.584000','2018-07-02 15:51:03.587000','com.liferay.asset.tags.compiler.web','1.0.0',0,NULL,0,0,NULL),(2,24901,'2018-07-02 15:51:03.597000','2018-07-02 15:51:03.599000','com.liferay.asset.tags.navigation.web','1.0.0',0,NULL,0,0,NULL),(2,25001,'2018-07-02 15:51:03.612000','2018-07-02 15:51:03.615000','com.liferay.exportimport.web','1.0.0',0,NULL,0,0,NULL),(2,25101,'2018-07-02 15:51:03.627000','2018-07-02 15:51:03.629000','com.liferay.iframe.web','1.0.0',0,NULL,0,0,NULL),(2,25201,'2018-07-02 15:51:03.637000','2018-07-02 15:51:03.639000','com.liferay.journal.content.search.web','1.0.1',0,NULL,0,0,NULL),(2,25301,'2018-07-02 15:51:03.648000','2018-07-02 15:51:03.651000','com.liferay.journal.content.web','1.0.0',0,NULL,0,0,NULL),(2,25401,'2018-07-02 15:51:03.659000','2018-07-02 15:51:03.661000','com.liferay.journal.web','1.0.0',0,NULL,0,0,NULL),(2,25501,'2018-07-02 15:51:03.668000','2018-07-02 15:51:03.670000','com.liferay.nested.portlets.web','1.0.0',0,NULL,0,0,NULL),(2,25601,'2018-07-02 15:51:03.677000','2018-07-02 15:51:03.679000','com.liferay.portlet.configuration.css.web','1.0.0',0,NULL,0,0,NULL),(2,25701,'2018-07-02 15:51:03.690000','2018-07-02 15:51:03.692000','com.liferay.portlet.configuration.sharing.web','1.0.0',0,NULL,0,0,NULL),(2,25801,'2018-07-02 15:51:03.699000','2018-07-02 15:51:03.701000','com.liferay.portlet.configuration.web','1.0.0',0,NULL,0,0,NULL),(2,25901,'2018-07-02 15:51:03.720000','2018-07-02 15:51:03.734000','com.liferay.product.navigation.product.menu.web','1.0.0',0,NULL,0,0,NULL),(2,26001,'2018-07-02 15:51:03.744000','2018-07-02 15:51:03.746000','com.liferay.rss.web','3.0.0',0,NULL,0,0,NULL),(2,26101,'2018-07-02 15:51:03.756000','2018-07-02 15:51:03.759000','com.liferay.site.browser.web','1.0.0',0,NULL,0,0,NULL),(2,26201,'2018-07-02 15:51:03.768000','2018-07-02 15:51:03.770000','com.liferay.site.my.sites.web','1.0.0',0,NULL,0,0,NULL),(2,26301,'2018-07-02 15:51:03.787000','2018-07-02 15:51:03.794000','com.liferay.site.navigation.breadcrumb.web','1.0.0',0,NULL,0,0,NULL),(2,26401,'2018-07-02 15:51:03.808000','2018-07-02 15:51:03.811000','com.liferay.site.navigation.directory.web','1.0.0',0,NULL,0,0,NULL),(2,26501,'2018-07-02 15:51:03.819000','2018-07-02 15:51:03.821000','com.liferay.site.navigation.language.web','1.0.0',0,NULL,0,0,NULL),(2,26601,'2018-07-02 15:51:03.829000','2018-07-02 15:51:03.831000','com.liferay.site.navigation.menu.web','1.0.0',0,NULL,0,0,NULL),(2,26701,'2018-07-02 15:51:03.839000','2018-07-02 15:51:03.841000','com.liferay.site.navigation.site.map.web','1.0.0',0,NULL,0,0,NULL),(2,26801,'2018-07-02 15:51:03.847000','2018-07-02 15:51:03.850000','com.liferay.staging.bar.web','1.0.0',0,NULL,0,0,NULL),(2,26901,'2018-07-02 15:51:03.857000','2018-07-02 15:51:03.860000','com.liferay.trash.web','1.0.0',0,NULL,0,0,NULL),(2,27001,'2018-07-02 15:51:03.867000','2018-07-02 15:51:03.869000','com.liferay.xsl.content.web','1.0.0',0,NULL,0,0,NULL),(2,27101,'2018-07-02 15:51:03.889000','2018-07-02 15:51:03.891000','com.liferay.document.library.web','1.0.0',0,NULL,0,0,NULL),(2,27201,'2018-07-02 15:51:03.906000','2018-07-02 15:51:03.908000','com.liferay.message.boards.web','1.0.0',0,NULL,0,0,NULL),(2,27301,'2018-07-02 15:51:03.920000','2018-07-02 15:51:03.922000','com.liferay.wiki.web','1.0.0',0,NULL,0,0,NULL),(2,27401,'2018-07-02 15:51:03.947000','2018-07-02 15:51:03.949000','com.liferay.blogs.web','1.0.0',0,NULL,0,0,NULL),(2,27501,'2018-07-02 15:51:03.975000','2018-07-02 15:51:03.977000','com.liferay.dynamic.data.lists.web','1.0.0',0,NULL,0,0,NULL),(2,27601,'2018-07-02 15:51:04.008000','2018-07-02 15:51:04.010000','com.liferay.notifications.web','2.1.0',0,NULL,0,0,NULL),(3,27701,'2018-07-02 15:51:04.287000','2018-07-02 15:51:23.629000','com.liferay.bookmarks.service','1.0.0',0,NULL,1,0,NULL),(2,27804,'2018-07-02 15:51:04.759000','2018-07-02 15:51:04.767000','com.liferay.flags.service','2.0.1',0,NULL,0,0,NULL),(2,27902,'2018-07-02 15:51:04.962000','2018-07-02 15:51:04.964000','com.liferay.invitation.invite.members.service','1.0.1',0,NULL,0,0,NULL),(2,28003,'2018-07-02 15:51:05.285000','2018-07-02 15:51:05.288000','com.liferay.microblogs.service','1.0.2',0,NULL,0,0,NULL),(3,28103,'2018-07-02 15:51:06.040000','2018-07-02 15:51:23.544000','com.liferay.wiki.service','1.0.0',0,NULL,1,0,NULL),(2,28205,'2018-07-02 15:51:07.003000','2018-07-02 15:51:07.007000','com.liferay.calendar.service','1.0.6',0,NULL,0,0,NULL),(2,28306,'2018-07-02 15:51:07.732000','2018-07-02 15:51:07.739000','com.liferay.dynamic.data.lists.service','1.0.0',0,NULL,0,0,NULL),(3,28401,'2018-07-02 15:51:08.709000','2018-07-02 15:51:23.724000','com.liferay.dynamic.data.mapping.service','1.0.2',0,NULL,1,0,NULL),(3,28501,'2018-07-02 15:51:08.961000','2018-07-02 15:51:23.575000','com.liferay.polls.service','1.0.4',0,NULL,1,0,NULL),(2,28605,'2018-07-02 15:51:09.273000','2018-07-02 15:51:09.276000','com.liferay.portal.workflow.kaleo.designer.service','1.0.1',0,NULL,0,0,NULL),(2,28703,'2018-07-02 15:51:09.573000','2018-07-02 15:51:09.575000','com.liferay.portal.workflow.kaleo.forms.service','1.1.0',0,NULL,0,0,NULL),(2,28801,'2018-07-02 15:51:09.583000','2018-07-02 15:51:09.585000','com.liferay.portal.workflow.kaleo.runtime.impl','2.0.3',0,NULL,0,0,NULL),(2,28901,'2018-07-02 15:51:10.924000','2018-07-02 15:51:10.926000','com.liferay.portal.workflow.kaleo.service','1.3.2',0,NULL,0,0,NULL),(2,29018,'2018-07-02 15:51:12.181000','2018-07-02 15:51:12.183000','com.liferay.contacts.service','2.0.2',0,NULL,0,0,NULL),(3,29103,'2018-07-02 15:51:12.874000','2018-07-02 15:51:23.591000','com.liferay.mobile.device.rules.service','1.0.1',0,NULL,1,0,NULL),(2,29206,'2018-07-02 15:51:13.459000','2018-07-02 15:51:13.462000','com.liferay.portal.background.task.service','1.0.0',0,NULL,0,0,NULL),(2,29303,'2018-07-02 15:51:13.614000','2018-07-02 15:51:13.622000','com.liferay.exportimport.service','1.0.0',0,NULL,0,0,NULL),(2,29401,'2018-07-02 15:51:13.655000','2018-07-02 15:51:13.663000','com.liferay.portal.instances.service','1.0.0',0,NULL,0,0,NULL),(2,29502,'2018-07-02 15:51:13.851000','2018-07-02 15:51:13.853000','com.liferay.portal.lock.service','1.0.0',0,NULL,0,0,NULL),(2,29615,'2018-07-02 15:51:14.954000','2018-07-02 15:51:14.962000','com.liferay.asset.publisher.web','1.0.0',0,NULL,0,0,NULL),(2,29863,'2018-07-02 15:51:18.436000','2018-07-02 15:51:18.445000','com.liferay.portal.security.audit.storage.service','1.0.0',0,NULL,0,0,NULL),(3,29903,'2018-07-02 15:51:18.685000','2018-07-02 15:51:23.810000','com.liferay.portal.security.service.access.policy.service','2.0.13',0,NULL,1,0,NULL),(2,30006,'2018-07-02 15:51:19.129000','2018-07-02 15:51:19.131000','com.liferay.marketplace.service','2.0.2',0,NULL,0,0,NULL),(2,30661,'2018-07-02 15:51:20.575000','2018-07-02 15:51:20.578000','com.liferay.oauth.service','1.0.0',0,NULL,0,0,NULL),(2,30704,'2018-07-02 15:51:21.075000','2018-07-02 15:51:21.078000','com.liferay.sync.service','1.0.4',0,NULL,0,0,NULL),(3,30805,'2018-07-02 15:51:22.446000','2018-07-02 15:51:23.865000','com.liferay.journal.service','1.0.2',0,NULL,1,0,NULL),(5,30908,'2018-07-02 15:51:23.114000','2018-07-02 15:51:23.153000','com.liferay.layout.admin.web','1.0.1',0,NULL,0,0,NULL),(2,31001,'2018-07-02 15:51:23.350000','2018-07-02 15:51:23.359000','com.liferay.wiki.navigation.web','1.0.1',0,NULL,0,0,NULL),(0,31101,'2018-07-02 15:51:23.401000','2018-07-02 15:51:23.401000','com.liferay.portal.scheduler.internal.verify',NULL,0,NULL,1,0,NULL),(0,31102,'2018-07-02 15:51:23.418000','2018-07-02 15:51:23.418000','com.liferay.portal.security.sso.google',NULL,0,NULL,1,0,NULL),(0,31103,'2018-07-02 15:51:23.435000','2018-07-02 15:51:23.435000','com.liferay.portal.security.sso.cas',NULL,0,NULL,1,0,NULL),(0,31104,'2018-07-02 15:51:23.449000','2018-07-02 15:51:23.449000','com.liferay.portal.security.sso.token.shibboleth',NULL,0,NULL,1,0,NULL),(0,31105,'2018-07-02 15:51:23.460000','2018-07-02 15:51:23.460000','com.liferay.portal.security.sso.token.siteminder',NULL,0,NULL,1,0,NULL),(0,31106,'2018-07-02 15:51:23.466000','2018-07-02 15:51:23.466000','com.liferay.portal.security.sso.facebook.connect',NULL,0,NULL,1,0,NULL),(0,31107,'2018-07-02 15:51:23.480000','2018-07-02 15:51:23.480000','com.liferay.portal.security.sso.openid',NULL,0,NULL,1,0,NULL),(0,31108,'2018-07-02 15:51:23.493000','2018-07-02 15:51:23.493000','com.liferay.portal.security.sso.opensso',NULL,0,NULL,1,0,NULL),(0,31109,'2018-07-02 15:51:23.507000','2018-07-02 15:51:23.507000','com.liferay.portal.security.sso.ntlm',NULL,0,NULL,1,0,NULL),(0,31110,'2018-07-02 15:51:23.517000','2018-07-02 15:51:23.517000','com.liferay.portal.security.ldap',NULL,0,NULL,1,0,NULL),(1,31195,'2018-07-02 15:52:01.533000','2018-07-02 15:52:01.533000','lcs-portlet',NULL,413,NULL,1,0,NULL); /*!40000 ALTER TABLE `Release_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Repository` -- DROP TABLE IF EXISTS `Repository`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Repository` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `repositoryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `portletId` varchar(200) DEFAULT NULL, `typeSettings` longtext, `dlFolderId` bigint(20) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`repositoryId`), UNIQUE KEY `IX_60C8634C` (`groupId`,`name`,`portletId`), UNIQUE KEY `IX_11641E26` (`uuid_`,`groupId`), KEY `IX_F543EA4` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Repository` -- LOCK TABLES `Repository` WRITE; /*!40000 ALTER TABLE `Repository` DISABLE KEYS */; /*!40000 ALTER TABLE `Repository` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RepositoryEntry` -- DROP TABLE IF EXISTS `RepositoryEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RepositoryEntry` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `repositoryEntryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `mappedId` varchar(255) DEFAULT NULL, `manualCheckInRequired` tinyint(4) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`repositoryEntryId`), UNIQUE KEY `IX_9BDCF489` (`repositoryId`,`mappedId`), UNIQUE KEY `IX_354AA664` (`uuid_`,`groupId`), KEY `IX_D3B9AF62` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RepositoryEntry` -- LOCK TABLES `RepositoryEntry` WRITE; /*!40000 ALTER TABLE `RepositoryEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `RepositoryEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourceAction` -- DROP TABLE IF EXISTS `ResourceAction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourceAction` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `resourceActionId` bigint(20) NOT NULL, `name` varchar(255) DEFAULT NULL, `actionId` varchar(75) DEFAULT NULL, `bitwiseValue` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourceActionId`), UNIQUE KEY `IX_EDB9986E` (`name`,`actionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourceAction` -- LOCK TABLES `ResourceAction` WRITE; /*!40000 ALTER TABLE `ResourceAction` DISABLE KEYS */; INSERT INTO `ResourceAction` VALUES (0,1,'com.liferay.message.boards.kernel.model.MBThread','PERMISSIONS',2),(0,2,'com.liferay.message.boards.kernel.model.MBThread','SUBSCRIBE',4),(0,3,'com.liferay.message.boards.kernel.model.MBThread','VIEW',1),(0,4,'com.liferay.blogs','ADD_ENTRY',2),(0,5,'com.liferay.blogs','PERMISSIONS',4),(0,6,'com.liferay.blogs','SUBSCRIBE',8),(0,7,'com.liferay.message.boards.kernel.model.MBCategory','DELETE',2),(0,8,'com.liferay.message.boards.kernel.model.MBCategory','PERMISSIONS',4),(0,9,'com.liferay.message.boards.kernel.model.MBCategory','ADD_FILE',8),(0,10,'com.liferay.message.boards.kernel.model.MBCategory','REPLY_TO_MESSAGE',16),(0,11,'com.liferay.message.boards.kernel.model.MBCategory','LOCK_THREAD',32),(0,12,'com.liferay.message.boards.kernel.model.MBCategory','UPDATE',64),(0,13,'com.liferay.message.boards.kernel.model.MBCategory','SUBSCRIBE',128),(0,14,'com.liferay.message.boards.kernel.model.MBCategory','VIEW',1),(0,15,'com.liferay.message.boards.kernel.model.MBCategory','ADD_MESSAGE',256),(0,16,'com.liferay.message.boards.kernel.model.MBCategory','MOVE_THREAD',512),(0,17,'com.liferay.message.boards.kernel.model.MBCategory','ADD_SUBCATEGORY',1024),(0,18,'com.liferay.message.boards.kernel.model.MBCategory','UPDATE_THREAD_PRIORITY',2048),(0,19,'com.liferay.asset.tags','PERMISSIONS',2),(0,20,'com.liferay.asset.tags','ADD_TAG',4),(0,21,'com.liferay.document.library','PERMISSIONS',2),(0,22,'com.liferay.document.library','ADD_REPOSITORY',4),(0,23,'com.liferay.document.library','ADD_DOCUMENT_TYPE',8),(0,24,'com.liferay.document.library','ADD_SHORTCUT',16),(0,25,'com.liferay.document.library','UPDATE',32),(0,26,'com.liferay.document.library','ADD_DOCUMENT',64),(0,27,'com.liferay.document.library','SUBSCRIBE',128),(0,28,'com.liferay.document.library','VIEW',1),(0,29,'com.liferay.document.library','ADD_FOLDER',256),(0,30,'com.liferay.document.library','ADD_STRUCTURE',512),(0,31,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure','DELETE',2),(0,32,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure','PERMISSIONS',4),(0,33,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure','UPDATE',8),(0,34,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure','VIEW',1),(0,35,'com.liferay.blogs.kernel.model.BlogsEntry','UPDATE_DISCUSSION',2),(0,36,'com.liferay.blogs.kernel.model.BlogsEntry','DELETE',4),(0,37,'com.liferay.blogs.kernel.model.BlogsEntry','PERMISSIONS',8),(0,38,'com.liferay.blogs.kernel.model.BlogsEntry','DELETE_DISCUSSION',16),(0,39,'com.liferay.blogs.kernel.model.BlogsEntry','UPDATE',32),(0,40,'com.liferay.blogs.kernel.model.BlogsEntry','VIEW',1),(0,41,'com.liferay.blogs.kernel.model.BlogsEntry','ADD_DISCUSSION',64),(0,42,'com.liferay.announcements.kernel.model.AnnouncementsEntry','DELETE',2),(0,43,'com.liferay.announcements.kernel.model.AnnouncementsEntry','PERMISSIONS',4),(0,44,'com.liferay.announcements.kernel.model.AnnouncementsEntry','UPDATE',8),(0,45,'com.liferay.announcements.kernel.model.AnnouncementsEntry','VIEW',1),(0,46,'com.liferay.portal.kernel.model.LayoutPrototype','DELETE',2),(0,47,'com.liferay.portal.kernel.model.LayoutPrototype','PERMISSIONS',4),(0,48,'com.liferay.portal.kernel.model.LayoutPrototype','UPDATE',8),(0,49,'com.liferay.portal.kernel.model.LayoutPrototype','VIEW',1),(0,50,'com.liferay.asset.categories','PERMISSIONS',2),(0,51,'com.liferay.asset.categories','ADD_CATEGORY',4),(0,52,'com.liferay.asset.categories','ADD_VOCABULARY',8),(0,53,'com.liferay.portal.kernel.model.Group','PERMISSIONS',2),(0,54,'com.liferay.portal.kernel.model.Group','VIEW_MEMBERS',4),(0,55,'com.liferay.portal.kernel.model.Group','MANAGE_ANNOUNCEMENTS',8),(0,56,'com.liferay.portal.kernel.model.Group','PUBLISH_STAGING',16),(0,57,'com.liferay.portal.kernel.model.Group','VIEW',1),(0,58,'com.liferay.portal.kernel.model.Group','EXPORT_IMPORT_LAYOUTS',32),(0,59,'com.liferay.portal.kernel.model.Group','ASSIGN_USER_ROLES',64),(0,60,'com.liferay.portal.kernel.model.Group','DELETE',128),(0,61,'com.liferay.portal.kernel.model.Group','VIEW_SITE_ADMINISTRATION',256),(0,62,'com.liferay.portal.kernel.model.Group','ASSIGN_MEMBERS',512),(0,63,'com.liferay.portal.kernel.model.Group','MANAGE_LAYOUTS',1024),(0,64,'com.liferay.portal.kernel.model.Group','MANAGE_ARCHIVED_SETUPS',2048),(0,65,'com.liferay.portal.kernel.model.Group','ADD_COMMUNITY',4096),(0,66,'com.liferay.portal.kernel.model.Group','UPDATE',8192),(0,67,'com.liferay.portal.kernel.model.Group','PUBLISH_PORTLET_INFO',16384),(0,68,'com.liferay.portal.kernel.model.Group','ADD_LAYOUT_SET_BRANCH',32768),(0,69,'com.liferay.portal.kernel.model.Group','PREVIEW_IN_DEVICE',65536),(0,70,'com.liferay.portal.kernel.model.Group','MANAGE_TEAMS',131072),(0,71,'com.liferay.portal.kernel.model.Group','ADD_LAYOUT',262144),(0,72,'com.liferay.portal.kernel.model.Group','ADD_LAYOUT_BRANCH',524288),(0,73,'com.liferay.portal.kernel.model.Group','MANAGE_SUBGROUPS',1048576),(0,74,'com.liferay.portal.kernel.model.Group','VIEW_STAGING',2097152),(0,75,'com.liferay.portal.kernel.model.Group','EXPORT_IMPORT_PORTLET_INFO',4194304),(0,76,'com.liferay.portal.kernel.model.Group','CONFIGURE_PORTLETS',8388608),(0,77,'com.liferay.portal.kernel.model.Group','MANAGE_STAGING',16777216),(0,78,'com.liferay.portal.kernel.model.LayoutSetPrototype','DELETE',2),(0,79,'com.liferay.portal.kernel.model.LayoutSetPrototype','PERMISSIONS',4),(0,80,'com.liferay.portal.kernel.model.LayoutSetPrototype','UPDATE',8),(0,81,'com.liferay.portal.kernel.model.LayoutSetPrototype','VIEW',1),(0,82,'com.liferay.portal.kernel.model.Organization','ASSIGN_USER_ROLES',2),(0,83,'com.liferay.portal.kernel.model.Organization','DELETE',4),(0,84,'com.liferay.portal.kernel.model.Organization','MANAGE_SUBORGANIZATIONS',8),(0,85,'com.liferay.portal.kernel.model.Organization','PERMISSIONS',16),(0,86,'com.liferay.portal.kernel.model.Organization','ASSIGN_MEMBERS',32),(0,87,'com.liferay.portal.kernel.model.Organization','VIEW_MEMBERS',64),(0,88,'com.liferay.portal.kernel.model.Organization','MANAGE_ANNOUNCEMENTS',128),(0,89,'com.liferay.portal.kernel.model.Organization','UPDATE',256),(0,90,'com.liferay.portal.kernel.model.Organization','MANAGE_USERS',512),(0,91,'com.liferay.portal.kernel.model.Organization','VIEW',1),(0,92,'com.liferay.portal.kernel.model.Organization','ADD_ORGANIZATION',1024),(0,93,'com.liferay.portal.kernel.model.LayoutBranch','DELETE',2),(0,94,'com.liferay.portal.kernel.model.LayoutBranch','PERMISSIONS',4),(0,95,'com.liferay.portal.kernel.model.LayoutBranch','UPDATE',8),(0,96,'com.liferay.portal.kernel.model.Role','DELETE',2),(0,97,'com.liferay.portal.kernel.model.Role','PERMISSIONS',4),(0,98,'com.liferay.portal.kernel.model.Role','DEFINE_PERMISSIONS',8),(0,99,'com.liferay.portal.kernel.model.Role','ASSIGN_MEMBERS',16),(0,100,'com.liferay.portal.kernel.model.Role','MANAGE_ANNOUNCEMENTS',32),(0,101,'com.liferay.portal.kernel.model.Role','UPDATE',64),(0,102,'com.liferay.portal.kernel.model.Role','VIEW',1),(0,103,'com.liferay.document.library.kernel.model.DLFileEntry','UPDATE_DISCUSSION',2),(0,104,'com.liferay.document.library.kernel.model.DLFileEntry','DELETE',4),(0,105,'com.liferay.document.library.kernel.model.DLFileEntry','OVERRIDE_CHECKOUT',8),(0,106,'com.liferay.document.library.kernel.model.DLFileEntry','PERMISSIONS',16),(0,107,'com.liferay.document.library.kernel.model.DLFileEntry','DELETE_DISCUSSION',32),(0,108,'com.liferay.document.library.kernel.model.DLFileEntry','UPDATE',64),(0,109,'com.liferay.document.library.kernel.model.DLFileEntry','VIEW',1),(0,110,'com.liferay.document.library.kernel.model.DLFileEntry','ADD_DISCUSSION',128),(0,111,'com.liferay.portal.kernel.model.User','DELETE',2),(0,112,'com.liferay.portal.kernel.model.User','PERMISSIONS',4),(0,113,'com.liferay.portal.kernel.model.User','IMPERSONATE',8),(0,114,'com.liferay.portal.kernel.model.User','UPDATE',16),(0,115,'com.liferay.portal.kernel.model.User','VIEW',1),(0,116,'com.liferay.portal.kernel.model.UserGroup','DELETE',2),(0,117,'com.liferay.portal.kernel.model.UserGroup','PERMISSIONS',4),(0,118,'com.liferay.portal.kernel.model.UserGroup','ASSIGN_MEMBERS',8),(0,119,'com.liferay.portal.kernel.model.UserGroup','VIEW_MEMBERS',16),(0,120,'com.liferay.portal.kernel.model.UserGroup','MANAGE_ANNOUNCEMENTS',32),(0,121,'com.liferay.portal.kernel.model.UserGroup','UPDATE',64),(0,122,'com.liferay.portal.kernel.model.UserGroup','VIEW',1),(0,123,'com.liferay.asset.kernel.model.AssetCategory','DELETE',2),(0,124,'com.liferay.asset.kernel.model.AssetCategory','PERMISSIONS',4),(0,125,'com.liferay.asset.kernel.model.AssetCategory','ADD_CATEGORY',8),(0,126,'com.liferay.asset.kernel.model.AssetCategory','UPDATE',16),(0,127,'com.liferay.asset.kernel.model.AssetCategory','VIEW',1),(0,128,'com.liferay.asset.kernel.model.AssetTag','DELETE',2),(0,129,'com.liferay.asset.kernel.model.AssetTag','PERMISSIONS',4),(0,130,'com.liferay.asset.kernel.model.AssetTag','UPDATE',8),(0,131,'com.liferay.portal.kernel.model.LayoutSetBranch','DELETE',2),(0,132,'com.liferay.portal.kernel.model.LayoutSetBranch','PERMISSIONS',4),(0,133,'com.liferay.portal.kernel.model.LayoutSetBranch','MERGE',8),(0,134,'com.liferay.portal.kernel.model.LayoutSetBranch','UPDATE',16),(0,135,'com.liferay.asset.kernel.model.AssetVocabulary','DELETE',2),(0,136,'com.liferay.asset.kernel.model.AssetVocabulary','PERMISSIONS',4),(0,137,'com.liferay.asset.kernel.model.AssetVocabulary','UPDATE',8),(0,138,'com.liferay.asset.kernel.model.AssetVocabulary','VIEW',1),(0,139,'com.liferay.document.library.kernel.model.DLFolder','DELETE',2),(0,140,'com.liferay.document.library.kernel.model.DLFolder','PERMISSIONS',4),(0,141,'com.liferay.document.library.kernel.model.DLFolder','ADD_SUBFOLDER',8),(0,142,'com.liferay.document.library.kernel.model.DLFolder','ADD_SHORTCUT',16),(0,143,'com.liferay.document.library.kernel.model.DLFolder','UPDATE',32),(0,144,'com.liferay.document.library.kernel.model.DLFolder','ADD_DOCUMENT',64),(0,145,'com.liferay.document.library.kernel.model.DLFolder','SUBSCRIBE',128),(0,146,'com.liferay.document.library.kernel.model.DLFolder','VIEW',1),(0,147,'com.liferay.document.library.kernel.model.DLFolder','ACCESS',256),(0,148,'com.liferay.portal.kernel.model.Layout','UPDATE_DISCUSSION',2),(0,149,'com.liferay.portal.kernel.model.Layout','DELETE',4),(0,150,'com.liferay.portal.kernel.model.Layout','PERMISSIONS',8),(0,151,'com.liferay.portal.kernel.model.Layout','CUSTOMIZE',16),(0,152,'com.liferay.portal.kernel.model.Layout','ADD_LAYOUT',32),(0,153,'com.liferay.portal.kernel.model.Layout','DELETE_DISCUSSION',64),(0,154,'com.liferay.portal.kernel.model.Layout','CONFIGURE_PORTLETS',128),(0,155,'com.liferay.portal.kernel.model.Layout','UPDATE',256),(0,156,'com.liferay.portal.kernel.model.Layout','VIEW',1),(0,157,'com.liferay.portal.kernel.model.Layout','ADD_DISCUSSION',512),(0,158,'com.liferay.document.library.kernel.model.DLFileEntryType','DELETE',2),(0,159,'com.liferay.document.library.kernel.model.DLFileEntryType','PERMISSIONS',4),(0,160,'com.liferay.document.library.kernel.model.DLFileEntryType','UPDATE',8),(0,161,'com.liferay.document.library.kernel.model.DLFileEntryType','VIEW',1),(0,162,'com.liferay.portal.kernel.model.Team','DELETE',2),(0,163,'com.liferay.portal.kernel.model.Team','PERMISSIONS',4),(0,164,'com.liferay.portal.kernel.model.Team','ASSIGN_MEMBERS',8),(0,165,'com.liferay.portal.kernel.model.Team','UPDATE',16),(0,166,'com.liferay.portal.kernel.model.Team','VIEW',1),(0,167,'com.liferay.portal.kernel.model.PasswordPolicy','DELETE',2),(0,168,'com.liferay.portal.kernel.model.PasswordPolicy','PERMISSIONS',4),(0,169,'com.liferay.portal.kernel.model.PasswordPolicy','ASSIGN_MEMBERS',8),(0,170,'com.liferay.portal.kernel.model.PasswordPolicy','UPDATE',16),(0,171,'com.liferay.portal.kernel.model.PasswordPolicy','VIEW',1),(0,172,'com.liferay.document.library.kernel.model.DLFileShortcut','DELETE',2),(0,173,'com.liferay.document.library.kernel.model.DLFileShortcut','PERMISSIONS',4),(0,174,'com.liferay.document.library.kernel.model.DLFileShortcut','UPDATE',8),(0,175,'com.liferay.document.library.kernel.model.DLFileShortcut','VIEW',1),(0,176,'com.liferay.message.boards.kernel.model.MBMessage','DELETE',2),(0,177,'com.liferay.message.boards.kernel.model.MBMessage','PERMISSIONS',4),(0,178,'com.liferay.message.boards.kernel.model.MBMessage','UPDATE',8),(0,179,'com.liferay.message.boards.kernel.model.MBMessage','SUBSCRIBE',16),(0,180,'com.liferay.message.boards.kernel.model.MBMessage','VIEW',1),(0,181,'com.liferay.expando.kernel.model.ExpandoColumn','DELETE',2),(0,182,'com.liferay.expando.kernel.model.ExpandoColumn','PERMISSIONS',4),(0,183,'com.liferay.expando.kernel.model.ExpandoColumn','UPDATE',8),(0,184,'com.liferay.expando.kernel.model.ExpandoColumn','VIEW',1),(0,185,'com.liferay.message.boards','PERMISSIONS',2),(0,186,'com.liferay.message.boards','ADD_FILE',4),(0,187,'com.liferay.message.boards','BAN_USER',8),(0,188,'com.liferay.message.boards','ADD_CATEGORY',16),(0,189,'com.liferay.message.boards','REPLY_TO_MESSAGE',32),(0,190,'com.liferay.message.boards','LOCK_THREAD',64),(0,191,'com.liferay.message.boards','SUBSCRIBE',128),(0,192,'com.liferay.message.boards','VIEW',1),(0,193,'com.liferay.message.boards','ADD_MESSAGE',256),(0,194,'com.liferay.message.boards','MOVE_THREAD',512),(0,195,'com.liferay.message.boards','UPDATE_THREAD_PRIORITY',1024),(0,196,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','ADD_TO_PAGE',2),(0,197,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','CONFIGURATION',4),(0,198,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','PERMISSIONS',8),(0,199,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','PREFERENCES',16),(0,200,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','VIEW',1),(0,201,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','ADD_TO_PAGE',2),(0,202,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','CONFIGURATION',4),(0,203,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','PERMISSIONS',8),(0,204,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','PREFERENCES',16),(0,205,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','VIEW',1),(0,206,'com_liferay_announcements_web_portlet_AlertsPortlet','ADD_TO_PAGE',2),(0,207,'com_liferay_announcements_web_portlet_AlertsPortlet','CONFIGURATION',4),(0,208,'com_liferay_announcements_web_portlet_AlertsPortlet','PERMISSIONS',8),(0,209,'com_liferay_announcements_web_portlet_AlertsPortlet','PREFERENCES',16),(0,210,'com_liferay_announcements_web_portlet_AlertsPortlet','VIEW',1),(0,211,'com_liferay_message_boards_web_portlet_MBPortlet','ADD_TO_PAGE',2),(0,212,'com_liferay_message_boards_web_portlet_MBPortlet','CONFIGURATION',4),(0,213,'com_liferay_message_boards_web_portlet_MBPortlet','PERMISSIONS',8),(0,214,'com_liferay_message_boards_web_portlet_MBPortlet','PREFERENCES',16),(0,215,'com_liferay_message_boards_web_portlet_MBPortlet','VIEW',1),(0,216,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','ADD_TO_PAGE',2),(0,217,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','CONFIGURATION',4),(0,218,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','PERMISSIONS',8),(0,219,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','PREFERENCES',16),(0,220,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','VIEW',1),(0,221,'150','PERMISSIONS',2),(0,222,'150','PREFERENCES',4),(0,223,'150','CONFIGURATION',8),(0,224,'150','ACCESS_IN_CONTROL_PANEL',16),(0,225,'150','VIEW',1),(0,226,'151','PERMISSIONS',2),(0,227,'151','PREFERENCES',4),(0,228,'151','CONFIGURATION',8),(0,229,'151','ACCESS_IN_CONTROL_PANEL',16),(0,230,'151','VIEW',1),(0,231,'152','PERMISSIONS',2),(0,232,'152','PREFERENCES',4),(0,233,'152','CONFIGURATION',8),(0,234,'152','ACCESS_IN_CONTROL_PANEL',16),(0,235,'152','VIEW',1),(0,236,'153','PERMISSIONS',2),(0,237,'153','PREFERENCES',4),(0,238,'153','CONFIGURATION',8),(0,239,'153','ACCESS_IN_CONTROL_PANEL',16),(0,240,'153','VIEW',1),(0,241,'153','ADD_TO_PAGE',32),(0,242,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','ADD_TO_PAGE',2),(0,243,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','CONFIGURATION',4),(0,244,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','PERMISSIONS',8),(0,245,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','PREFERENCES',16),(0,246,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','VIEW',1),(0,247,'157','PERMISSIONS',2),(0,248,'157','PREFERENCES',4),(0,249,'157','CONFIGURATION',8),(0,250,'157','ACCESS_IN_CONTROL_PANEL',16),(0,251,'157','VIEW',1),(0,252,'136','PERMISSIONS',2),(0,253,'136','PREFERENCES',4),(0,254,'136','CONFIGURATION',8),(0,255,'136','ACCESS_IN_CONTROL_PANEL',16),(0,256,'136','VIEW',1),(0,257,'158','PERMISSIONS',2),(0,258,'158','PREFERENCES',4),(0,259,'158','CONFIGURATION',8),(0,260,'158','ACCESS_IN_CONTROL_PANEL',16),(0,261,'158','VIEW',1),(0,262,'158','ADD_TO_PAGE',32),(0,263,'com_liferay_blogs_web_portlet_BlogsPortlet','ADD_TO_PAGE',2),(0,264,'com_liferay_blogs_web_portlet_BlogsPortlet','CONFIGURATION',4),(0,265,'com_liferay_blogs_web_portlet_BlogsPortlet','PERMISSIONS',8),(0,266,'com_liferay_blogs_web_portlet_BlogsPortlet','PREFERENCES',16),(0,267,'com_liferay_blogs_web_portlet_BlogsPortlet','VIEW',1),(0,268,'90','VIEW_CONTROL_PANEL',2),(0,269,'90','ADD_GENERAL_ANNOUNCEMENTS',4),(0,270,'90','CONFIGURATION',8),(0,271,'90','UNLINK_LAYOUT_SET_PROTOTYPE',16),(0,272,'90','ADD_USER',32),(0,273,'90','ADD_ROLE',64),(0,274,'90','EXPORT_USER',128),(0,275,'90','ADD_LICENSE',256),(0,276,'90','ADD_ORGANIZATION',512),(0,277,'90','ADD_USER_GROUP',1024),(0,278,'90','ADD_LAYOUT_PROTOTYPE',2048),(0,279,'90','ADD_COMMUNITY',4096),(0,280,'90','ADD_LAYOUT_SET_PROTOTYPE',8192),(0,281,'90','IMPERSONATE',16384),(0,282,'90','ADD_PASSWORD_POLICY',32768),(0,283,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','ADD_TO_PAGE',2),(0,284,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','CONFIGURATION',4),(0,285,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','PERMISSIONS',8),(0,286,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','PREFERENCES',16),(0,287,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','VIEW',1),(0,288,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','ADD_TO_PAGE',2),(0,289,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','CONFIGURATION',4),(0,290,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','PERMISSIONS',8),(0,291,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','PREFERENCES',16),(0,292,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','VIEW',1),(0,293,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','ADD_TO_PAGE',2),(0,294,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','CONFIGURATION',4),(0,295,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','PERMISSIONS',8),(0,296,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','PREFERENCES',16),(0,297,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','VIEW',1),(0,298,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','ADD_TO_PAGE',2),(0,299,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','CONFIGURATION',4),(0,300,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','PERMISSIONS',8),(0,301,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','PREFERENCES',16),(0,302,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','VIEW',1),(0,303,'com_liferay_document_library_web_portlet_DLAdminPortlet','ADD_TO_PAGE',2),(0,304,'com_liferay_document_library_web_portlet_DLAdminPortlet','CONFIGURATION',4),(0,305,'com_liferay_document_library_web_portlet_DLAdminPortlet','PERMISSIONS',8),(0,306,'com_liferay_document_library_web_portlet_DLAdminPortlet','PREFERENCES',16),(0,307,'com_liferay_document_library_web_portlet_DLAdminPortlet','VIEW',1),(0,308,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','ADD_TO_PAGE',2),(0,309,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','CONFIGURATION',4),(0,310,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','PERMISSIONS',8),(0,311,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','PREFERENCES',16),(0,312,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','VIEW',1),(0,313,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','ADD_TO_PAGE',2),(0,314,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','CONFIGURATION',4),(0,315,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','PERMISSIONS',8),(0,316,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','PREFERENCES',16),(0,317,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','VIEW',1),(0,318,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','ADD_TO_PAGE',2),(0,319,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','CONFIGURATION',4),(0,320,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','PERMISSIONS',8),(0,321,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','PREFERENCES',16),(0,322,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','VIEW',1),(0,323,'com_liferay_document_library_web_portlet_DLPortlet','ADD_TO_PAGE',2),(0,324,'com_liferay_document_library_web_portlet_DLPortlet','CONFIGURATION',4),(0,325,'com_liferay_document_library_web_portlet_DLPortlet','PERMISSIONS',8),(0,326,'com_liferay_document_library_web_portlet_DLPortlet','PREFERENCES',16),(0,327,'com_liferay_document_library_web_portlet_DLPortlet','VIEW',1),(0,328,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','ADD_TO_PAGE',2),(0,329,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','CONFIGURATION',4),(0,330,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','PERMISSIONS',8),(0,331,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','PREFERENCES',16),(0,332,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','VIEW',1),(0,333,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','ADD_TO_PAGE',2),(0,334,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','CONFIGURATION',4),(0,335,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','PERMISSIONS',8),(0,336,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','PREFERENCES',16),(0,337,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','VIEW',1),(0,338,'com_liferay_expando_web_portlet_ExpandoPortlet','ADD_TO_PAGE',2),(0,339,'com_liferay_expando_web_portlet_ExpandoPortlet','CONFIGURATION',4),(0,340,'com_liferay_expando_web_portlet_ExpandoPortlet','PERMISSIONS',8),(0,341,'com_liferay_expando_web_portlet_ExpandoPortlet','PREFERENCES',16),(0,342,'com_liferay_expando_web_portlet_ExpandoPortlet','VIEW',1),(0,343,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','ADD_TO_PAGE',2),(0,344,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','CONFIGURATION',4),(0,345,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','PERMISSIONS',8),(0,346,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','PREFERENCES',16),(0,347,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','VIEW',1),(0,348,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','ADD_TO_PAGE',2),(0,349,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','CONFIGURATION',4),(0,350,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','PERMISSIONS',8),(0,351,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','PREFERENCES',16),(0,352,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','VIEW',1),(0,353,'com_liferay_message_boards_web_portlet_MBAdminPortlet','ADD_TO_PAGE',2),(0,354,'com_liferay_message_boards_web_portlet_MBAdminPortlet','CONFIGURATION',4),(0,355,'com_liferay_message_boards_web_portlet_MBAdminPortlet','PERMISSIONS',8),(0,356,'com_liferay_message_boards_web_portlet_MBAdminPortlet','PREFERENCES',16),(0,357,'com_liferay_message_boards_web_portlet_MBAdminPortlet','VIEW',1),(0,358,'com_liferay_document_library_web_portlet_IGDisplayPortlet','ADD_TO_PAGE',2),(0,359,'com_liferay_document_library_web_portlet_IGDisplayPortlet','CONFIGURATION',4),(0,360,'com_liferay_document_library_web_portlet_IGDisplayPortlet','PERMISSIONS',8),(0,361,'com_liferay_document_library_web_portlet_IGDisplayPortlet','PREFERENCES',16),(0,362,'com_liferay_document_library_web_portlet_IGDisplayPortlet','VIEW',1),(0,363,'90','ADD_TO_PAGE',65536),(0,364,'90','PERMISSIONS',131072),(0,365,'90','PREFERENCES',262144),(0,366,'90','VIEW',1),(0,367,'90','ACCESS_IN_CONTROL_PANEL',524288),(0,401,'com_liferay_bookmarks_web_portlet_BookmarksPortlet','ADD_TO_PAGE',2),(0,402,'com_liferay_bookmarks_web_portlet_BookmarksPortlet','CONFIGURATION',4),(0,403,'com_liferay_bookmarks_web_portlet_BookmarksPortlet','PERMISSIONS',8),(0,404,'com_liferay_bookmarks_web_portlet_BookmarksPortlet','PREFERENCES',16),(0,405,'com_liferay_bookmarks_web_portlet_BookmarksPortlet','VIEW',1),(0,406,'com.liferay.bookmarks','ADD_ENTRY',2),(0,407,'com.liferay.bookmarks','PERMISSIONS',4),(0,408,'com.liferay.bookmarks','SUBSCRIBE',8),(0,409,'com.liferay.bookmarks','VIEW',1),(0,410,'com.liferay.bookmarks','ADD_FOLDER',16),(0,411,'com.liferay.bookmarks.model.BookmarksEntry','DELETE',2),(0,412,'com.liferay.bookmarks.model.BookmarksEntry','PERMISSIONS',4),(0,413,'com.liferay.bookmarks.model.BookmarksEntry','UPDATE',8),(0,414,'com.liferay.bookmarks.model.BookmarksEntry','SUBSCRIBE',16),(0,415,'com.liferay.bookmarks.model.BookmarksEntry','VIEW',1),(0,416,'com.liferay.bookmarks.model.BookmarksFolder','ADD_ENTRY',2),(0,417,'com.liferay.bookmarks.model.BookmarksFolder','DELETE',4),(0,418,'com.liferay.bookmarks.model.BookmarksFolder','PERMISSIONS',8),(0,419,'com.liferay.bookmarks.model.BookmarksFolder','ADD_SUBFOLDER',16),(0,420,'com.liferay.bookmarks.model.BookmarksFolder','UPDATE',32),(0,421,'com.liferay.bookmarks.model.BookmarksFolder','SUBSCRIBE',64),(0,422,'com.liferay.bookmarks.model.BookmarksFolder','VIEW',1),(0,423,'com.liferay.bookmarks.model.BookmarksFolder','ACCESS',128),(0,424,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet','ADD_TO_PAGE',2),(0,425,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet','CONFIGURATION',4),(0,426,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet','PERMISSIONS',8),(0,427,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet','PREFERENCES',16),(0,428,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet','VIEW',1),(0,501,'com_liferay_wiki_web_portlet_WikiPortlet','ADD_TO_PAGE',2),(0,502,'com_liferay_wiki_web_portlet_WikiPortlet','CONFIGURATION',4),(0,503,'com_liferay_wiki_web_portlet_WikiPortlet','PERMISSIONS',8),(0,504,'com_liferay_wiki_web_portlet_WikiPortlet','PREFERENCES',16),(0,505,'com_liferay_wiki_web_portlet_WikiPortlet','VIEW',1),(0,506,'com.liferay.wiki.model.WikiPage','UPDATE_DISCUSSION',2),(0,507,'com.liferay.wiki.model.WikiPage','DELETE',4),(0,508,'com.liferay.wiki.model.WikiPage','PERMISSIONS',8),(0,509,'com.liferay.wiki.model.WikiPage','DELETE_DISCUSSION',16),(0,510,'com.liferay.wiki.model.WikiPage','UPDATE',32),(0,511,'com.liferay.wiki.model.WikiPage','SUBSCRIBE',64),(0,512,'com.liferay.wiki.model.WikiPage','VIEW',1),(0,513,'com.liferay.wiki.model.WikiPage','ADD_DISCUSSION',128),(0,514,'com.liferay.wiki','PERMISSIONS',2),(0,515,'com.liferay.wiki','ADD_NODE',4),(0,516,'com.liferay.wiki.model.WikiNode','ADD_PAGE',2),(0,517,'com.liferay.wiki.model.WikiNode','IMPORT',4),(0,518,'com.liferay.wiki.model.WikiNode','DELETE',8),(0,519,'com.liferay.wiki.model.WikiNode','PERMISSIONS',16),(0,520,'com.liferay.wiki.model.WikiNode','UPDATE',32),(0,521,'com.liferay.wiki.model.WikiNode','ADD_ATTACHMENT',64),(0,522,'com.liferay.wiki.model.WikiNode','SUBSCRIBE',128),(0,523,'com.liferay.wiki.model.WikiNode','VIEW',1),(0,524,'com_liferay_wiki_web_portlet_WikiAdminPortlet','ADD_TO_PAGE',2),(0,525,'com_liferay_wiki_web_portlet_WikiAdminPortlet','CONFIGURATION',4),(0,526,'com_liferay_wiki_web_portlet_WikiAdminPortlet','PERMISSIONS',8),(0,527,'com_liferay_wiki_web_portlet_WikiAdminPortlet','PREFERENCES',16),(0,528,'com_liferay_wiki_web_portlet_WikiAdminPortlet','VIEW',1),(0,601,'com_liferay_calendar_web_portlet_CalendarPortlet','ADD_TO_PAGE',2),(0,602,'com_liferay_calendar_web_portlet_CalendarPortlet','CONFIGURATION',4),(0,603,'com_liferay_calendar_web_portlet_CalendarPortlet','PERMISSIONS',8),(0,604,'com_liferay_calendar_web_portlet_CalendarPortlet','PREFERENCES',16),(0,605,'com_liferay_calendar_web_portlet_CalendarPortlet','VIEW',1),(0,606,'com.liferay.calendar.model.CalendarResource','DELETE',2),(0,607,'com.liferay.calendar.model.CalendarResource','PERMISSIONS',4),(0,608,'com.liferay.calendar.model.CalendarResource','ADD_CALENDAR',8),(0,609,'com.liferay.calendar.model.CalendarResource','UPDATE',16),(0,610,'com.liferay.calendar.model.CalendarResource','VIEW',1),(0,611,'com.liferay.calendar.model.CalendarBooking','UPDATE_DISCUSSION',2),(0,612,'com.liferay.calendar.model.CalendarBooking','PERMISSIONS',4),(0,613,'com.liferay.calendar.model.CalendarBooking','DELETE_DISCUSSION',8),(0,614,'com.liferay.calendar.model.CalendarBooking','ADD_DISCUSSION',16),(0,615,'com.liferay.calendar','PERMISSIONS',2),(0,616,'com.liferay.calendar','ADD_RESOURCE',4),(0,617,'com.liferay.calendar.model.Calendar','DELETE',2),(0,618,'com.liferay.calendar.model.Calendar','PERMISSIONS',4),(0,619,'com.liferay.calendar.model.Calendar','MANAGE_BOOKINGS',8),(0,620,'com.liferay.calendar.model.Calendar','VIEW_BOOKING_DETAILS',16),(0,621,'com.liferay.calendar.model.Calendar','UPDATE',32),(0,622,'com.liferay.calendar.model.Calendar','VIEW',1),(0,701,'com_liferay_polls_web_portlet_PollsPortlet','ADD_TO_PAGE',2),(0,702,'com_liferay_polls_web_portlet_PollsPortlet','CONFIGURATION',4),(0,703,'com_liferay_polls_web_portlet_PollsPortlet','PERMISSIONS',8),(0,704,'com_liferay_polls_web_portlet_PollsPortlet','PREFERENCES',16),(0,705,'com_liferay_polls_web_portlet_PollsPortlet','VIEW',1),(0,706,'com.liferay.polls.model.PollsQuestion','DELETE',2),(0,707,'com.liferay.polls.model.PollsQuestion','PERMISSIONS',4),(0,708,'com.liferay.polls.model.PollsQuestion','ADD_VOTE',8),(0,709,'com.liferay.polls.model.PollsQuestion','UPDATE',16),(0,710,'com.liferay.polls.model.PollsQuestion','VIEW',1),(0,711,'com.liferay.polls','PERMISSIONS',2),(0,712,'com.liferay.polls','ADD_QUESTION',4),(0,713,'com_liferay_polls_web_portlet_PollsDisplayPortlet','ADD_TO_PAGE',2),(0,714,'com_liferay_polls_web_portlet_PollsDisplayPortlet','CONFIGURATION',4),(0,715,'com_liferay_polls_web_portlet_PollsDisplayPortlet','PERMISSIONS',8),(0,716,'com_liferay_polls_web_portlet_PollsDisplayPortlet','PREFERENCES',16),(0,717,'com_liferay_polls_web_portlet_PollsDisplayPortlet','VIEW',1),(0,801,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet','ADD_TO_PAGE',2),(0,802,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet','CONFIGURATION',4),(0,803,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet','PERMISSIONS',8),(0,804,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet','PREFERENCES',16),(0,805,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet','VIEW',1),(0,806,'com.liferay.portal.workflow.kaleo.designer','PERMISSIONS',2),(0,807,'com.liferay.portal.workflow.kaleo.designer','ADD_DRAFT',4),(0,808,'com.liferay.portal.workflow.kaleo.designer','PUBLISH',8),(0,809,'com.liferay.portal.workflow.kaleo.designer','VIEW',1),(0,810,'com.liferay.portal.workflow.kaleo.designer.model.KaleoDraftDefinition','DELETE',2),(0,811,'com.liferay.portal.workflow.kaleo.designer.model.KaleoDraftDefinition','PERMISSIONS',4),(0,812,'com.liferay.portal.workflow.kaleo.designer.model.KaleoDraftDefinition','UPDATE',8),(0,813,'com.liferay.portal.workflow.kaleo.designer.model.KaleoDraftDefinition','VIEW',1),(0,901,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','ADD_TO_PAGE',2),(0,902,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','CONFIGURATION',4),(0,903,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','PERMISSIONS',8),(0,904,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','PREFERENCES',16),(0,905,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','VIEW',1),(0,906,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance','DELETE',2),(0,907,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance','PERMISSIONS',4),(0,908,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance','UPDATE',8),(0,909,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance','VIEW',1),(0,910,'com.liferay.mobile.device.rules.model.MDRRuleGroup','DELETE',2),(0,911,'com.liferay.mobile.device.rules.model.MDRRuleGroup','PERMISSIONS',4),(0,912,'com.liferay.mobile.device.rules.model.MDRRuleGroup','UPDATE',8),(0,913,'com.liferay.mobile.device.rules.model.MDRRuleGroup','VIEW',1),(0,914,'com.liferay.mobile.device.rules','PERMISSIONS',2),(0,915,'com.liferay.mobile.device.rules','ADD_RULE_GROUP',4),(0,916,'com.liferay.mobile.device.rules','ADD_RULE_GROUP_INSTANCE',8),(0,917,'com.liferay.mobile.device.rules','CONFIGURATION',16),(0,918,'com.liferay.mobile.device.rules','VIEW',1),(0,1001,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','ADD_TO_PAGE',2),(0,1002,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','CONFIGURATION',4),(0,1003,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','PERMISSIONS',8),(0,1004,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','PREFERENCES',16),(0,1005,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','VIEW',1),(0,1006,'com.liferay.dynamic.data.mapping.model.DDMTemplate','DELETE',2),(0,1007,'com.liferay.dynamic.data.mapping.model.DDMTemplate','PERMISSIONS',4),(0,1008,'com.liferay.dynamic.data.mapping.model.DDMTemplate','UPDATE',8),(0,1009,'com.liferay.dynamic.data.mapping.model.DDMTemplate','VIEW',1),(0,1010,'com.liferay.dynamic.data.mapping.model.DDMStructure','DELETE',2),(0,1011,'com.liferay.dynamic.data.mapping.model.DDMStructure','PERMISSIONS',4),(0,1012,'com.liferay.dynamic.data.mapping.model.DDMStructure','UPDATE',8),(0,1013,'com.liferay.dynamic.data.mapping.model.DDMStructure','VIEW',1),(0,1014,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','ADD_TO_PAGE',2),(0,1015,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','CONFIGURATION',4),(0,1016,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','PERMISSIONS',8),(0,1017,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','PREFERENCES',16),(0,1018,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','VIEW',1),(0,1019,'com.liferay.dynamic.data.mapping','PERMISSIONS',2),(0,1020,'com.liferay.dynamic.data.mapping','ADD_DATA_PROVIDER_INSTANCE',4),(0,1021,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance','DELETE',2),(0,1022,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance','PERMISSIONS',4),(0,1023,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance','UPDATE',8),(0,1024,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance','VIEW',1),(0,1101,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','ADD_TO_PAGE',2),(0,1102,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','CONFIGURATION',4),(0,1103,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','PERMISSIONS',8),(0,1104,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','PREFERENCES',16),(0,1105,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','VIEW',1),(0,1106,'com.liferay.dynamic.data.lists','PERMISSIONS',2),(0,1107,'com.liferay.dynamic.data.lists','ADD_RECORD_SET',4),(0,1108,'com.liferay.dynamic.data.lists','ADD_TEMPLATE',8),(0,1109,'com.liferay.dynamic.data.lists','ADD_STRUCTURE',16),(0,1110,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure','DELETE',2),(0,1111,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure','PERMISSIONS',4),(0,1112,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure','UPDATE',8),(0,1113,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure','VIEW',1),(0,1114,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate','DELETE',2),(0,1115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate','PERMISSIONS',4),(0,1116,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate','UPDATE',8),(0,1117,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate','VIEW',1),(0,1118,'com.liferay.dynamic.data.lists.model.DDLRecordSet','DELETE',2),(0,1119,'com.liferay.dynamic.data.lists.model.DDLRecordSet','PERMISSIONS',4),(0,1120,'com.liferay.dynamic.data.lists.model.DDLRecordSet','ADD_RECORD',8),(0,1121,'com.liferay.dynamic.data.lists.model.DDLRecordSet','UPDATE',16),(0,1122,'com.liferay.dynamic.data.lists.model.DDLRecordSet','VIEW',1),(0,1123,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet','ADD_TO_PAGE',2),(0,1124,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet','CONFIGURATION',4),(0,1125,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet','PERMISSIONS',8),(0,1126,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet','PREFERENCES',16),(0,1127,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet','VIEW',1),(0,1128,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','ADD_TO_PAGE',2),(0,1129,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','CONFIGURATION',4),(0,1130,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','PERMISSIONS',8),(0,1131,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','PREFERENCES',16),(0,1132,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','VIEW',1),(0,1133,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet','ADD_TO_PAGE',2),(0,1134,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet','CONFIGURATION',4),(0,1135,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet','PERMISSIONS',8),(0,1136,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet','PREFERENCES',16),(0,1137,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet','VIEW',1),(0,1138,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','DELETE',2),(0,1139,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','PERMISSIONS',4),(0,1140,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','UPDATE',8),(0,1141,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','VIEW',1),(0,1142,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','DELETE',2),(0,1143,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','PERMISSIONS',4),(0,1144,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','SUBMIT',8),(0,1145,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','UPDATE',16),(0,1146,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','COMPLETE_FORM',32),(0,1147,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','VIEW',1),(0,1148,'com.liferay.portal.workflow.kaleo.forms','PERMISSIONS',2),(0,1149,'com.liferay.portal.workflow.kaleo.forms','ADD_PROCESS',4),(0,1150,'com.liferay.portal.workflow.kaleo.forms','ADD_TEMPLATE',8),(0,1151,'com.liferay.portal.workflow.kaleo.forms','ADD_STRUCTURE',16),(0,1152,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','DELETE',2),(0,1153,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','PERMISSIONS',4),(0,1154,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','UPDATE',8),(0,1155,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess','VIEW',1),(0,1201,'com_liferay_audit_web_portlet_AuditPortlet','ADD_TO_PAGE',2),(0,1202,'com_liferay_audit_web_portlet_AuditPortlet','CONFIGURATION',4),(0,1203,'com_liferay_audit_web_portlet_AuditPortlet','PERMISSIONS',8),(0,1204,'com_liferay_audit_web_portlet_AuditPortlet','PREFERENCES',16),(0,1205,'com_liferay_audit_web_portlet_AuditPortlet','VIEW',1),(0,1301,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','ADD_TO_PAGE',2),(0,1302,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','CONFIGURATION',4),(0,1303,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','PERMISSIONS',8),(0,1304,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','PREFERENCES',16),(0,1305,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','VIEW',1),(0,1306,'com.liferay.portal.security.service.access.policy','PERMISSIONS',2),(0,1307,'com.liferay.portal.security.service.access.policy','ADD_SAP_ENTRY',4),(0,1308,'com.liferay.portal.security.service.access.policy.model.SAPEntry','DELETE',2),(0,1309,'com.liferay.portal.security.service.access.policy.model.SAPEntry','PERMISSIONS',4),(0,1310,'com.liferay.portal.security.service.access.policy.model.SAPEntry','UPDATE',8),(0,1311,'com.liferay.portal.security.service.access.policy.model.SAPEntry','VIEW',1),(0,1401,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','ADD_TO_PAGE',2),(0,1402,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','CONFIGURATION',4),(0,1403,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','PERMISSIONS',8),(0,1404,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','PREFERENCES',16),(0,1405,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','VIEW',1),(0,1406,'com.liferay.marketplace','PERMISSIONS',2),(0,1407,'com.liferay.marketplace','CONFIGURATION',4),(0,1408,'com.liferay.marketplace','ACCESS_IN_CONTROL_PANEL',8),(0,1409,'com.liferay.marketplace','VIEW',1),(0,1410,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','ADD_TO_PAGE',2),(0,1411,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','CONFIGURATION',4),(0,1412,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','PERMISSIONS',8),(0,1413,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','PREFERENCES',16),(0,1414,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','VIEW',1),(0,1415,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','ADD_TO_PAGE',2),(0,1416,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','CONFIGURATION',4),(0,1417,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','PERMISSIONS',8),(0,1418,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','PREFERENCES',16),(0,1419,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','VIEW',1),(0,1501,'com_liferay_journal_web_portlet_JournalPortlet','ADD_TO_PAGE',2),(0,1502,'com_liferay_journal_web_portlet_JournalPortlet','CONFIGURATION',4),(0,1503,'com_liferay_journal_web_portlet_JournalPortlet','PERMISSIONS',8),(0,1504,'com_liferay_journal_web_portlet_JournalPortlet','PREFERENCES',16),(0,1505,'com_liferay_journal_web_portlet_JournalPortlet','VIEW',1),(0,1506,'com.liferay.journal.model.JournalFeed','DELETE',2),(0,1507,'com.liferay.journal.model.JournalFeed','PERMISSIONS',4),(0,1508,'com.liferay.journal.model.JournalFeed','UPDATE',8),(0,1509,'com.liferay.journal.model.JournalFeed','VIEW',1),(0,1510,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle','DELETE',2),(0,1511,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle','PERMISSIONS',4),(0,1512,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle','UPDATE',8),(0,1513,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle','VIEW',1),(0,1514,'com.liferay.journal.model.JournalArticle','UPDATE_DISCUSSION',2),(0,1515,'com.liferay.journal.model.JournalArticle','DELETE',4),(0,1516,'com.liferay.journal.model.JournalArticle','PERMISSIONS',8),(0,1517,'com.liferay.journal.model.JournalArticle','EXPIRE',16),(0,1518,'com.liferay.journal.model.JournalArticle','DELETE_DISCUSSION',32),(0,1519,'com.liferay.journal.model.JournalArticle','UPDATE',64),(0,1520,'com.liferay.journal.model.JournalArticle','VIEW',1),(0,1521,'com.liferay.journal.model.JournalArticle','ADD_DISCUSSION',128),(0,1522,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle','DELETE',2),(0,1523,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle','PERMISSIONS',4),(0,1524,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle','UPDATE',8),(0,1525,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle','VIEW',1),(0,1526,'com.liferay.journal','PERMISSIONS',2),(0,1527,'com.liferay.journal','ADD_FEED',4),(0,1528,'com.liferay.journal','ADD_TEMPLATE',8),(0,1529,'com.liferay.journal','UPDATE',16),(0,1530,'com.liferay.journal','ADD_ARTICLE',32),(0,1531,'com.liferay.journal','SUBSCRIBE',64),(0,1532,'com.liferay.journal','VIEW',1),(0,1533,'com.liferay.journal','ADD_FOLDER',128),(0,1534,'com.liferay.journal','ADD_STRUCTURE',256),(0,1535,'com.liferay.journal.model.JournalFolder','DELETE',2),(0,1536,'com.liferay.journal.model.JournalFolder','PERMISSIONS',4),(0,1537,'com.liferay.journal.model.JournalFolder','ADD_SUBFOLDER',8),(0,1538,'com.liferay.journal.model.JournalFolder','UPDATE',16),(0,1539,'com.liferay.journal.model.JournalFolder','ADD_ARTICLE',32),(0,1540,'com.liferay.journal.model.JournalFolder','SUBSCRIBE',64),(0,1541,'com.liferay.journal.model.JournalFolder','VIEW',1),(0,1542,'com.liferay.journal.model.JournalFolder','ACCESS',128),(0,1601,'1_WAR_lcsportlet','VIEW',1),(0,1602,'1_WAR_lcsportlet','ADD_TO_PAGE',2),(0,1603,'1_WAR_lcsportlet','CONFIGURATION',4),(0,1604,'1_WAR_lcsportlet','PERMISSIONS',8),(0,1605,'1_WAR_lcsportlet','PREFERENCES',16),(0,1606,'1_WAR_lcsportlet','ACCESS_IN_CONTROL_PANEL',32),(0,1607,'com_liferay_comment_web_portlet_CommentPortlet','VIEW',1),(0,1608,'com_liferay_comment_web_portlet_CommentPortlet','ADD_TO_PAGE',2),(0,1609,'com_liferay_comment_web_portlet_CommentPortlet','CONFIGURATION',4),(0,1610,'com_liferay_comment_web_portlet_CommentPortlet','PERMISSIONS',8),(0,1611,'com_liferay_comment_web_portlet_CommentPortlet','PREFERENCES',16),(0,1612,'com_liferay_comment_web_portlet_CommentPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1613,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet','VIEW',1),(0,1614,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet','ADD_TO_PAGE',2),(0,1615,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet','CONFIGURATION',4),(0,1616,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet','PERMISSIONS',8),(0,1617,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet','PREFERENCES',16),(0,1618,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1619,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet','VIEW',1),(0,1620,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet','ADD_TO_PAGE',2),(0,1621,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet','CONFIGURATION',4),(0,1622,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet','PERMISSIONS',8),(0,1623,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet','PREFERENCES',16),(0,1624,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1625,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet','VIEW',1),(0,1626,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet','ADD_TO_PAGE',2),(0,1627,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet','CONFIGURATION',4),(0,1628,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet','PERMISSIONS',8),(0,1629,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet','PREFERENCES',16),(0,1630,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1631,'com_liferay_polls_web_portlet_PollsDisplayPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1632,'com_liferay_polls_web_portlet_PollsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1633,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet','VIEW',1),(0,1634,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet','ADD_TO_PAGE',2),(0,1635,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet','CONFIGURATION',4),(0,1636,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet','PERMISSIONS',8),(0,1637,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet','PREFERENCES',16),(0,1638,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1639,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','VIEW',1),(0,1640,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','ADD_TO_PAGE',2),(0,1641,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','CONFIGURATION',4),(0,1642,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','PERMISSIONS',8),(0,1643,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','PREFERENCES',16),(0,1644,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1645,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','VIEW',1),(0,1646,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','ADD_TO_PAGE',2),(0,1647,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','CONFIGURATION',4),(0,1648,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','PERMISSIONS',8),(0,1649,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','PREFERENCES',16),(0,1650,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1651,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','VIEW',1),(0,1652,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','ADD_TO_PAGE',2),(0,1653,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','CONFIGURATION',4),(0,1654,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','PERMISSIONS',8),(0,1655,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','PREFERENCES',16),(0,1656,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1657,'hello_soy_portlet','VIEW',1),(0,1658,'hello_soy_portlet','ADD_TO_PAGE',2),(0,1659,'hello_soy_portlet','CONFIGURATION',4),(0,1660,'hello_soy_portlet','PERMISSIONS',8),(0,1661,'hello_soy_portlet','PREFERENCES',16),(0,1662,'hello_soy_portlet','ACCESS_IN_CONTROL_PANEL',32),(0,1663,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','VIEW',1),(0,1664,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','ADD_TO_PAGE',2),(0,1665,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','CONFIGURATION',4),(0,1666,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','PERMISSIONS',8),(0,1667,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','PREFERENCES',16),(0,1668,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1669,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','VIEW',1),(0,1670,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','ADD_TO_PAGE',2),(0,1671,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','CONFIGURATION',4),(0,1672,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','PERMISSIONS',8),(0,1673,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','PREFERENCES',16),(0,1674,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1675,'com_liferay_login_web_portlet_FastLoginPortlet','VIEW',1),(0,1676,'com_liferay_login_web_portlet_FastLoginPortlet','ADD_TO_PAGE',2),(0,1677,'com_liferay_login_web_portlet_FastLoginPortlet','CONFIGURATION',4),(0,1678,'com_liferay_login_web_portlet_FastLoginPortlet','PERMISSIONS',8),(0,1679,'com_liferay_login_web_portlet_FastLoginPortlet','PREFERENCES',16),(0,1680,'com_liferay_login_web_portlet_FastLoginPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1681,'com_liferay_login_web_portlet_LoginPortlet','PERMISSIONS',2),(0,1682,'com_liferay_login_web_portlet_LoginPortlet','PREFERENCES',4),(0,1683,'com_liferay_login_web_portlet_LoginPortlet','CONFIGURATION',8),(0,1684,'com_liferay_login_web_portlet_LoginPortlet','VIEW',1),(0,1685,'com_liferay_login_web_portlet_LoginPortlet','ADD_TO_PAGE',16),(0,1686,'com_liferay_monitoring_web_portlet_MonitoringPortlet','PERMISSIONS',2),(0,1687,'com_liferay_monitoring_web_portlet_MonitoringPortlet','PREFERENCES',4),(0,1688,'com_liferay_monitoring_web_portlet_MonitoringPortlet','CONFIGURATION',8),(0,1689,'com_liferay_monitoring_web_portlet_MonitoringPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,1690,'com_liferay_monitoring_web_portlet_MonitoringPortlet','VIEW',1),(0,1691,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','PERMISSIONS',2),(0,1692,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','PREFERENCES',4),(0,1693,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','CONFIGURATION',8),(0,1694,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,1695,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','VIEW',1),(0,1696,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','PERMISSIONS',2),(0,1697,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','PREFERENCES',4),(0,1698,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','CONFIGURATION',8),(0,1699,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,1700,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','VIEW',1),(0,1701,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','PERMISSIONS',2),(0,1702,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','PREFERENCES',4),(0,1703,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','CONFIGURATION',8),(0,1704,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,1705,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','VIEW',1),(0,1706,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','VIEW',1),(0,1707,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','ADD_TO_PAGE',2),(0,1708,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','CONFIGURATION',4),(0,1709,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','PERMISSIONS',8),(0,1710,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','PREFERENCES',16),(0,1711,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1712,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1713,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','EXPORT_USER',64),(0,1714,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet','VIEW',1),(0,1715,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet','ADD_TO_PAGE',2),(0,1716,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet','CONFIGURATION',4),(0,1717,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet','PERMISSIONS',8),(0,1718,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet','PREFERENCES',16),(0,1719,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1720,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','VIEW',1),(0,1721,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','ADD_TO_PAGE',2),(0,1722,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','CONFIGURATION',4),(0,1723,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','PERMISSIONS',8),(0,1724,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','PREFERENCES',16),(0,1725,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1726,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2),(0,1727,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','PERMISSIONS',4),(0,1728,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','PREFERENCES',8),(0,1729,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','CONFIGURATION',16),(0,1730,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','VIEW',1),(0,1731,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','ADD_TO_PAGE',32),(0,1732,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','VIEW',1),(0,1733,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','ADD_TO_PAGE',2),(0,1734,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','CONFIGURATION',4),(0,1735,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','PERMISSIONS',8),(0,1736,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','PREFERENCES',16),(0,1737,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1738,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','VIEW',1),(0,1739,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','ADD_TO_PAGE',2),(0,1740,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','CONFIGURATION',4),(0,1741,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','PERMISSIONS',8),(0,1742,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','PREFERENCES',16),(0,1743,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1744,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','VIEW',1),(0,1745,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','ADD_TO_PAGE',2),(0,1746,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','CONFIGURATION',4),(0,1747,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','PERMISSIONS',8),(0,1748,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','PREFERENCES',16),(0,1749,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1750,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2),(0,1751,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','PERMISSIONS',4),(0,1752,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','PREFERENCES',8),(0,1753,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','CONFIGURATION',16),(0,1754,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','VIEW',1),(0,1755,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','ADD_TO_PAGE',32),(0,1756,'com_liferay_asset_web_portlet_AssetPortlet','VIEW',1),(0,1757,'com_liferay_asset_web_portlet_AssetPortlet','ADD_TO_PAGE',2),(0,1758,'com_liferay_asset_web_portlet_AssetPortlet','CONFIGURATION',4),(0,1759,'com_liferay_asset_web_portlet_AssetPortlet','PERMISSIONS',8),(0,1760,'com_liferay_asset_web_portlet_AssetPortlet','PREFERENCES',16),(0,1761,'com_liferay_asset_web_portlet_AssetPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1762,'com_liferay_exportimport_web_portlet_ExportPortlet','VIEW',1),(0,1763,'com_liferay_exportimport_web_portlet_ExportPortlet','ADD_TO_PAGE',2),(0,1764,'com_liferay_exportimport_web_portlet_ExportPortlet','CONFIGURATION',4),(0,1765,'com_liferay_exportimport_web_portlet_ExportPortlet','PERMISSIONS',8),(0,1766,'com_liferay_exportimport_web_portlet_ExportPortlet','PREFERENCES',16),(0,1767,'com_liferay_exportimport_web_portlet_ExportPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1768,'com_liferay_exportimport_web_portlet_ImportPortlet','VIEW',1),(0,1769,'com_liferay_exportimport_web_portlet_ImportPortlet','ADD_TO_PAGE',2),(0,1770,'com_liferay_exportimport_web_portlet_ImportPortlet','CONFIGURATION',4),(0,1771,'com_liferay_exportimport_web_portlet_ImportPortlet','PERMISSIONS',8),(0,1772,'com_liferay_exportimport_web_portlet_ImportPortlet','PREFERENCES',16),(0,1773,'com_liferay_exportimport_web_portlet_ImportPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1774,'com_liferay_iframe_web_portlet_IFramePortlet','VIEW',1),(0,1775,'com_liferay_iframe_web_portlet_IFramePortlet','ADD_TO_PAGE',2),(0,1776,'com_liferay_iframe_web_portlet_IFramePortlet','CONFIGURATION',4),(0,1777,'com_liferay_iframe_web_portlet_IFramePortlet','PERMISSIONS',8),(0,1778,'com_liferay_iframe_web_portlet_IFramePortlet','PREFERENCES',16),(0,1779,'com_liferay_iframe_web_portlet_IFramePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1780,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','VIEW',1),(0,1781,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','ADD_TO_PAGE',2),(0,1782,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','CONFIGURATION',4),(0,1783,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','PERMISSIONS',8),(0,1784,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','PREFERENCES',16),(0,1785,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1786,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','VIEW',1),(0,1787,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','ADD_TO_PAGE',2),(0,1788,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','CONFIGURATION',4),(0,1789,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','PERMISSIONS',8),(0,1790,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','PREFERENCES',16),(0,1791,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1792,'com_liferay_rss_web_portlet_RSSPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2),(0,1793,'com_liferay_rss_web_portlet_RSSPortlet','PERMISSIONS',4),(0,1794,'com_liferay_rss_web_portlet_RSSPortlet','PREFERENCES',8),(0,1795,'com_liferay_rss_web_portlet_RSSPortlet','CONFIGURATION',16),(0,1796,'com_liferay_rss_web_portlet_RSSPortlet','VIEW',1),(0,1797,'com_liferay_rss_web_portlet_RSSPortlet','ADD_TO_PAGE',32),(0,1798,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','VIEW',1),(0,1799,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','ADD_TO_PAGE',2),(0,1800,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','CONFIGURATION',4),(0,1801,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','PERMISSIONS',8),(0,1802,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','PREFERENCES',16),(0,1803,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1804,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','VIEW',1),(0,1805,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','ADD_TO_PAGE',2),(0,1806,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','CONFIGURATION',4),(0,1807,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','PERMISSIONS',8),(0,1808,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','PREFERENCES',16),(0,1809,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1810,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2),(0,1811,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','PERMISSIONS',4),(0,1812,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','PREFERENCES',8),(0,1813,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','CONFIGURATION',16),(0,1814,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','VIEW',1),(0,1815,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','ADD_TO_PAGE',32),(0,1816,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','VIEW',1),(0,1817,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','ADD_TO_PAGE',2),(0,1818,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','CONFIGURATION',4),(0,1819,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','PERMISSIONS',8),(0,1820,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','PREFERENCES',16),(0,1821,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1822,'com_liferay_xsl_content_web_portlet_XSLContentPortlet','VIEW',1),(0,1823,'com_liferay_xsl_content_web_portlet_XSLContentPortlet','ADD_TO_PAGE',2),(0,1824,'com_liferay_xsl_content_web_portlet_XSLContentPortlet','CONFIGURATION',4),(0,1825,'com_liferay_xsl_content_web_portlet_XSLContentPortlet','PERMISSIONS',8),(0,1826,'com_liferay_xsl_content_web_portlet_XSLContentPortlet','PREFERENCES',16),(0,1827,'com_liferay_xsl_content_web_portlet_XSLContentPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1828,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2),(0,1829,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','PERMISSIONS',4),(0,1830,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','PREFERENCES',8),(0,1831,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','CONFIGURATION',16),(0,1832,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','SUBSCRIBE',32),(0,1833,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','VIEW',1),(0,1834,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','ADD_TO_PAGE',64),(0,1835,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','VIEW',1),(0,1836,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','ADD_TO_PAGE',2),(0,1837,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','CONFIGURATION',4),(0,1838,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','PERMISSIONS',8),(0,1839,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','PREFERENCES',16),(0,1840,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1841,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','VIEW',1),(0,1842,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','ADD_TO_PAGE',2),(0,1843,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','CONFIGURATION',4),(0,1844,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','PERMISSIONS',8),(0,1845,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','PREFERENCES',16),(0,1846,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1847,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','VIEW',1),(0,1848,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','ADD_TO_PAGE',2),(0,1849,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','CONFIGURATION',4),(0,1850,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','PERMISSIONS',8),(0,1851,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','PREFERENCES',16),(0,1852,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1853,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','VIEW',1),(0,1854,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','ADD_TO_PAGE',2),(0,1855,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','CONFIGURATION',4),(0,1856,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','PERMISSIONS',8),(0,1857,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','PREFERENCES',16),(0,1858,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1859,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet','VIEW',1),(0,1860,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet','ADD_TO_PAGE',2),(0,1861,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet','CONFIGURATION',4),(0,1862,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet','PERMISSIONS',8),(0,1863,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet','PREFERENCES',16),(0,1864,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1865,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1866,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1867,'com_liferay_expando_web_portlet_ExpandoPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1868,'com_liferay_expando_web_portlet_ExpandoPortlet','ADD_EXPANDO',64),(0,1869,'com_liferay_portal_search_web_portlet_SearchPortlet','VIEW',1),(0,1870,'com_liferay_portal_search_web_portlet_SearchPortlet','ADD_TO_PAGE',2),(0,1871,'com_liferay_portal_search_web_portlet_SearchPortlet','CONFIGURATION',4),(0,1872,'com_liferay_portal_search_web_portlet_SearchPortlet','PERMISSIONS',8),(0,1873,'com_liferay_portal_search_web_portlet_SearchPortlet','PREFERENCES',16),(0,1874,'com_liferay_portal_search_web_portlet_SearchPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1875,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1876,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','VIEW',1),(0,1877,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','ADD_TO_PAGE',2),(0,1878,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','CONFIGURATION',4),(0,1879,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','PERMISSIONS',8),(0,1880,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','PREFERENCES',16),(0,1881,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1882,'com_liferay_mentions_web_portlet_MentionsPortlet','VIEW',1),(0,1883,'com_liferay_mentions_web_portlet_MentionsPortlet','ADD_TO_PAGE',2),(0,1884,'com_liferay_mentions_web_portlet_MentionsPortlet','CONFIGURATION',4),(0,1885,'com_liferay_mentions_web_portlet_MentionsPortlet','PERMISSIONS',8),(0,1886,'com_liferay_mentions_web_portlet_MentionsPortlet','PREFERENCES',16),(0,1887,'com_liferay_mentions_web_portlet_MentionsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1888,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1889,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1890,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1891,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1892,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','VIEW',1),(0,1893,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','ADD_TO_PAGE',2),(0,1894,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','CONFIGURATION',4),(0,1895,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','PERMISSIONS',8),(0,1896,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','PREFERENCES',16),(0,1897,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1898,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet','VIEW',1),(0,1899,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet','ADD_TO_PAGE',2),(0,1900,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet','CONFIGURATION',4),(0,1901,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet','PERMISSIONS',8),(0,1902,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet','PREFERENCES',16),(0,1903,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1904,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet','VIEW',1),(0,1905,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet','ADD_TO_PAGE',2),(0,1906,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet','CONFIGURATION',4),(0,1907,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet','PERMISSIONS',8),(0,1908,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet','PREFERENCES',16),(0,1909,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1910,'com_liferay_trash_web_portlet_TrashPortlet','VIEW',1),(0,1911,'com_liferay_trash_web_portlet_TrashPortlet','ADD_TO_PAGE',2),(0,1912,'com_liferay_trash_web_portlet_TrashPortlet','CONFIGURATION',4),(0,1913,'com_liferay_trash_web_portlet_TrashPortlet','PERMISSIONS',8),(0,1914,'com_liferay_trash_web_portlet_TrashPortlet','PREFERENCES',16),(0,1915,'com_liferay_trash_web_portlet_TrashPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1916,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','VIEW',1),(0,1917,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','ADD_TO_PAGE',2),(0,1918,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','CONFIGURATION',4),(0,1919,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','PERMISSIONS',8),(0,1920,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','PREFERENCES',16),(0,1921,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1922,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','VIEW',1),(0,1923,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','ADD_TO_PAGE',2),(0,1924,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','CONFIGURATION',4),(0,1925,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','PERMISSIONS',8),(0,1926,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','PREFERENCES',16),(0,1927,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1928,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1929,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1930,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','VIEW',1),(0,1931,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','ADD_TO_PAGE',2),(0,1932,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','CONFIGURATION',4),(0,1933,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','PERMISSIONS',8),(0,1934,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','PREFERENCES',16),(0,1935,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1936,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','VIEW',1),(0,1937,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','ADD_TO_PAGE',2),(0,1938,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','CONFIGURATION',4),(0,1939,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','PERMISSIONS',8),(0,1940,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','PREFERENCES',16),(0,1941,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1942,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','PERMISSIONS',2),(0,1943,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','PREFERENCES',4),(0,1944,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','CONFIGURATION',8),(0,1945,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,1946,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','VIEW',1),(0,1947,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','VIEW',1),(0,1948,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','ADD_TO_PAGE',2),(0,1949,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','CONFIGURATION',4),(0,1950,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','PERMISSIONS',8),(0,1951,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','PREFERENCES',16),(0,1952,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1953,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1954,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','VIEW',1),(0,1955,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','ADD_TO_PAGE',2),(0,1956,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','CONFIGURATION',4),(0,1957,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','PERMISSIONS',8),(0,1958,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','PREFERENCES',16),(0,1959,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1960,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet','PERMISSIONS',2),(0,1961,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet','PREFERENCES',4),(0,1962,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet','CONFIGURATION',8),(0,1963,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet','VIEW',1),(0,1964,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet','ADD_TO_PAGE',16),(0,1965,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet','PERMISSIONS',2),(0,1966,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet','PREFERENCES',4),(0,1967,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet','CONFIGURATION',8),(0,1968,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet','VIEW',1),(0,1969,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet','ADD_TO_PAGE',16),(0,1970,'com_liferay_directory_web_portlet_DirectoryPortlet','PERMISSIONS',2),(0,1971,'com_liferay_directory_web_portlet_DirectoryPortlet','PREFERENCES',4),(0,1972,'com_liferay_directory_web_portlet_DirectoryPortlet','CONFIGURATION',8),(0,1973,'com_liferay_directory_web_portlet_DirectoryPortlet','VIEW',1),(0,1974,'com_liferay_directory_web_portlet_DirectoryPortlet','ADD_TO_PAGE',16),(0,1975,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet','PERMISSIONS',2),(0,1976,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet','PREFERENCES',4),(0,1977,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet','CONFIGURATION',8),(0,1978,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet','VIEW',1),(0,1979,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet','ADD_TO_PAGE',16),(0,1980,'com_liferay_flags_web_portlet_FlagsPortlet','VIEW',1),(0,1981,'com_liferay_flags_web_portlet_FlagsPortlet','ADD_TO_PAGE',2),(0,1982,'com_liferay_flags_web_portlet_FlagsPortlet','CONFIGURATION',4),(0,1983,'com_liferay_flags_web_portlet_FlagsPortlet','PERMISSIONS',8),(0,1984,'com_liferay_flags_web_portlet_FlagsPortlet','PREFERENCES',16),(0,1985,'com_liferay_flags_web_portlet_FlagsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1986,'com_liferay_flags_web_portlet_PageFlagsPortlet','VIEW',1),(0,1987,'com_liferay_flags_web_portlet_PageFlagsPortlet','ADD_TO_PAGE',2),(0,1988,'com_liferay_flags_web_portlet_PageFlagsPortlet','CONFIGURATION',4),(0,1989,'com_liferay_flags_web_portlet_PageFlagsPortlet','PERMISSIONS',8),(0,1990,'com_liferay_flags_web_portlet_PageFlagsPortlet','PREFERENCES',16),(0,1991,'com_liferay_flags_web_portlet_PageFlagsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1992,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','VIEW',1),(0,1993,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','ADD_TO_PAGE',2),(0,1994,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','CONFIGURATION',4),(0,1995,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','PERMISSIONS',8),(0,1996,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','PREFERENCES',16),(0,1997,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,1998,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','VIEW',1),(0,1999,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','ADD_TO_PAGE',2),(0,2000,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','CONFIGURATION',4),(0,2001,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','PERMISSIONS',8),(0,2002,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','PREFERENCES',16),(0,2003,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2004,'com_liferay_quick_note_web_portlet_QuickNotePortlet','VIEW',1),(0,2005,'com_liferay_quick_note_web_portlet_QuickNotePortlet','ADD_TO_PAGE',2),(0,2006,'com_liferay_quick_note_web_portlet_QuickNotePortlet','CONFIGURATION',4),(0,2007,'com_liferay_quick_note_web_portlet_QuickNotePortlet','PERMISSIONS',8),(0,2008,'com_liferay_quick_note_web_portlet_QuickNotePortlet','PREFERENCES',16),(0,2009,'com_liferay_quick_note_web_portlet_QuickNotePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2010,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','VIEW',1),(0,2011,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','ADD_TO_PAGE',2),(0,2012,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','CONFIGURATION',4),(0,2013,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','PERMISSIONS',8),(0,2014,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','PREFERENCES',16),(0,2015,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2016,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet','VIEW',1),(0,2017,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet','ADD_TO_PAGE',2),(0,2018,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet','CONFIGURATION',4),(0,2019,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet','PERMISSIONS',8),(0,2020,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet','PREFERENCES',16),(0,2021,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2022,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','VIEW',1),(0,2023,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','ADD_TO_PAGE',2),(0,2024,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','CONFIGURATION',4),(0,2025,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','PERMISSIONS',8),(0,2026,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','PREFERENCES',16),(0,2027,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2028,'com_liferay_social_activity_web_portlet_SocialActivityPortlet','PERMISSIONS',2),(0,2029,'com_liferay_social_activity_web_portlet_SocialActivityPortlet','PREFERENCES',4),(0,2030,'com_liferay_social_activity_web_portlet_SocialActivityPortlet','CONFIGURATION',8),(0,2031,'com_liferay_social_activity_web_portlet_SocialActivityPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,2032,'com_liferay_social_activity_web_portlet_SocialActivityPortlet','VIEW',1),(0,2033,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet','VIEW',1),(0,2034,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet','ADD_TO_PAGE',2),(0,2035,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet','CONFIGURATION',4),(0,2036,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet','PERMISSIONS',8),(0,2037,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet','PREFERENCES',16),(0,2038,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2039,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet','VIEW',1),(0,2040,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet','ADD_TO_PAGE',2),(0,2041,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet','CONFIGURATION',4),(0,2042,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet','PERMISSIONS',8),(0,2043,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet','PREFERENCES',16),(0,2044,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2045,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet','VIEW',1),(0,2046,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet','ADD_TO_PAGE',2),(0,2047,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet','CONFIGURATION',4),(0,2048,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet','PERMISSIONS',8),(0,2049,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet','PREFERENCES',16),(0,2050,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2051,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet','VIEW',1),(0,2052,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet','ADD_TO_PAGE',2),(0,2053,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet','CONFIGURATION',4),(0,2054,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet','PERMISSIONS',8),(0,2055,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet','PREFERENCES',16),(0,2056,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2057,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2058,'com_liferay_my_account_web_portlet_MyAccountPortlet','PERMISSIONS',2),(0,2059,'com_liferay_my_account_web_portlet_MyAccountPortlet','PREFERENCES',4),(0,2060,'com_liferay_my_account_web_portlet_MyAccountPortlet','CONFIGURATION',8),(0,2061,'com_liferay_my_account_web_portlet_MyAccountPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,2062,'com_liferay_my_account_web_portlet_MyAccountPortlet','VIEW',1),(0,2063,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','PERMISSIONS',2),(0,2064,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','PREFERENCES',4),(0,2065,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','CONFIGURATION',8),(0,2066,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,2067,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','VIEW',1),(0,2068,'com_liferay_web_proxy_web_portlet_WebProxyPortlet','VIEW',1),(0,2069,'com_liferay_web_proxy_web_portlet_WebProxyPortlet','ADD_TO_PAGE',2),(0,2070,'com_liferay_web_proxy_web_portlet_WebProxyPortlet','CONFIGURATION',4),(0,2071,'com_liferay_web_proxy_web_portlet_WebProxyPortlet','PERMISSIONS',8),(0,2072,'com_liferay_web_proxy_web_portlet_WebProxyPortlet','PREFERENCES',16),(0,2073,'com_liferay_web_proxy_web_portlet_WebProxyPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2074,'com_liferay_exportimport_web_portlet_ExportImportPortlet','VIEW',1),(0,2075,'com_liferay_exportimport_web_portlet_ExportImportPortlet','ADD_TO_PAGE',2),(0,2076,'com_liferay_exportimport_web_portlet_ExportImportPortlet','CONFIGURATION',4),(0,2077,'com_liferay_exportimport_web_portlet_ExportImportPortlet','PERMISSIONS',8),(0,2078,'com_liferay_exportimport_web_portlet_ExportImportPortlet','PREFERENCES',16),(0,2079,'com_liferay_exportimport_web_portlet_ExportImportPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2080,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','VIEW',1),(0,2081,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','ADD_TO_PAGE',2),(0,2082,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','CONFIGURATION',4),(0,2083,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','PERMISSIONS',8),(0,2084,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','PREFERENCES',16),(0,2085,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2086,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','VIEW',1),(0,2087,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','ADD_TO_PAGE',2),(0,2088,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','CONFIGURATION',4),(0,2089,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','PERMISSIONS',8),(0,2090,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','PREFERENCES',16),(0,2091,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2092,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','PERMISSIONS',2),(0,2093,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','PREFERENCES',4),(0,2094,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','CONFIGURATION',8),(0,2095,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','VIEW',1),(0,2096,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','ADD_TO_PAGE',16),(0,2097,'com_liferay_document_library_web_portlet_DLAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2098,'com_liferay_document_library_web_portlet_DLPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',32),(0,2099,'com_liferay_document_library_web_portlet_IGDisplayPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2100,'com_liferay_message_boards_web_portlet_MBAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2101,'com_liferay_wiki_web_portlet_WikiAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2102,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','VIEW',1),(0,2103,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','ADD_TO_PAGE',2),(0,2104,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','CONFIGURATION',4),(0,2105,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','PERMISSIONS',8),(0,2106,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','PREFERENCES',16),(0,2107,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2108,'com_liferay_wiki_web_portlet_WikiPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',32),(0,2109,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2110,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','VIEW',1),(0,2111,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','ADD_TO_PAGE',2),(0,2112,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','CONFIGURATION',4),(0,2113,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','PERMISSIONS',8),(0,2114,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','PREFERENCES',16),(0,2115,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2116,'com_liferay_blogs_web_portlet_BlogsPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',32),(0,2117,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','VIEW',1),(0,2118,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','ADD_TO_PAGE',2),(0,2119,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','CONFIGURATION',4),(0,2120,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','PERMISSIONS',8),(0,2121,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','PREFERENCES',16),(0,2122,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2123,'com_liferay_microblogs_web_portlet_MicroblogsPortlet','PERMISSIONS',2),(0,2124,'com_liferay_microblogs_web_portlet_MicroblogsPortlet','PREFERENCES',4),(0,2125,'com_liferay_microblogs_web_portlet_MicroblogsPortlet','CONFIGURATION',8),(0,2126,'com_liferay_microblogs_web_portlet_MicroblogsPortlet','VIEW',1),(0,2127,'com_liferay_microblogs_web_portlet_MicroblogsPortlet','ADD_TO_PAGE',16),(0,2128,'com.liferay.microblogs.model.MicroblogsEntry','DELETE',2),(0,2129,'com.liferay.microblogs.model.MicroblogsEntry','PERMISSIONS',4),(0,2130,'com.liferay.microblogs.model.MicroblogsEntry','UPDATE',8),(0,2131,'com.liferay.microblogs.model.MicroblogsEntry','VIEW',1),(0,2132,'com.liferay.microblogs','ADD_ENTRY',2),(0,2133,'com.liferay.microblogs','PERMISSIONS',4),(0,2134,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet','VIEW',1),(0,2135,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet','ADD_TO_PAGE',2),(0,2136,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet','CONFIGURATION',4),(0,2137,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet','PERMISSIONS',8),(0,2138,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet','PREFERENCES',16),(0,2139,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2140,'com_liferay_calendar_web_portlet_CalendarPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2141,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2142,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','PERMISSIONS',2),(0,2143,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','PREFERENCES',4),(0,2144,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','CONFIGURATION',8),(0,2145,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,2146,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','VIEW',1),(0,2147,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','ADD_TO_PAGE',32),(0,2148,'com_liferay_contacts_web_portlet_MembersPortlet','VIEW',1),(0,2149,'com_liferay_contacts_web_portlet_MembersPortlet','ADD_TO_PAGE',2),(0,2150,'com_liferay_contacts_web_portlet_MembersPortlet','CONFIGURATION',4),(0,2151,'com_liferay_contacts_web_portlet_MembersPortlet','PERMISSIONS',8),(0,2152,'com_liferay_contacts_web_portlet_MembersPortlet','PREFERENCES',16),(0,2153,'com_liferay_contacts_web_portlet_MembersPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2154,'com_liferay_contacts_web_portlet_MyContactsPortlet','VIEW',1),(0,2155,'com_liferay_contacts_web_portlet_MyContactsPortlet','ADD_TO_PAGE',2),(0,2156,'com_liferay_contacts_web_portlet_MyContactsPortlet','CONFIGURATION',4),(0,2157,'com_liferay_contacts_web_portlet_MyContactsPortlet','PERMISSIONS',8),(0,2158,'com_liferay_contacts_web_portlet_MyContactsPortlet','PREFERENCES',16),(0,2159,'com_liferay_contacts_web_portlet_MyContactsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2160,'com_liferay_contacts_web_portlet_ProfilePortlet','VIEW',1),(0,2161,'com_liferay_contacts_web_portlet_ProfilePortlet','ADD_TO_PAGE',2),(0,2162,'com_liferay_contacts_web_portlet_ProfilePortlet','CONFIGURATION',4),(0,2163,'com_liferay_contacts_web_portlet_ProfilePortlet','PERMISSIONS',8),(0,2164,'com_liferay_contacts_web_portlet_ProfilePortlet','PREFERENCES',16),(0,2165,'com_liferay_contacts_web_portlet_ProfilePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2166,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2167,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2168,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet','PERMISSIONS',2),(0,2169,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet','PREFERENCES',4),(0,2170,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet','CONFIGURATION',8),(0,2171,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet','VIEW',1),(0,2172,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet','ADD_TO_PAGE',16),(0,2173,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2174,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','VIEW',1),(0,2175,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','ADD_TO_PAGE',2),(0,2176,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','CONFIGURATION',4),(0,2177,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','PERMISSIONS',8),(0,2178,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','PREFERENCES',16),(0,2179,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2180,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2181,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2),(0,2182,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','PERMISSIONS',4),(0,2183,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','PREFERENCES',8),(0,2184,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','CONFIGURATION',16),(0,2185,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','VIEW',1),(0,2186,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','ADD_TO_PAGE',32),(0,2187,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2),(0,2188,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','PERMISSIONS',4),(0,2189,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','PREFERENCES',8),(0,2190,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','CONFIGURATION',16),(0,2191,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','VIEW',1),(0,2192,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','ADD_TO_PAGE',32),(0,2193,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2),(0,2194,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','PERMISSIONS',4),(0,2195,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','PREFERENCES',8),(0,2196,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','CONFIGURATION',16),(0,2197,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','VIEW',1),(0,2198,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','ADD_TO_PAGE',32),(0,2199,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2200,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','VIEW',1),(0,2201,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','ADD_TO_PAGE',2),(0,2202,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','CONFIGURATION',4),(0,2203,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','PERMISSIONS',8),(0,2204,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','PREFERENCES',16),(0,2205,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2206,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','VIEW',1),(0,2207,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','ADD_TO_PAGE',2),(0,2208,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','CONFIGURATION',4),(0,2209,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','PERMISSIONS',8),(0,2210,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','PREFERENCES',16),(0,2211,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2212,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2213,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet','VIEW',1),(0,2214,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet','ADD_TO_PAGE',2),(0,2215,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet','CONFIGURATION',4),(0,2216,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet','PERMISSIONS',8),(0,2217,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet','PREFERENCES',16),(0,2218,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2219,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet','VIEW',1),(0,2220,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet','ADD_TO_PAGE',2),(0,2221,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet','CONFIGURATION',4),(0,2222,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet','PERMISSIONS',8),(0,2223,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet','PREFERENCES',16),(0,2224,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2225,'com_liferay_layout_admin_web_portlet_MyPagesPortlet','PERMISSIONS',2),(0,2226,'com_liferay_layout_admin_web_portlet_MyPagesPortlet','PREFERENCES',4),(0,2227,'com_liferay_layout_admin_web_portlet_MyPagesPortlet','CONFIGURATION',8),(0,2228,'com_liferay_layout_admin_web_portlet_MyPagesPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,2229,'com_liferay_layout_admin_web_portlet_MyPagesPortlet','VIEW',1),(0,2230,'com_liferay_portal_security_audit_web_portlet_AuditPortlet','VIEW',1),(0,2231,'com_liferay_portal_security_audit_web_portlet_AuditPortlet','ADD_TO_PAGE',2),(0,2232,'com_liferay_portal_security_audit_web_portlet_AuditPortlet','CONFIGURATION',4),(0,2233,'com_liferay_portal_security_audit_web_portlet_AuditPortlet','PERMISSIONS',8),(0,2234,'com_liferay_portal_security_audit_web_portlet_AuditPortlet','PREFERENCES',16),(0,2235,'com_liferay_portal_security_audit_web_portlet_AuditPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2236,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2237,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2238,'com_liferay_oauth_web_internal_portlet_AdminPortlet','PERMISSIONS',2),(0,2239,'com_liferay_oauth_web_internal_portlet_AdminPortlet','PREFERENCES',4),(0,2240,'com_liferay_oauth_web_internal_portlet_AdminPortlet','CONFIGURATION',8),(0,2241,'com_liferay_oauth_web_internal_portlet_AdminPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,2242,'com_liferay_oauth_web_internal_portlet_AdminPortlet','VIEW',1),(0,2243,'com_liferay_oauth_web_internal_portlet_AdminPortlet','ADD_TO_PAGE',32),(0,2244,'com.liferay.oauth.model.OAuthApplication','DELETE',2),(0,2245,'com.liferay.oauth.model.OAuthApplication','PERMISSIONS',4),(0,2246,'com.liferay.oauth.model.OAuthApplication','UPDATE',8),(0,2247,'com.liferay.oauth.model.OAuthApplication','VIEW',1),(0,2248,'com.liferay.oauth','PERMISSIONS',2),(0,2249,'com.liferay.oauth','ADD_APPLICATION',4),(0,2250,'com.liferay.oauth.model.OAuthUser','DELETE',2),(0,2251,'com.liferay.oauth.model.OAuthUser','PERMISSIONS',4),(0,2252,'com.liferay.oauth.model.OAuthUser','UPDATE',8),(0,2253,'com.liferay.oauth.model.OAuthUser','VIEW',1),(0,2254,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet','PERMISSIONS',2),(0,2255,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet','PREFERENCES',4),(0,2256,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet','CONFIGURATION',8),(0,2257,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet','ACCESS_IN_CONTROL_PANEL',16),(0,2258,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet','VIEW',1),(0,2259,'com_liferay_sync_web_portlet_SyncDevicesPortlet','VIEW',1),(0,2260,'com_liferay_sync_web_portlet_SyncDevicesPortlet','ADD_TO_PAGE',2),(0,2261,'com_liferay_sync_web_portlet_SyncDevicesPortlet','CONFIGURATION',4),(0,2262,'com_liferay_sync_web_portlet_SyncDevicesPortlet','PERMISSIONS',8),(0,2263,'com_liferay_sync_web_portlet_SyncDevicesPortlet','PREFERENCES',16),(0,2264,'com_liferay_sync_web_portlet_SyncDevicesPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2265,'com_liferay_sync_web_portlet_SyncAdminPortlet','VIEW',1),(0,2266,'com_liferay_sync_web_portlet_SyncAdminPortlet','ADD_TO_PAGE',2),(0,2267,'com_liferay_sync_web_portlet_SyncAdminPortlet','CONFIGURATION',4),(0,2268,'com_liferay_sync_web_portlet_SyncAdminPortlet','PERMISSIONS',8),(0,2269,'com_liferay_sync_web_portlet_SyncAdminPortlet','PREFERENCES',16),(0,2270,'com_liferay_sync_web_portlet_SyncAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2271,'com_liferay_journal_content_web_portlet_JournalContentPortlet','PERMISSIONS',2),(0,2272,'com_liferay_journal_content_web_portlet_JournalContentPortlet','PREFERENCES',4),(0,2273,'com_liferay_journal_content_web_portlet_JournalContentPortlet','CONFIGURATION',8),(0,2274,'com_liferay_journal_content_web_portlet_JournalContentPortlet','VIEW',1),(0,2275,'com_liferay_journal_content_web_portlet_JournalContentPortlet','ADD_TO_PAGE',16),(0,2276,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet','VIEW',1),(0,2277,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet','ADD_TO_PAGE',2),(0,2278,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet','CONFIGURATION',4),(0,2279,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet','PERMISSIONS',8),(0,2280,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet','PREFERENCES',16),(0,2281,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2282,'com_liferay_journal_web_portlet_JournalPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2283,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2284,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2285,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','VIEW',1),(0,2286,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','ADD_TO_PAGE',2),(0,2287,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','CONFIGURATION',4),(0,2288,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','PERMISSIONS',8),(0,2289,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','PREFERENCES',16),(0,2290,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2291,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','VIEW',1),(0,2292,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','ADD_TO_PAGE',2),(0,2293,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','CONFIGURATION',4),(0,2294,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','PERMISSIONS',8),(0,2295,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','PREFERENCES',16),(0,2296,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2297,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','VIEW',1),(0,2298,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','ADD_TO_PAGE',2),(0,2299,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','CONFIGURATION',4),(0,2300,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','PERMISSIONS',8),(0,2301,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','PREFERENCES',16),(0,2302,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2303,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','ACCESS_IN_CONTROL_PANEL',32),(0,2304,'com_liferay_notifications_web_portlet_NotificationsPortlet','VIEW',1),(0,2305,'com_liferay_notifications_web_portlet_NotificationsPortlet','ADD_TO_PAGE',2),(0,2306,'com_liferay_notifications_web_portlet_NotificationsPortlet','CONFIGURATION',4),(0,2307,'com_liferay_notifications_web_portlet_NotificationsPortlet','PERMISSIONS',8),(0,2308,'com_liferay_notifications_web_portlet_NotificationsPortlet','PREFERENCES',16),(0,2309,'com_liferay_notifications_web_portlet_NotificationsPortlet','ACCESS_IN_CONTROL_PANEL',32); /*!40000 ALTER TABLE `ResourceAction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourceBlock` -- DROP TABLE IF EXISTS `ResourceBlock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourceBlock` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `resourceBlockId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `permissionsHash` varchar(75) DEFAULT NULL, `referenceCount` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourceBlockId`), UNIQUE KEY `IX_AEEA209C` (`companyId`,`groupId`,`name`,`permissionsHash`), KEY `IX_2D4CC782` (`companyId`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourceBlock` -- LOCK TABLES `ResourceBlock` WRITE; /*!40000 ALTER TABLE `ResourceBlock` DISABLE KEYS */; /*!40000 ALTER TABLE `ResourceBlock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourceBlockPermission` -- DROP TABLE IF EXISTS `ResourceBlockPermission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourceBlockPermission` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `resourceBlockPermissionId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `resourceBlockId` bigint(20) DEFAULT NULL, `roleId` bigint(20) DEFAULT NULL, `actionIds` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourceBlockPermissionId`), UNIQUE KEY `IX_D63D20BB` (`resourceBlockId`,`roleId`), KEY `IX_20A2E3D9` (`roleId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourceBlockPermission` -- LOCK TABLES `ResourceBlockPermission` WRITE; /*!40000 ALTER TABLE `ResourceBlockPermission` DISABLE KEYS */; /*!40000 ALTER TABLE `ResourceBlockPermission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourcePermission` -- DROP TABLE IF EXISTS `ResourcePermission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourcePermission` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `resourcePermissionId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `scope` int(11) DEFAULT NULL, `primKey` varchar(255) DEFAULT NULL, `primKeyId` bigint(20) DEFAULT NULL, `roleId` bigint(20) DEFAULT NULL, `ownerId` bigint(20) DEFAULT NULL, `actionIds` bigint(20) DEFAULT NULL, `viewActionId` tinyint(4) DEFAULT NULL, PRIMARY KEY (`resourcePermissionId`), UNIQUE KEY `IX_8D83D0CE` (`companyId`,`name`,`scope`,`primKey`,`roleId`), KEY `IX_49AEC6F3` (`companyId`,`name`,`scope`,`primKeyId`,`roleId`,`viewActionId`), KEY `IX_26284944` (`companyId`,`primKey`), KEY `IX_F6BAE86A` (`companyId`,`scope`,`primKey`), KEY `IX_D5F1E2A2` (`name`), KEY `IX_A37A0588` (`roleId`), KEY `IX_F4555981` (`scope`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourcePermission` -- LOCK TABLES `ResourcePermission` WRITE; /*!40000 ALTER TABLE `ResourcePermission` DISABLE KEYS */; INSERT INTO `ResourcePermission` VALUES (0,1,20115,'com.liferay.portal.kernel.model.Role',4,'20121',20121,20123,0,127,1),(0,2,20115,'com.liferay.portal.kernel.model.Role',4,'20122',20122,20123,0,127,1),(0,3,20115,'com.liferay.portal.kernel.model.Role',4,'20123',20123,20123,0,127,1),(0,4,20115,'com.liferay.portal.kernel.model.Role',4,'20124',20124,20123,0,127,1),(0,5,20115,'com.liferay.portal.kernel.model.Role',4,'20125',20125,20123,0,127,1),(0,6,20115,'com.liferay.portal.kernel.model.Role',4,'20126',20126,20123,0,127,1),(0,7,20115,'com.liferay.portal.kernel.model.Role',4,'20127',20127,20123,0,127,1),(0,8,20115,'com.liferay.portal.kernel.model.Role',4,'20128',20128,20123,0,127,1),(0,9,20115,'com.liferay.portal.kernel.model.Role',4,'20129',20129,20123,0,127,1),(0,10,20115,'com.liferay.portal.kernel.model.Role',4,'20130',20130,20123,0,127,1),(0,11,20115,'com.liferay.portal.kernel.model.Role',4,'20131',20131,20123,0,127,1),(0,12,20115,'com.liferay.portal.kernel.model.Role',4,'20121',20121,20125,0,1,1),(0,13,20115,'com.liferay.portal.kernel.model.Role',4,'20122',20122,20125,0,1,1),(0,14,20115,'com.liferay.portal.kernel.model.Role',4,'20123',20123,20125,0,1,1),(0,15,20115,'com.liferay.portal.kernel.model.Role',4,'20124',20124,20125,0,1,1),(0,16,20115,'com.liferay.portal.kernel.model.Role',4,'20125',20125,20125,0,1,1),(0,17,20115,'com.liferay.portal.kernel.model.Role',4,'20126',20126,20125,0,1,1),(0,18,20115,'com.liferay.portal.kernel.model.Role',4,'20127',20127,20125,0,1,1),(0,19,20115,'com.liferay.portal.kernel.model.Role',4,'20128',20128,20125,0,1,1),(0,20,20115,'com.liferay.portal.kernel.model.Role',4,'20129',20129,20125,0,1,1),(0,21,20115,'com.liferay.portal.kernel.model.Role',4,'20130',20130,20125,0,1,1),(0,22,20115,'com.liferay.portal.kernel.model.Role',4,'20131',20131,20125,0,1,1),(0,23,20115,'com.liferay.portal.kernel.model.Group',4,'20132',20132,20123,0,33554431,1),(0,24,20115,'com.liferay.portal.kernel.model.Layout',4,'20136',20136,20123,20119,1023,1),(0,25,20115,'com.liferay.portal.kernel.model.Layout',4,'20136',20136,20130,0,529,1),(0,26,20115,'com.liferay.portal.kernel.model.Layout',4,'20136',20136,20122,0,1,1),(0,27,20115,'com.liferay.portal.kernel.model.Group',4,'20139',20139,20123,0,33554431,1),(0,28,20115,'com.liferay.portal.kernel.model.Group',4,'20142',20142,20123,0,33554431,1),(0,29,20115,'com.liferay.portal.kernel.model.Layout',4,'20145',20145,20123,20119,1023,1),(0,30,20115,'com.liferay.portal.kernel.model.Layout',4,'20145',20145,20130,0,529,1),(0,31,20115,'com.liferay.portal.kernel.model.Layout',4,'20145',20145,20122,0,1,1),(0,32,20115,'com.liferay.portal.kernel.model.Group',4,'20148',20148,20123,0,33554431,1),(0,33,20115,'com.liferay.portal.kernel.model.Layout',2,'20148',20148,20125,0,1,1),(0,34,20115,'com.liferay.portal.kernel.model.Group',2,'20148',20148,20124,0,1280,0),(0,35,20115,'com.liferay.portal.kernel.model.Group',4,'20151',20151,20123,0,33554431,1),(0,36,20115,'com.liferay.portal.kernel.model.PasswordPolicy',4,'20154',20154,20123,0,31,1),(0,37,20115,'com.liferay.portal.kernel.model.Group',4,'20158',20158,20123,0,33554431,1),(0,38,20115,'com.liferay.portal.kernel.model.User',4,'20155',20155,20123,20155,31,1),(0,39,20115,'90',4,'90',90,20123,0,65534,0),(0,40,20115,'com.liferay.expando.kernel.model.ExpandoColumn',4,'20163',20163,20123,0,15,1),(0,41,20115,'com.liferay.expando.kernel.model.ExpandoColumn',4,'20164',20164,20123,0,15,1),(0,42,20115,'com.liferay.portal.kernel.model.Layout',4,'20165',20165,20123,20119,1023,1),(0,43,20115,'com.liferay.portal.kernel.model.Layout',4,'20165',20165,20130,0,529,1),(0,44,20115,'com.liferay.portal.kernel.model.Layout',4,'20165',20165,20122,0,1,1),(0,45,20115,'com.liferay.asset.kernel.model.AssetVocabulary',4,'20167',20167,20123,20119,15,1),(0,101,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29706',29706,20123,20119,15,1),(0,102,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29710',29710,20123,20119,15,1),(0,103,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29713',29713,20123,20119,15,1),(0,104,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29717',29717,20123,20119,15,1),(0,105,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29720',29720,20123,20119,15,1),(0,106,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29723',29723,20123,20119,15,1),(0,107,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29726',29726,20123,20119,15,1),(0,108,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29729',29729,20123,20119,15,1),(0,109,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29732',29732,20123,20119,15,1),(0,110,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29735',29735,20123,20119,15,1),(0,111,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29738',29738,20123,20119,15,1),(0,112,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29741',29741,20123,20119,15,1),(0,113,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29744',29744,20123,20119,15,1),(0,114,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29747',29747,20123,20119,15,1),(0,115,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29750',29750,20123,20119,15,1),(0,116,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29753',29753,20123,20119,15,1),(0,117,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29756',29756,20123,20119,15,1),(0,118,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29760',29760,20123,20119,15,1),(0,119,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29763',29763,20123,20119,15,1),(0,120,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29766',29766,20123,20119,15,1),(0,121,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29770',29770,20123,20119,15,1),(0,122,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29774',29774,20123,20119,15,1),(0,123,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29777',29777,20123,20119,15,1),(0,124,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29780',29780,20123,20119,15,1),(0,125,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29783',29783,20123,20119,15,1),(0,126,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29786',29786,20123,20119,15,1),(0,127,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29789',29789,20123,20119,15,1),(0,128,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'29792',29792,20123,20119,15,1),(0,129,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29795',29795,20123,20119,15,1),(0,130,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29795',29795,20125,0,1,1),(0,131,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29795',29795,20122,0,1,1),(0,132,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29798',29798,20123,20119,15,1),(0,133,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29798',29798,20125,0,1,1),(0,134,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29798',29798,20122,0,1,1),(0,135,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29801',29801,20123,20119,15,1),(0,136,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29801',29801,20125,0,1,1),(0,137,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29801',29801,20122,0,1,1),(0,138,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29805',29805,20123,20119,15,1),(0,139,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29805',29805,20125,0,1,1),(0,140,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29805',29805,20122,0,1,1),(0,141,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29804',29804,20123,20119,15,1),(0,142,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29804',29804,20125,0,1,1),(0,143,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29804',29804,20122,0,1,1),(0,144,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29810',29810,20123,20119,15,1),(0,145,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29810',29810,20125,0,1,1),(0,146,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29810',29810,20122,0,1,1),(0,147,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29809',29809,20123,20119,15,1),(0,148,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29809',29809,20125,0,1,1),(0,149,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29809',29809,20122,0,1,1),(0,150,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29816',29816,20123,20119,15,1),(0,151,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29816',29816,20125,0,1,1),(0,152,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29816',29816,20122,0,1,1),(0,153,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29815',29815,20123,20119,15,1),(0,154,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29815',29815,20125,0,1,1),(0,155,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29815',29815,20122,0,1,1),(0,156,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29822',29822,20123,20119,15,1),(0,157,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29822',29822,20125,0,1,1),(0,158,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29822',29822,20122,0,1,1),(0,159,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29821',29821,20123,20119,15,1),(0,160,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29821',29821,20125,0,1,1),(0,161,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'29821',29821,20122,0,1,1),(0,162,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29828',29828,20123,20119,15,1),(0,163,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29828',29828,20125,0,1,1),(0,164,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'29828',29828,20122,0,1,1),(0,165,20115,'com.liferay.portal.kernel.model.Role',4,'29843',29843,20123,0,127,1),(0,166,20115,'com.liferay.portal.kernel.model.Role',4,'29849',29849,20123,0,127,1),(0,167,20115,'com.liferay.portal.kernel.model.Role',4,'29852',29852,20123,0,127,1),(0,168,20115,'com.liferay.portal.workflow.kaleo.designer.model.KaleoDraftDefinition',4,'29862',29862,20123,20119,15,1),(0,201,20115,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30003',30003,20123,20119,15,1),(0,202,20115,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30004',30004,20123,20119,15,1),(0,203,20115,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30005',30005,20123,20119,15,1),(0,301,20115,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'31111',31111,20123,20119,15,1),(0,302,20115,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'31111',31111,20122,0,1,1),(0,303,20115,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'31112',31112,20123,20119,15,1),(0,304,20115,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'31112',31112,20122,0,1,1),(0,305,20115,'com.liferay.expando.kernel.model.ExpandoColumn',4,'31114',31114,20123,0,15,1),(0,306,20115,'com.liferay.expando.kernel.model.ExpandoColumn',4,'31115',31115,20123,0,15,1),(0,307,20115,'com.liferay.expando.kernel.model.ExpandoColumn',4,'31116',31116,20123,0,15,1),(0,308,20115,'com.liferay.expando.kernel.model.ExpandoColumn',4,'31117',31117,20123,0,15,1),(0,309,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',4,'31170',31170,20123,20119,15,1),(0,310,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',4,'31170',31170,20125,0,1,1),(0,311,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',4,'31170',31170,20122,0,1,1),(0,312,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',4,'31173',31173,20123,20119,15,1),(0,313,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',4,'31173',31173,20125,0,1,1),(0,314,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',4,'31173',31173,20122,0,1,1),(0,315,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31176',31176,20123,20119,15,1),(0,316,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31176',31176,20125,0,1,1),(0,317,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31176',31176,20122,0,1,1),(0,318,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31179',31179,20123,20119,15,1),(0,319,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31179',31179,20125,0,1,1),(0,320,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31179',31179,20122,0,1,1),(0,321,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31182',31182,20123,20119,15,1),(0,322,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31182',31182,20125,0,1,1),(0,323,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31182',31182,20122,0,1,1),(0,324,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31185',31185,20123,20119,15,1),(0,325,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31185',31185,20125,0,1,1),(0,326,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31185',31185,20122,0,1,1),(0,327,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31188',31188,20123,20119,15,1),(0,328,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31188',31188,20125,0,1,1),(0,329,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31188',31188,20122,0,1,1),(0,330,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31191',31191,20123,20119,15,1),(0,331,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31191',31191,20125,0,1,1),(0,332,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31191',31191,20122,0,1,1),(0,333,20115,'1_WAR_lcsportlet',4,'1_WAR_lcsportlet',0,20122,0,1,1),(0,334,20115,'1_WAR_lcsportlet',4,'1_WAR_lcsportlet',0,20123,0,63,1),(0,335,20115,'1_WAR_lcsportlet',4,'1_WAR_lcsportlet',0,20130,0,1,1),(0,336,20115,'1_WAR_lcsportlet',1,'20115',20115,20121,0,2,0),(0,337,20115,'1_WAR_lcsportlet',1,'20115',20115,20122,0,2,0),(0,338,20115,'1_WAR_lcsportlet',1,'20115',20115,20124,0,2,0),(0,339,20115,'1_WAR_lcsportlet',1,'20115',20115,20125,0,2,0),(0,340,20115,'com_liferay_comment_web_portlet_CommentPortlet',4,'com_liferay_comment_web_portlet_CommentPortlet',0,20122,0,1,1),(0,341,20115,'com_liferay_comment_web_portlet_CommentPortlet',4,'com_liferay_comment_web_portlet_CommentPortlet',0,20123,0,63,1),(0,342,20115,'com_liferay_comment_web_portlet_CommentPortlet',4,'com_liferay_comment_web_portlet_CommentPortlet',0,20130,0,1,1),(0,343,20115,'com_liferay_comment_web_portlet_CommentPortlet',1,'20115',20115,20122,0,2,0),(0,344,20115,'com_liferay_comment_web_portlet_CommentPortlet',1,'20115',20115,20124,0,2,0),(0,345,20115,'com_liferay_comment_web_portlet_CommentPortlet',1,'20115',20115,20125,0,2,0),(0,346,20115,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',4,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',0,20122,0,1,1),(0,347,20115,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',4,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',0,20123,0,63,1),(0,348,20115,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',4,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',0,20130,0,1,1),(0,349,20115,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',1,'20115',20115,20124,0,2,0),(1,350,20115,'com_liferay_portal_workflow_instance_web_portlet_MyWorkflowInstancePortlet',1,'20115',20115,20125,0,34,0),(0,351,20115,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet',4,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet',0,20122,0,1,1),(0,352,20115,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet',4,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet',0,20123,0,63,1),(0,353,20115,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet',4,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet',0,20130,0,1,1),(0,354,20115,'com_liferay_portal_workflow_instance_web_portlet_WorkflowInstancePortlet',1,'20115',20115,20121,0,2,0),(0,355,20115,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet',4,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet',0,20122,0,1,1),(0,356,20115,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet',4,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet',0,20123,0,63,1),(0,357,20115,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet',4,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerLoaderPortlet',0,20130,0,1,1),(0,358,20115,'com_liferay_polls_web_portlet_PollsDisplayPortlet',4,'com_liferay_polls_web_portlet_PollsDisplayPortlet',0,20122,0,1,1),(0,359,20115,'com_liferay_polls_web_portlet_PollsDisplayPortlet',4,'com_liferay_polls_web_portlet_PollsDisplayPortlet',0,20123,0,63,1),(0,360,20115,'com_liferay_polls_web_portlet_PollsDisplayPortlet',4,'com_liferay_polls_web_portlet_PollsDisplayPortlet',0,20130,0,1,1),(0,361,20115,'com.liferay.polls',4,'com.liferay.polls',0,20123,0,6,0),(0,362,20115,'com.liferay.polls.model.PollsQuestion',4,'com.liferay.polls.model.PollsQuestion',0,20123,0,31,1),(0,363,20115,'com.liferay.polls.model.PollsQuestion',4,'com.liferay.polls.model.PollsQuestion',0,20122,0,1,1),(0,364,20115,'com_liferay_polls_web_portlet_PollsDisplayPortlet',1,'20115',20115,20124,0,2,0),(0,365,20115,'com_liferay_polls_web_portlet_PollsDisplayPortlet',1,'20115',20115,20125,0,2,0),(0,366,20115,'com_liferay_polls_web_portlet_PollsPortlet',4,'com_liferay_polls_web_portlet_PollsPortlet',0,20122,0,1,1),(0,367,20115,'com_liferay_polls_web_portlet_PollsPortlet',4,'com_liferay_polls_web_portlet_PollsPortlet',0,20123,0,63,1),(0,368,20115,'com_liferay_polls_web_portlet_PollsPortlet',4,'com_liferay_polls_web_portlet_PollsPortlet',0,20130,0,1,1),(0,369,20115,'com_liferay_polls_web_portlet_PollsPortlet',1,'20115',20115,20124,0,2,0),(0,370,20115,'com_liferay_polls_web_portlet_PollsPortlet',1,'20115',20115,20125,0,2,0),(0,371,20115,'com_liferay_polls_web_portlet_PollsPortlet',2,'20148',20148,20124,0,63,1),(0,372,20115,'com.liferay.polls',2,'20148',20148,20124,0,6,0),(0,373,20115,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet',4,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet',0,20122,0,1,1),(0,374,20115,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet',4,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet',0,20123,0,63,1),(0,375,20115,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet',4,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet',0,20130,0,1,1),(0,376,20115,'com_liferay_portal_workflow_definition_web_portlet_WorkflowDefinitionPortlet',1,'20115',20115,20121,0,2,0),(0,377,20115,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',4,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',0,20122,0,1,1),(0,378,20115,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',4,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',0,20123,0,63,1),(0,379,20115,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',4,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',0,20130,0,1,1),(0,380,20115,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',1,'20115',20115,20124,0,2,0),(1,381,20115,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',1,'20115',20115,20125,0,34,0),(0,382,20115,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',4,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',0,20122,0,1,1),(0,383,20115,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',4,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',0,20123,0,63,1),(0,384,20115,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',4,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',0,20130,0,1,1),(0,385,20115,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',1,'20115',20115,20124,0,2,0),(0,386,20115,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',1,'20115',20115,20125,0,2,0),(0,387,20115,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',4,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',0,20122,0,1,1),(0,388,20115,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',4,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',0,20123,0,63,1),(0,389,20115,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',4,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',0,20130,0,1,1),(0,390,20115,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',1,'20115',20115,20122,0,2,0),(0,391,20115,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',1,'20115',20115,20124,0,2,0),(0,392,20115,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',1,'20115',20115,20125,0,2,0),(0,393,20115,'hello_soy_portlet',4,'hello_soy_portlet',0,20122,0,1,1),(0,394,20115,'hello_soy_portlet',4,'hello_soy_portlet',0,20123,0,63,1),(0,395,20115,'hello_soy_portlet',4,'hello_soy_portlet',0,20130,0,1,1),(0,396,20115,'hello_soy_portlet',1,'20115',20115,20122,0,2,0),(0,397,20115,'hello_soy_portlet',1,'20115',20115,20124,0,2,0),(0,398,20115,'hello_soy_portlet',1,'20115',20115,20125,0,2,0),(0,399,20115,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',4,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',0,20122,0,1,1),(0,400,20115,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',4,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',0,20123,0,63,1),(0,401,20115,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',4,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',0,20130,0,1,1),(0,402,20115,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',1,'20115',20115,20122,0,2,0),(0,403,20115,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',1,'20115',20115,20124,0,2,0),(0,404,20115,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',1,'20115',20115,20125,0,2,0),(0,405,20115,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',4,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',0,20122,0,1,1),(0,406,20115,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',4,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',0,20123,0,63,1),(0,407,20115,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',4,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',0,20130,0,1,1),(0,408,20115,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',1,'20115',20115,20121,0,2,0),(0,409,20115,'com_liferay_login_web_portlet_FastLoginPortlet',4,'com_liferay_login_web_portlet_FastLoginPortlet',0,20122,0,1,1),(0,410,20115,'com_liferay_login_web_portlet_FastLoginPortlet',4,'com_liferay_login_web_portlet_FastLoginPortlet',0,20123,0,63,1),(0,411,20115,'com_liferay_login_web_portlet_FastLoginPortlet',4,'com_liferay_login_web_portlet_FastLoginPortlet',0,20130,0,1,1),(0,412,20115,'com_liferay_login_web_portlet_FastLoginPortlet',1,'20115',20115,20122,0,2,0),(0,413,20115,'com_liferay_login_web_portlet_FastLoginPortlet',1,'20115',20115,20124,0,2,0),(0,414,20115,'com_liferay_login_web_portlet_FastLoginPortlet',1,'20115',20115,20125,0,2,0),(0,415,20115,'com_liferay_login_web_portlet_LoginPortlet',4,'com_liferay_login_web_portlet_LoginPortlet',0,20122,0,1,1),(0,416,20115,'com_liferay_login_web_portlet_LoginPortlet',4,'com_liferay_login_web_portlet_LoginPortlet',0,20123,0,31,1),(0,417,20115,'com_liferay_login_web_portlet_LoginPortlet',4,'com_liferay_login_web_portlet_LoginPortlet',0,20130,0,1,1),(0,418,20115,'com_liferay_login_web_portlet_LoginPortlet',1,'20115',20115,20122,0,16,0),(0,419,20115,'com_liferay_login_web_portlet_LoginPortlet',1,'20115',20115,20124,0,16,0),(0,420,20115,'com_liferay_login_web_portlet_LoginPortlet',1,'20115',20115,20125,0,16,0),(0,421,20115,'com_liferay_monitoring_web_portlet_MonitoringPortlet',4,'com_liferay_monitoring_web_portlet_MonitoringPortlet',0,20122,0,1,1),(0,422,20115,'com_liferay_monitoring_web_portlet_MonitoringPortlet',4,'com_liferay_monitoring_web_portlet_MonitoringPortlet',0,20123,0,31,1),(0,423,20115,'com_liferay_monitoring_web_portlet_MonitoringPortlet',4,'com_liferay_monitoring_web_portlet_MonitoringPortlet',0,20130,0,1,1),(0,424,20115,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',4,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',0,20122,0,1,1),(0,425,20115,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',4,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',0,20123,0,31,1),(0,426,20115,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',4,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',0,20130,0,1,1),(0,427,20115,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',4,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',0,20122,0,1,1),(0,428,20115,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',4,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',0,20123,0,31,1),(0,429,20115,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',4,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',0,20130,0,1,1),(0,430,20115,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',4,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',0,20122,0,1,1),(0,431,20115,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',4,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',0,20123,0,31,1),(0,432,20115,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',4,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',0,20130,0,1,1),(0,433,20115,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',4,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',0,20122,0,1,1),(0,434,20115,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',4,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',0,20123,0,63,1),(0,435,20115,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',4,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',0,20130,0,1,1),(0,436,20115,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',1,'20115',20115,20121,0,2,0),(0,437,20115,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',1,'20115',20115,20125,0,32,0),(0,438,20115,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',4,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',0,20122,0,1,1),(0,439,20115,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',4,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',0,20123,0,125,1),(0,440,20115,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',4,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',0,20130,0,1,1),(0,441,20115,'com.liferay.portal.kernel.model.User',4,'com.liferay.portal.kernel.model.User',0,20123,0,31,1),(0,442,20115,'com.liferay.portal.kernel.model.Organization',4,'com.liferay.portal.kernel.model.Organization',0,20123,0,2047,1),(0,443,20115,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet',4,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet',0,20122,0,1,1),(0,444,20115,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet',4,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet',0,20123,0,63,1),(0,445,20115,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet',4,'com_liferay_oauth_web_internal_portlet_AuthorizePortlet',0,20130,0,1,1),(0,446,20115,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',4,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',0,20122,0,1,1),(0,447,20115,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',4,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',0,20123,0,63,1),(0,448,20115,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',4,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',0,20130,0,1,1),(0,449,20115,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',4,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',0,20122,0,1,1),(0,450,20115,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',4,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',0,20123,0,63,1),(0,451,20115,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',4,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',0,20130,0,1,1),(0,452,20115,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',1,'20115',20115,20122,0,32,0),(0,453,20115,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',1,'20115',20115,20124,0,32,0),(0,454,20115,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',1,'20115',20115,20125,0,32,0),(0,455,20115,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',4,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',0,20122,0,1,1),(0,456,20115,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',4,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',0,20123,0,63,1),(0,457,20115,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',4,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',0,20130,0,1,1),(0,458,20115,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',4,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',0,20122,0,1,1),(0,459,20115,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',4,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',0,20123,0,63,1),(0,460,20115,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',4,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',0,20130,0,1,1),(0,461,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',0,20122,0,1,1),(0,462,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',0,20123,0,63,1),(0,463,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',0,20130,0,1,1),(0,464,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',1,'20115',20115,20122,0,2,0),(0,465,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',1,'20115',20115,20124,0,2,0),(0,466,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',1,'20115',20115,20125,0,2,0),(0,467,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',0,20122,0,1,1),(0,468,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',0,20123,0,63,1),(0,469,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',0,20130,0,1,1),(0,470,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',1,'20115',20115,20122,0,32,0),(0,471,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',1,'20115',20115,20124,0,32,0),(0,472,20115,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',1,'20115',20115,20125,0,32,0),(0,473,20115,'com_liferay_asset_web_portlet_AssetPortlet',4,'com_liferay_asset_web_portlet_AssetPortlet',0,20122,0,1,1),(0,474,20115,'com_liferay_asset_web_portlet_AssetPortlet',4,'com_liferay_asset_web_portlet_AssetPortlet',0,20123,0,63,1),(0,475,20115,'com_liferay_asset_web_portlet_AssetPortlet',4,'com_liferay_asset_web_portlet_AssetPortlet',0,20130,0,1,1),(0,476,20115,'com_liferay_exportimport_web_portlet_ExportPortlet',4,'com_liferay_exportimport_web_portlet_ExportPortlet',0,20122,0,1,1),(0,477,20115,'com_liferay_exportimport_web_portlet_ExportPortlet',4,'com_liferay_exportimport_web_portlet_ExportPortlet',0,20123,0,63,1),(0,478,20115,'com_liferay_exportimport_web_portlet_ExportPortlet',4,'com_liferay_exportimport_web_portlet_ExportPortlet',0,20130,0,1,1),(0,479,20115,'com_liferay_exportimport_web_portlet_ExportPortlet',2,'20148',20148,20124,0,63,1),(0,480,20115,'com_liferay_exportimport_web_portlet_ImportPortlet',4,'com_liferay_exportimport_web_portlet_ImportPortlet',0,20122,0,1,1),(0,481,20115,'com_liferay_exportimport_web_portlet_ImportPortlet',4,'com_liferay_exportimport_web_portlet_ImportPortlet',0,20123,0,63,1),(0,482,20115,'com_liferay_exportimport_web_portlet_ImportPortlet',4,'com_liferay_exportimport_web_portlet_ImportPortlet',0,20130,0,1,1),(0,483,20115,'com_liferay_exportimport_web_portlet_ImportPortlet',2,'20148',20148,20124,0,63,1),(0,484,20115,'com_liferay_iframe_web_portlet_IFramePortlet',4,'com_liferay_iframe_web_portlet_IFramePortlet',0,20122,0,1,1),(0,485,20115,'com_liferay_iframe_web_portlet_IFramePortlet',4,'com_liferay_iframe_web_portlet_IFramePortlet',0,20123,0,63,1),(0,486,20115,'com_liferay_iframe_web_portlet_IFramePortlet',4,'com_liferay_iframe_web_portlet_IFramePortlet',0,20130,0,1,1),(0,487,20115,'com_liferay_iframe_web_portlet_IFramePortlet',1,'20115',20115,20124,0,2,0),(0,488,20115,'com_liferay_iframe_web_portlet_IFramePortlet',1,'20115',20115,20125,0,2,0),(0,489,20115,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',4,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',0,20122,0,1,1),(0,490,20115,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',4,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',0,20123,0,63,1),(0,491,20115,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',4,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',0,20130,0,1,1),(0,492,20115,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',4,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',0,20122,0,1,1),(0,493,20115,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',4,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',0,20123,0,63,1),(0,494,20115,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',4,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',0,20130,0,1,1),(0,495,20115,'com_liferay_rss_web_portlet_RSSPortlet',4,'com_liferay_rss_web_portlet_RSSPortlet',0,20122,0,1,1),(0,496,20115,'com_liferay_rss_web_portlet_RSSPortlet',4,'com_liferay_rss_web_portlet_RSSPortlet',0,20123,0,63,1),(0,497,20115,'com_liferay_rss_web_portlet_RSSPortlet',4,'com_liferay_rss_web_portlet_RSSPortlet',0,20130,0,1,1),(0,498,20115,'com_liferay_rss_web_portlet_RSSPortlet',1,'20115',20115,20124,0,32,0),(0,499,20115,'com_liferay_rss_web_portlet_RSSPortlet',1,'20115',20115,20125,0,32,0),(0,500,20115,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',4,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',0,20122,0,1,1),(0,501,20115,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',4,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',0,20123,0,63,1),(0,502,20115,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',4,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',0,20130,0,1,1),(0,503,20115,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',4,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',0,20122,0,1,1),(0,504,20115,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',4,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',0,20123,0,63,1),(0,505,20115,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',4,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',0,20130,0,1,1),(0,506,20115,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',1,'20115',20115,20122,0,2,0),(0,507,20115,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',1,'20115',20115,20124,0,2,0),(0,508,20115,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',1,'20115',20115,20125,0,2,0),(0,509,20115,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',4,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',0,20122,0,1,1),(0,510,20115,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',4,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',0,20123,0,63,1),(0,511,20115,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',4,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',0,20130,0,1,1),(0,512,20115,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',1,'20115',20115,20122,0,32,0),(0,513,20115,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',1,'20115',20115,20124,0,32,0),(0,514,20115,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',1,'20115',20115,20125,0,32,0),(0,515,20115,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',4,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',0,20122,0,1,1),(0,516,20115,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',4,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',0,20123,0,63,1),(0,517,20115,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',4,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',0,20130,0,1,1),(0,518,20115,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',2,'20148',20148,20124,0,63,1),(0,519,20115,'com_liferay_xsl_content_web_portlet_XSLContentPortlet',4,'com_liferay_xsl_content_web_portlet_XSLContentPortlet',0,20122,0,1,1),(0,520,20115,'com_liferay_xsl_content_web_portlet_XSLContentPortlet',4,'com_liferay_xsl_content_web_portlet_XSLContentPortlet',0,20123,0,63,1),(0,521,20115,'com_liferay_xsl_content_web_portlet_XSLContentPortlet',4,'com_liferay_xsl_content_web_portlet_XSLContentPortlet',0,20130,0,1,1),(0,522,20115,'com_liferay_xsl_content_web_portlet_XSLContentPortlet',1,'20115',20115,20121,0,2,0),(0,523,20115,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',4,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',0,20122,0,1,1),(0,524,20115,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',4,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',0,20123,0,127,1),(0,525,20115,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',4,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',0,20130,0,33,1),(0,526,20115,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',1,'20115',20115,20124,0,64,0),(0,527,20115,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',1,'20115',20115,20125,0,64,0),(0,528,20115,'com.liferay.portal.kernel.model.LayoutPrototype',4,'31230',31230,20123,20119,15,1),(0,529,20115,'com.liferay.portal.kernel.model.Group',4,'31231',31231,20123,0,33554431,1),(0,530,20115,'com.liferay.portal.kernel.model.Layout',4,'31234',31234,20123,20119,1023,1),(0,531,20115,'com.liferay.portal.kernel.model.Layout',4,'31234',31234,20130,0,529,1),(0,532,20115,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',0,20122,0,1,1),(0,533,20115,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',0,20123,0,63,1),(0,534,20115,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',0,20130,0,1,1),(0,535,20115,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',1,'20115',20115,20122,0,2,0),(0,536,20115,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',1,'20115',20115,20124,0,2,0),(0,537,20115,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',1,'20115',20115,20125,0,2,0),(0,538,20115,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',0,20122,0,1,1),(0,539,20115,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',0,20123,0,63,1),(0,540,20115,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',0,20130,0,1,1),(0,541,20115,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',1,'20115',20115,20122,0,2,0),(0,542,20115,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',1,'20115',20115,20124,0,2,0),(0,543,20115,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',1,'20115',20115,20125,0,2,0),(0,544,20115,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',4,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',0,20122,0,1,1),(0,545,20115,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',4,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',0,20123,0,63,1),(0,546,20115,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',4,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',0,20130,0,1,1),(0,547,20115,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',1,'20115',20115,20122,0,2,0),(0,548,20115,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',1,'20115',20115,20124,0,2,0),(0,549,20115,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',1,'20115',20115,20125,0,2,0),(0,550,20115,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',0,20122,0,1,1),(0,551,20115,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',0,20123,0,63,1),(0,552,20115,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',0,20130,0,1,1),(0,553,20115,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',1,'20115',20115,20122,0,2,0),(0,554,20115,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',1,'20115',20115,20124,0,2,0),(0,555,20115,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',1,'20115',20115,20125,0,2,0),(0,556,20115,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',4,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',0,20122,0,1,1),(0,557,20115,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',4,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',0,20123,0,63,1),(0,558,20115,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',4,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',0,20130,0,1,1),(0,559,20115,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',1,'20115',20115,20121,0,2,0),(0,560,20115,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',1,'20115',20115,20122,0,2,0),(0,561,20115,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',1,'20115',20115,20124,0,2,0),(0,562,20115,'com_liferay_ip_geocoder_sample_web_portlet_IPGeocoderSamplePortlet',1,'20115',20115,20125,0,2,0),(0,563,20115,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',4,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',0,20122,0,1,1),(0,564,20115,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',4,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',0,20123,0,61,1),(0,565,20115,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',4,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',0,20130,0,1,1),(0,566,20115,'com.liferay.asset.tags',4,'com.liferay.asset.tags',0,20123,0,6,0),(0,567,20115,'com.liferay.asset.kernel.model.AssetTag',4,'com.liferay.asset.kernel.model.AssetTag',0,20123,0,14,0),(0,568,20115,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',2,'20148',20148,20124,0,61,1),(0,569,20115,'com.liferay.asset.tags',2,'20148',20148,20124,0,6,0),(0,570,20115,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',4,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',0,20122,0,1,1),(0,571,20115,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',4,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',0,20123,0,61,1),(0,572,20115,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',4,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',0,20130,0,1,1),(0,573,20115,'com.liferay.asset.categories',4,'com.liferay.asset.categories',0,20123,0,14,0),(0,574,20115,'com.liferay.asset.kernel.model.AssetCategory',4,'com.liferay.asset.kernel.model.AssetCategory',0,20123,0,31,1),(0,575,20115,'com.liferay.asset.kernel.model.AssetCategory',4,'com.liferay.asset.kernel.model.AssetCategory',0,20122,0,1,1),(0,576,20115,'com.liferay.asset.kernel.model.AssetVocabulary',4,'com.liferay.asset.kernel.model.AssetVocabulary',0,20123,0,15,1),(0,577,20115,'com.liferay.asset.kernel.model.AssetVocabulary',4,'com.liferay.asset.kernel.model.AssetVocabulary',0,20122,0,1,1),(0,578,20115,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',2,'20148',20148,20124,0,61,1),(0,579,20115,'com.liferay.asset.categories',2,'20148',20148,20124,0,14,0),(0,580,20115,'com_liferay_expando_web_portlet_ExpandoPortlet',4,'com_liferay_expando_web_portlet_ExpandoPortlet',0,20123,0,125,1),(0,581,20115,'com.liferay.expando.kernel.model.ExpandoColumn',4,'com.liferay.expando.kernel.model.ExpandoColumn',0,20123,0,15,1),(0,582,20115,'com_liferay_portal_search_web_portlet_SearchPortlet',4,'com_liferay_portal_search_web_portlet_SearchPortlet',0,20122,0,1,1),(0,583,20115,'com_liferay_portal_search_web_portlet_SearchPortlet',4,'com_liferay_portal_search_web_portlet_SearchPortlet',0,20123,0,63,1),(0,584,20115,'com_liferay_portal_search_web_portlet_SearchPortlet',4,'com_liferay_portal_search_web_portlet_SearchPortlet',0,20130,0,1,1),(0,585,20115,'com_liferay_portal_search_web_portlet_SearchPortlet',1,'20115',20115,20122,0,2,0),(0,586,20115,'com_liferay_portal_search_web_portlet_SearchPortlet',1,'20115',20115,20124,0,2,0),(0,587,20115,'com_liferay_portal_search_web_portlet_SearchPortlet',1,'20115',20115,20125,0,2,0),(0,588,20115,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',4,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',0,20122,0,1,1),(0,589,20115,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',4,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',0,20123,0,61,1),(0,590,20115,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',4,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',0,20130,0,1,1),(0,591,20115,'com.liferay.portal.kernel.model.LayoutPrototype',4,'com.liferay.portal.kernel.model.LayoutPrototype',0,20123,0,15,1),(0,592,20115,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',4,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',0,20122,0,1,1),(0,593,20115,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',4,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',0,20123,0,63,1),(0,594,20115,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',4,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',0,20130,0,1,1),(0,595,20115,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',1,'20115',20115,20122,0,2,0),(0,596,20115,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',1,'20115',20115,20124,0,2,0),(0,597,20115,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',1,'20115',20115,20125,0,2,0),(0,598,20115,'com_liferay_mentions_web_portlet_MentionsPortlet',4,'com_liferay_mentions_web_portlet_MentionsPortlet',0,20122,0,1,1),(0,599,20115,'com_liferay_mentions_web_portlet_MentionsPortlet',4,'com_liferay_mentions_web_portlet_MentionsPortlet',0,20123,0,63,1),(0,600,20115,'com_liferay_mentions_web_portlet_MentionsPortlet',4,'com_liferay_mentions_web_portlet_MentionsPortlet',0,20130,0,1,1),(0,601,20115,'com_liferay_mentions_web_portlet_MentionsPortlet',1,'20115',20115,20121,0,2,0),(0,602,20115,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',4,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',0,20122,0,1,1),(0,603,20115,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',4,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',0,20123,0,61,1),(0,604,20115,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',4,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',0,20130,0,1,1),(0,605,20115,'com.liferay.portal.kernel.model.PasswordPolicy',4,'com.liferay.portal.kernel.model.PasswordPolicy',0,20123,0,31,1),(0,606,20115,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',4,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',0,20122,0,1,1),(0,607,20115,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',4,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',0,20123,0,63,1),(0,608,20115,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',4,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',0,20130,0,1,1),(0,609,20115,'com.liferay.portal.kernel.model.Team',4,'com.liferay.portal.kernel.model.Team',0,20123,0,31,1),(0,610,20115,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',2,'20148',20148,20124,0,63,1),(0,611,20115,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',4,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',0,20122,0,1,1),(0,612,20115,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',4,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',0,20123,0,63,1),(0,613,20115,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',4,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',0,20130,0,1,1),(0,614,20115,'com.liferay.portal.kernel.model.UserGroup',4,'com.liferay.portal.kernel.model.UserGroup',0,20123,0,127,1),(0,615,20115,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',1,'20115',20115,20121,0,2,0),(0,616,20115,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',4,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',0,20122,0,1,1),(0,617,20115,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',4,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',0,20123,0,63,1),(0,618,20115,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',4,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',0,20130,0,1,1),(0,619,20115,'com.liferay.portal.kernel.model.Group',4,'com.liferay.portal.kernel.model.Group',0,20123,0,33554431,1),(0,620,20115,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',2,'20148',20148,20124,0,63,1),(0,621,20115,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',4,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',0,20122,0,1,1),(0,622,20115,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',4,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',0,20123,0,63,1),(0,623,20115,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',4,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',0,20130,0,1,1),(0,624,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',4,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',0,20122,0,1,1),(0,625,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',4,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',0,20123,0,63,1),(0,626,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',4,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',0,20130,0,1,1),(0,627,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',1,'20115',20115,20124,0,2,0),(0,628,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkControlPanelPortlet',1,'20115',20115,20125,0,2,0),(0,629,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',4,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',0,20122,0,1,1),(0,630,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',4,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',0,20123,0,63,1),(0,631,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',4,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',0,20130,0,1,1),(0,632,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',1,'20115',20115,20124,0,2,0),(0,633,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',1,'20115',20115,20125,0,2,0),(0,634,20115,'com_liferay_portal_workflow_definition_link_web_portlet_WorkflowDefinitionLinkPortlet',2,'20148',20148,20124,0,63,1),(0,635,20115,'com_liferay_trash_web_portlet_TrashPortlet',4,'com_liferay_trash_web_portlet_TrashPortlet',0,20122,0,1,1),(0,636,20115,'com_liferay_trash_web_portlet_TrashPortlet',4,'com_liferay_trash_web_portlet_TrashPortlet',0,20123,0,63,1),(0,637,20115,'com_liferay_trash_web_portlet_TrashPortlet',4,'com_liferay_trash_web_portlet_TrashPortlet',0,20130,0,1,1),(0,638,20115,'com_liferay_trash_web_portlet_TrashPortlet',1,'20115',20115,20121,0,2,0),(0,639,20115,'com_liferay_trash_web_portlet_TrashPortlet',2,'20148',20148,20124,0,63,1),(0,640,20115,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',4,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',0,20122,0,1,1),(0,641,20115,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',4,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',0,20123,0,63,1),(0,642,20115,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',4,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',0,20130,0,1,1),(0,643,20115,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',1,'20115',20115,20124,0,2,0),(0,644,20115,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',1,'20115',20115,20125,0,2,0),(0,645,20115,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',4,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',0,20122,0,1,1),(0,646,20115,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',4,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',0,20123,0,63,1),(0,647,20115,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',4,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',0,20130,0,1,1),(0,648,20115,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',4,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',0,20122,0,1,1),(0,649,20115,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',4,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',0,20123,0,61,1),(0,650,20115,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',4,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',0,20130,0,1,1),(0,651,20115,'com.liferay.portal.kernel.model.Role',4,'com.liferay.portal.kernel.model.Role',0,20123,0,127,1),(0,652,20115,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',4,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',0,20122,0,1,1),(0,653,20115,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',4,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',0,20123,0,61,1),(0,654,20115,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',4,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',0,20130,0,1,1),(0,655,20115,'com.liferay.portal.kernel.model.LayoutSetPrototype',4,'com.liferay.portal.kernel.model.LayoutSetPrototype',0,20123,0,15,1),(0,656,20115,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',4,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',0,20122,0,1,1),(0,657,20115,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',4,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',0,20123,0,63,1),(0,658,20115,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',4,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',0,20130,0,1,1),(0,659,20115,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',2,'20148',20148,20124,0,63,1),(0,660,20115,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',4,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',0,20122,0,1,1),(0,661,20115,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',4,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',0,20123,0,63,1),(0,662,20115,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',4,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',0,20130,0,1,1),(0,663,20115,'com_liferay_announcements_web_portlet_AlertsPortlet',4,'com_liferay_announcements_web_portlet_AlertsPortlet',0,20122,0,1,1),(0,664,20115,'com_liferay_announcements_web_portlet_AlertsPortlet',4,'com_liferay_announcements_web_portlet_AlertsPortlet',0,20123,0,31,1),(0,665,20115,'com_liferay_announcements_web_portlet_AlertsPortlet',4,'com_liferay_announcements_web_portlet_AlertsPortlet',0,20130,0,1,1),(0,666,20115,'com.liferay.announcements.kernel.model.AnnouncementsEntry',4,'com.liferay.announcements.kernel.model.AnnouncementsEntry',0,20123,0,15,1),(0,667,20115,'com.liferay.announcements.kernel.model.AnnouncementsEntry',4,'com.liferay.announcements.kernel.model.AnnouncementsEntry',0,20122,0,1,1),(0,668,20115,'com_liferay_announcements_web_portlet_AlertsPortlet',1,'20115',20115,20124,0,2,0),(0,669,20115,'com_liferay_announcements_web_portlet_AlertsPortlet',1,'20115',20115,20125,0,2,0),(0,670,20115,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet',4,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet',0,20123,0,31,1),(0,671,20115,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',4,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',0,20122,0,1,1),(0,672,20115,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',4,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',0,20123,0,31,1),(0,673,20115,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',4,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',0,20130,0,1,1),(0,674,20115,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',1,'20115',20115,20124,0,2,0),(0,675,20115,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',1,'20115',20115,20125,0,2,0),(0,676,20115,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',4,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',0,20122,0,1,1),(0,677,20115,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',4,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',0,20123,0,63,1),(0,678,20115,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',4,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',0,20130,0,1,1),(0,679,20115,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',1,'20115',20115,20122,0,2,0),(0,680,20115,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',1,'20115',20115,20124,0,2,0),(0,681,20115,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',1,'20115',20115,20125,0,2,0),(0,682,20115,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet',4,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet',0,20122,0,1,1),(0,683,20115,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet',4,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet',0,20123,0,61,1),(0,684,20115,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet',4,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet',0,20130,0,1,1),(0,685,20115,'com.liferay.bookmarks',4,'com.liferay.bookmarks',0,20122,0,1,1),(0,686,20115,'com.liferay.bookmarks',4,'com.liferay.bookmarks',0,20123,0,31,1),(0,687,20115,'com.liferay.bookmarks',4,'com.liferay.bookmarks',0,20130,0,11,1),(0,688,20115,'com_liferay_bookmarks_web_portlet_BookmarksAdminPortlet',2,'20148',20148,20124,0,61,1),(0,689,20115,'com.liferay.bookmarks',2,'20148',20148,20124,0,31,1),(0,690,20115,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',4,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',0,20122,0,1,1),(0,691,20115,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',4,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',0,20123,0,31,1),(0,692,20115,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',4,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',0,20130,0,1,1),(0,693,20115,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',1,'20115',20115,20124,0,2,0),(0,694,20115,'com_liferay_bookmarks_web_portlet_BookmarksPortlet',1,'20115',20115,20125,0,2,0),(0,695,20115,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',4,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',0,20122,0,1,1),(0,696,20115,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',4,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',0,20123,0,63,1),(0,697,20115,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',4,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',0,20130,0,1,1),(0,698,20115,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',1,'20115',20115,20124,0,2,0),(0,699,20115,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',1,'20115',20115,20125,0,2,0),(0,700,20115,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet',4,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet',0,20123,0,31,1),(0,701,20115,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet',1,'20115',20115,20124,0,16,0),(0,702,20115,'com_liferay_directory_web_portlet_FriendsDirectoryPortlet',1,'20115',20115,20125,0,16,0),(0,703,20115,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet',4,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet',0,20123,0,31,1),(0,704,20115,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet',1,'20115',20115,20124,0,16,0),(0,705,20115,'com_liferay_directory_web_portlet_MySitesDirectoryPortlet',1,'20115',20115,20125,0,16,0),(0,706,20115,'com_liferay_directory_web_portlet_DirectoryPortlet',4,'com_liferay_directory_web_portlet_DirectoryPortlet',0,20123,0,31,1),(0,707,20115,'com_liferay_directory_web_portlet_DirectoryPortlet',1,'20115',20115,20124,0,16,0),(0,708,20115,'com_liferay_directory_web_portlet_DirectoryPortlet',1,'20115',20115,20125,0,16,0),(0,709,20115,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet',4,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet',0,20123,0,31,1),(0,710,20115,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet',1,'20115',20115,20124,0,16,0),(0,711,20115,'com_liferay_directory_web_portlet_SiteMembersDirectoryPortlet',1,'20115',20115,20125,0,16,0),(0,712,20115,'com_liferay_flags_web_portlet_FlagsPortlet',4,'com_liferay_flags_web_portlet_FlagsPortlet',0,20122,0,1,1),(0,713,20115,'com_liferay_flags_web_portlet_FlagsPortlet',4,'com_liferay_flags_web_portlet_FlagsPortlet',0,20123,0,63,1),(0,714,20115,'com_liferay_flags_web_portlet_FlagsPortlet',4,'com_liferay_flags_web_portlet_FlagsPortlet',0,20130,0,1,1),(0,715,20115,'com_liferay_flags_web_portlet_FlagsPortlet',1,'20115',20115,20122,0,2,0),(0,716,20115,'com_liferay_flags_web_portlet_FlagsPortlet',1,'20115',20115,20124,0,2,0),(0,717,20115,'com_liferay_flags_web_portlet_FlagsPortlet',1,'20115',20115,20125,0,2,0),(0,718,20115,'com_liferay_flags_web_portlet_PageFlagsPortlet',4,'com_liferay_flags_web_portlet_PageFlagsPortlet',0,20122,0,1,1),(0,719,20115,'com_liferay_flags_web_portlet_PageFlagsPortlet',4,'com_liferay_flags_web_portlet_PageFlagsPortlet',0,20123,0,63,1),(0,720,20115,'com_liferay_flags_web_portlet_PageFlagsPortlet',4,'com_liferay_flags_web_portlet_PageFlagsPortlet',0,20130,0,1,1),(0,721,20115,'com_liferay_flags_web_portlet_PageFlagsPortlet',1,'20115',20115,20122,0,2,0),(0,722,20115,'com_liferay_flags_web_portlet_PageFlagsPortlet',1,'20115',20115,20124,0,2,0),(0,723,20115,'com_liferay_flags_web_portlet_PageFlagsPortlet',1,'20115',20115,20125,0,2,0),(0,724,20115,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',4,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',0,20122,0,1,1),(0,725,20115,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',4,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',0,20123,0,63,1),(0,726,20115,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',4,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',0,20130,0,1,1),(0,727,20115,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',1,'20115',20115,20122,0,2,0),(0,728,20115,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',1,'20115',20115,20124,0,2,0),(0,729,20115,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',1,'20115',20115,20125,0,2,0),(0,730,20115,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',4,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',0,20122,0,1,1),(0,731,20115,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',4,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',0,20123,0,63,1),(0,732,20115,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',4,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',0,20130,0,1,1),(0,733,20115,'com_liferay_quick_note_web_portlet_QuickNotePortlet',4,'com_liferay_quick_note_web_portlet_QuickNotePortlet',0,20122,0,1,1),(0,734,20115,'com_liferay_quick_note_web_portlet_QuickNotePortlet',4,'com_liferay_quick_note_web_portlet_QuickNotePortlet',0,20123,0,63,1),(0,735,20115,'com_liferay_quick_note_web_portlet_QuickNotePortlet',4,'com_liferay_quick_note_web_portlet_QuickNotePortlet',0,20130,0,1,1),(0,736,20115,'com_liferay_quick_note_web_portlet_QuickNotePortlet',1,'20115',20115,20124,0,2,0),(0,737,20115,'com_liferay_quick_note_web_portlet_QuickNotePortlet',1,'20115',20115,20125,0,2,0),(0,738,20115,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',4,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',0,20122,0,1,1),(0,739,20115,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',4,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',0,20123,0,63,1),(0,740,20115,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',4,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',0,20130,0,1,1),(0,741,20115,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',1,'20115',20115,20124,0,2,0),(0,742,20115,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',1,'20115',20115,20125,0,2,0),(0,743,20115,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',4,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',0,20122,0,1,1),(0,744,20115,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',4,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',0,20123,0,63,1),(0,745,20115,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',4,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',0,20130,0,1,1),(0,746,20115,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',1,'20115',20115,20122,0,2,0),(0,747,20115,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',1,'20115',20115,20124,0,2,0),(0,748,20115,'com_liferay_recent_documents_web_portlet_RecentDocumentsPortlet',1,'20115',20115,20125,0,2,0),(0,749,20115,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',4,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',0,20122,0,1,1),(0,750,20115,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',4,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',0,20123,0,63,1),(0,751,20115,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',4,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',0,20130,0,1,1),(0,752,20115,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',1,'20115',20115,20122,0,2,0),(0,753,20115,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',1,'20115',20115,20124,0,2,0),(0,754,20115,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',1,'20115',20115,20125,0,2,0),(0,755,20115,'com_liferay_social_activity_web_portlet_SocialActivityPortlet',4,'com_liferay_social_activity_web_portlet_SocialActivityPortlet',0,20123,0,31,1),(0,756,20115,'com_liferay_social_activity_web_portlet_SocialActivityPortlet',2,'20148',20148,20124,0,31,1),(0,757,20115,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',4,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',0,20122,0,1,1),(0,758,20115,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',4,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',0,20123,0,63,1),(0,759,20115,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',4,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',0,20130,0,1,1),(0,760,20115,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',1,'20115',20115,20122,0,2,0),(0,761,20115,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',1,'20115',20115,20124,0,2,0),(0,762,20115,'com_liferay_social_group_statistics_web_portlet_SocialGroupStatisticsPortlet',1,'20115',20115,20125,0,2,0),(0,763,20115,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',4,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',0,20122,0,1,1),(0,764,20115,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',4,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',0,20123,0,63,1),(0,765,20115,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',4,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',0,20130,0,1,1),(0,766,20115,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',1,'20115',20115,20122,0,2,0),(0,767,20115,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',1,'20115',20115,20124,0,2,0),(0,768,20115,'com_liferay_social_requests_web_portlet_SocialRequestsPortlet',1,'20115',20115,20125,0,2,0),(0,769,20115,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',4,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',0,20122,0,1,1),(0,770,20115,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',4,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',0,20123,0,63,1),(0,771,20115,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',4,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',0,20130,0,1,1),(0,772,20115,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',1,'20115',20115,20122,0,2,0),(0,773,20115,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',1,'20115',20115,20124,0,2,0),(0,774,20115,'com_liferay_social_user_statistics_web_portlet_SocialUserStatisticsPortlet',1,'20115',20115,20125,0,2,0),(0,775,20115,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',4,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',0,20122,0,1,1),(0,776,20115,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',4,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',0,20123,0,63,1),(0,777,20115,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',4,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',0,20130,0,1,1),(0,778,20115,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',1,'20115',20115,20124,0,2,0),(0,779,20115,'com_liferay_hello_velocity_web_portlet_HelloVelocityPortlet',1,'20115',20115,20125,0,2,0),(0,780,20115,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',4,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',0,20122,0,1,1),(0,781,20115,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',4,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',0,20123,0,63,1),(0,782,20115,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',4,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',0,20130,0,1,1),(0,783,20115,'com.liferay.mobile.device.rules',4,'com.liferay.mobile.device.rules',0,20123,0,31,1),(0,784,20115,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance',4,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance',0,20123,0,15,1),(0,785,20115,'com.liferay.mobile.device.rules.model.MDRRuleGroup',4,'com.liferay.mobile.device.rules.model.MDRRuleGroup',0,20123,0,15,1),(0,786,20115,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',1,'20115',20115,20124,0,2,0),(0,787,20115,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',1,'20115',20115,20125,0,2,0),(0,788,20115,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',2,'20148',20148,20124,0,63,1),(0,789,20115,'com.liferay.mobile.device.rules',2,'20148',20148,20124,0,31,1),(0,790,20115,'com_liferay_my_account_web_portlet_MyAccountPortlet',4,'com_liferay_my_account_web_portlet_MyAccountPortlet',0,20123,0,31,1),(0,791,20115,'com_liferay_my_account_web_portlet_MyAccountPortlet',1,'20115',20115,20125,0,16,0),(0,792,20115,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',4,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',0,20122,0,1,1),(0,793,20115,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',4,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',0,20123,0,31,1),(0,794,20115,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',4,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',0,20130,0,1,1),(0,795,20115,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',4,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',0,20122,0,1,1),(0,796,20115,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',4,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',0,20123,0,63,1),(0,797,20115,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',4,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',0,20130,0,1,1),(0,798,20115,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',1,'20115',20115,20124,0,2,0),(0,799,20115,'com_liferay_web_proxy_web_portlet_WebProxyPortlet',1,'20115',20115,20125,0,2,0),(0,800,20115,'com_liferay_exportimport_web_portlet_ExportImportPortlet',4,'com_liferay_exportimport_web_portlet_ExportImportPortlet',0,20122,0,1,1),(0,801,20115,'com_liferay_exportimport_web_portlet_ExportImportPortlet',4,'com_liferay_exportimport_web_portlet_ExportImportPortlet',0,20123,0,63,1),(0,802,20115,'com_liferay_exportimport_web_portlet_ExportImportPortlet',4,'com_liferay_exportimport_web_portlet_ExportImportPortlet',0,20130,0,1,1),(0,803,20115,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',4,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',0,20122,0,1,1),(0,804,20115,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',4,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',0,20123,0,63,1),(0,805,20115,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',4,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',0,20130,0,1,1),(0,806,20115,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',4,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',0,20122,0,1,1),(0,807,20115,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',4,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',0,20123,0,63,1),(0,808,20115,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',4,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',0,20130,0,1,1),(0,809,20115,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',4,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',0,20123,0,31,1),(0,810,20115,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',4,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',0,20130,0,1,1),(0,811,20115,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',1,'20115',20115,20124,0,16,0),(0,812,20115,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',1,'20115',20115,20125,0,16,0),(0,813,20115,'com_liferay_document_library_web_portlet_DLAdminPortlet',4,'com_liferay_document_library_web_portlet_DLAdminPortlet',0,20122,0,1,1),(0,814,20115,'com_liferay_document_library_web_portlet_DLAdminPortlet',4,'com_liferay_document_library_web_portlet_DLAdminPortlet',0,20123,0,61,1),(0,815,20115,'com_liferay_document_library_web_portlet_DLAdminPortlet',4,'com_liferay_document_library_web_portlet_DLAdminPortlet',0,20130,0,1,1),(0,816,20115,'com.liferay.document.library',4,'com.liferay.document.library',0,20122,0,1,1),(0,817,20115,'com.liferay.document.library',4,'com.liferay.document.library',0,20123,0,1023,1),(0,818,20115,'com.liferay.document.library',4,'com.liferay.document.library',0,20130,0,465,1),(0,819,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'com.liferay.document.library.kernel.model.DLFileEntryType',0,20123,0,15,1),(0,820,20115,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'com.liferay.document.library.kernel.model.DLFileEntryType',0,20122,0,1,1),(0,821,20115,'com.liferay.document.library.kernel.model.DLFileEntry',4,'com.liferay.document.library.kernel.model.DLFileEntry',0,20123,0,255,1),(0,822,20115,'com.liferay.document.library.kernel.model.DLFileEntry',4,'com.liferay.document.library.kernel.model.DLFileEntry',0,20122,0,129,1),(0,823,20115,'com.liferay.document.library.kernel.model.DLFileShortcut',4,'com.liferay.document.library.kernel.model.DLFileShortcut',0,20123,0,15,1),(0,824,20115,'com.liferay.document.library.kernel.model.DLFileShortcut',4,'com.liferay.document.library.kernel.model.DLFileShortcut',0,20122,0,1,1),(0,825,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',0,20123,0,15,1),(0,826,20115,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',0,20122,0,1,1),(0,827,20115,'com.liferay.document.library.kernel.model.DLFolder',4,'com.liferay.document.library.kernel.model.DLFolder',0,20123,0,511,1),(0,828,20115,'com.liferay.document.library.kernel.model.DLFolder',4,'com.liferay.document.library.kernel.model.DLFolder',0,20122,0,1,1),(0,829,20115,'com_liferay_document_library_web_portlet_DLAdminPortlet',2,'20148',20148,20124,0,61,1),(0,830,20115,'com.liferay.document.library',2,'20148',20148,20124,0,1023,1),(0,831,20115,'com_liferay_document_library_web_portlet_DLPortlet',4,'com_liferay_document_library_web_portlet_DLPortlet',0,20122,0,1,1),(0,832,20115,'com_liferay_document_library_web_portlet_DLPortlet',4,'com_liferay_document_library_web_portlet_DLPortlet',0,20123,0,63,1),(0,833,20115,'com_liferay_document_library_web_portlet_DLPortlet',4,'com_liferay_document_library_web_portlet_DLPortlet',0,20130,0,1,1),(0,834,20115,'com_liferay_document_library_web_portlet_DLPortlet',1,'20115',20115,20122,0,2,0),(0,835,20115,'com_liferay_document_library_web_portlet_DLPortlet',1,'20115',20115,20124,0,2,0),(0,836,20115,'com_liferay_document_library_web_portlet_DLPortlet',1,'20115',20115,20125,0,2,0),(0,837,20115,'com_liferay_document_library_web_portlet_IGDisplayPortlet',4,'com_liferay_document_library_web_portlet_IGDisplayPortlet',0,20122,0,1,1),(0,838,20115,'com_liferay_document_library_web_portlet_IGDisplayPortlet',4,'com_liferay_document_library_web_portlet_IGDisplayPortlet',0,20123,0,63,1),(0,839,20115,'com_liferay_document_library_web_portlet_IGDisplayPortlet',4,'com_liferay_document_library_web_portlet_IGDisplayPortlet',0,20130,0,1,1),(0,840,20115,'com_liferay_document_library_web_portlet_IGDisplayPortlet',1,'20115',20115,20122,0,2,0),(0,841,20115,'com_liferay_document_library_web_portlet_IGDisplayPortlet',1,'20115',20115,20124,0,2,0),(0,842,20115,'com_liferay_document_library_web_portlet_IGDisplayPortlet',1,'20115',20115,20125,0,2,0),(0,843,20115,'com_liferay_message_boards_web_portlet_MBAdminPortlet',4,'com_liferay_message_boards_web_portlet_MBAdminPortlet',0,20122,0,1,1),(0,844,20115,'com_liferay_message_boards_web_portlet_MBAdminPortlet',4,'com_liferay_message_boards_web_portlet_MBAdminPortlet',0,20123,0,61,1),(0,845,20115,'com_liferay_message_boards_web_portlet_MBAdminPortlet',4,'com_liferay_message_boards_web_portlet_MBAdminPortlet',0,20130,0,1,1),(0,846,20115,'com.liferay.message.boards',4,'com.liferay.message.boards',0,20122,0,1,1),(0,847,20115,'com.liferay.message.boards',4,'com.liferay.message.boards',0,20123,0,2047,1),(0,848,20115,'com.liferay.message.boards',4,'com.liferay.message.boards',0,20130,0,421,1),(0,849,20115,'com.liferay.message.boards.kernel.model.MBThread',4,'com.liferay.message.boards.kernel.model.MBThread',0,20123,0,7,1),(0,850,20115,'com.liferay.message.boards.kernel.model.MBThread',4,'com.liferay.message.boards.kernel.model.MBThread',0,20122,0,1,1),(0,851,20115,'com.liferay.message.boards.kernel.model.MBCategory',4,'com.liferay.message.boards.kernel.model.MBCategory',0,20123,0,4095,1),(0,852,20115,'com.liferay.message.boards.kernel.model.MBCategory',4,'com.liferay.message.boards.kernel.model.MBCategory',0,20122,0,1,1),(0,853,20115,'com.liferay.message.boards.kernel.model.MBMessage',4,'com.liferay.message.boards.kernel.model.MBMessage',0,20123,0,31,1),(0,854,20115,'com.liferay.message.boards.kernel.model.MBMessage',4,'com.liferay.message.boards.kernel.model.MBMessage',0,20122,0,1,1),(0,855,20115,'com_liferay_message_boards_web_portlet_MBAdminPortlet',2,'20148',20148,20124,0,61,1),(0,856,20115,'com.liferay.message.boards',2,'20148',20148,20124,0,2047,1),(0,857,20115,'com_liferay_message_boards_web_portlet_MBPortlet',4,'com_liferay_message_boards_web_portlet_MBPortlet',0,20122,0,1,1),(0,858,20115,'com_liferay_message_boards_web_portlet_MBPortlet',4,'com_liferay_message_boards_web_portlet_MBPortlet',0,20123,0,31,1),(0,859,20115,'com_liferay_message_boards_web_portlet_MBPortlet',4,'com_liferay_message_boards_web_portlet_MBPortlet',0,20130,0,1,1),(0,860,20115,'com_liferay_message_boards_web_portlet_MBPortlet',1,'20115',20115,20124,0,2,0),(0,861,20115,'com_liferay_message_boards_web_portlet_MBPortlet',1,'20115',20115,20125,0,2,0),(0,862,20115,'com_liferay_wiki_web_portlet_WikiAdminPortlet',4,'com_liferay_wiki_web_portlet_WikiAdminPortlet',0,20123,0,61,1),(0,863,20115,'com.liferay.wiki',4,'com.liferay.wiki',0,20123,0,6,0),(0,864,20115,'com.liferay.wiki.model.WikiPage',4,'com.liferay.wiki.model.WikiPage',0,20123,0,255,1),(0,865,20115,'com.liferay.wiki.model.WikiPage',4,'com.liferay.wiki.model.WikiPage',0,20122,0,129,1),(0,866,20115,'com.liferay.wiki.model.WikiNode',4,'com.liferay.wiki.model.WikiNode',0,20123,0,255,1),(0,867,20115,'com.liferay.wiki.model.WikiNode',4,'com.liferay.wiki.model.WikiNode',0,20122,0,1,1),(0,868,20115,'com_liferay_wiki_web_portlet_WikiAdminPortlet',2,'20148',20148,20124,0,61,1),(0,869,20115,'com.liferay.wiki',2,'20148',20148,20124,0,6,0),(0,870,20115,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',4,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',0,20122,0,1,1),(0,871,20115,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',4,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',0,20123,0,63,1),(0,872,20115,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',4,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',0,20130,0,1,1),(0,873,20115,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',1,'20115',20115,20124,0,2,0),(0,874,20115,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',1,'20115',20115,20125,0,2,0),(0,875,20115,'com_liferay_wiki_web_portlet_WikiPortlet',4,'com_liferay_wiki_web_portlet_WikiPortlet',0,20122,0,1,1),(0,876,20115,'com_liferay_wiki_web_portlet_WikiPortlet',4,'com_liferay_wiki_web_portlet_WikiPortlet',0,20123,0,63,1),(0,877,20115,'com_liferay_wiki_web_portlet_WikiPortlet',4,'com_liferay_wiki_web_portlet_WikiPortlet',0,20130,0,1,1),(0,878,20115,'com_liferay_wiki_web_portlet_WikiPortlet',1,'20115',20115,20124,0,2,0),(0,879,20115,'com_liferay_wiki_web_portlet_WikiPortlet',1,'20115',20115,20125,0,2,0),(0,880,20115,'com.liferay.portal.kernel.model.LayoutSetPrototype',4,'31293',31293,20123,20119,15,1),(0,881,20115,'com.liferay.portal.kernel.model.Group',4,'31294',31294,20123,0,33554431,1),(0,885,20115,'com.liferay.portal.kernel.model.Layout',4,'31303',31303,20123,20119,1023,1),(0,886,20115,'com.liferay.portal.kernel.model.Layout',4,'31303',31303,20130,0,529,1),(0,887,20115,'com.liferay.portal.kernel.model.Layout',4,'31303',31303,20122,0,1,1),(0,888,20115,'com.liferay.message.boards',4,'31294',31294,20123,0,2047,1),(0,889,20115,'com.liferay.message.boards',4,'31294',31294,20130,0,421,1),(0,890,20115,'com.liferay.message.boards',4,'31294',31294,20122,0,1,1),(0,891,20115,'com.liferay.polls',4,'31294',31294,20123,0,6,0),(0,892,20115,'com.liferay.portal.kernel.model.Layout',4,'31307',31307,20123,20119,1023,1),(0,893,20115,'com.liferay.portal.kernel.model.Layout',4,'31307',31307,20130,0,529,1),(0,894,20115,'com.liferay.portal.kernel.model.Layout',4,'31307',31307,20122,0,1,1),(0,895,20115,'com.liferay.wiki',4,'31294',31294,20123,0,6,0),(0,896,20115,'com.liferay.portal.kernel.model.LayoutPrototype',4,'31310',31310,20123,20119,15,1),(0,897,20115,'com.liferay.portal.kernel.model.Group',4,'31311',31311,20123,0,33554431,1),(0,898,20115,'com.liferay.portal.kernel.model.Layout',4,'31314',31314,20123,20119,1023,1),(0,899,20115,'com.liferay.portal.kernel.model.Layout',4,'31314',31314,20130,0,529,1),(0,900,20115,'com.liferay.wiki',4,'31311',31311,20123,0,6,0),(0,901,20115,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',4,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',0,20122,0,1,1),(0,902,20115,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',4,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',0,20123,0,61,1),(0,903,20115,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',4,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',0,20130,0,1,1),(0,904,20115,'com.liferay.blogs',4,'com.liferay.blogs',0,20123,0,14,0),(0,905,20115,'com.liferay.blogs',4,'com.liferay.blogs',0,20130,0,8,0),(0,906,20115,'com.liferay.blogs.kernel.model.BlogsEntry',4,'com.liferay.blogs.kernel.model.BlogsEntry',0,20123,0,127,1),(0,907,20115,'com.liferay.blogs.kernel.model.BlogsEntry',4,'com.liferay.blogs.kernel.model.BlogsEntry',0,20122,0,65,1),(0,908,20115,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',2,'20148',20148,20124,0,61,1),(0,909,20115,'com.liferay.blogs',2,'20148',20148,20124,0,14,0),(0,910,20115,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',4,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',0,20122,0,1,1),(0,911,20115,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',4,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',0,20123,0,63,1),(0,912,20115,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',4,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',0,20130,0,1,1),(0,913,20115,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',1,'20115',20115,20122,0,2,0),(0,914,20115,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',1,'20115',20115,20124,0,2,0),(0,915,20115,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',1,'20115',20115,20125,0,2,0),(0,916,20115,'com_liferay_blogs_web_portlet_BlogsPortlet',4,'com_liferay_blogs_web_portlet_BlogsPortlet',0,20122,0,1,1),(0,917,20115,'com_liferay_blogs_web_portlet_BlogsPortlet',4,'com_liferay_blogs_web_portlet_BlogsPortlet',0,20123,0,63,1),(0,918,20115,'com_liferay_blogs_web_portlet_BlogsPortlet',4,'com_liferay_blogs_web_portlet_BlogsPortlet',0,20130,0,1,1),(0,919,20115,'com_liferay_blogs_web_portlet_BlogsPortlet',1,'20115',20115,20122,0,2,0),(0,920,20115,'com_liferay_blogs_web_portlet_BlogsPortlet',1,'20115',20115,20124,0,2,0),(0,921,20115,'com_liferay_blogs_web_portlet_BlogsPortlet',1,'20115',20115,20125,0,2,0),(0,922,20115,'com.liferay.portal.kernel.model.LayoutPrototype',4,'31321',31321,20123,20119,15,1),(0,923,20115,'com.liferay.portal.kernel.model.Group',4,'31322',31322,20123,0,33554431,1),(0,924,20115,'com.liferay.portal.kernel.model.Layout',4,'31325',31325,20123,20119,1023,1),(0,925,20115,'com.liferay.portal.kernel.model.Layout',4,'31325',31325,20130,0,529,1),(0,926,20115,'com.liferay.blogs',4,'31322',31322,20123,0,14,0),(0,927,20115,'com.liferay.blogs',4,'31322',31322,20130,0,8,0),(0,928,20115,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',4,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',0,20122,0,1,1),(0,929,20115,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',4,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',0,20123,0,63,1),(0,930,20115,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',4,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',0,20130,0,1,1),(0,931,20115,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',1,'20115',20115,20122,0,2,0),(0,932,20115,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',1,'20115',20115,20124,0,2,0),(0,933,20115,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',1,'20115',20115,20125,0,2,0),(0,934,20115,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',4,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',0,20122,0,1,1),(0,935,20115,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',4,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',0,20123,0,31,1),(0,936,20115,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',4,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',0,20130,0,1,1),(0,937,20115,'com.liferay.microblogs',4,'com.liferay.microblogs',0,20123,0,6,0),(0,938,20115,'com.liferay.microblogs.model.MicroblogsEntry',4,'com.liferay.microblogs.model.MicroblogsEntry',0,20123,0,15,1),(0,939,20115,'com.liferay.microblogs.model.MicroblogsEntry',4,'com.liferay.microblogs.model.MicroblogsEntry',0,20122,0,1,1),(0,940,20115,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',1,'20115',20115,20121,0,16,0),(0,941,20115,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',1,'20115',20115,20122,0,16,0),(0,942,20115,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',1,'20115',20115,20124,0,16,0),(0,943,20115,'com_liferay_microblogs_web_portlet_MicroblogsPortlet',1,'20115',20115,20125,0,16,0),(0,944,20115,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',4,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',0,20122,0,1,1),(0,945,20115,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',4,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',0,20123,0,63,1),(0,946,20115,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',4,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',0,20130,0,1,1),(0,947,20115,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',1,'20115',20115,20121,0,2,0),(0,948,20115,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',1,'20115',20115,20122,0,2,0),(0,949,20115,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',1,'20115',20115,20124,0,2,0),(0,950,20115,'com_liferay_microblogs_web_portlet_MicroblogsStatusUpdatePortlet',1,'20115',20115,20125,0,2,0),(0,951,20115,'com_liferay_calendar_web_portlet_CalendarPortlet',4,'com_liferay_calendar_web_portlet_CalendarPortlet',0,20122,0,1,1),(0,952,20115,'com_liferay_calendar_web_portlet_CalendarPortlet',4,'com_liferay_calendar_web_portlet_CalendarPortlet',0,20123,0,63,1),(0,953,20115,'com_liferay_calendar_web_portlet_CalendarPortlet',4,'com_liferay_calendar_web_portlet_CalendarPortlet',0,20130,0,1,1),(0,954,20115,'com.liferay.calendar',4,'com.liferay.calendar',0,20123,0,6,0),(0,955,20115,'com_liferay_calendar_web_portlet_CalendarPortlet',1,'20115',20115,20121,0,2,0),(0,956,20115,'com_liferay_calendar_web_portlet_CalendarPortlet',1,'20115',20115,20124,0,2,0),(0,957,20115,'com_liferay_calendar_web_portlet_CalendarPortlet',1,'20115',20115,20125,0,2,0),(0,958,20115,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet',4,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet',0,20123,0,61,1),(0,959,20115,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet',4,'com_liferay_portal_workflow_kaleo_designer_web_portlet_KaleoDesignerPortlet',0,20130,0,1,1),(0,960,20115,'com.liferay.portal.workflow.kaleo.designer',4,'com.liferay.portal.workflow.kaleo.designer',0,20123,0,15,1),(0,961,20115,'com.liferay.portal.workflow.kaleo.designer',4,'com.liferay.portal.workflow.kaleo.designer',0,20130,0,1,1),(0,962,20115,'com.liferay.portal.workflow.kaleo.designer.model.KaleoDraftDefinition',4,'com.liferay.portal.workflow.kaleo.designer.model.KaleoDraftDefinition',0,20123,0,15,1),(0,963,20115,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',4,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',0,20122,0,1,1),(0,964,20115,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',4,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',0,20123,0,63,1),(0,965,20115,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',4,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',0,20130,0,1,1),(0,966,20115,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',1,'20115',20115,20121,0,32,0),(0,967,20115,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',1,'20115',20115,20124,0,32,0),(0,968,20115,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',1,'20115',20115,20125,0,32,0),(0,969,20115,'com_liferay_contacts_web_portlet_MembersPortlet',4,'com_liferay_contacts_web_portlet_MembersPortlet',0,20122,0,1,1),(0,970,20115,'com_liferay_contacts_web_portlet_MembersPortlet',4,'com_liferay_contacts_web_portlet_MembersPortlet',0,20123,0,63,1),(0,971,20115,'com_liferay_contacts_web_portlet_MembersPortlet',4,'com_liferay_contacts_web_portlet_MembersPortlet',0,20130,0,1,1),(0,972,20115,'com_liferay_contacts_web_portlet_MembersPortlet',1,'20115',20115,20121,0,2,0),(0,973,20115,'com_liferay_contacts_web_portlet_MembersPortlet',1,'20115',20115,20122,0,2,0),(0,974,20115,'com_liferay_contacts_web_portlet_MembersPortlet',1,'20115',20115,20124,0,2,0),(0,975,20115,'com_liferay_contacts_web_portlet_MembersPortlet',1,'20115',20115,20125,0,2,0),(0,976,20115,'com_liferay_contacts_web_portlet_MyContactsPortlet',4,'com_liferay_contacts_web_portlet_MyContactsPortlet',0,20122,0,1,1),(0,977,20115,'com_liferay_contacts_web_portlet_MyContactsPortlet',4,'com_liferay_contacts_web_portlet_MyContactsPortlet',0,20123,0,63,1),(0,978,20115,'com_liferay_contacts_web_portlet_MyContactsPortlet',4,'com_liferay_contacts_web_portlet_MyContactsPortlet',0,20130,0,1,1),(0,979,20115,'com_liferay_contacts_web_portlet_MyContactsPortlet',1,'20115',20115,20121,0,2,0),(0,980,20115,'com_liferay_contacts_web_portlet_MyContactsPortlet',1,'20115',20115,20122,0,2,0),(0,981,20115,'com_liferay_contacts_web_portlet_MyContactsPortlet',1,'20115',20115,20124,0,2,0),(0,982,20115,'com_liferay_contacts_web_portlet_MyContactsPortlet',1,'20115',20115,20125,0,2,0),(0,983,20115,'com_liferay_contacts_web_portlet_ProfilePortlet',4,'com_liferay_contacts_web_portlet_ProfilePortlet',0,20122,0,1,1),(0,984,20115,'com_liferay_contacts_web_portlet_ProfilePortlet',4,'com_liferay_contacts_web_portlet_ProfilePortlet',0,20123,0,63,1),(0,985,20115,'com_liferay_contacts_web_portlet_ProfilePortlet',4,'com_liferay_contacts_web_portlet_ProfilePortlet',0,20130,0,1,1),(0,986,20115,'com_liferay_contacts_web_portlet_ProfilePortlet',1,'20115',20115,20121,0,2,0),(0,987,20115,'com_liferay_contacts_web_portlet_ProfilePortlet',1,'20115',20115,20122,0,2,0),(0,988,20115,'com_liferay_contacts_web_portlet_ProfilePortlet',1,'20115',20115,20124,0,2,0),(0,989,20115,'com_liferay_contacts_web_portlet_ProfilePortlet',1,'20115',20115,20125,0,2,0),(0,990,20115,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',4,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',0,20122,0,1,1),(0,991,20115,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',4,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',0,20123,0,63,1),(0,992,20115,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',4,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',0,20130,0,1,1),(0,993,20115,'com.liferay.dynamic.data.mapping',4,'com.liferay.dynamic.data.mapping',0,20123,0,6,0),(0,994,20115,'com.liferay.dynamic.data.mapping',4,'com.liferay.dynamic.data.mapping',0,20130,0,4,0),(0,995,20115,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance',4,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance',0,20123,0,15,1),(0,996,20115,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',1,'20115',20115,20124,0,2,0),(0,997,20115,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',1,'20115',20115,20125,0,2,0),(0,998,20115,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',2,'20148',20148,20124,0,63,1),(0,999,20115,'com.liferay.dynamic.data.mapping',2,'20148',20148,20124,0,6,0),(0,1000,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',4,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',0,20122,0,1,1),(0,1001,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',4,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',0,20123,0,63,1),(0,1002,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',4,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',0,20130,0,1,1),(0,1003,20115,'com.liferay.dynamic.data.lists',4,'com.liferay.dynamic.data.lists',0,20123,0,30,0),(0,1004,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',0,20123,0,15,1),(0,1005,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',0,20122,0,1,1),(0,1006,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet',4,'com.liferay.dynamic.data.lists.model.DDLRecordSet',0,20123,0,31,1),(0,1007,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet',4,'com.liferay.dynamic.data.lists.model.DDLRecordSet',0,20122,0,1,1),(0,1008,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',1,'20115',20115,20124,0,2,0),(0,1009,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',1,'20115',20115,20125,0,2,0),(0,1010,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormAdminPortlet',2,'20148',20148,20124,0,63,1),(0,1011,20115,'com.liferay.dynamic.data.lists',2,'20148',20148,20124,0,30,0),(0,1012,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',4,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',0,20122,0,1,1),(0,1013,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',4,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',0,20123,0,31,1),(0,1014,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',4,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',0,20130,0,1,1),(0,1015,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',1,'20115',20115,20122,0,16,0),(0,1016,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',1,'20115',20115,20124,0,16,0),(0,1017,20115,'com_liferay_dynamic_data_lists_form_web_portlet_DDLFormPortlet',1,'20115',20115,20125,0,16,0),(0,1018,20115,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',0,20122,0,1,1),(0,1019,20115,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',0,20123,0,63,1),(0,1020,20115,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',0,20130,0,1,1),(0,1021,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'com.liferay.dynamic.data.mapping.model.DDMTemplate',0,20123,0,15,1),(0,1022,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'com.liferay.dynamic.data.mapping.model.DDMTemplate',0,20122,0,1,1),(0,1023,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'com.liferay.dynamic.data.mapping.model.DDMStructure',0,20123,0,15,1),(0,1024,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'com.liferay.dynamic.data.mapping.model.DDMStructure',0,20122,0,1,1),(0,1025,20115,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',1,'20115',20115,20124,0,2,0),(0,1026,20115,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',1,'20115',20115,20125,0,2,0),(0,1027,20115,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',0,20122,0,1,1),(0,1028,20115,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',0,20123,0,63,1),(0,1029,20115,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',0,20130,0,1,1),(0,1030,20115,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',1,'20115',20115,20121,0,2,0),(0,1031,20115,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',2,'20148',20148,20124,0,63,1),(0,1032,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',0,20122,0,1,1),(0,1033,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',0,20123,0,31,1),(0,1034,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',0,20130,0,1,1),(0,1035,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate',0,20123,0,15,1),(0,1036,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate',0,20122,0,1,1),(0,1037,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',1,'20115',20115,20122,0,2,0),(0,1038,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',1,'20115',20115,20124,0,2,0),(0,1039,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',1,'20115',20115,20125,0,2,0),(0,1040,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',0,20122,0,1,1),(0,1041,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',0,20123,0,63,1),(0,1042,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',0,20130,0,1,1),(0,1043,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',1,'20115',20115,20124,0,2,0),(0,1044,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',1,'20115',20115,20125,0,2,0),(0,1045,20115,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',2,'20148',20148,20124,0,63,1),(0,1046,20115,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',4,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',0,20122,0,1,1),(0,1047,20115,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',4,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',0,20123,0,63,1),(0,1048,20115,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',4,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',0,20130,0,1,1),(0,1049,20115,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',1,'20115',20115,20122,0,32,0),(0,1050,20115,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',1,'20115',20115,20124,0,32,0),(0,1051,20115,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',1,'20115',20115,20125,0,32,0),(0,1052,20115,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',4,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',0,20122,0,1,1),(0,1053,20115,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',4,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',0,20123,0,63,1),(0,1054,20115,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',4,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',0,20130,0,1,1),(0,1055,20115,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',1,'20115',20115,20122,0,32,0),(0,1056,20115,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',1,'20115',20115,20124,0,32,0),(0,1057,20115,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',1,'20115',20115,20125,0,32,0),(0,1058,20115,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',4,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',0,20122,0,1,1),(0,1059,20115,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',4,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',0,20123,0,63,1),(0,1060,20115,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',4,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',0,20130,0,1,1),(0,1061,20115,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',1,'20115',20115,20122,0,32,0),(0,1062,20115,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',1,'20115',20115,20124,0,32,0),(0,1063,20115,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',1,'20115',20115,20125,0,32,0),(0,1064,20115,'com.liferay.portal.kernel.model.LayoutSetPrototype',4,'31348',31348,20123,20119,15,1),(0,1065,20115,'com.liferay.portal.kernel.model.Group',4,'31349',31349,20123,0,33554431,1),(0,1069,20115,'com.liferay.portal.kernel.model.Layout',4,'31358',31358,20123,20119,1023,1),(0,1070,20115,'com.liferay.portal.kernel.model.Layout',4,'31358',31358,20130,0,529,1),(0,1071,20115,'com.liferay.portal.kernel.model.Layout',4,'31358',31358,20122,0,1,1),(0,1072,20115,'com.liferay.portal.kernel.model.Layout',4,'31362',31362,20123,20119,1023,1),(0,1073,20115,'com.liferay.portal.kernel.model.Layout',4,'31362',31362,20130,0,529,1),(0,1074,20115,'com.liferay.portal.kernel.model.Layout',4,'31362',31362,20122,0,1,1),(0,1075,20115,'com.liferay.document.library',4,'31349',31349,20123,0,1023,1),(0,1076,20115,'com.liferay.document.library',4,'31349',31349,20130,0,465,1),(0,1077,20115,'com.liferay.document.library',4,'31349',31349,20122,0,1,1),(0,1078,20115,'com.liferay.portal.kernel.model.Layout',4,'31366',31366,20123,20119,1023,1),(0,1079,20115,'com.liferay.portal.kernel.model.Layout',4,'31366',31366,20130,0,529,1),(0,1080,20115,'com.liferay.portal.kernel.model.Layout',4,'31366',31366,20122,0,1,1),(0,1081,20115,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',4,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',0,20122,0,1,1),(0,1082,20115,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',4,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',0,20123,0,63,1),(0,1083,20115,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',4,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',0,20130,0,1,1),(0,1084,20115,'com.liferay.portal.workflow.kaleo.forms',4,'com.liferay.portal.workflow.kaleo.forms',0,20123,0,30,0),(0,1085,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',4,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',0,20123,0,15,1),(0,1086,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',4,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',0,20122,0,1,1),(0,1087,20115,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',4,'com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',0,20123,0,63,1),(0,1088,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',4,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',0,20123,0,15,1),(0,1089,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',4,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.portal.workflow.kaleo.forms.model.KaleoProcess',0,20122,0,1,1),(0,1090,20115,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',1,'20115',20115,20121,0,2,0),(0,1091,20115,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',1,'20115',20115,20124,0,2,0),(0,1092,20115,'com_liferay_portal_workflow_kaleo_forms_web_portlet_KaleoFormsAdminPortlet',2,'20148',20148,20124,0,63,1),(0,1093,20115,'com.liferay.portal.workflow.kaleo.forms',2,'20148',20148,20124,0,30,0),(0,1094,20115,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',4,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',0,20122,0,1,1),(0,1095,20115,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',4,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',0,20123,0,63,1),(0,1096,20115,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',4,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',0,20130,0,1,1),(0,1097,20115,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',4,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',0,20122,0,1,1),(0,1098,20115,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',4,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',0,20123,0,63,1),(0,1099,20115,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',4,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',0,20130,0,1,1),(0,1100,20115,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',4,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',0,20122,0,1,1),(0,1101,20115,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',4,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',0,20123,0,63,1),(0,1102,20115,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',4,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',0,20130,0,1,1),(0,1103,20115,'com.liferay.portal.kernel.model.LayoutSetBranch',4,'com.liferay.portal.kernel.model.LayoutSetBranch',0,20123,0,30,0),(0,1104,20115,'com.liferay.portal.kernel.model.Layout',4,'com.liferay.portal.kernel.model.Layout',0,20123,0,1023,1),(0,1105,20115,'com.liferay.portal.kernel.model.Layout',4,'com.liferay.portal.kernel.model.Layout',0,20122,0,1,1),(0,1106,20115,'com.liferay.portal.kernel.model.LayoutBranch',4,'com.liferay.portal.kernel.model.LayoutBranch',0,20123,0,14,0),(0,1107,20115,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',2,'20148',20148,20124,0,63,1),(0,1108,20115,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet',4,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet',0,20122,0,1,1),(0,1109,20115,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet',4,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet',0,20123,0,63,1),(0,1110,20115,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet',4,'com_liferay_layout_admin_web_portlet_LayoutAdminPortlet',0,20130,0,1,1),(0,1111,20115,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet',4,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet',0,20122,0,1,1),(0,1112,20115,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet',4,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet',0,20123,0,63,1),(0,1113,20115,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet',4,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet',0,20130,0,1,1),(0,1114,20115,'com_liferay_layout_admin_web_portlet_LayoutPrototypePagePortlet',2,'20148',20148,20124,0,63,1),(0,1115,20115,'com_liferay_layout_admin_web_portlet_MyPagesPortlet',4,'com_liferay_layout_admin_web_portlet_MyPagesPortlet',0,20123,0,31,1),(0,1116,20115,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',4,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',0,20122,0,1,1),(0,1117,20115,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',4,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',0,20123,0,63,1),(0,1118,20115,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',4,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',0,20130,0,1,1),(0,1119,20115,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',1,'20115',20115,20121,0,2,0),(0,1120,20115,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',1,'20115',20115,20122,0,2,0),(0,1121,20115,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',1,'20115',20115,20124,0,2,0),(0,1122,20115,'com_liferay_portal_security_audit_web_portlet_AuditPortlet',1,'20115',20115,20125,0,2,0),(0,1123,20115,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',4,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',0,20122,0,1,1),(0,1124,20115,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',4,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',0,20123,0,63,1),(0,1125,20115,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',4,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',0,20130,0,1,1),(0,1126,20115,'com.liferay.portal.security.service.access.policy',4,'com.liferay.portal.security.service.access.policy',0,20123,0,6,0),(0,1127,20115,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'com.liferay.portal.security.service.access.policy.model.SAPEntry',0,20123,0,15,1),(0,1128,20115,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',1,'20115',20115,20121,0,2,0),(0,1129,20115,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',4,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',0,20122,0,1,1),(0,1130,20115,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',4,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',0,20123,0,63,1),(0,1131,20115,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',4,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',0,20130,0,1,1),(0,1132,20115,'com.liferay.marketplace',4,'com.liferay.marketplace',0,20123,0,15,1),(0,1133,20115,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',1,'20115',20115,20121,0,2,0),(0,1134,20115,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',1,'20115',20115,20122,0,2,0),(0,1135,20115,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',1,'20115',20115,20124,0,2,0),(0,1136,20115,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',1,'20115',20115,20125,0,2,0),(0,1137,20115,'com_liferay_oauth_web_internal_portlet_AdminPortlet',4,'com_liferay_oauth_web_internal_portlet_AdminPortlet',0,20123,0,63,1),(0,1138,20115,'com.liferay.oauth',4,'com.liferay.oauth',0,20123,0,6,0),(0,1139,20115,'com.liferay.oauth.model.OAuthApplication',4,'com.liferay.oauth.model.OAuthApplication',0,20123,0,15,1),(0,1140,20115,'com.liferay.oauth.model.OAuthUser',4,'com.liferay.oauth.model.OAuthUser',0,20123,0,15,1),(0,1141,20115,'com_liferay_oauth_web_internal_portlet_AdminPortlet',1,'20115',20115,20121,0,32,0),(0,1142,20115,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet',4,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet',0,20123,0,31,1),(0,1143,20115,'com_liferay_oauth_web_internal_portlet_AuthorizationsPortlet',1,'20115',20115,20125,0,16,0),(0,1144,20115,'com_liferay_sync_web_portlet_SyncDevicesPortlet',4,'com_liferay_sync_web_portlet_SyncDevicesPortlet',0,20122,0,1,1),(0,1145,20115,'com_liferay_sync_web_portlet_SyncDevicesPortlet',4,'com_liferay_sync_web_portlet_SyncDevicesPortlet',0,20123,0,63,1),(0,1146,20115,'com_liferay_sync_web_portlet_SyncDevicesPortlet',4,'com_liferay_sync_web_portlet_SyncDevicesPortlet',0,20130,0,1,1),(0,1147,20115,'com_liferay_sync_web_portlet_SyncDevicesPortlet',1,'20115',20115,20124,0,2,0),(1,1148,20115,'com_liferay_sync_web_portlet_SyncDevicesPortlet',1,'20115',20115,20125,0,34,0),(0,1149,20115,'com_liferay_sync_web_portlet_SyncAdminPortlet',4,'com_liferay_sync_web_portlet_SyncAdminPortlet',0,20122,0,1,1),(0,1150,20115,'com_liferay_sync_web_portlet_SyncAdminPortlet',4,'com_liferay_sync_web_portlet_SyncAdminPortlet',0,20123,0,63,1),(0,1151,20115,'com_liferay_sync_web_portlet_SyncAdminPortlet',4,'com_liferay_sync_web_portlet_SyncAdminPortlet',0,20130,0,1,1),(0,1152,20115,'com_liferay_sync_web_portlet_SyncAdminPortlet',1,'20115',20115,20121,0,2,0),(0,1153,20115,'com_liferay_journal_content_web_portlet_JournalContentPortlet',4,'com_liferay_journal_content_web_portlet_JournalContentPortlet',0,20122,0,1,1),(0,1154,20115,'com_liferay_journal_content_web_portlet_JournalContentPortlet',4,'com_liferay_journal_content_web_portlet_JournalContentPortlet',0,20123,0,31,1),(0,1155,20115,'com_liferay_journal_content_web_portlet_JournalContentPortlet',4,'com_liferay_journal_content_web_portlet_JournalContentPortlet',0,20130,0,1,1),(0,1156,20115,'com_liferay_journal_content_web_portlet_JournalContentPortlet',1,'20115',20115,20122,0,16,0),(0,1157,20115,'com_liferay_journal_content_web_portlet_JournalContentPortlet',1,'20115',20115,20124,0,16,0),(0,1158,20115,'com_liferay_journal_content_web_portlet_JournalContentPortlet',1,'20115',20115,20125,0,16,0),(0,1159,20115,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',4,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',0,20122,0,1,1),(0,1160,20115,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',4,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',0,20123,0,63,1),(0,1161,20115,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',4,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',0,20130,0,1,1),(0,1162,20115,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',1,'20115',20115,20122,0,2,0),(0,1163,20115,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',1,'20115',20115,20124,0,2,0),(0,1164,20115,'com_liferay_journal_content_search_web_portlet_JournalContentSearchPortlet',1,'20115',20115,20125,0,2,0),(0,1165,20115,'com_liferay_journal_web_portlet_JournalPortlet',4,'com_liferay_journal_web_portlet_JournalPortlet',0,20122,0,1,1),(0,1166,20115,'com_liferay_journal_web_portlet_JournalPortlet',4,'com_liferay_journal_web_portlet_JournalPortlet',0,20123,0,63,1),(0,1167,20115,'com_liferay_journal_web_portlet_JournalPortlet',4,'com_liferay_journal_web_portlet_JournalPortlet',0,20130,0,1,1),(0,1168,20115,'com.liferay.journal',4,'com.liferay.journal',0,20122,0,1,1),(0,1169,20115,'com.liferay.journal',4,'com.liferay.journal',0,20123,0,511,1),(0,1170,20115,'com.liferay.journal',4,'com.liferay.journal',0,20130,0,1,1),(0,1171,20115,'com.liferay.journal.model.JournalFeed',4,'com.liferay.journal.model.JournalFeed',0,20123,0,15,1),(0,1172,20115,'com.liferay.journal.model.JournalFeed',4,'com.liferay.journal.model.JournalFeed',0,20122,0,1,1),(0,1173,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',4,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',0,20123,0,15,1),(0,1174,20115,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',4,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',0,20122,0,1,1),(0,1175,20115,'com.liferay.journal.model.JournalArticle',4,'com.liferay.journal.model.JournalArticle',0,20123,0,255,1),(0,1176,20115,'com.liferay.journal.model.JournalArticle',4,'com.liferay.journal.model.JournalArticle',0,20122,0,129,1),(0,1177,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',4,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',0,20123,0,15,1),(0,1178,20115,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',4,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',0,20122,0,1,1),(0,1179,20115,'com.liferay.journal.model.JournalFolder',4,'com.liferay.journal.model.JournalFolder',0,20123,0,255,1),(0,1180,20115,'com.liferay.journal.model.JournalFolder',4,'com.liferay.journal.model.JournalFolder',0,20122,0,1,1),(0,1181,20115,'com_liferay_journal_web_portlet_JournalPortlet',1,'20115',20115,20124,0,2,0),(0,1182,20115,'com_liferay_journal_web_portlet_JournalPortlet',1,'20115',20115,20125,0,2,0),(0,1183,20115,'com_liferay_journal_web_portlet_JournalPortlet',2,'20148',20148,20124,0,63,1),(0,1184,20115,'com.liferay.journal',2,'20148',20148,20124,0,511,1),(0,1185,20115,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',4,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',0,20122,0,1,1),(0,1186,20115,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',4,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',0,20123,0,61,1),(0,1187,20115,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',4,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',0,20130,0,1,1),(0,1188,20115,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',4,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',0,20122,0,1,1),(0,1189,20115,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',4,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',0,20123,0,63,1),(0,1190,20115,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',4,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',0,20130,0,1,1),(0,1191,20115,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',2,'20148',20148,20124,0,63,1),(0,1192,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',0,20122,0,1,1),(0,1193,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',0,20123,0,63,1),(0,1194,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',0,20130,0,1,1),(0,1195,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',1,'20115',20115,20121,0,2,0),(0,1196,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',1,'20115',20115,20122,0,2,0),(0,1197,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',1,'20115',20115,20124,0,2,0),(0,1198,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',1,'20115',20115,20125,0,2,0),(0,1199,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',0,20122,0,1,1),(0,1200,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',0,20123,0,63,1),(0,1201,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',0,20130,0,1,1),(0,1202,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',1,'20115',20115,20121,0,2,0),(0,1203,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',1,'20115',20115,20122,0,2,0),(0,1204,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',1,'20115',20115,20124,0,2,0),(0,1205,20115,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',1,'20115',20115,20125,0,2,0),(0,1206,20115,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',0,20122,0,1,1),(0,1207,20115,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',0,20123,0,63,1),(0,1208,20115,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',0,20130,0,1,1),(0,1209,20115,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',1,'20115',20115,20121,0,2,0),(0,1210,20115,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',1,'20115',20115,20122,0,2,0),(0,1211,20115,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',1,'20115',20115,20124,0,2,0),(0,1212,20115,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',1,'20115',20115,20125,0,2,0),(0,1213,20115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',0,20122,0,1,1),(0,1214,20115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',0,20123,0,63,1),(0,1215,20115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',0,20130,0,1,1),(0,1216,20115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',1,'20115',20115,20121,0,2,0),(0,1217,20115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',1,'20115',20115,20122,0,2,0),(0,1218,20115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',1,'20115',20115,20124,0,2,0),(0,1219,20115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',1,'20115',20115,20125,0,2,0),(0,1220,20115,'com_liferay_notifications_web_portlet_NotificationsPortlet',4,'com_liferay_notifications_web_portlet_NotificationsPortlet',0,20122,0,1,1),(0,1221,20115,'com_liferay_notifications_web_portlet_NotificationsPortlet',4,'com_liferay_notifications_web_portlet_NotificationsPortlet',0,20123,0,63,1),(0,1222,20115,'com_liferay_notifications_web_portlet_NotificationsPortlet',4,'com_liferay_notifications_web_portlet_NotificationsPortlet',0,20130,0,1,1),(0,1223,20115,'com_liferay_notifications_web_portlet_NotificationsPortlet',1,'20115',20115,20121,0,2,0),(0,1224,20115,'com_liferay_notifications_web_portlet_NotificationsPortlet',1,'20115',20115,20122,0,2,0),(0,1225,20115,'com_liferay_notifications_web_portlet_NotificationsPortlet',1,'20115',20115,20124,0,2,0),(1,1226,20115,'com_liferay_notifications_web_portlet_NotificationsPortlet',1,'20115',20115,20125,0,34,0),(0,1227,20115,'com.liferay.portal.kernel.model.Layout',4,'31402',31402,20123,20155,1023,1),(0,1228,20115,'com.liferay.portal.kernel.model.Layout',4,'31405',31405,20123,20155,1023,1),(0,1229,20115,'com.liferay.portal.kernel.model.Layout',4,'31405',31405,20125,0,529,1),(0,1230,20115,'com.liferay.portal.kernel.model.Layout',4,'31405',31405,20122,0,1,1),(0,1231,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31415',31415,20123,20155,15,1),(0,1232,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31415',31415,20130,0,1,1),(0,1233,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'31415',31415,20122,0,1,1),(0,1234,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet',4,'31419',31419,20123,20155,31,1),(0,1235,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet',4,'31419',31419,20130,0,1,1),(0,1236,20115,'com.liferay.dynamic.data.lists.model.DDLRecordSet',4,'31419',31419,20122,0,1,1); /*!40000 ALTER TABLE `ResourcePermission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ResourceTypePermission` -- DROP TABLE IF EXISTS `ResourceTypePermission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ResourceTypePermission` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `resourceTypePermissionId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `roleId` bigint(20) DEFAULT NULL, `actionIds` bigint(20) DEFAULT NULL, PRIMARY KEY (`resourceTypePermissionId`), UNIQUE KEY `IX_BA497163` (`companyId`,`groupId`,`name`,`roleId`), KEY `IX_7D81F66F` (`companyId`,`name`,`roleId`), KEY `IX_A82690E2` (`roleId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ResourceTypePermission` -- LOCK TABLES `ResourceTypePermission` WRITE; /*!40000 ALTER TABLE `ResourceTypePermission` DISABLE KEYS */; /*!40000 ALTER TABLE `ResourceTypePermission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Role_` -- DROP TABLE IF EXISTS `Role_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Role_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `roleId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `title` longtext, `description` longtext, `type_` int(11) DEFAULT NULL, `subtype` varchar(75) DEFAULT NULL, PRIMARY KEY (`roleId`), UNIQUE KEY `IX_A88E424E` (`companyId`,`classNameId`,`classPK`), UNIQUE KEY `IX_EBC931B8` (`companyId`,`name`), KEY `IX_F3E1C6FC` (`companyId`,`type_`), KEY `IX_F436EC8E` (`name`), KEY `IX_5EB4E2FB` (`subtype`), KEY `IX_CBE204` (`type_`,`subtype`), KEY `IX_B9FF6043` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Role_` -- LOCK TABLES `Role_` WRITE; /*!40000 ALTER TABLE `Role_` DISABLE KEYS */; INSERT INTO `Role_` VALUES (0,'82f4d157-de8a-a2e9-c911-5bd6736b7928',20121,20115,20119,NULL,'2018-07-02 15:51:00.133000','2018-07-02 15:51:00.133000',20081,20121,'Administrator',NULL,'Administrators are super users who can do anything.',1,NULL),(0,'e483df36-88de-4865-057a-9f06011873ce',20122,20115,20119,NULL,'2018-07-02 15:51:00.158000','2018-07-02 15:51:00.158000',20081,20122,'Guest',NULL,'Unauthenticated users always have this role.',1,NULL),(0,'7e92b6d1-7740-83df-beb0-20f6e9bc618b',20123,20115,20119,NULL,'2018-07-02 15:51:00.169000','2018-07-02 15:51:00.169000',20081,20123,'Owner',NULL,'This is an implied role with respect to the objects users create.',1,NULL),(0,'ef3afcc0-05f0-630d-c00a-d60eaefd1222',20124,20115,20119,NULL,'2018-07-02 15:51:00.179000','2018-07-02 15:51:00.179000',20081,20124,'Power User',NULL,'Power Users have their own personal site.',1,NULL),(0,'348afbd2-3a0e-04fe-d481-3bc8ee4151b9',20125,20115,20119,NULL,'2018-07-02 15:51:00.191000','2018-07-02 15:51:00.191000',20081,20125,'User',NULL,'Authenticated users should be assigned this role.',1,NULL),(0,'7accbd04-3561-af41-4759-5778e8905e90',20126,20115,20119,NULL,'2018-07-02 15:51:00.218000','2018-07-02 15:51:00.218000',20081,20126,'Organization Administrator',NULL,'Organization Administrators are super users of their organization but cannot make other users into Organization Administrators.',3,NULL),(0,'6a4deaa5-ae01-9836-6376-0bb4fb013717',20127,20115,20119,NULL,'2018-07-02 15:51:00.228000','2018-07-02 15:51:00.228000',20081,20127,'Organization Owner',NULL,'Organization Owners are super users of their organization and can assign organization roles to users.',3,NULL),(0,'4610fb6e-b600-7b44-93f8-224aa0b5fc71',20128,20115,20119,NULL,'2018-07-02 15:51:00.237000','2018-07-02 15:51:00.237000',20081,20128,'Organization User',NULL,'All users who belong to an organization have this role within that organization.',3,NULL),(0,'43a3b1f5-47f8-7d7d-9bfa-42d47a45a0ba',20129,20115,20119,NULL,'2018-07-02 15:51:00.245000','2018-07-02 15:51:00.245000',20081,20129,'Site Administrator',NULL,'Site Administrators are super users of their site but cannot make other users into Site Administrators.',2,NULL),(0,'b9c201d0-f8ae-a354-62c7-33d0a0b0828a',20130,20115,20119,NULL,'2018-07-02 15:51:00.255000','2018-07-02 15:51:00.255000',20081,20130,'Site Member',NULL,'All users who belong to a site have this role within that site.',2,NULL),(0,'d2a8686b-0672-c983-7848-8457d5a4f593',20131,20115,20119,NULL,'2018-07-02 15:51:00.263000','2018-07-02 15:51:00.263000',20081,20131,'Site Owner',NULL,'Site Owners are super users of their site and can assign site roles to users.',2,NULL),(0,'7ee4598f-2ec7-1bcf-b9d0-78aa1fe78178',29843,20115,20119,NULL,'2018-07-02 15:51:17.783000','2018-07-02 15:51:17.783000',20081,29843,'Organization Content Reviewer',NULL,'This is an autogenerated role from the workflow definition.',3,NULL),(0,'b2e7dbc3-0db8-8757-fe28-fc37f2abe746',29849,20115,20119,NULL,'2018-07-02 15:51:17.799000','2018-07-02 15:51:17.799000',20081,29849,'Site Content Reviewer',NULL,'This is an autogenerated role from the workflow definition.',2,NULL),(0,'a49352e3-8b30-f3ac-153b-2bc5b9adf00b',29852,20115,20119,NULL,'2018-07-02 15:51:17.808000','2018-07-02 15:51:17.808000',20081,29852,'Portal Content Reviewer',NULL,'This is an autogenerated role from the workflow definition.',1,NULL); /*!40000 ALTER TABLE `Role_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SAPEntry` -- DROP TABLE IF EXISTS `SAPEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SAPEntry` ( `uuid_` varchar(75) DEFAULT NULL, `sapEntryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `allowedServiceSignatures` longtext, `defaultSAPEntry` tinyint(4) DEFAULT NULL, `enabled` tinyint(4) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `title` longtext, PRIMARY KEY (`sapEntryId`), KEY `IX_6D669D6F` (`companyId`,`defaultSAPEntry`), KEY `IX_90740311` (`companyId`,`name`), KEY `IX_AAAEBA0A` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SAPEntry` -- LOCK TABLES `SAPEntry` WRITE; /*!40000 ALTER TABLE `SAPEntry` DISABLE KEYS */; INSERT INTO `SAPEntry` VALUES ('a9f56439-d41a-fd74-52a0-cdf27caf804c',30003,20115,20119,NULL,'2018-07-02 15:51:18.846000','2018-07-02 15:51:18.846000','com.liferay.calendar.service.CalendarBookingService#search\ncom.liferay.calendar.service.CalendarBookingService#searchCount',1,1,'CALENDAR_DEFAULT','公众进入日历搜索 API (Automatic Translation)Acceso público a la búsqueda de calendario API (Automatic Translation)Public Access to the Calendar Search API (Automatic Copy)Public Access to the Calendar Search API (Automatic Copy)A naptár Search API való nyilvános hozzáférés (Automatic Translation)Acesso do público à busca de calendário API (Automatic Translation)Öffentlicher Zugriff auf Such-API des Kalendersגישה ציבורית החיפוש לוח שנה API (Automatic Translation)Public Access to the Calendar Search API (Automatic Copy)Accés públic a l\'API de cerca de calendari (Automatic Translation)Accès du public à la recherche de calendrier API (Automatic Translation)Public Access to the Calendar Search API'),('6f108427-9dc1-8e3a-b5ab-fb3d6835cd48',30004,20115,20119,NULL,'2018-07-02 15:51:18.879000','2018-07-02 15:51:18.879000','com.liferay.sync.service.SyncDLObjectService#getSyncContext',1,1,'SYNC_DEFAULT','SYNC_DEFAULT'),('6b076b39-ee62-6238-35e1-f9a1a0706071',30005,20115,20119,NULL,'2018-07-02 15:51:18.883000','2018-07-02 15:51:18.883000','com.liferay.sync.service.*',0,1,'SYNC_TOKEN','SYNC_TOKEN'),('4c2c8b4a-284a-4f8e-0f30-3e7769820ee0',31111,20115,20119,NULL,'2018-07-02 15:51:23.795000','2018-07-02 15:51:23.795000','com.liferay.portal.kernel.service.CountryService#getCountries\ncom.liferay.portal.kernel.service.RegionService#getRegions',1,1,'SYSTEM_DEFAULT','System Service Access Policy Applied on Every Request'),('f6e2be4a-efc6-9842-4fcd-5f1c7acf2724',31112,20115,20119,NULL,'2018-07-02 15:51:23.805000','2018-07-02 15:51:23.805000','*',0,1,'SYSTEM_USER_PASSWORD','System Service Access Policy for Requests Authenticated Using User Password'); /*!40000 ALTER TABLE `SAPEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ServiceComponent` -- DROP TABLE IF EXISTS `ServiceComponent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ServiceComponent` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `serviceComponentId` bigint(20) NOT NULL, `buildNamespace` varchar(75) DEFAULT NULL, `buildNumber` bigint(20) DEFAULT NULL, `buildDate` bigint(20) DEFAULT NULL, `data_` longtext, PRIMARY KEY (`serviceComponentId`), UNIQUE KEY `IX_4F0315B8` (`buildNamespace`,`buildNumber`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ServiceComponent` -- LOCK TABLES `ServiceComponent` WRITE; /*!40000 ALTER TABLE `ServiceComponent` DISABLE KEYS */; INSERT INTO `ServiceComponent` VALUES (0,27803,'Bookmarks',2,1454719820635,'\n\n\n \n \n \n'),(0,27901,'Flags',2,1454719855705,'\n\n\n \n \n \n'),(0,28002,'IM',1,1455550401806,'\n\n\n \n \n \n'),(0,28102,'Microblogs',3,1454719889744,'\n\n\n \n \n \n'),(0,28204,'Wiki',2,1454719940880,'\n\n\n \n \n \n'),(0,28305,'Calendar',5,1454719830714,'\n\n\n \n \n \n'),(0,28604,'Polls',2,1454719903688,'\n\n\n \n \n \n'),(0,28702,'KaleoDesigner',2,1343264313201,'\n\n\n \n \n \n'),(0,29017,'Kaleo',9,1454719802532,'\n\n\n \n \n \n'),(0,29102,'Contacts',2,1343264272450,'\n\n\n \n \n \n'),(0,29205,'MDR',3,1454719897533,'\n\n\n \n \n \n'),(0,29302,'BackgroundTask',2,1454719807550,'\n\n\n \n \n \n'),(0,29501,'PortalInstances',1,1477512433639,'\n\n\n \n \n \n'),(0,29602,'Lock',2,1454719810794,'\n\n\n \n \n \n'),(0,29614,'DDM',2,1454719850972,'\n\n\n \n \n \n'),(0,29704,'DDL',1,1455828666350,'\n\n\n \n \n \n'),(0,29832,'KaleoForms',3,1425751448273,'\n\n\n \n \n \n'),(0,29902,'Audit',2,1343264257622,'\n\n\n \n \n \n'),(0,30002,'SAP',3,1454719911670,'\n\n\n \n \n \n'),(0,30103,'Marketplace',6,1459893726893,'\n\n\n \n \n \n'),(0,30703,'OAuth',1,1355990674844,'\n\n\n \n \n \n'),(0,30804,'Sync',9,1469064234816,'\n\n\n \n \n \n'),(0,30907,'Journal',2,1454719879908,'\n\n\n \n \n \n'); /*!40000 ALTER TABLE `ServiceComponent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivity` -- DROP TABLE IF EXISTS `SocialActivity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivity` ( `activityId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `activitySetId` bigint(20) DEFAULT NULL, `mirrorActivityId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `parentClassNameId` bigint(20) DEFAULT NULL, `parentClassPK` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraData` longtext, `receiverUserId` bigint(20) DEFAULT NULL, PRIMARY KEY (`activityId`), UNIQUE KEY `IX_8F32DEC9` (`groupId`,`userId`,`createDate`,`classNameId`,`classPK`,`type_`,`receiverUserId`), KEY `IX_F542E9BC` (`activitySetId`), KEY `IX_D0E9029E` (`classNameId`,`classPK`,`type_`), KEY `IX_64B1BC66` (`companyId`), KEY `IX_FB604DC7` (`groupId`,`userId`,`classNameId`,`classPK`,`type_`,`receiverUserId`), KEY `IX_1F00C374` (`mirrorActivityId`,`classNameId`,`classPK`), KEY `IX_121CA3CB` (`receiverUserId`), KEY `IX_3504B8BC` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivity` -- LOCK TABLES `SocialActivity` WRITE; /*!40000 ALTER TABLE `SocialActivity` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivityAchievement` -- DROP TABLE IF EXISTS `SocialActivityAchievement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivityAchievement` ( `activityAchievementId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `firstInGroup` tinyint(4) DEFAULT NULL, PRIMARY KEY (`activityAchievementId`), UNIQUE KEY `IX_D4390CAA` (`groupId`,`userId`,`name`), KEY `IX_83E16F2F` (`groupId`,`firstInGroup`), KEY `IX_8F6408F0` (`groupId`,`name`), KEY `IX_AABC18E9` (`groupId`,`userId`,`firstInGroup`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivityAchievement` -- LOCK TABLES `SocialActivityAchievement` WRITE; /*!40000 ALTER TABLE `SocialActivityAchievement` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivityAchievement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivityCounter` -- DROP TABLE IF EXISTS `SocialActivityCounter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivityCounter` ( `activityCounterId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `ownerType` int(11) DEFAULT NULL, `currentValue` int(11) DEFAULT NULL, `totalValue` int(11) DEFAULT NULL, `graceValue` int(11) DEFAULT NULL, `startPeriod` int(11) DEFAULT NULL, `endPeriod` int(11) DEFAULT NULL, `active_` tinyint(4) DEFAULT NULL, PRIMARY KEY (`activityCounterId`), UNIQUE KEY `IX_1B7E3B67` (`groupId`,`classNameId`,`classPK`,`name`,`ownerType`,`endPeriod`), UNIQUE KEY `IX_374B35AE` (`groupId`,`classNameId`,`classPK`,`name`,`ownerType`,`startPeriod`), KEY `IX_A4B9A23B` (`classNameId`,`classPK`), KEY `IX_926CDD04` (`groupId`,`classNameId`,`classPK`,`ownerType`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivityCounter` -- LOCK TABLES `SocialActivityCounter` WRITE; /*!40000 ALTER TABLE `SocialActivityCounter` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivityCounter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivityLimit` -- DROP TABLE IF EXISTS `SocialActivityLimit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivityLimit` ( `activityLimitId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `activityType` int(11) DEFAULT NULL, `activityCounterName` varchar(75) DEFAULT NULL, `value` varchar(75) DEFAULT NULL, PRIMARY KEY (`activityLimitId`), UNIQUE KEY `IX_F1C1A617` (`groupId`,`userId`,`classNameId`,`classPK`,`activityType`,`activityCounterName`), KEY `IX_B15863FA` (`classNameId`,`classPK`), KEY `IX_6F9EDE9F` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivityLimit` -- LOCK TABLES `SocialActivityLimit` WRITE; /*!40000 ALTER TABLE `SocialActivityLimit` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivityLimit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivitySet` -- DROP TABLE IF EXISTS `SocialActivitySet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivitySet` ( `activitySetId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `modifiedDate` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraData` longtext, `activityCount` int(11) DEFAULT NULL, PRIMARY KEY (`activitySetId`), KEY `IX_4460FA14` (`classNameId`,`classPK`,`type_`), KEY `IX_9BE30DDF` (`groupId`,`userId`,`classNameId`,`type_`), KEY `IX_F71071BD` (`groupId`,`userId`,`type_`), KEY `IX_62AC101A` (`userId`,`classNameId`,`classPK`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivitySet` -- LOCK TABLES `SocialActivitySet` WRITE; /*!40000 ALTER TABLE `SocialActivitySet` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivitySet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialActivitySetting` -- DROP TABLE IF EXISTS `SocialActivitySetting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialActivitySetting` ( `activitySettingId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `activityType` int(11) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `value` varchar(1024) DEFAULT NULL, PRIMARY KEY (`activitySettingId`), KEY `IX_384788CD` (`groupId`,`activityType`), KEY `IX_D984AABA` (`groupId`,`classNameId`,`activityType`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialActivitySetting` -- LOCK TABLES `SocialActivitySetting` WRITE; /*!40000 ALTER TABLE `SocialActivitySetting` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialActivitySetting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialRelation` -- DROP TABLE IF EXISTS `SocialRelation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialRelation` ( `uuid_` varchar(75) DEFAULT NULL, `relationId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `userId1` bigint(20) DEFAULT NULL, `userId2` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, PRIMARY KEY (`relationId`), UNIQUE KEY `IX_12A92145` (`userId1`,`userId2`,`type_`), KEY `IX_95135D1C` (`companyId`,`type_`), KEY `IX_C31A64C6` (`type_`), KEY `IX_4B52BE89` (`userId1`,`type_`), KEY `IX_3F9C2FA8` (`userId2`,`type_`), KEY `IX_5B30F663` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialRelation` -- LOCK TABLES `SocialRelation` WRITE; /*!40000 ALTER TABLE `SocialRelation` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialRelation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialRequest` -- DROP TABLE IF EXISTS `SocialRequest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SocialRequest` ( `uuid_` varchar(75) DEFAULT NULL, `requestId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `createDate` bigint(20) DEFAULT NULL, `modifiedDate` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraData` longtext, `receiverUserId` bigint(20) DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`requestId`), UNIQUE KEY `IX_36A90CA7` (`userId`,`classNameId`,`classPK`,`type_`,`receiverUserId`), UNIQUE KEY `IX_4F973EFE` (`uuid_`,`groupId`), KEY `IX_D3425487` (`classNameId`,`classPK`,`type_`,`receiverUserId`,`status`), KEY `IX_A90FE5A0` (`companyId`), KEY `IX_D9380CB7` (`receiverUserId`,`status`), KEY `IX_CC86A444` (`userId`,`classNameId`,`classPK`,`type_`,`status`), KEY `IX_AB5906A8` (`userId`,`status`), KEY `IX_8D42897C` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialRequest` -- LOCK TABLES `SocialRequest` WRITE; /*!40000 ALTER TABLE `SocialRequest` DISABLE KEYS */; /*!40000 ALTER TABLE `SocialRequest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Subscription` -- DROP TABLE IF EXISTS `Subscription`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Subscription` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `subscriptionId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `frequency` varchar(75) DEFAULT NULL, PRIMARY KEY (`subscriptionId`), UNIQUE KEY `IX_2E1A92D4` (`companyId`,`userId`,`classNameId`,`classPK`), KEY `IX_786D171A` (`companyId`,`classNameId`,`classPK`), KEY `IX_1290B81` (`groupId`,`userId`), KEY `IX_E8F34171` (`userId`,`classNameId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Subscription` -- LOCK TABLES `Subscription` WRITE; /*!40000 ALTER TABLE `Subscription` DISABLE KEYS */; /*!40000 ALTER TABLE `Subscription` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SyncDLFileVersionDiff` -- DROP TABLE IF EXISTS `SyncDLFileVersionDiff`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SyncDLFileVersionDiff` ( `syncDLFileVersionDiffId` bigint(20) NOT NULL, `fileEntryId` bigint(20) DEFAULT NULL, `sourceFileVersionId` bigint(20) DEFAULT NULL, `targetFileVersionId` bigint(20) DEFAULT NULL, `dataFileEntryId` bigint(20) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `expirationDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`syncDLFileVersionDiffId`), UNIQUE KEY `IX_AC4C7667` (`fileEntryId`,`sourceFileVersionId`,`targetFileVersionId`), KEY `IX_A9B43C55` (`expirationDate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SyncDLFileVersionDiff` -- LOCK TABLES `SyncDLFileVersionDiff` WRITE; /*!40000 ALTER TABLE `SyncDLFileVersionDiff` DISABLE KEYS */; /*!40000 ALTER TABLE `SyncDLFileVersionDiff` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SyncDLObject` -- DROP TABLE IF EXISTS `SyncDLObject`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SyncDLObject` ( `syncDLObjectId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createTime` bigint(20) DEFAULT NULL, `modifiedTime` bigint(20) DEFAULT NULL, `repositoryId` bigint(20) DEFAULT NULL, `parentFolderId` bigint(20) DEFAULT NULL, `treePath` longtext, `name` varchar(255) DEFAULT NULL, `extension` varchar(75) DEFAULT NULL, `mimeType` varchar(75) DEFAULT NULL, `description` longtext, `changeLog` varchar(75) DEFAULT NULL, `extraSettings` longtext, `version` varchar(75) DEFAULT NULL, `versionId` bigint(20) DEFAULT NULL, `size_` bigint(20) DEFAULT NULL, `checksum` varchar(75) DEFAULT NULL, `event` varchar(75) DEFAULT NULL, `lanTokenKey` varchar(75) DEFAULT NULL, `lastPermissionChangeDate` datetime(6) DEFAULT NULL, `lockExpirationDate` datetime(6) DEFAULT NULL, `lockUserId` bigint(20) DEFAULT NULL, `lockUserName` varchar(75) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `typePK` bigint(20) DEFAULT NULL, `typeUuid` varchar(75) DEFAULT NULL, PRIMARY KEY (`syncDLObjectId`), UNIQUE KEY `IX_E3F57BD6` (`type_`,`typePK`), KEY `IX_8D4FDC9F` (`modifiedTime`,`repositoryId`,`event`), KEY `IX_A3ACE372` (`modifiedTime`,`repositoryId`,`parentFolderId`), KEY `IX_38C38A09` (`repositoryId`,`event`), KEY `IX_3BE7BB8D` (`repositoryId`,`parentFolderId`,`type_`), KEY `IX_57F62914` (`repositoryId`,`type_`), KEY `IX_EE41CBEB` (`treePath`(255),`event`), KEY `IX_28CD54BB` (`type_`,`version`), KEY `IX_1CCA3B5` (`version`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SyncDLObject` -- LOCK TABLES `SyncDLObject` WRITE; /*!40000 ALTER TABLE `SyncDLObject` DISABLE KEYS */; /*!40000 ALTER TABLE `SyncDLObject` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SyncDevice` -- DROP TABLE IF EXISTS `SyncDevice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SyncDevice` ( `uuid_` varchar(75) DEFAULT NULL, `syncDeviceId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `buildNumber` bigint(20) DEFAULT NULL, `featureSet` int(11) DEFAULT NULL, `hostname` varchar(75) DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`syncDeviceId`), KEY `IX_176DF87B` (`companyId`,`userName`), KEY `IX_A18EDDB1` (`userId`), KEY `IX_AE38DEAB` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SyncDevice` -- LOCK TABLES `SyncDevice` WRITE; /*!40000 ALTER TABLE `SyncDevice` DISABLE KEYS */; /*!40000 ALTER TABLE `SyncDevice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SystemEvent` -- DROP TABLE IF EXISTS `SystemEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SystemEvent` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `systemEventId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `classUuid` varchar(75) DEFAULT NULL, `referrerClassNameId` bigint(20) DEFAULT NULL, `parentSystemEventId` bigint(20) DEFAULT NULL, `systemEventSetKey` bigint(20) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraData` longtext, PRIMARY KEY (`systemEventId`), KEY `IX_FFCBB747` (`groupId`,`classNameId`,`classPK`,`type_`), KEY `IX_A19C89FF` (`groupId`,`systemEventSetKey`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SystemEvent` -- LOCK TABLES `SystemEvent` WRITE; /*!40000 ALTER TABLE `SystemEvent` DISABLE KEYS */; INSERT INTO `SystemEvent` VALUES (0,31301,31294,20115,0,NULL,'2018-07-02 15:52:19.861000',20047,31297,'6d689840-cc1f-b86d-696d-6c1e9b477572',0,0,31302,1,'{\"privateLayout\":\"true\"}'),(0,31356,31349,20115,0,NULL,'2018-07-02 15:52:21.880000',20047,31352,'6ba00420-c556-fb64-6050-8bda5bd3d8b0',0,0,31357,1,'{\"privateLayout\":\"true\"}'); /*!40000 ALTER TABLE `SystemEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Team` -- DROP TABLE IF EXISTS `Team`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Team` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `teamId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`teamId`), UNIQUE KEY `IX_143DC786` (`groupId`,`name`), UNIQUE KEY `IX_39F69E79` (`uuid_`,`groupId`), KEY `IX_5D47F637` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Team` -- LOCK TABLES `Team` WRITE; /*!40000 ALTER TABLE `Team` DISABLE KEYS */; /*!40000 ALTER TABLE `Team` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Ticket` -- DROP TABLE IF EXISTS `Ticket`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Ticket` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `ticketId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `key_` varchar(75) DEFAULT NULL, `type_` int(11) DEFAULT NULL, `extraInfo` longtext, `expirationDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`ticketId`), KEY `IX_1E8DFB2E` (`classNameId`,`classPK`,`type_`), KEY `IX_B2468446` (`key_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Ticket` -- LOCK TABLES `Ticket` WRITE; /*!40000 ALTER TABLE `Ticket` DISABLE KEYS */; /*!40000 ALTER TABLE `Ticket` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TrashEntry` -- DROP TABLE IF EXISTS `TrashEntry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `TrashEntry` ( `entryId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `systemEventSetKey` bigint(20) DEFAULT NULL, `typeSettings` longtext, `status` int(11) DEFAULT NULL, PRIMARY KEY (`entryId`), UNIQUE KEY `IX_B35F73D5` (`classNameId`,`classPK`), KEY `IX_2674F2A8` (`companyId`), KEY `IX_FC4EEA64` (`groupId`,`classNameId`), KEY `IX_6CAAE2E8` (`groupId`,`createDate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TrashEntry` -- LOCK TABLES `TrashEntry` WRITE; /*!40000 ALTER TABLE `TrashEntry` DISABLE KEYS */; /*!40000 ALTER TABLE `TrashEntry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TrashVersion` -- DROP TABLE IF EXISTS `TrashVersion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `TrashVersion` ( `versionId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `entryId` bigint(20) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `typeSettings` longtext, `status` int(11) DEFAULT NULL, PRIMARY KEY (`versionId`), UNIQUE KEY `IX_630A643B` (`classNameId`,`classPK`), KEY `IX_72D58D37` (`entryId`,`classNameId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TrashVersion` -- LOCK TABLES `TrashVersion` WRITE; /*!40000 ALTER TABLE `TrashVersion` DISABLE KEYS */; /*!40000 ALTER TABLE `TrashVersion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroup` -- DROP TABLE IF EXISTS `UserGroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserGroup` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `userGroupId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `parentUserGroupId` bigint(20) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `addedByLDAPImport` tinyint(4) DEFAULT NULL, PRIMARY KEY (`userGroupId`), UNIQUE KEY `IX_23EAD0D` (`companyId`,`name`), KEY `IX_69771487` (`companyId`,`parentUserGroupId`), KEY `IX_72394F8E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroup` -- LOCK TABLES `UserGroup` WRITE; /*!40000 ALTER TABLE `UserGroup` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroupGroupRole` -- DROP TABLE IF EXISTS `UserGroupGroupRole`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserGroupGroupRole` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `userGroupId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, PRIMARY KEY (`userGroupId`,`groupId`,`roleId`), KEY `IX_CAB0CCC8` (`groupId`,`roleId`), KEY `IX_1CDF88C` (`roleId`), KEY `IX_73C52252` (`userGroupId`,`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroupGroupRole` -- LOCK TABLES `UserGroupGroupRole` WRITE; /*!40000 ALTER TABLE `UserGroupGroupRole` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroupGroupRole` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroupRole` -- DROP TABLE IF EXISTS `UserGroupRole`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserGroupRole` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `userId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, PRIMARY KEY (`userId`,`groupId`,`roleId`), KEY `IX_871412DF` (`groupId`,`roleId`), KEY `IX_887A2C95` (`roleId`), KEY `IX_4D040680` (`userId`,`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroupRole` -- LOCK TABLES `UserGroupRole` WRITE; /*!40000 ALTER TABLE `UserGroupRole` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroupRole` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroups_Teams` -- DROP TABLE IF EXISTS `UserGroups_Teams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserGroups_Teams` ( `companyId` bigint(20) NOT NULL, `teamId` bigint(20) NOT NULL, `userGroupId` bigint(20) NOT NULL, PRIMARY KEY (`teamId`,`userGroupId`), KEY `IX_2AC5356C` (`companyId`), KEY `IX_31FB0B08` (`teamId`), KEY `IX_7F187E63` (`userGroupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroups_Teams` -- LOCK TABLES `UserGroups_Teams` WRITE; /*!40000 ALTER TABLE `UserGroups_Teams` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroups_Teams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserIdMapper` -- DROP TABLE IF EXISTS `UserIdMapper`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserIdMapper` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `userIdMapperId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `type_` varchar(75) DEFAULT NULL, `description` varchar(75) DEFAULT NULL, `externalUserId` varchar(75) DEFAULT NULL, PRIMARY KEY (`userIdMapperId`), UNIQUE KEY `IX_41A32E0D` (`type_`,`externalUserId`), UNIQUE KEY `IX_D1C44A6E` (`userId`,`type_`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserIdMapper` -- LOCK TABLES `UserIdMapper` WRITE; /*!40000 ALTER TABLE `UserIdMapper` DISABLE KEYS */; /*!40000 ALTER TABLE `UserIdMapper` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserNotificationDelivery` -- DROP TABLE IF EXISTS `UserNotificationDelivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserNotificationDelivery` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `userNotificationDeliveryId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `portletId` varchar(200) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `notificationType` int(11) DEFAULT NULL, `deliveryType` int(11) DEFAULT NULL, `deliver` tinyint(4) DEFAULT NULL, PRIMARY KEY (`userNotificationDeliveryId`), UNIQUE KEY `IX_8B6E3ACE` (`userId`,`portletId`,`classNameId`,`notificationType`,`deliveryType`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserNotificationDelivery` -- LOCK TABLES `UserNotificationDelivery` WRITE; /*!40000 ALTER TABLE `UserNotificationDelivery` DISABLE KEYS */; /*!40000 ALTER TABLE `UserNotificationDelivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserNotificationEvent` -- DROP TABLE IF EXISTS `UserNotificationEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserNotificationEvent` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `userNotificationEventId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `type_` varchar(200) DEFAULT NULL, `timestamp` bigint(20) DEFAULT NULL, `deliveryType` int(11) DEFAULT NULL, `deliverBy` bigint(20) DEFAULT NULL, `delivered` tinyint(4) DEFAULT NULL, `payload` longtext, `actionRequired` tinyint(4) DEFAULT NULL, `archived` tinyint(4) DEFAULT NULL, PRIMARY KEY (`userNotificationEventId`), KEY `IX_BF29100B` (`type_`), KEY `IX_5CE95F03` (`userId`,`actionRequired`,`archived`), KEY `IX_3DBB361A` (`userId`,`archived`), KEY `IX_E32CC19` (`userId`,`delivered`,`actionRequired`), KEY `IX_C4EFBD45` (`userId`,`deliveryType`,`actionRequired`,`archived`), KEY `IX_A87A585C` (`userId`,`deliveryType`,`archived`), KEY `IX_A6F83617` (`userId`,`deliveryType`,`delivered`,`actionRequired`), KEY `IX_8FB65EC1` (`userId`,`type_`,`deliveryType`,`delivered`), KEY `IX_A6BAFDFE` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserNotificationEvent` -- LOCK TABLES `UserNotificationEvent` WRITE; /*!40000 ALTER TABLE `UserNotificationEvent` DISABLE KEYS */; /*!40000 ALTER TABLE `UserNotificationEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserTracker` -- DROP TABLE IF EXISTS `UserTracker`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserTracker` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `userTrackerId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `sessionId` varchar(200) DEFAULT NULL, `remoteAddr` varchar(75) DEFAULT NULL, `remoteHost` varchar(75) DEFAULT NULL, `userAgent` varchar(200) DEFAULT NULL, PRIMARY KEY (`userTrackerId`), KEY `IX_29BA1CF5` (`companyId`), KEY `IX_46B0AE8E` (`sessionId`), KEY `IX_E4EFBA8D` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserTracker` -- LOCK TABLES `UserTracker` WRITE; /*!40000 ALTER TABLE `UserTracker` DISABLE KEYS */; /*!40000 ALTER TABLE `UserTracker` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserTrackerPath` -- DROP TABLE IF EXISTS `UserTrackerPath`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UserTrackerPath` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `userTrackerPathId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userTrackerId` bigint(20) DEFAULT NULL, `path_` longtext, `pathDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`userTrackerPathId`), KEY `IX_14D8BCC0` (`userTrackerId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserTrackerPath` -- LOCK TABLES `UserTrackerPath` WRITE; /*!40000 ALTER TABLE `UserTrackerPath` DISABLE KEYS */; /*!40000 ALTER TABLE `UserTrackerPath` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `User_` -- DROP TABLE IF EXISTS `User_`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `User_` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `userId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `defaultUser` tinyint(4) DEFAULT NULL, `contactId` bigint(20) DEFAULT NULL, `password_` varchar(75) DEFAULT NULL, `passwordEncrypted` tinyint(4) DEFAULT NULL, `passwordReset` tinyint(4) DEFAULT NULL, `passwordModifiedDate` datetime(6) DEFAULT NULL, `digest` varchar(255) DEFAULT NULL, `reminderQueryQuestion` varchar(75) DEFAULT NULL, `reminderQueryAnswer` varchar(75) DEFAULT NULL, `graceLoginCount` int(11) DEFAULT NULL, `screenName` varchar(75) DEFAULT NULL, `emailAddress` varchar(254) DEFAULT NULL, `facebookId` bigint(20) DEFAULT NULL, `googleUserId` varchar(75) DEFAULT NULL, `ldapServerId` bigint(20) DEFAULT NULL, `openId` varchar(1024) DEFAULT NULL, `portraitId` bigint(20) DEFAULT NULL, `languageId` varchar(75) DEFAULT NULL, `timeZoneId` varchar(75) DEFAULT NULL, `greeting` varchar(255) DEFAULT NULL, `comments` longtext, `firstName` varchar(75) DEFAULT NULL, `middleName` varchar(75) DEFAULT NULL, `lastName` varchar(75) DEFAULT NULL, `jobTitle` varchar(100) DEFAULT NULL, `loginDate` datetime(6) DEFAULT NULL, `loginIP` varchar(75) DEFAULT NULL, `lastLoginDate` datetime(6) DEFAULT NULL, `lastLoginIP` varchar(75) DEFAULT NULL, `lastFailedLoginDate` datetime(6) DEFAULT NULL, `failedLoginAttempts` int(11) DEFAULT NULL, `lockout` tinyint(4) DEFAULT NULL, `lockoutDate` datetime(6) DEFAULT NULL, `agreedToTermsOfUse` tinyint(4) DEFAULT NULL, `emailAddressVerified` tinyint(4) DEFAULT NULL, `status` int(11) DEFAULT NULL, PRIMARY KEY (`userId`), UNIQUE KEY `IX_615E9F7A` (`companyId`,`emailAddress`), UNIQUE KEY `IX_C5806019` (`companyId`,`screenName`), UNIQUE KEY `IX_9782AD88` (`companyId`,`userId`), UNIQUE KEY `IX_5ADBE171` (`contactId`), KEY `IX_BCFDA257` (`companyId`,`createDate`,`modifiedDate`), KEY `IX_C6EA4F34` (`companyId`,`defaultUser`,`status`), KEY `IX_1D731F03` (`companyId`,`facebookId`), KEY `IX_B6E3AE1` (`companyId`,`googleUserId`), KEY `IX_EE8ABD19` (`companyId`,`modifiedDate`), KEY `IX_89509087` (`companyId`,`openId`(255)), KEY `IX_F6039434` (`companyId`,`status`), KEY `IX_762F63C6` (`emailAddress`), KEY `IX_A18034A4` (`portraitId`), KEY `IX_405CC0E` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `User_` -- LOCK TABLES `User_` WRITE; /*!40000 ALTER TABLE `User_` DISABLE KEYS */; INSERT INTO `User_` VALUES (0,'6f902221-b961-a7a9-be9e-ebe0f096ce53',20119,20115,'2018-07-02 15:51:00.068000','2018-07-02 15:51:00.068000',1,20120,'password',0,0,NULL,'5533ed38b5e33c076a804bb4bca644f9,9890f733429d1843a3ec73858454039d,9890f733429d1843a3ec73858454039d',NULL,NULL,0,'20119','default@liferay.com',0,NULL,0,NULL,0,'en_US','UTC','Welcome!',NULL,NULL,NULL,NULL,NULL,'2018-07-02 15:50:59.896000',NULL,NULL,NULL,NULL,0,0,NULL,1,0,0),(5,'a80031de-5e09-ef7d-49c9-70730a51d972',20155,20115,'2018-07-02 15:51:01.148000','2018-07-02 16:07:39.545000',0,20157,'AAAAoAAB9ADb5GR7hVpjFWF+7HxFAAhZ1TbaV1uNoDnQhPpb',1,0,NULL,'e5d86c6f3672e52795891c3597f20de0,751da756639bc033b572ba2e7849b589,03a39937547bc4e5c4dd0af9b504f431','what-is-your-father\'s-middle-name','test',0,'test','test@liferay.com',0,NULL,-1,NULL,0,'en_US','UTC','Welcome Test Test!',NULL,'Test',NULL,'Test',NULL,'2018-07-02 16:07:32.753000','127.0.0.1','2018-07-02 15:51:01.204000',NULL,NULL,0,0,NULL,1,1,0); /*!40000 ALTER TABLE `User_` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_Groups` -- DROP TABLE IF EXISTS `Users_Groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_Groups` ( `companyId` bigint(20) NOT NULL, `groupId` bigint(20) NOT NULL, `userId` bigint(20) NOT NULL, PRIMARY KEY (`groupId`,`userId`), KEY `IX_3499B657` (`companyId`), KEY `IX_C4F9E699` (`groupId`), KEY `IX_F10B6C6B` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_Groups` -- LOCK TABLES `Users_Groups` WRITE; /*!40000 ALTER TABLE `Users_Groups` DISABLE KEYS */; INSERT INTO `Users_Groups` VALUES (20115,20142,20155); /*!40000 ALTER TABLE `Users_Groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_Orgs` -- DROP TABLE IF EXISTS `Users_Orgs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_Orgs` ( `companyId` bigint(20) NOT NULL, `organizationId` bigint(20) NOT NULL, `userId` bigint(20) NOT NULL, PRIMARY KEY (`organizationId`,`userId`), KEY `IX_5FBB883C` (`companyId`), KEY `IX_7EF4EC0E` (`organizationId`), KEY `IX_FB646CA6` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_Orgs` -- LOCK TABLES `Users_Orgs` WRITE; /*!40000 ALTER TABLE `Users_Orgs` DISABLE KEYS */; /*!40000 ALTER TABLE `Users_Orgs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_Roles` -- DROP TABLE IF EXISTS `Users_Roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_Roles` ( `companyId` bigint(20) NOT NULL, `roleId` bigint(20) NOT NULL, `userId` bigint(20) NOT NULL, PRIMARY KEY (`roleId`,`userId`), KEY `IX_F987A0DC` (`companyId`), KEY `IX_C19E5F31` (`roleId`), KEY `IX_C1A01806` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_Roles` -- LOCK TABLES `Users_Roles` WRITE; /*!40000 ALTER TABLE `Users_Roles` DISABLE KEYS */; INSERT INTO `Users_Roles` VALUES (20115,20121,20155),(20115,20122,20119),(20115,20124,20155),(20115,20125,20155); /*!40000 ALTER TABLE `Users_Roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_Teams` -- DROP TABLE IF EXISTS `Users_Teams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_Teams` ( `companyId` bigint(20) NOT NULL, `teamId` bigint(20) NOT NULL, `userId` bigint(20) NOT NULL, PRIMARY KEY (`teamId`,`userId`), KEY `IX_799F8283` (`companyId`), KEY `IX_4D06AD51` (`teamId`), KEY `IX_A098EFBF` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_Teams` -- LOCK TABLES `Users_Teams` WRITE; /*!40000 ALTER TABLE `Users_Teams` DISABLE KEYS */; /*!40000 ALTER TABLE `Users_Teams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users_UserGroups` -- DROP TABLE IF EXISTS `Users_UserGroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Users_UserGroups` ( `companyId` bigint(20) NOT NULL, `userId` bigint(20) NOT NULL, `userGroupId` bigint(20) NOT NULL, PRIMARY KEY (`userId`,`userGroupId`), KEY `IX_BB65040C` (`companyId`), KEY `IX_66FF2503` (`userGroupId`), KEY `IX_BE8102D6` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users_UserGroups` -- LOCK TABLES `Users_UserGroups` WRITE; /*!40000 ALTER TABLE `Users_UserGroups` DISABLE KEYS */; /*!40000 ALTER TABLE `Users_UserGroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `VirtualHost` -- DROP TABLE IF EXISTS `VirtualHost`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `VirtualHost` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `virtualHostId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `layoutSetId` bigint(20) DEFAULT NULL, `hostname` varchar(200) DEFAULT NULL, PRIMARY KEY (`virtualHostId`), UNIQUE KEY `IX_A083D394` (`companyId`,`layoutSetId`), UNIQUE KEY `IX_431A3960` (`hostname`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `VirtualHost` -- LOCK TABLES `VirtualHost` WRITE; /*!40000 ALTER TABLE `VirtualHost` DISABLE KEYS */; INSERT INTO `VirtualHost` VALUES (0,20118,20115,0,'localhost'); /*!40000 ALTER TABLE `VirtualHost` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WebDAVProps` -- DROP TABLE IF EXISTS `WebDAVProps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WebDAVProps` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `webDavPropsId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `props` longtext, PRIMARY KEY (`webDavPropsId`), UNIQUE KEY `IX_97DFA146` (`classNameId`,`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WebDAVProps` -- LOCK TABLES `WebDAVProps` WRITE; /*!40000 ALTER TABLE `WebDAVProps` DISABLE KEYS */; /*!40000 ALTER TABLE `WebDAVProps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Website` -- DROP TABLE IF EXISTS `Website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Website` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `uuid_` varchar(75) DEFAULT NULL, `websiteId` bigint(20) NOT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `url` longtext, `typeId` bigint(20) DEFAULT NULL, `primary_` tinyint(4) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`websiteId`), KEY `IX_1AA07A6D` (`companyId`,`classNameId`,`classPK`,`primary_`), KEY `IX_F75690BB` (`userId`), KEY `IX_712BCD35` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Website` -- LOCK TABLES `Website` WRITE; /*!40000 ALTER TABLE `Website` DISABLE KEYS */; /*!40000 ALTER TABLE `Website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WikiNode` -- DROP TABLE IF EXISTS `WikiNode`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WikiNode` ( `uuid_` varchar(75) DEFAULT NULL, `nodeId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `name` varchar(75) DEFAULT NULL, `description` longtext, `lastPostDate` datetime(6) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`nodeId`), UNIQUE KEY `IX_920CD8B1` (`groupId`,`name`), UNIQUE KEY `IX_7609B2AE` (`uuid_`,`groupId`), KEY `IX_B54332D6` (`companyId`,`status`), KEY `IX_23325358` (`groupId`,`status`), KEY `IX_E0E6D12C` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WikiNode` -- LOCK TABLES `WikiNode` WRITE; /*!40000 ALTER TABLE `WikiNode` DISABLE KEYS */; /*!40000 ALTER TABLE `WikiNode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WikiPage` -- DROP TABLE IF EXISTS `WikiPage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WikiPage` ( `uuid_` varchar(75) DEFAULT NULL, `pageId` bigint(20) NOT NULL, `resourcePrimKey` bigint(20) DEFAULT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `nodeId` bigint(20) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `version` double DEFAULT NULL, `minorEdit` tinyint(4) DEFAULT NULL, `content` longtext, `summary` longtext, `format` varchar(75) DEFAULT NULL, `head` tinyint(4) DEFAULT NULL, `parentTitle` varchar(255) DEFAULT NULL, `redirectTitle` varchar(255) DEFAULT NULL, `lastPublishDate` datetime(6) DEFAULT NULL, `status` int(11) DEFAULT NULL, `statusByUserId` bigint(20) DEFAULT NULL, `statusByUserName` varchar(75) DEFAULT NULL, `statusDate` datetime(6) DEFAULT NULL, PRIMARY KEY (`pageId`), UNIQUE KEY `IX_3D4AF476` (`nodeId`,`title`,`version`), UNIQUE KEY `IX_2CD67C81` (`resourcePrimKey`,`nodeId`,`version`), UNIQUE KEY `IX_899D3DFB` (`uuid_`,`groupId`), KEY `IX_A2001730` (`format`), KEY `IX_BA72B89A` (`groupId`,`nodeId`,`head`,`parentTitle`,`status`), KEY `IX_E0092FF0` (`groupId`,`nodeId`,`head`,`status`), KEY `IX_941E429C` (`groupId`,`nodeId`,`status`), KEY `IX_5FF21CE6` (`groupId`,`nodeId`,`title`,`head`), KEY `IX_CAA451D6` (`groupId`,`userId`,`nodeId`,`status`), KEY `IX_9F7655DA` (`nodeId`,`head`,`parentTitle`,`status`), KEY `IX_40F94F68` (`nodeId`,`head`,`redirectTitle`,`status`), KEY `IX_432F0AB0` (`nodeId`,`head`,`status`), KEY `IX_46EEF3C8` (`nodeId`,`parentTitle`), KEY `IX_1ECC7656` (`nodeId`,`redirectTitle`), KEY `IX_546F2D5C` (`nodeId`,`status`), KEY `IX_E745EA26` (`nodeId`,`title`,`head`), KEY `IX_BEA33AB8` (`nodeId`,`title`,`status`), KEY `IX_E1F55FB` (`resourcePrimKey`,`nodeId`,`head`), KEY `IX_94D1054D` (`resourcePrimKey`,`nodeId`,`status`), KEY `IX_1725355C` (`resourcePrimKey`,`status`), KEY `IX_FBBE7C96` (`userId`,`nodeId`,`status`), KEY `IX_5DC4BD39` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WikiPage` -- LOCK TABLES `WikiPage` WRITE; /*!40000 ALTER TABLE `WikiPage` DISABLE KEYS */; /*!40000 ALTER TABLE `WikiPage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WikiPageResource` -- DROP TABLE IF EXISTS `WikiPageResource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WikiPageResource` ( `uuid_` varchar(75) DEFAULT NULL, `resourcePrimKey` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `nodeId` bigint(20) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, PRIMARY KEY (`resourcePrimKey`), UNIQUE KEY `IX_21277664` (`nodeId`,`title`), UNIQUE KEY `IX_F705C7A9` (`uuid_`,`groupId`), KEY `IX_13319367` (`uuid_`,`companyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WikiPageResource` -- LOCK TABLES `WikiPageResource` WRITE; /*!40000 ALTER TABLE `WikiPageResource` DISABLE KEYS */; /*!40000 ALTER TABLE `WikiPageResource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowDefinitionLink` -- DROP TABLE IF EXISTS `WorkflowDefinitionLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WorkflowDefinitionLink` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `workflowDefinitionLinkId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `typePK` bigint(20) DEFAULT NULL, `workflowDefinitionName` varchar(75) DEFAULT NULL, `workflowDefinitionVersion` int(11) DEFAULT NULL, PRIMARY KEY (`workflowDefinitionLinkId`), KEY `IX_A4DB1F0F` (`companyId`,`workflowDefinitionName`,`workflowDefinitionVersion`), KEY `IX_705B40EE` (`groupId`,`companyId`,`classNameId`,`classPK`,`typePK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowDefinitionLink` -- LOCK TABLES `WorkflowDefinitionLink` WRITE; /*!40000 ALTER TABLE `WorkflowDefinitionLink` DISABLE KEYS */; /*!40000 ALTER TABLE `WorkflowDefinitionLink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowInstanceLink` -- DROP TABLE IF EXISTS `WorkflowInstanceLink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `WorkflowInstanceLink` ( `mvccVersion` bigint(20) NOT NULL DEFAULT '0', `workflowInstanceLinkId` bigint(20) NOT NULL, `groupId` bigint(20) DEFAULT NULL, `companyId` bigint(20) DEFAULT NULL, `userId` bigint(20) DEFAULT NULL, `userName` varchar(75) DEFAULT NULL, `createDate` datetime(6) DEFAULT NULL, `modifiedDate` datetime(6) DEFAULT NULL, `classNameId` bigint(20) DEFAULT NULL, `classPK` bigint(20) DEFAULT NULL, `workflowInstanceId` bigint(20) DEFAULT NULL, PRIMARY KEY (`workflowInstanceLinkId`), KEY `IX_415A7007` (`groupId`,`companyId`,`classNameId`,`classPK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowInstanceLink` -- LOCK TABLES `WorkflowInstanceLink` WRITE; /*!40000 ALTER TABLE `WorkflowInstanceLink` DISABLE KEYS */; /*!40000 ALTER TABLE `WorkflowInstanceLink` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-07-02 9:09:18