From fdb9cb527ecb30684ddd2965e79517e327e8bf1f Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Wed, 26 Apr 2023 19:08:57 +0200 Subject: [PATCH 01/11] Add .nvmrc to timgen --- timgen/.nvmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 timgen/.nvmrc diff --git a/timgen/.nvmrc b/timgen/.nvmrc new file mode 100644 index 000000000..5edcff036 --- /dev/null +++ b/timgen/.nvmrc @@ -0,0 +1 @@ +v16 \ No newline at end of file From 12c826f2a4022f25f96a5aaaad20c3a832959909 Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Tue, 9 May 2023 14:21:19 +0200 Subject: [PATCH 02/11] Add make command wagtail-exec --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 24685dc6b..ce0cb0576 100644 --- a/Makefile +++ b/Makefile @@ -309,6 +309,9 @@ wagtail-build: wagtail-bash: docker-compose -f docker-compose.deps.yml run --rm --entrypoint="bash" wagtail +wagtail-exec: + docker-compose -f docker-compose.deps.yml exec wagtail bash + wagtail-restart: docker-compose -f docker-compose.deps.yml up --force-recreate --no-deps -d wagtail From 5ad6f82f9db7b11668e04b00163344683ee8e371 Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Wed, 26 Apr 2023 19:08:15 +0200 Subject: [PATCH 03/11] Rename liferay mock to oauth2_provider mock --- ...mock_test.py => oauth2_provider_mock_test.py} | 2 +- src/layman/authn/oauth2_test.py | 4 ++-- .../common/prime_db_schema/publications_test.py | 2 +- src/layman/common/prime_db_schema/users_test.py | 6 +++--- src/layman/user/rest_users_test.py | 2 +- .../{liferay => oauth2_provider}/__init__.py | 0 .../mock/{liferay => oauth2_provider}/app.py | 16 ++++++++-------- test_tools/prime_db_schema_client.py | 2 +- test_tools/process.py | 2 +- 9 files changed, 18 insertions(+), 18 deletions(-) rename src/layman/authn/oauth2/{liferay_mock_test.py => oauth2_provider_mock_test.py} (97%) rename test_tools/mock/{liferay => oauth2_provider}/__init__.py (100%) rename test_tools/mock/{liferay => oauth2_provider}/app.py (91%) diff --git a/src/layman/authn/oauth2/liferay_mock_test.py b/src/layman/authn/oauth2/oauth2_provider_mock_test.py similarity index 97% rename from src/layman/authn/oauth2/liferay_mock_test.py rename to src/layman/authn/oauth2/oauth2_provider_mock_test.py index 347384ee8..25fe8443d 100644 --- a/src/layman/authn/oauth2/liferay_mock_test.py +++ b/src/layman/authn/oauth2/oauth2_provider_mock_test.py @@ -5,7 +5,7 @@ import pytest from layman import settings -from test_tools.mock.liferay import run +from test_tools.mock.oauth2_provider import run del sys.modules['layman'] from . import TOKEN_HEADER diff --git a/src/layman/authn/oauth2_test.py b/src/layman/authn/oauth2_test.py index e09579874..5fe842c26 100644 --- a/src/layman/authn/oauth2_test.py +++ b/src/layman/authn/oauth2_test.py @@ -191,7 +191,7 @@ def test_authn_get_current_user_without_username(client): 'email', 'email_verified', 'family_name', 'given_name', 'iss', 'middle_name', 'name', 'preferred_username', 'sub', 'updated_at', 'screen_name' } == set(claims.keys()) - assert claims['email'] == 'test@liferay.com' + assert claims['email'] == 'test@oauth2.org' assert claims['email_verified'] is True assert claims['family_name'] == 'Test' assert claims['given_name'] == 'Test' @@ -302,7 +302,7 @@ def test_patch_current_user_without_username(): # test map metadata workspace = exp_username - exp_email = 'test_patch_current_user_user1_email' + '@liferay.com' + exp_email = 'test_patch_current_user_user1_email' + '@oauth2.org' exp_name = 'FirstName MiddleName LastName' mapname = 'map1' process_client.publish_workspace_map(workspace, mapname, headers=user1_authn_headers) diff --git a/src/layman/common/prime_db_schema/publications_test.py b/src/layman/common/prime_db_schema/publications_test.py index 18052ad51..92111bced 100644 --- a/src/layman/common/prime_db_schema/publications_test.py +++ b/src/layman/common/prime_db_schema/publications_test.py @@ -11,7 +11,7 @@ DB_SCHEMA = settings.LAYMAN_PRIME_SCHEMA userinfo_baseline = {"issuer_id": 'mock_test_publications_test', - "claims": {"email": "test@liferay.com", + "claims": {"email": "test@oauth2.org", "preferred_username": 'test_preferred', "name": "test ensure user", "given_name": "test", diff --git a/src/layman/common/prime_db_schema/users_test.py b/src/layman/common/prime_db_schema/users_test.py index 447e06d93..2f97425ea 100644 --- a/src/layman/common/prime_db_schema/users_test.py +++ b/src/layman/common/prime_db_schema/users_test.py @@ -16,7 +16,7 @@ def test_get_user_infos(): iss_sub = {'issuer_id': 'mock_test_users_test', 'sub': '5'} userinfo = {**iss_sub, - "claims": {"email": "test@liferay.com", + "claims": {"email": "test@oauth2.org", "name": "test ensure user", "preferred_username": 'test_preferred', "given_name": "test", @@ -38,7 +38,7 @@ def test_ensure_user(): username = 'test_ensure_user' userinfo = {"issuer_id": 'mock_test_users_test', "sub": '10', - "claims": {"email": "test@liferay.com", + "claims": {"email": "test@oauth2.org", "name": "test ensure user", "preferred_username": 'test_preferred', "given_name": "test", @@ -76,7 +76,7 @@ def test_delete_user(): workspace = 'test_delete_user_workspace' userinfo = {"issuer_id": 'mock_test_users_test', "sub": '20', - "claims": {"email": "test@liferay.com", + "claims": {"email": "test@oauth2.org", "preferred_username": 'test_preferred', "name": "test ensure user", "given_name": "test", diff --git a/src/layman/user/rest_users_test.py b/src/layman/user/rest_users_test.py index 121e14236..a2c7ed0d1 100644 --- a/src/layman/user/rest_users_test.py +++ b/src/layman/user/rest_users_test.py @@ -11,7 +11,7 @@ def test_get_users(): username = 'test_get_users_user' userinfo = {"issuer_id": 'mock_test_rest_user_test', "sub": '1', - "claims": {"email": "test@liferay.com", + "claims": {"email": "test@oauth2.org", "preferred_username": 'test_preferred', "name": "test ensure user", "given_name": "test", diff --git a/test_tools/mock/liferay/__init__.py b/test_tools/mock/oauth2_provider/__init__.py similarity index 100% rename from test_tools/mock/liferay/__init__.py rename to test_tools/mock/oauth2_provider/__init__.py diff --git a/test_tools/mock/liferay/app.py b/test_tools/mock/oauth2_provider/app.py similarity index 91% rename from test_tools/mock/liferay/app.py rename to test_tools/mock/oauth2_provider/app.py index 0da7f0660..4d3c414e7 100644 --- a/test_tools/mock/liferay/app.py +++ b/test_tools/mock/oauth2_provider/app.py @@ -23,7 +23,7 @@ def create_app(app_config): 'sub': sub } tok2prof[username] = { - "emailAddress": f"{username}@liferay.com", + "emailAddress": f"{username}@oauth2.org", "firstName": f"{username}", "lastName": f"{username}", "middleName": "", @@ -64,7 +64,7 @@ def create_app(app_config): } token_2_profile = { 'abc': { - "emailAddress": "test@liferay.com", + "emailAddress": "test@oauth2.org", "firstName": "Test", "lastName": "Test", "middleName": "", @@ -72,7 +72,7 @@ def create_app(app_config): "userId": "20139", }, 'test2': { - "emailAddress": "test2@liferay.com", + "emailAddress": "test2@oauth2.org", "firstName": "Test", "lastName": "Test", "middleName": "", @@ -80,7 +80,7 @@ def create_app(app_config): "userId": "20140", }, 'test3': { - "emailAddress": "test3@liferay.com", + "emailAddress": "test3@oauth2.org", "firstName": "Test", "lastName": "Test", "middleName": "", @@ -88,7 +88,7 @@ def create_app(app_config): "userId": "20141", }, 'test_patch_current_user_user1': { - "emailAddress": "test_patch_current_user_user1_email@liferay.com", + "emailAddress": "test_patch_current_user_user1_email@oauth2.org", "firstName": "FirstName", "lastName": "LastName", "middleName": "MiddleName", @@ -96,7 +96,7 @@ def create_app(app_config): "userId": "20142", }, 'test_patch_current_user_user2': { - "emailAddress": "test_patch_current_user_user2@liferay.com", + "emailAddress": "test_patch_current_user_user2@oauth2.org", "firstName": "Test", "lastName": "Test", "middleName": "", @@ -116,7 +116,7 @@ def post(): result = { "active": is_active, "client_id": "VECGuQb00tWt8HZNkA4cxu6dnoQD5pF6Up3daAoK", "exp": 1568981517, "iat": 1568980917, - "scope": "liferay-json-web-services.everything.read.userprofile", "sub": "20139", "token_type": "Bearer", + "sub": "20139", "token_type": "Bearer", "username": "Test Test", "company.id": "20099" } result.update(current_app.config['OAUTH2_TOKEN_2_INTROSPECTION'][access_token]) @@ -136,7 +136,7 @@ def get(): "contactId": "20141", "createDate": 1557361648854, "defaultUser": False, - "emailAddress": "test@liferay.com", + "emailAddress": "test@oauth2.org", "emailAddressVerified": True, "externalReferenceCode": "", "facebookId": "0", diff --git a/test_tools/prime_db_schema_client.py b/test_tools/prime_db_schema_client.py index 5b2108d18..c947b7fe7 100644 --- a/test_tools/prime_db_schema_client.py +++ b/test_tools/prime_db_schema_client.py @@ -17,7 +17,7 @@ def ensure_user(workspace): 'sub': oauth2_sub_counter.get(), 'issuer_id': 'layman', 'claims': { - 'email': f"{workspace}@liferay.com", + 'email': f"{workspace}@oauth2.org", 'name': workspace, 'middle_name': '', 'family_name': workspace, diff --git a/test_tools/process.py b/test_tools/process.py index 5bd92a502..25db3b9cf 100644 --- a/test_tools/process.py +++ b/test_tools/process.py @@ -7,7 +7,7 @@ from layman import settings, util as layman_util from test_tools import util -from test_tools.mock.liferay import run +from test_tools.mock.oauth2_provider import run logger = logging.getLogger(__name__) From ba76d18279640dabb63b12e7e6316aaa3a265ad1 Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Wed, 26 Apr 2023 19:16:00 +0200 Subject: [PATCH 04/11] Rename liferay_mock fixture to oauth2_provider_mock --- src/conftest.py | 2 +- src/layman/authn/oauth2_test.py | 6 +++--- src/layman/authz/authz_env_test.py | 2 +- src/layman/authz/authz_test.py | 2 +- src/layman/geoserver_proxy_test.py | 2 +- src/layman/layer/geoserver/geoserver_test.py | 2 +- src/layman/rest_multipublication_test.py | 6 +++--- src/layman/rest_publication_test.py | 2 +- test_tools/process.py | 2 +- tests/conftest.py | 2 +- tests/dynamic_data/publication_test.py | 2 +- .../layer_patch_without_data_test.py | 2 +- .../layer_wfst/new_attribute_test.py | 2 +- tests/static_data/data.py | 2 +- .../multi_publications/publications_test.py | 4 ++-- .../single_publication/layers_files_test.py | 4 ++-- .../single_publication/layers_test.py | 16 ++++++++-------- .../static_data/single_publication/maps_test.py | 2 +- .../single_publication/patch_error_test.py | 4 ++-- .../single_publication/publications_test.py | 16 ++++++++-------- .../users_and_workspaces/users_test.py | 2 +- .../users_and_workspaces/workspaces_test.py | 2 +- 22 files changed, 43 insertions(+), 43 deletions(-) diff --git a/src/conftest.py b/src/conftest.py index e9d171303..b90f00bbb 100644 --- a/src/conftest.py +++ b/src/conftest.py @@ -2,7 +2,7 @@ ensure_layman_session = process.ensure_layman_session -liferay_mock = process.liferay_mock +oauth2_provider_mock = process.oauth2_provider_mock ensure_layman = process.ensure_layman ensure_layman_module = process.ensure_layman_module ensure_external_db = external_db.ensure_db diff --git a/src/layman/authn/oauth2_test.py b/src/layman/authn/oauth2_test.py index 5fe842c26..e962463be 100644 --- a/src/layman/authn/oauth2_test.py +++ b/src/layman/authn/oauth2_test.py @@ -34,7 +34,7 @@ def unexisting_introspection_url(): @pytest.fixture() -def inactive_token_introspection_url(liferay_mock): +def inactive_token_introspection_url(oauth2_provider_mock): # pylint: disable=unused-argument introspection_url = oauth2.INTROSPECTION_URL oauth2.INTROSPECTION_URL = f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{LIFERAY_PORT}/rest/test-oauth2/introspection" @@ -43,7 +43,7 @@ def inactive_token_introspection_url(liferay_mock): @pytest.fixture() -def active_token_introspection_url(liferay_mock): +def active_token_introspection_url(oauth2_provider_mock): # pylint: disable=unused-argument introspection_url = oauth2.INTROSPECTION_URL oauth2.INTROSPECTION_URL = process.AUTHN_INTROSPECTION_URL @@ -52,7 +52,7 @@ def active_token_introspection_url(liferay_mock): @pytest.fixture() -def user_profile_url(liferay_mock): +def user_profile_url(oauth2_provider_mock): # pylint: disable=unused-argument user_profile_url = oauth2.USER_PROFILE_URL oauth2.USER_PROFILE_URL = f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{LIFERAY_PORT}/rest/test-oauth2/user-profile" diff --git a/src/layman/authz/authz_env_test.py b/src/layman/authz/authz_env_test.py index 4ed85c72a..b16e6eca0 100644 --- a/src/layman/authz/authz_env_test.py +++ b/src/layman/authz/authz_env_test.py @@ -20,7 +20,7 @@ def setup_test_public_workspace_variable(self): yield @staticmethod - @pytest.mark.usefixtures('liferay_mock', 'setup_test_public_workspace_variable') + @pytest.mark.usefixtures('oauth2_provider_mock', 'setup_test_public_workspace_variable') @pytest.mark.parametrize("publish_method, delete_method, workspace_suffix", [ (process_client.publish_workspace_layer, process_client.delete_workspace_layer, '_layer',), (process_client.publish_workspace_map, process_client.delete_workspace_map, '_map',), diff --git a/src/layman/authz/authz_test.py b/src/layman/authz/authz_test.py index d2798e36a..e97ab6d22 100644 --- a/src/layman/authz/authz_test.py +++ b/src/layman/authz/authz_test.py @@ -121,7 +121,7 @@ def has_no_publication(r_json): ('rest_workspace_map_thumbnail.get', {'mapname': mapname}, 200, None, 404, 26), ], ) - @pytest.mark.usefixtures('liferay_mock', 'ensure_layman', 'provide_publications') + @pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman', 'provide_publications') def test_authorize_publications_decorator_on_rest_api( self, rest_action, diff --git a/src/layman/geoserver_proxy_test.py b/src/layman/geoserver_proxy_test.py index 11d6b96b4..80dfa63b3 100644 --- a/src/layman/geoserver_proxy_test.py +++ b/src/layman/geoserver_proxy_test.py @@ -16,7 +16,7 @@ def setup_user_layer(username, layername, authn_headers): ], headers=authn_headers) -@pytest.mark.usefixtures('ensure_layman', 'liferay_mock') +@pytest.mark.usefixtures('ensure_layman', 'oauth2_provider_mock') def test_missing_attribute_authz(): username = 'testmissingattr_authz' layername1 = 'testmissingattr_authz_layer' diff --git a/src/layman/layer/geoserver/geoserver_test.py b/src/layman/layer/geoserver/geoserver_test.py index 5e1716fa6..a33d291c2 100644 --- a/src/layman/layer/geoserver/geoserver_test.py +++ b/src/layman/layer/geoserver/geoserver_test.py @@ -19,7 +19,7 @@ def test_check_workspace_wms(): assert exc_info.value.data['workspace_name'] == workspace -@pytest.mark.usefixtures('ensure_layman', 'liferay_mock') +@pytest.mark.usefixtures('ensure_layman', 'oauth2_provider_mock') def test_check_user_wms(): user = 'test_check_user_wms' + settings.LAYMAN_GS_WMS_WORKSPACE_POSTFIX auth_headers = process_client.get_authz_headers(user) diff --git a/src/layman/rest_multipublication_test.py b/src/layman/rest_multipublication_test.py index e754530cd..bfde3f1b9 100644 --- a/src/layman/rest_multipublication_test.py +++ b/src/layman/rest_multipublication_test.py @@ -18,7 +18,7 @@ def provide_data(self): yield @pytest.mark.parametrize('publ_type', process_client.PUBLICATION_TYPES) - @pytest.mark.usefixtures('liferay_mock', 'ensure_layman', 'provide_data') + @pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman', 'provide_data') def test_delete_publications(self, publ_type): def check_delete(headers, @@ -440,7 +440,7 @@ def assert_response(response, expected_publications, expected_headers): 'Content-Range': 'items 2-2/3'},), ]) @pytest.mark.parametrize('publication_type', process_client.PUBLICATION_TYPES) - @pytest.mark.usefixtures('liferay_mock', 'ensure_layman', 'provide_data') + @pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman', 'provide_data') def test_get_publications(publication_type, headers, query_params, expected_publications, expected_headers, ): response = process_client.get_publications_response(publication_type, headers=headers, query_params=query_params) TestGetPublications.assert_response(response, expected_publications, expected_headers) @@ -675,7 +675,7 @@ def test_get_publications(publication_type, headers, query_params, expected_publ ), ]) @pytest.mark.parametrize('publication_type', process_client.PUBLICATION_TYPES) - @pytest.mark.usefixtures('liferay_mock', 'ensure_layman', 'provide_data') + @pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman', 'provide_data') def test_get_workspace_publications(publication_type, workspace, headers, query_params, expected_publications, expected_headers, ): response = process_client.get_workspace_publications_response(publication_type, workspace, headers=headers, query_params=query_params) TestGetPublications.assert_response(response, expected_publications, expected_headers) diff --git a/src/layman/rest_publication_test.py b/src/layman/rest_publication_test.py index 378d8e6f6..1f51258c4 100644 --- a/src/layman/rest_publication_test.py +++ b/src/layman/rest_publication_test.py @@ -73,7 +73,7 @@ def clear_data(self): headers=self.authz_headers) @pytest.mark.flaky(reruns=5, reruns_delay=2) - @pytest.mark.usefixtures('liferay_mock', 'ensure_layman', 'reserve_username', 'clear_data') + @pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman', 'reserve_username', 'clear_data') @pytest.mark.parametrize('params_and_expected_list', [ # (input access rights, expected public visibility of metadata record) [(access_rights_rowo, False), (access_rights_rewe, True)], diff --git a/test_tools/process.py b/test_tools/process.py index 25db3b9cf..16d109766 100644 --- a/test_tools/process.py +++ b/test_tools/process.py @@ -31,7 +31,7 @@ @pytest.fixture(scope="session") -def liferay_mock(): +def oauth2_provider_mock(): server = Process(target=run, kwargs={ 'env_vars': { }, diff --git a/tests/conftest.py b/tests/conftest.py index e122e41d1..03e72eef0 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,7 +1,7 @@ from test_tools import process, external_db -liferay_mock = process.liferay_mock +oauth2_provider_mock = process.oauth2_provider_mock ensure_layman = process.ensure_layman ensure_layman_module = process.ensure_layman_module ensure_external_db = external_db.ensure_db diff --git a/tests/dynamic_data/publication_test.py b/tests/dynamic_data/publication_test.py index 13904ec0e..2908759fb 100644 --- a/tests/dynamic_data/publication_test.py +++ b/tests/dynamic_data/publication_test.py @@ -13,7 +13,7 @@ def publication_id(publication): @pytest.mark.timeout(60) @pytest.mark.parametrize('publication', data.PUBLICATIONS, ids=publication_id) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_action_chain(publication, request): for action_idx, step in enumerate(data.PUBLICATIONS[publication]): response = None diff --git a/tests/dynamic_data/publications/layer_by_used_servers/layer_patch_without_data_test.py b/tests/dynamic_data/publications/layer_by_used_servers/layer_patch_without_data_test.py index 0f94e49ad..f297bc719 100644 --- a/tests/dynamic_data/publications/layer_by_used_servers/layer_patch_without_data_test.py +++ b/tests/dynamic_data/publications/layer_by_used_servers/layer_patch_without_data_test.py @@ -56,7 +56,7 @@ def generate_test_cases(): return tc_list -@pytest.mark.usefixtures('liferay_mock') +@pytest.mark.usefixtures('oauth2_provider_mock') class TestLayer(base_test.TestSingleRestPublication): workspace = WORKSPACE diff --git a/tests/dynamic_data/publications/layer_wfst/new_attribute_test.py b/tests/dynamic_data/publications/layer_wfst/new_attribute_test.py index 80b7831d9..337821c57 100644 --- a/tests/dynamic_data/publications/layer_wfst/new_attribute_test.py +++ b/tests/dynamic_data/publications/layer_wfst/new_attribute_test.py @@ -174,7 +174,7 @@ class LayerByTableLocation(base_test.PublicationByDefinitionBase): pytest_generate_tests = base_test.pytest_generate_tests -@pytest.mark.usefixtures('ensure_external_db', 'liferay_mock') +@pytest.mark.usefixtures('ensure_external_db', 'oauth2_provider_mock') @pytest.mark.timeout(60) class TestNewAttribute(base_test.TestSingleRestPublication): workspace = WORKSPACE diff --git a/tests/static_data/data.py b/tests/static_data/data.py index 547b124b3..1608288a5 100644 --- a/tests/static_data/data.py +++ b/tests/static_data/data.py @@ -42,7 +42,7 @@ def assert_publication_before_post(workspace, publ_type, publication): @pytest.fixture(scope="session", autouse=True) -def ensure_test_data(liferay_mock, request): +def ensure_test_data(oauth2_provider_mock, request): # pylint: disable=unused-argument yield diff --git a/tests/static_data/multi_publications/publications_test.py b/tests/static_data/multi_publications/publications_test.py index 782b8e0ba..6ca3cf25a 100644 --- a/tests/static_data/multi_publications/publications_test.py +++ b/tests/static_data/multi_publications/publications_test.py @@ -7,7 +7,7 @@ @pytest.mark.timeout(600) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman',) +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman',) def test_get_publication_infos(): ensure_all_publications() @@ -68,7 +68,7 @@ def test_get_publication_infos(): @pytest.mark.timeout(600) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_find_maps_containing_layer(): ensure_all_publications() diff --git a/tests/static_data/single_publication/layers_files_test.py b/tests/static_data/single_publication/layers_files_test.py index adfa609b1..f209e9345 100644 --- a/tests/static_data/single_publication/layers_files_test.py +++ b/tests/static_data/single_publication/layers_files_test.py @@ -12,7 +12,7 @@ @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_RASTER_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_raster_files(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) with app.app_context(): @@ -42,7 +42,7 @@ def test_raster_files(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_QML_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_qml_files(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) workspace_directory = f'{settings.LAYMAN_QGIS_DATA_DIR}/workspaces/{workspace}' diff --git a/tests/static_data/single_publication/layers_test.py b/tests/static_data/single_publication/layers_test.py index a754a471d..2ab2ed4f1 100644 --- a/tests/static_data/single_publication/layers_test.py +++ b/tests/static_data/single_publication/layers_test.py @@ -30,7 +30,7 @@ @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_info(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) wms_url = f"http://localhost:8000/geoserver/{workspace}{settings.LAYMAN_GS_WMS_WORKSPACE_POSTFIX}/ows" @@ -63,7 +63,7 @@ def test_info(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_geoserver_workspace(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) headers = data.HEADERS.get(data.PUBLICATIONS[(workspace, publ_type, publication)][data.TEST_DATA].get('users_can_write', [None])[0]) @@ -73,7 +73,7 @@ def test_geoserver_workspace(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_get_layer_style(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) headers = data.HEADERS.get(data.PUBLICATIONS[(workspace, publ_type, publication)][data.TEST_DATA].get('users_can_write', [None])[0]) @@ -100,7 +100,7 @@ def test_get_layer_style(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_wms_layer(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -184,7 +184,7 @@ def test_wms_layer(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_QML_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_fill_project_template(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -254,7 +254,7 @@ def test_fill_project_template(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_gs_data_security(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -280,7 +280,7 @@ def test_gs_data_security(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', [(wspace, ptype, pub) for wspace, ptype, pub in data.LIST_LAYERS if data.PUBLICATIONS[(wspace, ptype, pub)][data.TEST_DATA].get('micka_xml')]) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_micka_xml(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -313,7 +313,7 @@ def test_micka_xml(workspace, publ_type, publication): publ_tuple for publ_tuple in data.LIST_LAYERS if data.PUBLICATIONS[publ_tuple][data.TEST_DATA].get('attributes') is not None ]) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_layer_attributes_in_db(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) generated_names = {'wkb_geometry', 'ogc_fid'} diff --git a/tests/static_data/single_publication/maps_test.py b/tests/static_data/single_publication/maps_test.py index 0e2b4886b..151fc0815 100644 --- a/tests/static_data/single_publication/maps_test.py +++ b/tests/static_data/single_publication/maps_test.py @@ -24,7 +24,7 @@ def assert_operates_on(workspace, mapname, expected_layers, authz_headers): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_INTERNAL_MAPS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_map_with_unauthorized_layer(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) diff --git a/tests/static_data/single_publication/patch_error_test.py b/tests/static_data/single_publication/patch_error_test.py index 273244580..e6b2aaea1 100644 --- a/tests/static_data/single_publication/patch_error_test.py +++ b/tests/static_data/single_publication/patch_error_test.py @@ -7,7 +7,7 @@ @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_RASTER_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_patch_raster_qml(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -24,7 +24,7 @@ def test_patch_raster_qml(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_QML_LAYERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_patch_qml_raster(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) diff --git a/tests/static_data/single_publication/publications_test.py b/tests/static_data/single_publication/publications_test.py index cacf10925..d8ece3f12 100644 --- a/tests/static_data/single_publication/publications_test.py +++ b/tests/static_data/single_publication/publications_test.py @@ -12,7 +12,7 @@ @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_ALL_PUBLICATIONS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_thumbnail(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -22,7 +22,7 @@ def test_thumbnail(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_ALL_PUBLICATIONS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman',) +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman',) def test_get_publication_info_items(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) asserts_internal.source_has_its_key_or_it_is_empty(workspace, publ_type, publication) @@ -31,7 +31,7 @@ def test_get_publication_info_items(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_ALL_PUBLICATIONS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_infos(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -46,7 +46,7 @@ def test_infos(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_ALL_PUBLICATIONS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_auth_get_publications(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -66,7 +66,7 @@ def test_auth_get_publications(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_ALL_PUBLICATIONS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_auth_get_publication(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -87,7 +87,7 @@ def test_auth_get_publication(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_ALL_PUBLICATIONS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_internal_info(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) asserts_internal.mandatory_keys_in_all_sources(workspace, publ_type, publication) @@ -100,7 +100,7 @@ def test_internal_info(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_ALL_PUBLICATIONS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_info(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) @@ -132,7 +132,7 @@ def test_info(workspace, publ_type, publication): @pytest.mark.parametrize('workspace, publ_type, publication', data.LIST_ALL_PUBLICATIONS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_all_source_info(workspace, publ_type, publication): ensure_publication(workspace, publ_type, publication) asserts_internal.same_value_of_key_in_all_sources(workspace, publ_type, publication) diff --git a/tests/static_data/users_and_workspaces/users_test.py b/tests/static_data/users_and_workspaces/users_test.py index 8fef1fe35..4c27b7f11 100644 --- a/tests/static_data/users_and_workspaces/users_test.py +++ b/tests/static_data/users_and_workspaces/users_test.py @@ -7,7 +7,7 @@ @pytest.mark.parametrize('username', data.USERS) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_geoserver(username): process_client.ensure_reserved_username(username, headers=data.HEADERS[username]) diff --git a/tests/static_data/users_and_workspaces/workspaces_test.py b/tests/static_data/users_and_workspaces/workspaces_test.py index 7b81dc3d3..3a0ef9aeb 100644 --- a/tests/static_data/users_and_workspaces/workspaces_test.py +++ b/tests/static_data/users_and_workspaces/workspaces_test.py @@ -6,7 +6,7 @@ @pytest.mark.timeout(600) @pytest.mark.parametrize('workspace', data.WORKSPACES) -@pytest.mark.usefixtures('liferay_mock', 'ensure_layman') +@pytest.mark.usefixtures('oauth2_provider_mock', 'ensure_layman') def test_user_workspace(workspace): ensure_all_publications() From 5917e8eaaf1a5b87499cf9404d0f6f937dcbf57b Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Wed, 26 Apr 2023 19:20:01 +0200 Subject: [PATCH 05/11] Rename LIFERAY_PORT to OAUTH2_PROVIDER_MOCK_PORT --- src/layman/authn/oauth2_test.py | 6 +++--- test_tools/process.py | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/layman/authn/oauth2_test.py b/src/layman/authn/oauth2_test.py index e962463be..6b21450d4 100644 --- a/src/layman/authn/oauth2_test.py +++ b/src/layman/authn/oauth2_test.py @@ -12,7 +12,7 @@ from . import oauth2 -LIFERAY_PORT = process.LIFERAY_PORT +OAUTH2_PROVIDER_MOCK_PORT = process.OAUTH2_PROVIDER_MOCK_PORT @pytest.fixture(scope="module", autouse=True) @@ -37,7 +37,7 @@ def unexisting_introspection_url(): def inactive_token_introspection_url(oauth2_provider_mock): # pylint: disable=unused-argument introspection_url = oauth2.INTROSPECTION_URL - oauth2.INTROSPECTION_URL = f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{LIFERAY_PORT}/rest/test-oauth2/introspection" + oauth2.INTROSPECTION_URL = f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{OAUTH2_PROVIDER_MOCK_PORT}/rest/test-oauth2/introspection" yield oauth2.INTROSPECTION_URL = introspection_url @@ -55,7 +55,7 @@ def active_token_introspection_url(oauth2_provider_mock): def user_profile_url(oauth2_provider_mock): # pylint: disable=unused-argument user_profile_url = oauth2.USER_PROFILE_URL - oauth2.USER_PROFILE_URL = f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{LIFERAY_PORT}/rest/test-oauth2/user-profile" + oauth2.USER_PROFILE_URL = f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{OAUTH2_PROVIDER_MOCK_PORT}/rest/test-oauth2/user-profile" yield oauth2.USER_PROFILE_URL = user_profile_url diff --git a/test_tools/process.py b/test_tools/process.py index 16d109766..af32065b5 100644 --- a/test_tools/process.py +++ b/test_tools/process.py @@ -13,16 +13,16 @@ logger = logging.getLogger(__name__) SUBPROCESSES = set() -LIFERAY_PORT = 8030 +OAUTH2_PROVIDER_MOCK_PORT = 8030 -AUTHN_INTROSPECTION_URL = f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{LIFERAY_PORT}/rest/test-oauth2/introspection?is_active=true" +AUTHN_INTROSPECTION_URL = f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{OAUTH2_PROVIDER_MOCK_PORT}/rest/test-oauth2/introspection?is_active=true" LAYMAN_CELERY_QUEUE = 'temporary' AUTHN_SETTINGS = { 'LAYMAN_AUTHN_MODULES': 'layman.authn.oauth2', 'OAUTH2_INTROSPECTION_URL': AUTHN_INTROSPECTION_URL, - 'OAUTH2_USER_PROFILE_URL': f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{LIFERAY_PORT}/rest/test-oauth2/user-profile", + 'OAUTH2_USER_PROFILE_URL': f"http://{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{OAUTH2_PROVIDER_MOCK_PORT}/rest/test-oauth2/user-profile", } LAYMAN_SETTING = layman_util.SimpleStorage() @@ -37,8 +37,8 @@ def oauth2_provider_mock(): }, 'app_config': { 'ENV': 'development', - 'SERVER_NAME': f"{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{LIFERAY_PORT}", - 'SESSION_COOKIE_DOMAIN': f"{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{LIFERAY_PORT}", + 'SERVER_NAME': f"{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{OAUTH2_PROVIDER_MOCK_PORT}", + 'SESSION_COOKIE_DOMAIN': f"{settings.LAYMAN_SERVER_NAME.split(':')[0]}:{OAUTH2_PROVIDER_MOCK_PORT}", 'OAUTH2_USERS': { 'test_gs_rules_user': None, 'test_gs_rules_other_user': None, @@ -71,7 +71,7 @@ def oauth2_provider_mock(): }, }, 'host': '0.0.0.0', - 'port': LIFERAY_PORT, + 'port': OAUTH2_PROVIDER_MOCK_PORT, 'debug': True, # preserve error log in HTTP responses 'load_dotenv': False, 'options': { From 18b669ae81fee8132ccbf93cb81beca227a3bf27 Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Tue, 9 May 2023 13:20:21 +0200 Subject: [PATCH 06/11] Remove Liferay from dev stack --- .gitignore | 3 - Makefile | 24 - deps/liferay/docker/Dockerfile | 8 - deps/liferay/sample/hypersonic/lportal.log | 21 - .../sample/hypersonic/lportal.properties | 5 - deps/liferay/sample/hypersonic/lportal.script | 6237 ----------------- deps/liferay/transit/.gitkeep | 0 docker-compose.deps.demo.yml | 12 - docker-compose.deps.yml | 12 - 9 files changed, 6322 deletions(-) delete mode 100644 deps/liferay/docker/Dockerfile delete mode 100644 deps/liferay/sample/hypersonic/lportal.log delete mode 100644 deps/liferay/sample/hypersonic/lportal.properties delete mode 100644 deps/liferay/sample/hypersonic/lportal.script delete mode 100644 deps/liferay/transit/.gitkeep diff --git a/.gitignore b/.gitignore index d0eefd825..d7124f304 100644 --- a/.gitignore +++ b/.gitignore @@ -12,9 +12,6 @@ /deps/*/tmp /deps/*/log -/deps/liferay/transit/* -!/deps/liferay/transit/.gitkeep - /.env* !/.env.demo !/.env.dev diff --git a/Makefile b/Makefile index ce0cb0576..ae4f00af7 100644 --- a/Makefile +++ b/Makefile @@ -276,33 +276,9 @@ geoserver-exec: geoserver-ensure-authn: docker-compose -f docker-compose.deps.yml -f docker-compose.dev.yml run --rm --no-deps -u root layman_dev bash -c "cd src && python3 -B setup_geoserver.py" -liferay-introspect: - curl 'http://localhost:8082/o/oauth2/introspect' --data 'client_id=id-353ab09c-f117-f2d5-d3a3-85cfb89e6746&client_secret=secret-d31a82c8-3e73-1058-e38a-f9191f7c2014&token=...' - -liferay-refresh: - curl 'http://localhost:8082/o/oauth2/token' --data 'grant_type=refresh_token&client_id=id-353ab09c-f117-f2d5-d3a3-85cfb89e6746&client_secret=secret-d31a82c8-3e73-1058-e38a-f9191f7c2014&refresh_token=...' - -liferay-userprofile: - curl -H "Authorization: Bearer ..." http://localhost:8082/api/jsonws/user/get-current-user - get-current-user: curl -H "Authorization: Bearer ..." http://localhost:8000/rest/current-user -liferay-bash: - docker-compose -f docker-compose.deps.yml -f docker-compose.dev.yml exec liferay bash - -liferay-export-settings: - rm -f deps/liferay/transit/* - docker-compose -f docker-compose.deps.yml -f docker-compose.dev.yml exec liferay bash -c "cd data/hypersonic; cp lportal.log /etc/liferay/tmp/; cp lportal.properties /etc/liferay/tmp/; cp lportal.script /etc/liferay/tmp/" - rm -f deps/liferay/sample/hypersonic/* - mv -f deps/liferay/transit/* deps/liferay/sample/hypersonic/ - -liferay-start: - docker-compose -f docker-compose.deps.yml up --force-recreate -d liferay - -liferay-stop: - docker-compose -f docker-compose.deps.yml stop liferay - wagtail-build: docker-compose -f docker-compose.deps.yml build wagtail diff --git a/deps/liferay/docker/Dockerfile b/deps/liferay/docker/Dockerfile deleted file mode 100644 index b8d5c699a..000000000 --- a/deps/liferay/docker/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM liferay/portal:7.1.3-ga4 - -# https://github.com/docker/compose/issues/3270#issuecomment-206214034 -USER root -RUN mkdir -p /etc/liferay/tmp -RUN chown liferay:liferay /etc/liferay/tmp - -USER liferay diff --git a/deps/liferay/sample/hypersonic/lportal.log b/deps/liferay/sample/hypersonic/lportal.log deleted file mode 100644 index 8bf065153..000000000 --- a/deps/liferay/sample/hypersonic/lportal.log +++ /dev/null @@ -1,21 +0,0 @@ -/*C5*/SET SCHEMA PUBLIC -DELETE FROM CONFIGURATION_ WHERE CONFIGURATIONID='com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration.7cfcac41-57f4-45ab-8f43-535b49c70498' -INSERT INTO CONFIGURATION_ VALUES('com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration.7cfcac41-57f4-45ab-8f43-535b49c70498',':org.apache.felix.configadmin.revision:=L"22"\u000d\u000afelix.fileinstall.filename="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration-default.config"\u000d\u000amapping=[ \\u000d\u000a "DELETE,PATCH,POST,PUT\=everything,everything.write", \\u000d\u000a "GET,HEAD,OPTIONS\=everything.read", \\u000d\u000a "everything.write\=everything,everything.write", \\u000d\u000a ]\u000d\u000aosgi.jaxrs.name="Default"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration"\u000d\u000aservice.pid="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration.7cfcac41-57f4-45ab-8f43-535b49c70498"\u000d\u000a') -COMMIT -DELETE FROM CONFIGURATION_ WHERE CONFIGURATIONID='com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration.7cfcac41-57f4-45ab-8f43-535b49c70498' -INSERT INTO CONFIGURATION_ VALUES('com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration.7cfcac41-57f4-45ab-8f43-535b49c70498',':org.apache.felix.configadmin.revision:=L"23"\u000d\u000afelix.fileinstall.filename="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration-default.config"\u000d\u000amapping=[ \\u000d\u000a "DELETE,PATCH,POST,PUT\=everything,everything.write", \\u000d\u000a "GET,HEAD,OPTIONS\=everything.read", \\u000d\u000a "everything.write\=everything,everything.write", \\u000d\u000a ]\u000d\u000aosgi.jaxrs.name="Default"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration"\u000d\u000aservice.pid="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration.7cfcac41-57f4-45ab-8f43-535b49c70498"\u000d\u000a') -COMMIT -/*C6*/SET SCHEMA PUBLIC -DELETE FROM RELEASE_ WHERE RELEASEID=1 -INSERT INTO RELEASE_ VALUES(11,1,'2019-05-09 00:27:24.000000','2021-09-30 10:13:31.877000','portal','2.0.4',7102,'2019-05-14 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.') -COMMIT -/*C7*/SET SCHEMA PUBLIC -DELETE FROM DDMSTRUCTURE WHERE STRUCTUREID=32319 -INSERT INTO DDMSTRUCTURE VALUES('28f199ce-d324-a259-0298-efc3dca9a267',32319,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:53.027000','2021-09-30 10:13:48.796000',0,32144,'TIKARAWMETADATA','1.0','TIKARAWMETADATA','TIKARAWMETADATA','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"ClimateForcast_PROGRAM_ID","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MULTIPART_SUBTYPE","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MULTIPART_SUBTYPE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MULTIPART_BOUNDARY","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MULTIPART_BOUNDARY"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_FROM_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_FROM_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_FROM_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_FROM_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_EMAIL"},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.Office.OBJECT_COUNT"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_MESSAGE_CLASS","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_MESSAGE_CLASS"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_SENT_BY_SERVER_TYPE","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_SENT_BY_SERVER_TYPE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_FROM_REPRESENTING_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_FROM_REPRESENTING_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_FROM_REPRESENTING_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_FROM_REPRESENTING_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"OfficeOpenXMLCore_NAMESPACE_URI","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.TIFF.ORIGINAL_DATE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"TIFF_EXIF_PAGE_COUNT","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.TIFF.EXIF_PAGE_COUNT"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"TikaMetadataKeys_RESOURCE_NAME_KEY","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.XMPDM.VIDEO_PIXEL_ASPECT_RATIO"},"type":"text","required":false,"showLabel":true}]}','json',0,NULL) -COMMIT -/*C6*/DELETE FROM USER_ WHERE USERID=20139 -INSERT INTO USER_ VALUES(15,'4ef84411-749a-e617-6191-10e0c6a7147b',NULL,20139,20099,'2019-05-09 00:27:28.854000','2021-09-30 10:14:07.677000','0',20141,'AAAAoAAB9AB2R4rk8PIa6uUbxhoMcsKNe2xScBvPyY54g/18','1','0',NULL,'e5d86c6f3672e52795891c3597f20de0,751da756639bc033b572ba2e7849b589,f14e2fa1eb6a0fb38d901ff155143e95','what-is-your-father''s-middle-name','aa',0,'test','test@liferay.com',0,NULL,-1,NULL,0,'en_US','UTC','Welcome Test Test!',NULL,'Test',NULL,'Test',NULL,'2021-09-30 10:14:07.666000','172.18.0.1','2019-10-25 13:57:07.981000','172.18.0.1',NULL,0,'0',NULL,'0','1',0) -COMMIT -DELETE FROM OAUTH2APPLICATION WHERE OAUTH2APPLICATIONID=201 -INSERT INTO OAUTH2APPLICATION VALUES(201,20099,20139,'Test Test','2019-08-08 09:50:26.452000','2021-09-30 10:14:33.230000',201,'AUTHORIZATION_CODE,REFRESH_TOKEN','id-353ab09c-f117-f2d5-d3a3-85cfb89e6746',0,'secret-d31a82c8-3e73-1058-e38a-f9191f7c2014',NULL,'token_introspection','http://localhost:3000/',0,'Layman Node.js Client',NULL,'http://localhost:3000/client/authn/oauth2-liferay/callback\u000ahttp://localhost:3001/client/authn/oauth2-liferay/callback\u000ahttp://localhost/client/authn/oauth2-liferay/callback\u000ahttp://127.0.0.1:3857/') -COMMIT diff --git a/deps/liferay/sample/hypersonic/lportal.properties b/deps/liferay/sample/hypersonic/lportal.properties deleted file mode 100644 index 3a30ca313..000000000 --- a/deps/liferay/sample/hypersonic/lportal.properties +++ /dev/null @@ -1,5 +0,0 @@ -#HSQL Database Engine 2.3.3 -#Thu Sep 30 10:13:14 GMT 2021 -version=2.3.3 -modified=yes -tx_timestamp=0 diff --git a/deps/liferay/sample/hypersonic/lportal.script b/deps/liferay/sample/hypersonic/lportal.script deleted file mode 100644 index 527383216..000000000 --- a/deps/liferay/sample/hypersonic/lportal.script +++ /dev/null @@ -1,6237 +0,0 @@ -SET DATABASE UNIQUE NAME HSQLDB6A99F25BC6 -SET DATABASE GC 0 -SET DATABASE DEFAULT RESULT MEMORY ROWS 0 -SET DATABASE EVENT LOG LEVEL 0 -SET DATABASE TRANSACTION CONTROL LOCKS -SET DATABASE DEFAULT ISOLATION LEVEL READ COMMITTED -SET DATABASE TRANSACTION ROLLBACK ON CONFLICT TRUE -SET DATABASE TEXT TABLE DEFAULTS '' -SET DATABASE SQL NAMES FALSE -SET DATABASE SQL REFERENCES FALSE -SET DATABASE SQL SIZE TRUE -SET DATABASE SQL TYPES FALSE -SET DATABASE SQL TDC DELETE TRUE -SET DATABASE SQL TDC UPDATE TRUE -SET DATABASE SQL TRANSLATE TTI TYPES TRUE -SET DATABASE SQL CONCAT NULLS TRUE -SET DATABASE SQL UNIQUE NULLS TRUE -SET DATABASE SQL CONVERT TRUNCATE TRUE -SET DATABASE SQL AVG SCALE 0 -SET DATABASE SQL DOUBLE NAN TRUE -SET FILES WRITE DELAY 0 -SET FILES BACKUP INCREMENT TRUE -SET FILES CACHE SIZE 10000 -SET FILES CACHE ROWS 50000 -SET FILES SCALE 32 -SET FILES LOB SCALE 32 -SET FILES DEFRAG 0 -SET FILES NIO TRUE -SET FILES NIO SIZE 256 -SET FILES LOG TRUE -SET FILES LOG SIZE 50 -CREATE USER SA PASSWORD DIGEST 'd41d8cd98f00b204e9800998ecf8427e' -ALTER USER SA SET LOCAL TRUE -CREATE SCHEMA PUBLIC AUTHORIZATION DBA -SET SCHEMA PUBLIC -CREATE MEMORY TABLE PUBLIC.ACCOUNT_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,ACCOUNTID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PARENTACCOUNTID BIGINT,NAME VARCHAR(75),LEGALNAME VARCHAR(75),LEGALID VARCHAR(75),LEGALTYPE VARCHAR(75),SICCODE VARCHAR(75),TICKERSYMBOL VARCHAR(75),INDUSTRY VARCHAR(75),TYPE_ VARCHAR(75),SIZE_ VARCHAR(75)) -CREATE MEMORY TABLE PUBLIC.ADDRESS(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),ADDRESSID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,STREET1 VARCHAR(75),STREET2 VARCHAR(75),STREET3 VARCHAR(75),CITY VARCHAR(75),ZIP VARCHAR(75),REGIONID BIGINT,COUNTRYID BIGINT,TYPEID BIGINT,MAILING BIT(1),PRIMARY_ BIT(1)) -CREATE INDEX IX_923BD178 ON PUBLIC.ADDRESS(COMPANYID,CLASSNAMEID,CLASSPK,MAILING) -CREATE INDEX IX_9226DBB4 ON PUBLIC.ADDRESS(COMPANYID,CLASSNAMEID,CLASSPK,PRIMARY_) -CREATE INDEX IX_5BC8B0D4 ON PUBLIC.ADDRESS(USERID) -CREATE INDEX IX_8FCB620E ON PUBLIC.ADDRESS(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.ANNOUNCEMENTSDELIVERY(DELIVERYID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,TYPE_ VARCHAR(75),EMAIL BIT(1),SMS BIT(1),WEBSITE BIT(1)) -CREATE UNIQUE INDEX IX_BA4413D5 ON PUBLIC.ANNOUNCEMENTSDELIVERY(USERID,TYPE_) -CREATE MEMORY TABLE PUBLIC.ANNOUNCEMENTSENTRY(UUID_ VARCHAR(75),ENTRYID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,TITLE VARCHAR(75),CONTENT VARCHAR(16777216),URL VARCHAR(16777216),TYPE_ VARCHAR(75),DISPLAYDATE TIMESTAMP,EXPIRATIONDATE TIMESTAMP,PRIORITY INTEGER,ALERT BIT(1)) -CREATE INDEX IX_14F06A6B ON PUBLIC.ANNOUNCEMENTSENTRY(CLASSNAMEID,CLASSPK,ALERT) -CREATE INDEX IX_459BE01B ON PUBLIC.ANNOUNCEMENTSENTRY(COMPANYID,CLASSNAMEID,CLASSPK,ALERT) -CREATE INDEX IX_D49C2E66 ON PUBLIC.ANNOUNCEMENTSENTRY(USERID) -CREATE INDEX IX_F2949120 ON PUBLIC.ANNOUNCEMENTSENTRY(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.ANNOUNCEMENTSFLAG(FLAGID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,CREATEDATE TIMESTAMP,ENTRYID BIGINT,VALUE INTEGER) -CREATE INDEX IX_9C7EB9F ON PUBLIC.ANNOUNCEMENTSFLAG(ENTRYID) -CREATE UNIQUE INDEX IX_4539A99C ON PUBLIC.ANNOUNCEMENTSFLAG(USERID,ENTRYID,VALUE) -CREATE MEMORY TABLE PUBLIC.ASSETCATEGORY(UUID_ VARCHAR(75),EXTERNALREFERENCECODE VARCHAR(75),CATEGORYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PARENTCATEGORYID BIGINT,LEFTCATEGORYID BIGINT,RIGHTCATEGORYID BIGINT,NAME VARCHAR(75),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),VOCABULARYID BIGINT,LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_85E3BB49 ON PUBLIC.ASSETCATEGORY(COMPANYID,EXTERNALREFERENCECODE) -CREATE INDEX IX_C7F39FCA ON PUBLIC.ASSETCATEGORY(GROUPID,NAME,VOCABULARYID) -CREATE INDEX IX_852EA801 ON PUBLIC.ASSETCATEGORY(GROUPID,PARENTCATEGORYID,NAME,VOCABULARYID) -CREATE INDEX IX_87603842 ON PUBLIC.ASSETCATEGORY(GROUPID,PARENTCATEGORYID,VOCABULARYID) -CREATE INDEX IX_2008FACB ON PUBLIC.ASSETCATEGORY(GROUPID,VOCABULARYID) -CREATE INDEX IX_D61ABE08 ON PUBLIC.ASSETCATEGORY(NAME,VOCABULARYID) -CREATE UNIQUE INDEX IX_BE4DF2BF ON PUBLIC.ASSETCATEGORY(PARENTCATEGORYID,NAME,VOCABULARYID) -CREATE INDEX IX_B185E980 ON PUBLIC.ASSETCATEGORY(PARENTCATEGORYID,VOCABULARYID) -CREATE INDEX IX_BBAF6928 ON PUBLIC.ASSETCATEGORY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_E8D019AA ON PUBLIC.ASSETCATEGORY(UUID_,GROUPID) -CREATE INDEX IX_287B1F89 ON PUBLIC.ASSETCATEGORY(VOCABULARYID) -CREATE MEMORY TABLE PUBLIC.ASSETENTRIES_ASSETCATEGORIES(COMPANYID BIGINT NOT NULL,CATEGORYID BIGINT NOT NULL,ENTRYID BIGINT NOT NULL,PRIMARY KEY(CATEGORYID,ENTRYID)) -CREATE INDEX IX_A188F560 ON PUBLIC.ASSETENTRIES_ASSETCATEGORIES(CATEGORYID) -CREATE INDEX IX_38A65B55 ON PUBLIC.ASSETENTRIES_ASSETCATEGORIES(COMPANYID) -CREATE INDEX IX_E119938A ON PUBLIC.ASSETENTRIES_ASSETCATEGORIES(ENTRYID) -CREATE MEMORY TABLE PUBLIC.ASSETENTRIES_ASSETTAGS(COMPANYID BIGINT NOT NULL,ENTRYID BIGINT NOT NULL,TAGID BIGINT NOT NULL,PRIMARY KEY(ENTRYID,TAGID)) -CREATE INDEX IX_112337B8 ON PUBLIC.ASSETENTRIES_ASSETTAGS(COMPANYID) -CREATE INDEX IX_2ED82CAD ON PUBLIC.ASSETENTRIES_ASSETTAGS(ENTRYID) -CREATE INDEX IX_B2A61B55 ON PUBLIC.ASSETENTRIES_ASSETTAGS(TAGID) -CREATE MEMORY TABLE PUBLIC.ASSETENTRY(ENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,CLASSUUID VARCHAR(75),CLASSTYPEID BIGINT,LISTABLE BIT(1),VISIBLE BIT(1),STARTDATE TIMESTAMP,ENDDATE TIMESTAMP,PUBLISHDATE TIMESTAMP,EXPIRATIONDATE TIMESTAMP,MIMETYPE VARCHAR(75),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),SUMMARY VARCHAR(16777216),URL VARCHAR(16777216),LAYOUTUUID VARCHAR(75),HEIGHT INTEGER,WIDTH INTEGER,PRIORITY DOUBLE,VIEWCOUNT INTEGER) -CREATE UNIQUE INDEX IX_1E9D371D ON PUBLIC.ASSETENTRY(CLASSNAMEID,CLASSPK) -CREATE INDEX IX_7306C60 ON PUBLIC.ASSETENTRY(COMPANYID) -CREATE INDEX IX_75D42FF9 ON PUBLIC.ASSETENTRY(EXPIRATIONDATE) -CREATE INDEX IX_6418BB52 ON PUBLIC.ASSETENTRY(GROUPID,CLASSNAMEID,PUBLISHDATE,EXPIRATIONDATE) -CREATE INDEX IX_82C4BEF6 ON PUBLIC.ASSETENTRY(GROUPID,CLASSNAMEID,VISIBLE) -CREATE INDEX IX_1EBA6821 ON PUBLIC.ASSETENTRY(GROUPID,CLASSUUID) -CREATE INDEX IX_FEC4A201 ON PUBLIC.ASSETENTRY(LAYOUTUUID) -CREATE INDEX IX_2E4E3885 ON PUBLIC.ASSETENTRY(PUBLISHDATE) -CREATE INDEX IX_9029E15A ON PUBLIC.ASSETENTRY(VISIBLE) -CREATE MEMORY TABLE PUBLIC.ASSETLINK(LINKID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,ENTRYID1 BIGINT,ENTRYID2 BIGINT,TYPE_ INTEGER,WEIGHT INTEGER) -CREATE UNIQUE INDEX IX_8F542794 ON PUBLIC.ASSETLINK(ENTRYID1,ENTRYID2,TYPE_) -CREATE INDEX IX_14D5A20D ON PUBLIC.ASSETLINK(ENTRYID1,TYPE_) -CREATE INDEX IX_91F132C ON PUBLIC.ASSETLINK(ENTRYID2,TYPE_) -CREATE MEMORY TABLE PUBLIC.ASSETTAG(UUID_ VARCHAR(75),TAGID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(75),ASSETCOUNT INTEGER,LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_D63322F9 ON PUBLIC.ASSETTAG(GROUPID,NAME) -CREATE INDEX IX_C43137AF ON PUBLIC.ASSETTAG(NAME) -CREATE INDEX IX_84C501E4 ON PUBLIC.ASSETTAG(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_B6ACB166 ON PUBLIC.ASSETTAG(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.ASSETVOCABULARY(UUID_ VARCHAR(75),EXTERNALREFERENCECODE VARCHAR(75),VOCABULARYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(75),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),SETTINGS_ VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_E5867F31 ON PUBLIC.ASSETVOCABULARY(COMPANYID,EXTERNALREFERENCECODE) -CREATE UNIQUE INDEX IX_C0AAD74D ON PUBLIC.ASSETVOCABULARY(GROUPID,NAME) -CREATE INDEX IX_C4E6FD10 ON PUBLIC.ASSETVOCABULARY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_1B2B8792 ON PUBLIC.ASSETVOCABULARY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.BROWSERTRACKER(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,BROWSERTRACKERID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,BROWSERKEY BIGINT) -CREATE UNIQUE INDEX IX_E7B95510 ON PUBLIC.BROWSERTRACKER(USERID) -CREATE MEMORY TABLE PUBLIC.CLASSNAME_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,CLASSNAMEID BIGINT NOT NULL PRIMARY KEY,VALUE VARCHAR(200)) -CREATE UNIQUE INDEX IX_B27A301F ON PUBLIC.CLASSNAME_(VALUE) -CREATE MEMORY TABLE PUBLIC.CLUSTERGROUP(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,CLUSTERGROUPID BIGINT NOT NULL PRIMARY KEY,NAME VARCHAR(75),CLUSTERNODEIDS VARCHAR(75),WHOLECLUSTER BIT(1)) -CREATE MEMORY TABLE PUBLIC.COMPANY(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,COMPANYID BIGINT NOT NULL PRIMARY KEY,ACCOUNTID BIGINT,WEBID VARCHAR(75),KEY_ VARCHAR(16777216),MX VARCHAR(200),HOMEURL VARCHAR(16777216),LOGOID BIGINT,SYSTEM BIT(1),MAXUSERS INTEGER,ACTIVE_ BIT(1)) -CREATE INDEX IX_38EFE3FD ON PUBLIC.COMPANY(LOGOID) -CREATE INDEX IX_12566EC2 ON PUBLIC.COMPANY(MX) -CREATE INDEX IX_35E3E7C6 ON PUBLIC.COMPANY(SYSTEM) -CREATE UNIQUE INDEX IX_EC00543C ON PUBLIC.COMPANY(WEBID) -CREATE MEMORY TABLE PUBLIC.CONTACT_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,CONTACTID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,ACCOUNTID BIGINT,PARENTCONTACTID BIGINT,EMAILADDRESS VARCHAR(254),FIRSTNAME VARCHAR(75),MIDDLENAME VARCHAR(75),LASTNAME VARCHAR(75),PREFIXID BIGINT,SUFFIXID BIGINT,MALE BIT(1),BIRTHDAY TIMESTAMP,SMSSN VARCHAR(75),FACEBOOKSN VARCHAR(75),JABBERSN VARCHAR(75),SKYPESN VARCHAR(75),TWITTERSN VARCHAR(75),EMPLOYEESTATUSID VARCHAR(75),EMPLOYEENUMBER VARCHAR(75),JOBTITLE VARCHAR(100),JOBCLASS VARCHAR(75),HOURSOFOPERATION VARCHAR(75)) -CREATE INDEX IX_B8C28C53 ON PUBLIC.CONTACT_(ACCOUNTID) -CREATE INDEX IX_791914FA ON PUBLIC.CONTACT_(CLASSNAMEID,CLASSPK) -CREATE INDEX IX_66D496A3 ON PUBLIC.CONTACT_(COMPANYID) -CREATE MEMORY TABLE PUBLIC.COUNTER(NAME VARCHAR(150) NOT NULL PRIMARY KEY,CURRENTID BIGINT) -CREATE MEMORY TABLE PUBLIC.COUNTRY(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,COUNTRYID BIGINT NOT NULL PRIMARY KEY,NAME VARCHAR(75),A2 VARCHAR(75),A3 VARCHAR(75),NUMBER_ VARCHAR(75),IDD_ VARCHAR(75),ZIPREQUIRED BIT(1),ACTIVE_ BIT(1)) -CREATE UNIQUE INDEX IX_717B97E1 ON PUBLIC.COUNTRY(A2) -CREATE UNIQUE INDEX IX_717B9BA2 ON PUBLIC.COUNTRY(A3) -CREATE INDEX IX_25D734CD ON PUBLIC.COUNTRY(ACTIVE_) -CREATE UNIQUE INDEX IX_19DA007B ON PUBLIC.COUNTRY(NAME) -CREATE MEMORY TABLE PUBLIC.DLFILEENTRY(UUID_ VARCHAR(75),FILEENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,REPOSITORYID BIGINT,FOLDERID BIGINT,TREEPATH VARCHAR(16777216),NAME VARCHAR(255),FILENAME VARCHAR(255),EXTENSION VARCHAR(75),MIMETYPE VARCHAR(75),TITLE VARCHAR(255),DESCRIPTION VARCHAR(16777216),EXTRASETTINGS VARCHAR(16777216),FILEENTRYTYPEID BIGINT,VERSION VARCHAR(75),SIZE_ BIGINT,READCOUNT INTEGER,SMALLIMAGEID BIGINT,LARGEIMAGEID BIGINT,CUSTOM1IMAGEID BIGINT,CUSTOM2IMAGEID BIGINT,MANUALCHECKINREQUIRED BIT(1),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_5444C427 ON PUBLIC.DLFILEENTRY(COMPANYID,FILEENTRYTYPEID) -CREATE INDEX IX_B8526DBE ON PUBLIC.DLFILEENTRY(CUSTOM1IMAGEID) -CREATE INDEX IX_AC9BDEDD ON PUBLIC.DLFILEENTRY(CUSTOM2IMAGEID) -CREATE INDEX IX_772ECDE7 ON PUBLIC.DLFILEENTRY(FILEENTRYTYPEID) -CREATE INDEX IX_8F6C75D0 ON PUBLIC.DLFILEENTRY(FOLDERID,NAME) -CREATE INDEX IX_BAF654E5 ON PUBLIC.DLFILEENTRY(GROUPID,FILEENTRYTYPEID) -CREATE INDEX IX_29D0AF28 ON PUBLIC.DLFILEENTRY(GROUPID,FOLDERID,FILEENTRYTYPEID) -CREATE UNIQUE INDEX IX_DF37D92E ON PUBLIC.DLFILEENTRY(GROUPID,FOLDERID,FILENAME) -CREATE UNIQUE INDEX IX_5391712 ON PUBLIC.DLFILEENTRY(GROUPID,FOLDERID,NAME) -CREATE UNIQUE INDEX IX_ED5CA615 ON PUBLIC.DLFILEENTRY(GROUPID,FOLDERID,TITLE) -CREATE INDEX IX_D20C434D ON PUBLIC.DLFILEENTRY(GROUPID,USERID,FOLDERID) -CREATE INDEX IX_4DB7A143 ON PUBLIC.DLFILEENTRY(LARGEIMAGEID) -CREATE INDEX IX_D9492CF6 ON PUBLIC.DLFILEENTRY(MIMETYPE) -CREATE INDEX IX_1B352F4A ON PUBLIC.DLFILEENTRY(REPOSITORYID,FOLDERID) -CREATE INDEX IX_25F5CAB9 ON PUBLIC.DLFILEENTRY(SMALLIMAGEID,LARGEIMAGEID,CUSTOM1IMAGEID,CUSTOM2IMAGEID) -CREATE INDEX IX_31079DE8 ON PUBLIC.DLFILEENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_BC2E7E6A ON PUBLIC.DLFILEENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DLFILEENTRYMETADATA(UUID_ VARCHAR(75),FILEENTRYMETADATAID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,DDMSTORAGEID BIGINT,DDMSTRUCTUREID BIGINT,FILEENTRYID BIGINT,FILEVERSIONID BIGINT) -CREATE UNIQUE INDEX IX_7332B44F ON PUBLIC.DLFILEENTRYMETADATA(DDMSTRUCTUREID,FILEVERSIONID) -CREATE INDEX IX_4F40FE5E ON PUBLIC.DLFILEENTRYMETADATA(FILEENTRYID) -CREATE INDEX IX_1FE9C04 ON PUBLIC.DLFILEENTRYMETADATA(FILEVERSIONID) -CREATE INDEX IX_E69431B7 ON PUBLIC.DLFILEENTRYMETADATA(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.DLFILEENTRYTYPE(UUID_ VARCHAR(75),FILEENTRYTYPEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,FILEENTRYTYPEKEY VARCHAR(75),NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_5B6BEF5F ON PUBLIC.DLFILEENTRYTYPE(GROUPID,FILEENTRYTYPEKEY) -CREATE INDEX IX_5B03E942 ON PUBLIC.DLFILEENTRYTYPE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_1399D844 ON PUBLIC.DLFILEENTRYTYPE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DLFILEENTRYTYPES_DLFOLDERS(COMPANYID BIGINT NOT NULL,FILEENTRYTYPEID BIGINT NOT NULL,FOLDERID BIGINT NOT NULL,PRIMARY KEY(FILEENTRYTYPEID,FOLDERID)) -CREATE INDEX IX_2E64D9F9 ON PUBLIC.DLFILEENTRYTYPES_DLFOLDERS(COMPANYID) -CREATE INDEX IX_5BB6AD6C ON PUBLIC.DLFILEENTRYTYPES_DLFOLDERS(FILEENTRYTYPEID) -CREATE INDEX IX_6E00A2EC ON PUBLIC.DLFILEENTRYTYPES_DLFOLDERS(FOLDERID) -CREATE MEMORY TABLE PUBLIC.DLFILESHORTCUT(UUID_ VARCHAR(75),FILESHORTCUTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,REPOSITORYID BIGINT,FOLDERID BIGINT,TOFILEENTRYID BIGINT,TREEPATH VARCHAR(16777216),ACTIVE_ BIT(1),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_8571953E ON PUBLIC.DLFILESHORTCUT(COMPANYID,STATUS) -CREATE INDEX IX_17EE3098 ON PUBLIC.DLFILESHORTCUT(GROUPID,FOLDERID,ACTIVE_,STATUS) -CREATE INDEX IX_4B7247F6 ON PUBLIC.DLFILESHORTCUT(TOFILEENTRYID) -CREATE INDEX IX_29AE81C4 ON PUBLIC.DLFILESHORTCUT(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_FDB4A946 ON PUBLIC.DLFILESHORTCUT(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DLFILEVERSION(UUID_ VARCHAR(75),FILEVERSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,REPOSITORYID BIGINT,FOLDERID BIGINT,FILEENTRYID BIGINT,TREEPATH VARCHAR(16777216),FILENAME VARCHAR(255),EXTENSION VARCHAR(75),MIMETYPE VARCHAR(75),TITLE VARCHAR(255),DESCRIPTION VARCHAR(16777216),CHANGELOG VARCHAR(75),EXTRASETTINGS VARCHAR(16777216),FILEENTRYTYPEID BIGINT,VERSION VARCHAR(75),SIZE_ BIGINT,CHECKSUM VARCHAR(75),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_A0A283F4 ON PUBLIC.DLFILEVERSION(COMPANYID,STATUS) -CREATE INDEX IX_D47BB14D ON PUBLIC.DLFILEVERSION(FILEENTRYID,STATUS) -CREATE UNIQUE INDEX IX_E2815081 ON PUBLIC.DLFILEVERSION(FILEENTRYID,VERSION) -CREATE INDEX IX_DFD809D3 ON PUBLIC.DLFILEVERSION(GROUPID,FOLDERID,STATUS) -CREATE INDEX IX_9BE769ED ON PUBLIC.DLFILEVERSION(GROUPID,FOLDERID,TITLE,VERSION) -CREATE INDEX IX_FFB3395C ON PUBLIC.DLFILEVERSION(MIMETYPE) -CREATE INDEX IX_95E9E44E ON PUBLIC.DLFILEVERSION(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_C99B2650 ON PUBLIC.DLFILEVERSION(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DLFOLDER(UUID_ VARCHAR(75),FOLDERID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,REPOSITORYID BIGINT,MOUNTPOINT BIT(1),PARENTFOLDERID BIGINT,TREEPATH VARCHAR(16777216),NAME VARCHAR(255),DESCRIPTION VARCHAR(16777216),LASTPOSTDATE TIMESTAMP,DEFAULTFILEENTRYTYPEID BIGINT,HIDDEN_ BIT(1),RESTRICTIONTYPE INTEGER,LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_E79BE432 ON PUBLIC.DLFOLDER(COMPANYID,STATUS) -CREATE INDEX IX_C88430AB ON PUBLIC.DLFOLDER(GROUPID,MOUNTPOINT,PARENTFOLDERID,HIDDEN_,STATUS) -CREATE INDEX IX_CE360BF6 ON PUBLIC.DLFOLDER(GROUPID,PARENTFOLDERID,HIDDEN_,STATUS) -CREATE UNIQUE INDEX IX_902FD874 ON PUBLIC.DLFOLDER(GROUPID,PARENTFOLDERID,NAME) -CREATE INDEX IX_51556082 ON PUBLIC.DLFOLDER(PARENTFOLDERID,NAME) -CREATE INDEX IX_6F63F140 ON PUBLIC.DLFOLDER(REPOSITORYID,MOUNTPOINT) -CREATE INDEX IX_6747B2BC ON PUBLIC.DLFOLDER(REPOSITORYID,PARENTFOLDERID) -CREATE INDEX IX_DA448450 ON PUBLIC.DLFOLDER(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_3CC1DED2 ON PUBLIC.DLFOLDER(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.EMAILADDRESS(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),EMAILADDRESSID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,ADDRESS VARCHAR(254),TYPEID BIGINT,PRIMARY_ BIT(1)) -CREATE INDEX IX_2A2CB130 ON PUBLIC.EMAILADDRESS(COMPANYID,CLASSNAMEID,CLASSPK,PRIMARY_) -CREATE INDEX IX_7B43CD8 ON PUBLIC.EMAILADDRESS(USERID) -CREATE INDEX IX_F74AB912 ON PUBLIC.EMAILADDRESS(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.EXPANDOCOLUMN(COLUMNID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,TABLEID BIGINT,NAME VARCHAR(75),TYPE_ INTEGER,DEFAULTDATA VARCHAR(16777216),TYPESETTINGS VARCHAR(16777216)) -CREATE UNIQUE INDEX IX_FEFC8DA7 ON PUBLIC.EXPANDOCOLUMN(TABLEID,NAME) -CREATE MEMORY TABLE PUBLIC.EXPANDOROW(ROWID_ BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,MODIFIEDDATE TIMESTAMP,TABLEID BIGINT,CLASSPK BIGINT) -CREATE INDEX IX_49EB3118 ON PUBLIC.EXPANDOROW(CLASSPK) -CREATE UNIQUE INDEX IX_81EFBFF5 ON PUBLIC.EXPANDOROW(TABLEID,CLASSPK) -CREATE MEMORY TABLE PUBLIC.EXPANDOTABLE(TABLEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CLASSNAMEID BIGINT,NAME VARCHAR(75)) -CREATE UNIQUE INDEX IX_37562284 ON PUBLIC.EXPANDOTABLE(COMPANYID,CLASSNAMEID,NAME) -CREATE MEMORY TABLE PUBLIC.EXPANDOVALUE(VALUEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,TABLEID BIGINT,COLUMNID BIGINT,ROWID_ BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,DATA_ VARCHAR(16777216)) -CREATE INDEX IX_B29FEF17 ON PUBLIC.EXPANDOVALUE(CLASSNAMEID,CLASSPK) -CREATE UNIQUE INDEX IX_9DDD21E5 ON PUBLIC.EXPANDOVALUE(COLUMNID,ROWID_) -CREATE INDEX IX_9112A7A0 ON PUBLIC.EXPANDOVALUE(ROWID_) -CREATE INDEX IX_1BD3F4C ON PUBLIC.EXPANDOVALUE(TABLEID,CLASSPK) -CREATE UNIQUE INDEX IX_D27B03E7 ON PUBLIC.EXPANDOVALUE(TABLEID,COLUMNID,CLASSPK) -CREATE INDEX IX_B71E92D5 ON PUBLIC.EXPANDOVALUE(TABLEID,ROWID_) -CREATE MEMORY TABLE PUBLIC.EXPORTIMPORTCONFIGURATION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,EXPORTIMPORTCONFIGURATIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(200),DESCRIPTION VARCHAR(16777216),TYPE_ INTEGER,SETTINGS_ VARCHAR(16777216),STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_1827A2E5 ON PUBLIC.EXPORTIMPORTCONFIGURATION(COMPANYID) -CREATE INDEX IX_38FA468D ON PUBLIC.EXPORTIMPORTCONFIGURATION(GROUPID,STATUS) -CREATE INDEX IX_47CC6234 ON PUBLIC.EXPORTIMPORTCONFIGURATION(GROUPID,TYPE_,STATUS) -CREATE MEMORY TABLE PUBLIC.GROUP_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),GROUPID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CREATORUSERID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,PARENTGROUPID BIGINT,LIVEGROUPID BIGINT,TREEPATH VARCHAR(16777216),GROUPKEY VARCHAR(150),NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),TYPE_ INTEGER,TYPESETTINGS VARCHAR(16777216),MANUALMEMBERSHIP BIT(1),MEMBERSHIPRESTRICTION INTEGER,FRIENDLYURL VARCHAR(255),SITE BIT(1),REMOTESTAGINGGROUPCOUNT INTEGER,INHERITCONTENT BIT(1),ACTIVE_ BIT(1)) -CREATE INDEX IX_8257E37B ON PUBLIC.GROUP_(CLASSNAMEID,CLASSPK) -CREATE INDEX IX_BD3CB13A ON PUBLIC.GROUP_(CLASSNAMEID,GROUPID,COMPANYID,PARENTGROUPID) -CREATE INDEX IX_DDC91A87 ON PUBLIC.GROUP_(COMPANYID,ACTIVE_) -CREATE UNIQUE INDEX IX_D0D5E397 ON PUBLIC.GROUP_(COMPANYID,CLASSNAMEID,CLASSPK) -CREATE UNIQUE INDEX IX_A729E3A6 ON PUBLIC.GROUP_(COMPANYID,CLASSNAMEID,LIVEGROUPID,GROUPKEY) -CREATE INDEX IX_ABE2D54 ON PUBLIC.GROUP_(COMPANYID,CLASSNAMEID,PARENTGROUPID) -CREATE UNIQUE INDEX IX_5BDDB872 ON PUBLIC.GROUP_(COMPANYID,FRIENDLYURL) -CREATE UNIQUE INDEX IX_ACD2B296 ON PUBLIC.GROUP_(COMPANYID,GROUPKEY) -CREATE UNIQUE INDEX IX_AACD15F0 ON PUBLIC.GROUP_(COMPANYID,LIVEGROUPID,GROUPKEY) -CREATE INDEX IX_D4BFF38B ON PUBLIC.GROUP_(COMPANYID,PARENTGROUPID,SITE,INHERITCONTENT) -CREATE INDEX IX_B91488EC ON PUBLIC.GROUP_(COMPANYID,SITE,ACTIVE_) -CREATE INDEX IX_16218A38 ON PUBLIC.GROUP_(LIVEGROUPID) -CREATE INDEX IX_7B590A7A ON PUBLIC.GROUP_(TYPE_,ACTIVE_) -CREATE INDEX IX_26CC761A ON PUBLIC.GROUP_(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_754FBB1C ON PUBLIC.GROUP_(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.GROUPS_ORGS(COMPANYID BIGINT NOT NULL,GROUPID BIGINT NOT NULL,ORGANIZATIONID BIGINT NOT NULL,PRIMARY KEY(GROUPID,ORGANIZATIONID)) -CREATE INDEX IX_8BFD4548 ON PUBLIC.GROUPS_ORGS(COMPANYID) -CREATE INDEX IX_75267DCA ON PUBLIC.GROUPS_ORGS(GROUPID) -CREATE INDEX IX_6BBB7682 ON PUBLIC.GROUPS_ORGS(ORGANIZATIONID) -CREATE MEMORY TABLE PUBLIC.GROUPS_ROLES(COMPANYID BIGINT NOT NULL,GROUPID BIGINT NOT NULL,ROLEID BIGINT NOT NULL,PRIMARY KEY(GROUPID,ROLEID)) -CREATE INDEX IX_557D8550 ON PUBLIC.GROUPS_ROLES(COMPANYID) -CREATE INDEX IX_84471FD2 ON PUBLIC.GROUPS_ROLES(GROUPID) -CREATE INDEX IX_3103EF3D ON PUBLIC.GROUPS_ROLES(ROLEID) -CREATE MEMORY TABLE PUBLIC.GROUPS_USERGROUPS(COMPANYID BIGINT NOT NULL,GROUPID BIGINT NOT NULL,USERGROUPID BIGINT NOT NULL,PRIMARY KEY(GROUPID,USERGROUPID)) -CREATE INDEX IX_676FC818 ON PUBLIC.GROUPS_USERGROUPS(COMPANYID) -CREATE INDEX IX_31FB749A ON PUBLIC.GROUPS_USERGROUPS(GROUPID) -CREATE INDEX IX_3B69160F ON PUBLIC.GROUPS_USERGROUPS(USERGROUPID) -CREATE MEMORY TABLE PUBLIC.IMAGE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,IMAGEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,MODIFIEDDATE TIMESTAMP,TYPE_ VARCHAR(75),HEIGHT INTEGER,WIDTH INTEGER,SIZE_ INTEGER) -CREATE INDEX IX_6A925A4D ON PUBLIC.IMAGE(SIZE_) -CREATE MEMORY TABLE PUBLIC.LAYOUT(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),PLID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PRIVATELAYOUT BIT(1),LAYOUTID BIGINT,PARENTLAYOUTID BIGINT,NAME VARCHAR(16777216),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),KEYWORDS VARCHAR(16777216),ROBOTS VARCHAR(16777216),TYPE_ VARCHAR(75),TYPESETTINGS VARCHAR(16777216),HIDDEN_ BIT(1),FRIENDLYURL VARCHAR(255),ICONIMAGEID BIGINT,THEMEID VARCHAR(75),COLORSCHEMEID VARCHAR(75),CSS VARCHAR(16777216),PRIORITY INTEGER,LAYOUTPROTOTYPEUUID VARCHAR(75),LAYOUTPROTOTYPELINKENABLED BIT(1),SOURCEPROTOTYPELAYOUTUUID VARCHAR(75),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_881EABCB ON PUBLIC.LAYOUT(COMPANYID,LAYOUTPROTOTYPEUUID) -CREATE UNIQUE INDEX IX_BC2C4231 ON PUBLIC.LAYOUT(GROUPID,PRIVATELAYOUT,FRIENDLYURL) -CREATE UNIQUE INDEX IX_7162C27C ON PUBLIC.LAYOUT(GROUPID,PRIVATELAYOUT,LAYOUTID) -CREATE INDEX IX_7399B71E ON PUBLIC.LAYOUT(GROUPID,PRIVATELAYOUT,PARENTLAYOUTID,PRIORITY) -CREATE INDEX IX_8CE8C0D9 ON PUBLIC.LAYOUT(GROUPID,PRIVATELAYOUT,SOURCEPROTOTYPELAYOUTUUID) -CREATE INDEX IX_1A1B61D2 ON PUBLIC.LAYOUT(GROUPID,PRIVATELAYOUT,TYPE_) -CREATE INDEX IX_6EDC627B ON PUBLIC.LAYOUT(GROUPID,TYPE_) -CREATE INDEX IX_23922F7D ON PUBLIC.LAYOUT(ICONIMAGEID) -CREATE INDEX IX_B529BFD3 ON PUBLIC.LAYOUT(LAYOUTPROTOTYPEUUID) -CREATE INDEX IX_3BC009C0 ON PUBLIC.LAYOUT(PRIVATELAYOUT,ICONIMAGEID) -CREATE INDEX IX_39A18ECC ON PUBLIC.LAYOUT(SOURCEPROTOTYPELAYOUTUUID) -CREATE INDEX IX_2CE4BE84 ON PUBLIC.LAYOUT(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_E118C537 ON PUBLIC.LAYOUT(UUID_,GROUPID,PRIVATELAYOUT) -CREATE MEMORY TABLE PUBLIC.LAYOUTBRANCH(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,LAYOUTBRANCHID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),LAYOUTSETBRANCHID BIGINT,PLID BIGINT,NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),MASTER BIT(1)) -CREATE INDEX IX_A705FF94 ON PUBLIC.LAYOUTBRANCH(LAYOUTSETBRANCHID,PLID,MASTER) -CREATE UNIQUE INDEX IX_FD57097D ON PUBLIC.LAYOUTBRANCH(LAYOUTSETBRANCHID,PLID,NAME) -CREATE MEMORY TABLE PUBLIC.LAYOUTFRIENDLYURL(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),LAYOUTFRIENDLYURLID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PLID BIGINT,PRIVATELAYOUT BIT(1),FRIENDLYURL VARCHAR(255),LANGUAGEID VARCHAR(75),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_EAB317C8 ON PUBLIC.LAYOUTFRIENDLYURL(COMPANYID) -CREATE UNIQUE INDEX IX_A6FC2B28 ON PUBLIC.LAYOUTFRIENDLYURL(GROUPID,PRIVATELAYOUT,FRIENDLYURL,LANGUAGEID) -CREATE INDEX IX_59051329 ON PUBLIC.LAYOUTFRIENDLYURL(PLID,FRIENDLYURL) -CREATE UNIQUE INDEX IX_C5762E72 ON PUBLIC.LAYOUTFRIENDLYURL(PLID,LANGUAGEID) -CREATE INDEX IX_F4321A54 ON PUBLIC.LAYOUTFRIENDLYURL(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_326525D6 ON PUBLIC.LAYOUTFRIENDLYURL(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.LAYOUTPROTOTYPE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),LAYOUTPROTOTYPEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),SETTINGS_ VARCHAR(16777216),ACTIVE_ BIT(1)) -CREATE INDEX IX_557A639F ON PUBLIC.LAYOUTPROTOTYPE(COMPANYID,ACTIVE_) -CREATE INDEX IX_63ED2532 ON PUBLIC.LAYOUTPROTOTYPE(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.LAYOUTREVISION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,LAYOUTREVISIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,LAYOUTSETBRANCHID BIGINT,LAYOUTBRANCHID BIGINT,PARENTLAYOUTREVISIONID BIGINT,HEAD BIT(1),MAJOR BIT(1),PLID BIGINT,PRIVATELAYOUT BIT(1),NAME VARCHAR(16777216),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),KEYWORDS VARCHAR(16777216),ROBOTS VARCHAR(16777216),TYPESETTINGS VARCHAR(16777216),ICONIMAGEID BIGINT,THEMEID VARCHAR(75),COLORSCHEMEID VARCHAR(75),CSS VARCHAR(16777216),STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_43E8286A ON PUBLIC.LAYOUTREVISION(HEAD,PLID) -CREATE INDEX IX_E10AC39 ON PUBLIC.LAYOUTREVISION(LAYOUTSETBRANCHID,HEAD,PLID) -CREATE INDEX IX_9EC9F954 ON PUBLIC.LAYOUTREVISION(LAYOUTSETBRANCHID,HEAD,STATUS) -CREATE INDEX IX_38C5DF14 ON PUBLIC.LAYOUTREVISION(LAYOUTSETBRANCHID,LAYOUTBRANCHID,HEAD,PLID) -CREATE INDEX IX_13984800 ON PUBLIC.LAYOUTREVISION(LAYOUTSETBRANCHID,LAYOUTBRANCHID,PLID) -CREATE INDEX IX_4A84AF43 ON PUBLIC.LAYOUTREVISION(LAYOUTSETBRANCHID,PARENTLAYOUTREVISIONID,PLID) -CREATE INDEX IX_70DA9ECB ON PUBLIC.LAYOUTREVISION(LAYOUTSETBRANCHID,PLID,STATUS) -CREATE INDEX IX_7FFAE700 ON PUBLIC.LAYOUTREVISION(LAYOUTSETBRANCHID,STATUS) -CREATE INDEX IX_8EC3D2BC ON PUBLIC.LAYOUTREVISION(PLID,STATUS) -CREATE INDEX IX_421223B1 ON PUBLIC.LAYOUTREVISION(STATUS) -CREATE MEMORY TABLE PUBLIC.LAYOUTSET(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,LAYOUTSETID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PRIVATELAYOUT BIT(1),LOGOID BIGINT,THEMEID VARCHAR(75),COLORSCHEMEID VARCHAR(75),CSS VARCHAR(16777216),PAGECOUNT INTEGER,SETTINGS_ VARCHAR(16777216),LAYOUTSETPROTOTYPEUUID VARCHAR(75),LAYOUTSETPROTOTYPELINKENABLED BIT(1)) -CREATE UNIQUE INDEX IX_48550691 ON PUBLIC.LAYOUTSET(GROUPID,PRIVATELAYOUT) -CREATE INDEX IX_72BBA8B7 ON PUBLIC.LAYOUTSET(LAYOUTSETPROTOTYPEUUID) -CREATE INDEX IX_1B698D9 ON PUBLIC.LAYOUTSET(PRIVATELAYOUT,LOGOID) -CREATE MEMORY TABLE PUBLIC.LAYOUTSETBRANCH(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,LAYOUTSETBRANCHID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PRIVATELAYOUT BIT(1),NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),MASTER BIT(1),LOGOID BIGINT,THEMEID VARCHAR(75),COLORSCHEMEID VARCHAR(75),CSS VARCHAR(16777216),SETTINGS_ VARCHAR(16777216),LAYOUTSETPROTOTYPEUUID VARCHAR(75),LAYOUTSETPROTOTYPELINKENABLED BIT(1)) -CREATE INDEX IX_CCF0DA29 ON PUBLIC.LAYOUTSETBRANCH(GROUPID,PRIVATELAYOUT,MASTER) -CREATE UNIQUE INDEX IX_5FF18552 ON PUBLIC.LAYOUTSETBRANCH(GROUPID,PRIVATELAYOUT,NAME) -CREATE MEMORY TABLE PUBLIC.LAYOUTSETPROTOTYPE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),LAYOUTSETPROTOTYPEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),SETTINGS_ VARCHAR(16777216),ACTIVE_ BIT(1)) -CREATE INDEX IX_9178FC71 ON PUBLIC.LAYOUTSETPROTOTYPE(COMPANYID,ACTIVE_) -CREATE INDEX IX_D9FFCA84 ON PUBLIC.LAYOUTSETPROTOTYPE(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.LISTTYPE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,LISTTYPEID BIGINT NOT NULL PRIMARY KEY,NAME VARCHAR(75),TYPE_ VARCHAR(75)) -CREATE INDEX IX_77729718 ON PUBLIC.LISTTYPE(NAME,TYPE_) -CREATE INDEX IX_2932DD37 ON PUBLIC.LISTTYPE(TYPE_) -CREATE MEMORY TABLE PUBLIC.MEMBERSHIPREQUEST(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,MEMBERSHIPREQUESTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,CREATEDATE TIMESTAMP,COMMENTS VARCHAR(16777216),REPLYCOMMENTS VARCHAR(16777216),REPLYDATE TIMESTAMP,REPLIERUSERID BIGINT,STATUSID BIGINT) -CREATE INDEX IX_C28C72EC ON PUBLIC.MEMBERSHIPREQUEST(GROUPID,STATUSID) -CREATE INDEX IX_35AA8FA6 ON PUBLIC.MEMBERSHIPREQUEST(GROUPID,USERID,STATUSID) -CREATE INDEX IX_66D70879 ON PUBLIC.MEMBERSHIPREQUEST(USERID) -CREATE MEMORY TABLE PUBLIC.ORGANIZATION_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),EXTERNALREFERENCECODE VARCHAR(75),ORGANIZATIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PARENTORGANIZATIONID BIGINT,TREEPATH VARCHAR(16777216),NAME VARCHAR(100),TYPE_ VARCHAR(75),RECURSABLE BIT(1),REGIONID BIGINT,COUNTRYID BIGINT,STATUSID BIGINT,COMMENTS VARCHAR(16777216),LOGOID BIGINT) -CREATE INDEX IX_6B83F1C7 ON PUBLIC.ORGANIZATION_(COMPANYID,EXTERNALREFERENCECODE) -CREATE UNIQUE INDEX IX_E301BDF5 ON PUBLIC.ORGANIZATION_(COMPANYID,NAME) -CREATE INDEX IX_D834B361 ON PUBLIC.ORGANIZATION_(COMPANYID,PARENTORGANIZATIONID,NAME) -CREATE INDEX IX_A9D85BA6 ON PUBLIC.ORGANIZATION_(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.ORGGROUPROLE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,ORGANIZATIONID BIGINT NOT NULL,GROUPID BIGINT NOT NULL,ROLEID BIGINT NOT NULL,COMPANYID BIGINT,PRIMARY KEY(ORGANIZATIONID,GROUPID,ROLEID)) -CREATE INDEX IX_4A527DD3 ON PUBLIC.ORGGROUPROLE(GROUPID) -CREATE INDEX IX_AB044D1C ON PUBLIC.ORGGROUPROLE(ROLEID) -CREATE MEMORY TABLE PUBLIC.ORGLABOR(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,ORGLABORID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,ORGANIZATIONID BIGINT,TYPEID BIGINT,SUNOPEN INTEGER,SUNCLOSE INTEGER,MONOPEN INTEGER,MONCLOSE INTEGER,TUEOPEN INTEGER,TUECLOSE INTEGER,WEDOPEN INTEGER,WEDCLOSE INTEGER,THUOPEN INTEGER,THUCLOSE INTEGER,FRIOPEN INTEGER,FRICLOSE INTEGER,SATOPEN INTEGER,SATCLOSE INTEGER) -CREATE INDEX IX_6AF0D434 ON PUBLIC.ORGLABOR(ORGANIZATIONID) -CREATE MEMORY TABLE PUBLIC.PASSWORDPOLICY(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),PASSWORDPOLICYID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,DEFAULTPOLICY BIT(1),NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),CHANGEABLE BIT(1),CHANGEREQUIRED BIT(1),MINAGE BIGINT,CHECKSYNTAX BIT(1),ALLOWDICTIONARYWORDS BIT(1),MINALPHANUMERIC INTEGER,MINLENGTH INTEGER,MINLOWERCASE INTEGER,MINNUMBERS INTEGER,MINSYMBOLS INTEGER,MINUPPERCASE INTEGER,REGEX VARCHAR(16777216),HISTORY BIT(1),HISTORYCOUNT INTEGER,EXPIREABLE BIT(1),MAXAGE BIGINT,WARNINGTIME BIGINT,GRACELIMIT INTEGER,LOCKOUT BIT(1),MAXFAILURE INTEGER,LOCKOUTDURATION BIGINT,REQUIREUNLOCK BIT(1),RESETFAILURECOUNT BIGINT,RESETTICKETMAXAGE BIGINT) -CREATE INDEX IX_2C1142E ON PUBLIC.PASSWORDPOLICY(COMPANYID,DEFAULTPOLICY) -CREATE UNIQUE INDEX IX_3FBFA9F4 ON PUBLIC.PASSWORDPOLICY(COMPANYID,NAME) -CREATE INDEX IX_E4D7EF87 ON PUBLIC.PASSWORDPOLICY(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.PASSWORDPOLICYREL(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,PASSWORDPOLICYRELID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,PASSWORDPOLICYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT) -CREATE UNIQUE INDEX IX_C3A17327 ON PUBLIC.PASSWORDPOLICYREL(CLASSNAMEID,CLASSPK) -CREATE INDEX IX_CD25266E ON PUBLIC.PASSWORDPOLICYREL(PASSWORDPOLICYID) -CREATE MEMORY TABLE PUBLIC.PASSWORDTRACKER(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,PASSWORDTRACKERID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,CREATEDATE TIMESTAMP,PASSWORD_ VARCHAR(75)) -CREATE INDEX IX_326F75BD ON PUBLIC.PASSWORDTRACKER(USERID) -CREATE MEMORY TABLE PUBLIC.PHONE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),PHONEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,NUMBER_ VARCHAR(75),EXTENSION VARCHAR(75),TYPEID BIGINT,PRIMARY_ BIT(1)) -CREATE INDEX IX_812CE07A ON PUBLIC.PHONE(COMPANYID,CLASSNAMEID,CLASSPK,PRIMARY_) -CREATE INDEX IX_F202B9CE ON PUBLIC.PHONE(USERID) -CREATE INDEX IX_B271FA88 ON PUBLIC.PHONE(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.PLUGINSETTING(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,PLUGINSETTINGID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,PLUGINID VARCHAR(75),PLUGINTYPE VARCHAR(75),ROLES VARCHAR(16777216),ACTIVE_ BIT(1)) -CREATE UNIQUE INDEX IX_7171B2E8 ON PUBLIC.PLUGINSETTING(COMPANYID,PLUGINID,PLUGINTYPE) -CREATE MEMORY TABLE PUBLIC.PORTALPREFERENCES(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,PORTALPREFERENCESID BIGINT NOT NULL PRIMARY KEY,OWNERID BIGINT,OWNERTYPE INTEGER,PREFERENCES VARCHAR(16777216)) -CREATE INDEX IX_D1F795F1 ON PUBLIC.PORTALPREFERENCES(OWNERID,OWNERTYPE) -CREATE MEMORY TABLE PUBLIC.PORTLET(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,ID_ BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,PORTLETID VARCHAR(200),ROLES VARCHAR(16777216),ACTIVE_ BIT(1)) -CREATE UNIQUE INDEX IX_12B5E51D ON PUBLIC.PORTLET(COMPANYID,PORTLETID) -CREATE MEMORY TABLE PUBLIC.PORTLETITEM(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,PORTLETITEMID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(75),PORTLETID VARCHAR(200),CLASSNAMEID BIGINT) -CREATE INDEX IX_96BDD537 ON PUBLIC.PORTLETITEM(GROUPID,CLASSNAMEID) -CREATE INDEX IX_D699243F ON PUBLIC.PORTLETITEM(GROUPID,NAME,PORTLETID,CLASSNAMEID) -CREATE INDEX IX_E922D6C0 ON PUBLIC.PORTLETITEM(GROUPID,PORTLETID,CLASSNAMEID) -CREATE MEMORY TABLE PUBLIC.PORTLETPREFERENCES(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,PORTLETPREFERENCESID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,OWNERID BIGINT,OWNERTYPE INTEGER,PLID BIGINT,PORTLETID VARCHAR(200),PREFERENCES VARCHAR(16777216)) -CREATE INDEX IX_60C49142 ON PUBLIC.PORTLETPREFERENCES(COMPANYID,OWNERID,OWNERTYPE,PORTLETID) -CREATE UNIQUE INDEX IX_C7057FF7 ON PUBLIC.PORTLETPREFERENCES(OWNERID,OWNERTYPE,PLID,PORTLETID) -CREATE INDEX IX_C9A3FCE2 ON PUBLIC.PORTLETPREFERENCES(OWNERID,OWNERTYPE,PORTLETID) -CREATE INDEX IX_D5EDA3A1 ON PUBLIC.PORTLETPREFERENCES(OWNERTYPE,PLID,PORTLETID) -CREATE INDEX IX_A3B2A80C ON PUBLIC.PORTLETPREFERENCES(OWNERTYPE,PORTLETID) -CREATE INDEX IX_D340DB76 ON PUBLIC.PORTLETPREFERENCES(PLID,PORTLETID) -CREATE INDEX IX_8E6DA3A1 ON PUBLIC.PORTLETPREFERENCES(PORTLETID) -CREATE MEMORY TABLE PUBLIC.RATINGSENTRY(UUID_ VARCHAR(75),ENTRYID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,SCORE DOUBLE) -CREATE INDEX IX_A1A8CB8B ON PUBLIC.RATINGSENTRY(CLASSNAMEID,CLASSPK,SCORE) -CREATE UNIQUE INDEX IX_B47E3C11 ON PUBLIC.RATINGSENTRY(USERID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_9F242DF6 ON PUBLIC.RATINGSENTRY(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.RATINGSSTATS(STATSID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,TOTALENTRIES INTEGER,TOTALSCORE DOUBLE,AVERAGESCORE DOUBLE) -CREATE UNIQUE INDEX IX_A6E99284 ON PUBLIC.RATINGSSTATS(CLASSNAMEID,CLASSPK) -CREATE MEMORY TABLE PUBLIC.RECENTLAYOUTBRANCH(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RECENTLAYOUTBRANCHID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,LAYOUTBRANCHID BIGINT,LAYOUTSETBRANCHID BIGINT,PLID BIGINT) -CREATE INDEX IX_B91F79BD ON PUBLIC.RECENTLAYOUTBRANCH(GROUPID) -CREATE INDEX IX_351E86E8 ON PUBLIC.RECENTLAYOUTBRANCH(LAYOUTBRANCHID) -CREATE UNIQUE INDEX IX_C27D6369 ON PUBLIC.RECENTLAYOUTBRANCH(USERID,LAYOUTSETBRANCHID,PLID) -CREATE MEMORY TABLE PUBLIC.RECENTLAYOUTREVISION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RECENTLAYOUTREVISIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,LAYOUTREVISIONID BIGINT,LAYOUTSETBRANCHID BIGINT,PLID BIGINT) -CREATE INDEX IX_8D8A2724 ON PUBLIC.RECENTLAYOUTREVISION(GROUPID) -CREATE INDEX IX_DA0788DA ON PUBLIC.RECENTLAYOUTREVISION(LAYOUTREVISIONID) -CREATE UNIQUE INDEX IX_4C600BD0 ON PUBLIC.RECENTLAYOUTREVISION(USERID,LAYOUTSETBRANCHID,PLID) -CREATE MEMORY TABLE PUBLIC.RECENTLAYOUTSETBRANCH(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RECENTLAYOUTSETBRANCHID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,LAYOUTSETBRANCHID BIGINT,LAYOUTSETID BIGINT) -CREATE INDEX IX_711995A5 ON PUBLIC.RECENTLAYOUTSETBRANCH(GROUPID) -CREATE INDEX IX_23FF0700 ON PUBLIC.RECENTLAYOUTSETBRANCH(LAYOUTSETBRANCHID) -CREATE UNIQUE INDEX IX_4654D204 ON PUBLIC.RECENTLAYOUTSETBRANCH(USERID,LAYOUTSETID) -CREATE MEMORY TABLE PUBLIC.REGION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,REGIONID BIGINT NOT NULL PRIMARY KEY,COUNTRYID BIGINT,REGIONCODE VARCHAR(75),NAME VARCHAR(75),ACTIVE_ BIT(1)) -CREATE INDEX IX_2D9A426F ON PUBLIC.REGION(ACTIVE_) -CREATE INDEX IX_11FB3E42 ON PUBLIC.REGION(COUNTRYID,ACTIVE_) -CREATE UNIQUE INDEX IX_A2635F5C ON PUBLIC.REGION(COUNTRYID,REGIONCODE) -CREATE MEMORY TABLE PUBLIC.RELEASE_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RELEASEID BIGINT NOT NULL PRIMARY KEY,CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,SERVLETCONTEXTNAME VARCHAR(75),SCHEMAVERSION VARCHAR(75),BUILDNUMBER INTEGER,BUILDDATE TIMESTAMP,VERIFIED BIT(1),STATE_ INTEGER,TESTSTRING VARCHAR(1024)) -CREATE UNIQUE INDEX IX_8BD6BCA7 ON PUBLIC.RELEASE_(SERVLETCONTEXTNAME) -CREATE MEMORY TABLE PUBLIC.REPOSITORY(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),REPOSITORYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,NAME VARCHAR(200),DESCRIPTION VARCHAR(16777216),PORTLETID VARCHAR(200),TYPESETTINGS VARCHAR(16777216),DLFOLDERID BIGINT,LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_60C8634C ON PUBLIC.REPOSITORY(GROUPID,NAME,PORTLETID) -CREATE INDEX IX_F543EA4 ON PUBLIC.REPOSITORY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_11641E26 ON PUBLIC.REPOSITORY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.REPOSITORYENTRY(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),REPOSITORYENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,REPOSITORYID BIGINT,MAPPEDID VARCHAR(255),MANUALCHECKINREQUIRED BIT(1),LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_9BDCF489 ON PUBLIC.REPOSITORYENTRY(REPOSITORYID,MAPPEDID) -CREATE INDEX IX_D3B9AF62 ON PUBLIC.REPOSITORYENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_354AA664 ON PUBLIC.REPOSITORYENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.RESOURCEACTION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RESOURCEACTIONID BIGINT NOT NULL PRIMARY KEY,NAME VARCHAR(255),ACTIONID VARCHAR(75),BITWISEVALUE BIGINT) -CREATE UNIQUE INDEX IX_EDB9986E ON PUBLIC.RESOURCEACTION(NAME,ACTIONID) -CREATE MEMORY TABLE PUBLIC.RESOURCEBLOCK(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RESOURCEBLOCKID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,GROUPID BIGINT,NAME VARCHAR(75),PERMISSIONSHASH VARCHAR(75),REFERENCECOUNT BIGINT) -CREATE UNIQUE INDEX IX_AEEA209C ON PUBLIC.RESOURCEBLOCK(COMPANYID,GROUPID,NAME,PERMISSIONSHASH) -CREATE INDEX IX_2D4CC782 ON PUBLIC.RESOURCEBLOCK(COMPANYID,NAME) -CREATE MEMORY TABLE PUBLIC.RESOURCEBLOCKPERMISSION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RESOURCEBLOCKPERMISSIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,RESOURCEBLOCKID BIGINT,ROLEID BIGINT,ACTIONIDS BIGINT) -CREATE UNIQUE INDEX IX_D63D20BB ON PUBLIC.RESOURCEBLOCKPERMISSION(RESOURCEBLOCKID,ROLEID) -CREATE INDEX IX_20A2E3D9 ON PUBLIC.RESOURCEBLOCKPERMISSION(ROLEID) -CREATE MEMORY TABLE PUBLIC.RESOURCEPERMISSION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RESOURCEPERMISSIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,NAME VARCHAR(255),SCOPE INTEGER,PRIMKEY VARCHAR(255),PRIMKEYID BIGINT,ROLEID BIGINT,OWNERID BIGINT,ACTIONIDS BIGINT,VIEWACTIONID BIT(1)) -CREATE UNIQUE INDEX IX_8D83D0CE ON PUBLIC.RESOURCEPERMISSION(COMPANYID,NAME,SCOPE,PRIMKEY,ROLEID) -CREATE INDEX IX_49AEC6F3 ON PUBLIC.RESOURCEPERMISSION(COMPANYID,NAME,SCOPE,PRIMKEYID,ROLEID,VIEWACTIONID) -CREATE INDEX IX_FD06D7C5 ON PUBLIC.RESOURCEPERMISSION(COMPANYID,NAME,SCOPE,ROLEID) -CREATE INDEX IX_26284944 ON PUBLIC.RESOURCEPERMISSION(COMPANYID,PRIMKEY) -CREATE INDEX IX_F6BAE86A ON PUBLIC.RESOURCEPERMISSION(COMPANYID,SCOPE,PRIMKEY) -CREATE INDEX IX_D5F1E2A2 ON PUBLIC.RESOURCEPERMISSION(NAME) -CREATE INDEX IX_A37A0588 ON PUBLIC.RESOURCEPERMISSION(ROLEID) -CREATE INDEX IX_F4555981 ON PUBLIC.RESOURCEPERMISSION(SCOPE) -CREATE MEMORY TABLE PUBLIC.RESOURCETYPEPERMISSION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,RESOURCETYPEPERMISSIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,GROUPID BIGINT,NAME VARCHAR(75),ROLEID BIGINT,ACTIONIDS BIGINT) -CREATE UNIQUE INDEX IX_BA497163 ON PUBLIC.RESOURCETYPEPERMISSION(COMPANYID,GROUPID,NAME,ROLEID) -CREATE INDEX IX_7D81F66F ON PUBLIC.RESOURCETYPEPERMISSION(COMPANYID,NAME,ROLEID) -CREATE INDEX IX_A82690E2 ON PUBLIC.RESOURCETYPEPERMISSION(ROLEID) -CREATE MEMORY TABLE PUBLIC.ROLE_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),ROLEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,NAME VARCHAR(75),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),TYPE_ INTEGER,SUBTYPE VARCHAR(75)) -CREATE UNIQUE INDEX IX_A88E424E ON PUBLIC.ROLE_(COMPANYID,CLASSNAMEID,CLASSPK) -CREATE UNIQUE INDEX IX_EBC931B8 ON PUBLIC.ROLE_(COMPANYID,NAME) -CREATE INDEX IX_F3E1C6FC ON PUBLIC.ROLE_(COMPANYID,TYPE_) -CREATE INDEX IX_F436EC8E ON PUBLIC.ROLE_(NAME) -CREATE INDEX IX_5EB4E2FB ON PUBLIC.ROLE_(SUBTYPE) -CREATE INDEX IX_CBE204 ON PUBLIC.ROLE_(TYPE_,SUBTYPE) -CREATE INDEX IX_B9FF6043 ON PUBLIC.ROLE_(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.SERVICECOMPONENT(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,SERVICECOMPONENTID BIGINT NOT NULL PRIMARY KEY,BUILDNAMESPACE VARCHAR(75),BUILDNUMBER BIGINT,BUILDDATE BIGINT,DATA_ VARCHAR(16777216)) -CREATE UNIQUE INDEX IX_4F0315B8 ON PUBLIC.SERVICECOMPONENT(BUILDNAMESPACE,BUILDNUMBER) -CREATE MEMORY TABLE PUBLIC.SOCIALACTIVITY(ACTIVITYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,CREATEDATE BIGINT,ACTIVITYSETID BIGINT,MIRRORACTIVITYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,PARENTCLASSNAMEID BIGINT,PARENTCLASSPK BIGINT,TYPE_ INTEGER,EXTRADATA VARCHAR(16777216),RECEIVERUSERID BIGINT) -CREATE INDEX IX_F542E9BC ON PUBLIC.SOCIALACTIVITY(ACTIVITYSETID) -CREATE INDEX IX_D0E9029E ON PUBLIC.SOCIALACTIVITY(CLASSNAMEID,CLASSPK,TYPE_) -CREATE INDEX IX_64B1BC66 ON PUBLIC.SOCIALACTIVITY(COMPANYID) -CREATE INDEX IX_FB604DC7 ON PUBLIC.SOCIALACTIVITY(GROUPID,USERID,CLASSNAMEID,CLASSPK,TYPE_,RECEIVERUSERID) -CREATE UNIQUE INDEX IX_8F32DEC9 ON PUBLIC.SOCIALACTIVITY(GROUPID,USERID,CREATEDATE,CLASSNAMEID,CLASSPK,TYPE_,RECEIVERUSERID) -CREATE INDEX IX_1F00C374 ON PUBLIC.SOCIALACTIVITY(MIRRORACTIVITYID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_121CA3CB ON PUBLIC.SOCIALACTIVITY(RECEIVERUSERID) -CREATE INDEX IX_3504B8BC ON PUBLIC.SOCIALACTIVITY(USERID) -CREATE MEMORY TABLE PUBLIC.SOCIALACTIVITYACHIEVEMENT(ACTIVITYACHIEVEMENTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,CREATEDATE BIGINT,NAME VARCHAR(75),FIRSTINGROUP BIT(1)) -CREATE INDEX IX_83E16F2F ON PUBLIC.SOCIALACTIVITYACHIEVEMENT(GROUPID,FIRSTINGROUP) -CREATE INDEX IX_8F6408F0 ON PUBLIC.SOCIALACTIVITYACHIEVEMENT(GROUPID,NAME) -CREATE INDEX IX_AABC18E9 ON PUBLIC.SOCIALACTIVITYACHIEVEMENT(GROUPID,USERID,FIRSTINGROUP) -CREATE UNIQUE INDEX IX_D4390CAA ON PUBLIC.SOCIALACTIVITYACHIEVEMENT(GROUPID,USERID,NAME) -CREATE MEMORY TABLE PUBLIC.SOCIALACTIVITYCOUNTER(ACTIVITYCOUNTERID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,NAME VARCHAR(75),OWNERTYPE INTEGER,CURRENTVALUE INTEGER,TOTALVALUE INTEGER,GRACEVALUE INTEGER,STARTPERIOD INTEGER,ENDPERIOD INTEGER,ACTIVE_ BIT(1)) -CREATE INDEX IX_A4B9A23B ON PUBLIC.SOCIALACTIVITYCOUNTER(CLASSNAMEID,CLASSPK) -CREATE UNIQUE INDEX IX_1B7E3B67 ON PUBLIC.SOCIALACTIVITYCOUNTER(GROUPID,CLASSNAMEID,CLASSPK,NAME,OWNERTYPE,ENDPERIOD) -CREATE UNIQUE INDEX IX_374B35AE ON PUBLIC.SOCIALACTIVITYCOUNTER(GROUPID,CLASSNAMEID,CLASSPK,NAME,OWNERTYPE,STARTPERIOD) -CREATE INDEX IX_926CDD04 ON PUBLIC.SOCIALACTIVITYCOUNTER(GROUPID,CLASSNAMEID,CLASSPK,OWNERTYPE) -CREATE MEMORY TABLE PUBLIC.SOCIALACTIVITYLIMIT(ACTIVITYLIMITID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,ACTIVITYTYPE INTEGER,ACTIVITYCOUNTERNAME VARCHAR(75),VALUE VARCHAR(75)) -CREATE INDEX IX_B15863FA ON PUBLIC.SOCIALACTIVITYLIMIT(CLASSNAMEID,CLASSPK) -CREATE UNIQUE INDEX IX_F1C1A617 ON PUBLIC.SOCIALACTIVITYLIMIT(GROUPID,USERID,CLASSNAMEID,CLASSPK,ACTIVITYTYPE,ACTIVITYCOUNTERNAME) -CREATE INDEX IX_6F9EDE9F ON PUBLIC.SOCIALACTIVITYLIMIT(USERID) -CREATE MEMORY TABLE PUBLIC.SOCIALACTIVITYSET(ACTIVITYSETID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,CREATEDATE BIGINT,MODIFIEDDATE BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,TYPE_ INTEGER,EXTRADATA VARCHAR(16777216),ACTIVITYCOUNT INTEGER) -CREATE INDEX IX_4460FA14 ON PUBLIC.SOCIALACTIVITYSET(CLASSNAMEID,CLASSPK,TYPE_) -CREATE INDEX IX_9BE30DDF ON PUBLIC.SOCIALACTIVITYSET(GROUPID,USERID,CLASSNAMEID,TYPE_) -CREATE INDEX IX_F71071BD ON PUBLIC.SOCIALACTIVITYSET(GROUPID,USERID,TYPE_) -CREATE INDEX IX_62AC101A ON PUBLIC.SOCIALACTIVITYSET(USERID,CLASSNAMEID,CLASSPK,TYPE_) -CREATE MEMORY TABLE PUBLIC.SOCIALACTIVITYSETTING(ACTIVITYSETTINGID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,CLASSNAMEID BIGINT,ACTIVITYTYPE INTEGER,NAME VARCHAR(75),VALUE VARCHAR(1024)) -CREATE INDEX IX_384788CD ON PUBLIC.SOCIALACTIVITYSETTING(GROUPID,ACTIVITYTYPE) -CREATE INDEX IX_D984AABA ON PUBLIC.SOCIALACTIVITYSETTING(GROUPID,CLASSNAMEID,ACTIVITYTYPE,NAME) -CREATE MEMORY TABLE PUBLIC.SOCIALRELATION(UUID_ VARCHAR(75),RELATIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CREATEDATE BIGINT,USERID1 BIGINT,USERID2 BIGINT,TYPE_ INTEGER) -CREATE INDEX IX_95135D1C ON PUBLIC.SOCIALRELATION(COMPANYID,TYPE_) -CREATE INDEX IX_C31A64C6 ON PUBLIC.SOCIALRELATION(TYPE_) -CREATE INDEX IX_4B52BE89 ON PUBLIC.SOCIALRELATION(USERID1,TYPE_) -CREATE UNIQUE INDEX IX_12A92145 ON PUBLIC.SOCIALRELATION(USERID1,USERID2,TYPE_) -CREATE INDEX IX_3F9C2FA8 ON PUBLIC.SOCIALRELATION(USERID2,TYPE_) -CREATE INDEX IX_5B30F663 ON PUBLIC.SOCIALRELATION(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.SOCIALREQUEST(UUID_ VARCHAR(75),REQUESTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,CREATEDATE BIGINT,MODIFIEDDATE BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,TYPE_ INTEGER,EXTRADATA VARCHAR(16777216),RECEIVERUSERID BIGINT,STATUS INTEGER) -CREATE INDEX IX_D3425487 ON PUBLIC.SOCIALREQUEST(CLASSNAMEID,CLASSPK,TYPE_,RECEIVERUSERID,STATUS) -CREATE INDEX IX_A90FE5A0 ON PUBLIC.SOCIALREQUEST(COMPANYID) -CREATE INDEX IX_D9380CB7 ON PUBLIC.SOCIALREQUEST(RECEIVERUSERID,STATUS) -CREATE UNIQUE INDEX IX_36A90CA7 ON PUBLIC.SOCIALREQUEST(USERID,CLASSNAMEID,CLASSPK,TYPE_,RECEIVERUSERID) -CREATE INDEX IX_CC86A444 ON PUBLIC.SOCIALREQUEST(USERID,CLASSNAMEID,CLASSPK,TYPE_,STATUS) -CREATE INDEX IX_AB5906A8 ON PUBLIC.SOCIALREQUEST(USERID,STATUS) -CREATE INDEX IX_8D42897C ON PUBLIC.SOCIALREQUEST(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_4F973EFE ON PUBLIC.SOCIALREQUEST(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.SYSTEMEVENT(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,SYSTEMEVENTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,CLASSUUID VARCHAR(75),REFERRERCLASSNAMEID BIGINT,PARENTSYSTEMEVENTID BIGINT,SYSTEMEVENTSETKEY BIGINT,TYPE_ INTEGER,EXTRADATA VARCHAR(16777216)) -CREATE INDEX IX_FFCBB747 ON PUBLIC.SYSTEMEVENT(GROUPID,CLASSNAMEID,CLASSPK,TYPE_) -CREATE INDEX IX_A19C89FF ON PUBLIC.SYSTEMEVENT(GROUPID,SYSTEMEVENTSETKEY) -CREATE MEMORY TABLE PUBLIC.TEAM(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),TEAMID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,GROUPID BIGINT,NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_143DC786 ON PUBLIC.TEAM(GROUPID,NAME) -CREATE INDEX IX_5D47F637 ON PUBLIC.TEAM(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_39F69E79 ON PUBLIC.TEAM(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.TICKET(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,TICKETID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CREATEDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,KEY_ VARCHAR(75),TYPE_ INTEGER,EXTRAINFO VARCHAR(16777216),EXPIRATIONDATE TIMESTAMP) -CREATE INDEX IX_1E8DFB2E ON PUBLIC.TICKET(CLASSNAMEID,CLASSPK,TYPE_) -CREATE INDEX IX_8BACD0AA ON PUBLIC.TICKET(COMPANYID,CLASSNAMEID,CLASSPK,TYPE_) -CREATE INDEX IX_B2468446 ON PUBLIC.TICKET(KEY_) -CREATE MEMORY TABLE PUBLIC.USERNOTIFICATIONDELIVERY(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,USERNOTIFICATIONDELIVERYID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,PORTLETID VARCHAR(200),CLASSNAMEID BIGINT,NOTIFICATIONTYPE INTEGER,DELIVERYTYPE INTEGER,DELIVER BIT(1)) -CREATE UNIQUE INDEX IX_8B6E3ACE ON PUBLIC.USERNOTIFICATIONDELIVERY(USERID,PORTLETID,CLASSNAMEID,NOTIFICATIONTYPE,DELIVERYTYPE) -CREATE MEMORY TABLE PUBLIC.USER_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),EXTERNALREFERENCECODE VARCHAR(75),USERID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,DEFAULTUSER BIT(1),CONTACTID BIGINT,PASSWORD_ VARCHAR(75),PASSWORDENCRYPTED BIT(1),PASSWORDRESET BIT(1),PASSWORDMODIFIEDDATE TIMESTAMP,DIGEST VARCHAR(255),REMINDERQUERYQUESTION VARCHAR(75),REMINDERQUERYANSWER VARCHAR(75),GRACELOGINCOUNT INTEGER,SCREENNAME VARCHAR(75),EMAILADDRESS VARCHAR(254),FACEBOOKID BIGINT,GOOGLEUSERID VARCHAR(75),LDAPSERVERID BIGINT,OPENID VARCHAR(1024),PORTRAITID BIGINT,LANGUAGEID VARCHAR(75),TIMEZONEID VARCHAR(75),GREETING VARCHAR(255),COMMENTS VARCHAR(16777216),FIRSTNAME VARCHAR(75),MIDDLENAME VARCHAR(75),LASTNAME VARCHAR(75),JOBTITLE VARCHAR(100),LOGINDATE TIMESTAMP,LOGINIP VARCHAR(75),LASTLOGINDATE TIMESTAMP,LASTLOGINIP VARCHAR(75),LASTFAILEDLOGINDATE TIMESTAMP,FAILEDLOGINATTEMPTS INTEGER,LOCKOUT BIT(1),LOCKOUTDATE TIMESTAMP,AGREEDTOTERMSOFUSE BIT(1),EMAILADDRESSVERIFIED BIT(1),STATUS INTEGER) -CREATE INDEX IX_BCFDA257 ON PUBLIC.USER_(COMPANYID,CREATEDATE,MODIFIEDDATE) -CREATE INDEX IX_C6EA4F34 ON PUBLIC.USER_(COMPANYID,DEFAULTUSER,STATUS) -CREATE UNIQUE INDEX IX_615E9F7A ON PUBLIC.USER_(COMPANYID,EMAILADDRESS) -CREATE INDEX IX_E1D3922F ON PUBLIC.USER_(COMPANYID,EXTERNALREFERENCECODE) -CREATE INDEX IX_1D731F03 ON PUBLIC.USER_(COMPANYID,FACEBOOKID) -CREATE INDEX IX_B6E3AE1 ON PUBLIC.USER_(COMPANYID,GOOGLEUSERID) -CREATE INDEX IX_EE8ABD19 ON PUBLIC.USER_(COMPANYID,MODIFIEDDATE) -CREATE INDEX IX_89509087 ON PUBLIC.USER_(COMPANYID,OPENID) -CREATE UNIQUE INDEX IX_C5806019 ON PUBLIC.USER_(COMPANYID,SCREENNAME) -CREATE INDEX IX_F6039434 ON PUBLIC.USER_(COMPANYID,STATUS) -CREATE UNIQUE INDEX IX_9782AD88 ON PUBLIC.USER_(COMPANYID,USERID) -CREATE UNIQUE INDEX IX_5ADBE171 ON PUBLIC.USER_(CONTACTID) -CREATE INDEX IX_762F63C6 ON PUBLIC.USER_(EMAILADDRESS) -CREATE INDEX IX_A18034A4 ON PUBLIC.USER_(PORTRAITID) -CREATE INDEX IX_68931CD4 ON PUBLIC.USER_(USERID,COMPANYID) -CREATE INDEX IX_405CC0E ON PUBLIC.USER_(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.USERGROUP(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),EXTERNALREFERENCECODE VARCHAR(75),USERGROUPID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PARENTUSERGROUPID BIGINT,NAME VARCHAR(255),DESCRIPTION VARCHAR(16777216),ADDEDBYLDAPIMPORT BIT(1)) -CREATE INDEX IX_CB9015AF ON PUBLIC.USERGROUP(COMPANYID,EXTERNALREFERENCECODE) -CREATE UNIQUE INDEX IX_23EAD0D ON PUBLIC.USERGROUP(COMPANYID,NAME) -CREATE INDEX IX_69771487 ON PUBLIC.USERGROUP(COMPANYID,PARENTUSERGROUPID) -CREATE INDEX IX_72394F8E ON PUBLIC.USERGROUP(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.USERGROUPGROUPROLE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,USERGROUPID BIGINT NOT NULL,GROUPID BIGINT NOT NULL,ROLEID BIGINT NOT NULL,COMPANYID BIGINT,PRIMARY KEY(USERGROUPID,GROUPID,ROLEID)) -CREATE INDEX IX_CAB0CCC8 ON PUBLIC.USERGROUPGROUPROLE(GROUPID,ROLEID) -CREATE INDEX IX_1CDF88C ON PUBLIC.USERGROUPGROUPROLE(ROLEID) -CREATE INDEX IX_73C52252 ON PUBLIC.USERGROUPGROUPROLE(USERGROUPID,GROUPID) -CREATE MEMORY TABLE PUBLIC.USERGROUPROLE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,USERID BIGINT NOT NULL,GROUPID BIGINT NOT NULL,ROLEID BIGINT NOT NULL,COMPANYID BIGINT,PRIMARY KEY(USERID,GROUPID,ROLEID)) -CREATE INDEX IX_871412DF ON PUBLIC.USERGROUPROLE(GROUPID,ROLEID) -CREATE INDEX IX_887A2C95 ON PUBLIC.USERGROUPROLE(ROLEID) -CREATE INDEX IX_4D040680 ON PUBLIC.USERGROUPROLE(USERID,GROUPID) -CREATE MEMORY TABLE PUBLIC.USERGROUPS_TEAMS(COMPANYID BIGINT NOT NULL,TEAMID BIGINT NOT NULL,USERGROUPID BIGINT NOT NULL,PRIMARY KEY(TEAMID,USERGROUPID)) -CREATE INDEX IX_2AC5356C ON PUBLIC.USERGROUPS_TEAMS(COMPANYID) -CREATE INDEX IX_31FB0B08 ON PUBLIC.USERGROUPS_TEAMS(TEAMID) -CREATE INDEX IX_7F187E63 ON PUBLIC.USERGROUPS_TEAMS(USERGROUPID) -CREATE MEMORY TABLE PUBLIC.USERIDMAPPER(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,USERIDMAPPERID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,TYPE_ VARCHAR(75),DESCRIPTION VARCHAR(75),EXTERNALUSERID VARCHAR(75)) -CREATE UNIQUE INDEX IX_41A32E0D ON PUBLIC.USERIDMAPPER(TYPE_,EXTERNALUSERID) -CREATE UNIQUE INDEX IX_D1C44A6E ON PUBLIC.USERIDMAPPER(USERID,TYPE_) -CREATE MEMORY TABLE PUBLIC.USERNOTIFICATIONEVENT(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),USERNOTIFICATIONEVENTID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,TYPE_ VARCHAR(200),TIMESTAMP BIGINT,DELIVERYTYPE INTEGER,DELIVERBY BIGINT,DELIVERED BIT(1),PAYLOAD VARCHAR(16777216),ACTIONREQUIRED BIT(1),ARCHIVED BIT(1)) -CREATE INDEX IX_BF29100B ON PUBLIC.USERNOTIFICATIONEVENT(TYPE_) -CREATE INDEX IX_5CE95F03 ON PUBLIC.USERNOTIFICATIONEVENT(USERID,ACTIONREQUIRED,ARCHIVED) -CREATE INDEX IX_3DBB361A ON PUBLIC.USERNOTIFICATIONEVENT(USERID,ARCHIVED) -CREATE INDEX IX_E32CC19 ON PUBLIC.USERNOTIFICATIONEVENT(USERID,DELIVERED,ACTIONREQUIRED) -CREATE INDEX IX_C4EFBD45 ON PUBLIC.USERNOTIFICATIONEVENT(USERID,DELIVERYTYPE,ACTIONREQUIRED,ARCHIVED) -CREATE INDEX IX_A87A585C ON PUBLIC.USERNOTIFICATIONEVENT(USERID,DELIVERYTYPE,ARCHIVED) -CREATE INDEX IX_A6F83617 ON PUBLIC.USERNOTIFICATIONEVENT(USERID,DELIVERYTYPE,DELIVERED,ACTIONREQUIRED) -CREATE INDEX IX_8FB65EC1 ON PUBLIC.USERNOTIFICATIONEVENT(USERID,TYPE_,DELIVERYTYPE,DELIVERED) -CREATE INDEX IX_A6BAFDFE ON PUBLIC.USERNOTIFICATIONEVENT(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.USERS_GROUPS(COMPANYID BIGINT NOT NULL,GROUPID BIGINT NOT NULL,USERID BIGINT NOT NULL,PRIMARY KEY(GROUPID,USERID)) -CREATE INDEX IX_3499B657 ON PUBLIC.USERS_GROUPS(COMPANYID) -CREATE INDEX IX_C4F9E699 ON PUBLIC.USERS_GROUPS(GROUPID) -CREATE INDEX IX_F10B6C6B ON PUBLIC.USERS_GROUPS(USERID) -CREATE MEMORY TABLE PUBLIC.USERS_ORGS(COMPANYID BIGINT NOT NULL,ORGANIZATIONID BIGINT NOT NULL,USERID BIGINT NOT NULL,PRIMARY KEY(ORGANIZATIONID,USERID)) -CREATE INDEX IX_5FBB883C ON PUBLIC.USERS_ORGS(COMPANYID) -CREATE INDEX IX_7EF4EC0E ON PUBLIC.USERS_ORGS(ORGANIZATIONID) -CREATE INDEX IX_FB646CA6 ON PUBLIC.USERS_ORGS(USERID) -CREATE MEMORY TABLE PUBLIC.USERS_ROLES(COMPANYID BIGINT NOT NULL,ROLEID BIGINT NOT NULL,USERID BIGINT NOT NULL,PRIMARY KEY(ROLEID,USERID)) -CREATE INDEX IX_F987A0DC ON PUBLIC.USERS_ROLES(COMPANYID) -CREATE INDEX IX_C19E5F31 ON PUBLIC.USERS_ROLES(ROLEID) -CREATE INDEX IX_C1A01806 ON PUBLIC.USERS_ROLES(USERID) -CREATE MEMORY TABLE PUBLIC.USERS_TEAMS(COMPANYID BIGINT NOT NULL,TEAMID BIGINT NOT NULL,USERID BIGINT NOT NULL,PRIMARY KEY(TEAMID,USERID)) -CREATE INDEX IX_799F8283 ON PUBLIC.USERS_TEAMS(COMPANYID) -CREATE INDEX IX_4D06AD51 ON PUBLIC.USERS_TEAMS(TEAMID) -CREATE INDEX IX_A098EFBF ON PUBLIC.USERS_TEAMS(USERID) -CREATE MEMORY TABLE PUBLIC.USERS_USERGROUPS(COMPANYID BIGINT NOT NULL,USERID BIGINT NOT NULL,USERGROUPID BIGINT NOT NULL,PRIMARY KEY(USERID,USERGROUPID)) -CREATE INDEX IX_BB65040C ON PUBLIC.USERS_USERGROUPS(COMPANYID) -CREATE INDEX IX_66FF2503 ON PUBLIC.USERS_USERGROUPS(USERGROUPID) -CREATE INDEX IX_BE8102D6 ON PUBLIC.USERS_USERGROUPS(USERID) -CREATE MEMORY TABLE PUBLIC.USERTRACKER(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,USERTRACKERID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,MODIFIEDDATE TIMESTAMP,SESSIONID VARCHAR(200),REMOTEADDR VARCHAR(75),REMOTEHOST VARCHAR(75),USERAGENT VARCHAR(200)) -CREATE INDEX IX_29BA1CF5 ON PUBLIC.USERTRACKER(COMPANYID) -CREATE INDEX IX_46B0AE8E ON PUBLIC.USERTRACKER(SESSIONID) -CREATE INDEX IX_E4EFBA8D ON PUBLIC.USERTRACKER(USERID) -CREATE MEMORY TABLE PUBLIC.USERTRACKERPATH(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,USERTRACKERPATHID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERTRACKERID BIGINT,PATH_ VARCHAR(16777216),PATHDATE TIMESTAMP) -CREATE INDEX IX_14D8BCC0 ON PUBLIC.USERTRACKERPATH(USERTRACKERID) -CREATE MEMORY TABLE PUBLIC.VIRTUALHOST(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,VIRTUALHOSTID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,LAYOUTSETID BIGINT,HOSTNAME VARCHAR(200)) -CREATE UNIQUE INDEX IX_A083D394 ON PUBLIC.VIRTUALHOST(COMPANYID,LAYOUTSETID) -CREATE UNIQUE INDEX IX_431A3960 ON PUBLIC.VIRTUALHOST(HOSTNAME) -CREATE MEMORY TABLE PUBLIC.WEBDAVPROPS(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,WEBDAVPROPSID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,PROPS VARCHAR(16777216)) -CREATE UNIQUE INDEX IX_97DFA146 ON PUBLIC.WEBDAVPROPS(CLASSNAMEID,CLASSPK) -CREATE MEMORY TABLE PUBLIC.WEBSITE(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),WEBSITEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,URL VARCHAR(16777216),TYPEID BIGINT,PRIMARY_ BIT(1),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_1AA07A6D ON PUBLIC.WEBSITE(COMPANYID,CLASSNAMEID,CLASSPK,PRIMARY_) -CREATE INDEX IX_F75690BB ON PUBLIC.WEBSITE(USERID) -CREATE INDEX IX_712BCD35 ON PUBLIC.WEBSITE(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.WORKFLOWDEFINITIONLINK(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,WORKFLOWDEFINITIONLINKID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,TYPEPK BIGINT,WORKFLOWDEFINITIONNAME VARCHAR(75),WORKFLOWDEFINITIONVERSION INTEGER) -CREATE INDEX IX_A4DB1F0F ON PUBLIC.WORKFLOWDEFINITIONLINK(COMPANYID,WORKFLOWDEFINITIONNAME,WORKFLOWDEFINITIONVERSION) -CREATE INDEX IX_705B40EE ON PUBLIC.WORKFLOWDEFINITIONLINK(GROUPID,COMPANYID,CLASSNAMEID,CLASSPK,TYPEPK) -CREATE MEMORY TABLE PUBLIC.WORKFLOWINSTANCELINK(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,WORKFLOWINSTANCELINKID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,WORKFLOWINSTANCEID BIGINT) -CREATE INDEX IX_415A7007 ON PUBLIC.WORKFLOWINSTANCELINK(GROUPID,COMPANYID,CLASSNAMEID,CLASSPK) -CREATE MEMORY TABLE PUBLIC.CONFIGURATION_(CONFIGURATIONID VARCHAR(255) NOT NULL PRIMARY KEY,DICTIONARY VARCHAR(16777216)) -CREATE MEMORY TABLE PUBLIC.QUARTZ_BLOB_TRIGGERS(SCHED_NAME VARCHAR(120) NOT NULL,TRIGGER_NAME VARCHAR(200) NOT NULL,TRIGGER_GROUP VARCHAR(200) NOT NULL,BLOB_DATA BLOB(1G),PRIMARY KEY(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) -CREATE MEMORY TABLE PUBLIC.QUARTZ_CALENDARS(SCHED_NAME VARCHAR(120) NOT NULL,CALENDAR_NAME VARCHAR(200) NOT NULL,CALENDAR BLOB(1G) NOT NULL,PRIMARY KEY(SCHED_NAME,CALENDAR_NAME)) -CREATE MEMORY TABLE PUBLIC.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),PRIMARY KEY(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) -CREATE MEMORY TABLE PUBLIC.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 NOT NULL,PRIORITY INTEGER NOT NULL,STATE VARCHAR(16) NOT NULL,JOB_NAME VARCHAR(200),JOB_GROUP VARCHAR(200),IS_NONCONCURRENT BIT(1),REQUESTS_RECOVERY BIT(1),PRIMARY KEY(SCHED_NAME,ENTRY_ID)) -CREATE INDEX IX_BE3835E5 ON PUBLIC.QUARTZ_FIRED_TRIGGERS(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP) -CREATE INDEX IX_4BD722BM ON PUBLIC.QUARTZ_FIRED_TRIGGERS(SCHED_NAME,TRIGGER_GROUP) -CREATE INDEX IX_204D31E8 ON PUBLIC.QUARTZ_FIRED_TRIGGERS(SCHED_NAME,INSTANCE_NAME) -CREATE INDEX IX_339E078M ON PUBLIC.QUARTZ_FIRED_TRIGGERS(SCHED_NAME,INSTANCE_NAME,REQUESTS_RECOVERY) -CREATE INDEX IX_5005E3AF ON PUBLIC.QUARTZ_FIRED_TRIGGERS(SCHED_NAME,JOB_NAME,JOB_GROUP) -CREATE INDEX IX_BC2F03B0 ON PUBLIC.QUARTZ_FIRED_TRIGGERS(SCHED_NAME,JOB_GROUP) -CREATE MEMORY TABLE PUBLIC.QUARTZ_JOB_DETAILS(SCHED_NAME VARCHAR(120) NOT NULL,JOB_NAME VARCHAR(200) NOT NULL,JOB_GROUP VARCHAR(200) NOT NULL,DESCRIPTION VARCHAR(250),JOB_CLASS_NAME VARCHAR(250) NOT NULL,IS_DURABLE BIT(1) NOT NULL,IS_NONCONCURRENT BIT(1) NOT NULL,IS_UPDATE_DATA BIT(1) NOT NULL,REQUESTS_RECOVERY BIT(1) NOT NULL,JOB_DATA BLOB(1G),PRIMARY KEY(SCHED_NAME,JOB_NAME,JOB_GROUP)) -CREATE INDEX IX_88328984 ON PUBLIC.QUARTZ_JOB_DETAILS(SCHED_NAME,JOB_GROUP) -CREATE INDEX IX_779BCA37 ON PUBLIC.QUARTZ_JOB_DETAILS(SCHED_NAME,REQUESTS_RECOVERY) -CREATE MEMORY TABLE PUBLIC.QUARTZ_LOCKS(SCHED_NAME VARCHAR(120) NOT NULL,LOCK_NAME VARCHAR(40) NOT NULL,PRIMARY KEY(SCHED_NAME,LOCK_NAME)) -CREATE MEMORY TABLE PUBLIC.QUARTZ_PAUSED_TRIGGER_GRPS(SCHED_NAME VARCHAR(120) NOT NULL,TRIGGER_GROUP VARCHAR(200) NOT NULL,PRIMARY KEY(SCHED_NAME,TRIGGER_GROUP)) -CREATE MEMORY TABLE PUBLIC.QUARTZ_SCHEDULER_STATE(SCHED_NAME VARCHAR(120) NOT NULL,INSTANCE_NAME VARCHAR(200) NOT NULL,LAST_CHECKIN_TIME BIGINT NOT NULL,CHECKIN_INTERVAL BIGINT NOT NULL,PRIMARY KEY(SCHED_NAME,INSTANCE_NAME)) -CREATE MEMORY TABLE PUBLIC.QUARTZ_SIMPLE_TRIGGERS(SCHED_NAME VARCHAR(120) NOT NULL,TRIGGER_NAME VARCHAR(200) NOT NULL,TRIGGER_GROUP VARCHAR(200) NOT NULL,REPEAT_COUNT BIGINT NOT NULL,REPEAT_INTERVAL BIGINT NOT NULL,TIMES_TRIGGERED BIGINT NOT NULL,PRIMARY KEY(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) -CREATE MEMORY TABLE PUBLIC.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),STR_PROP_2 VARCHAR(512),STR_PROP_3 VARCHAR(512),INT_PROP_1 INTEGER,INT_PROP_2 INTEGER,LONG_PROP_1 BIGINT,LONG_PROP_2 BIGINT,DEC_PROP_1 NUMERIC(13,4),DEC_PROP_2 NUMERIC(13,4),BOOL_PROP_1 BIT(1),BOOL_PROP_2 BIT(1),PRIMARY KEY(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) -CREATE MEMORY TABLE PUBLIC.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),NEXT_FIRE_TIME BIGINT,PREV_FIRE_TIME BIGINT,PRIORITY INTEGER,TRIGGER_STATE VARCHAR(16) NOT NULL,TRIGGER_TYPE VARCHAR(8) NOT NULL,START_TIME BIGINT NOT NULL,END_TIME BIGINT,CALENDAR_NAME VARCHAR(200),MISFIRE_INSTR INTEGER,JOB_DATA BLOB(1G),PRIMARY KEY(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP)) -CREATE INDEX IX_186442A4 ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,TRIGGER_NAME,TRIGGER_GROUP,TRIGGER_STATE) -CREATE INDEX IX_1BA1F9DC ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,TRIGGER_GROUP) -CREATE INDEX IX_91CA7CCE ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,TRIGGER_GROUP,NEXT_FIRE_TIME,TRIGGER_STATE,MISFIRE_INSTR) -CREATE INDEX IX_D219AFDE ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,TRIGGER_GROUP,TRIGGER_STATE) -CREATE INDEX IX_A85822A0 ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,JOB_NAME,JOB_GROUP) -CREATE INDEX IX_8AA50BE1 ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,JOB_GROUP) -CREATE INDEX IX_EEFE382A ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,NEXT_FIRE_TIME) -CREATE INDEX IX_F026CF4C ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,NEXT_FIRE_TIME,TRIGGER_STATE) -CREATE INDEX IX_F2DD7C7E ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,NEXT_FIRE_TIME,TRIGGER_STATE,MISFIRE_INSTR) -CREATE INDEX IX_1F92813C ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,NEXT_FIRE_TIME,MISFIRE_INSTR) -CREATE INDEX IX_99108B6E ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,TRIGGER_STATE) -CREATE INDEX IX_CD7132D0 ON PUBLIC.QUARTZ_TRIGGERS(SCHED_NAME,CALENDAR_NAME) -CREATE MEMORY TABLE PUBLIC.MBBAN(UUID_ VARCHAR(75),BANID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,BANUSERID BIGINT,LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_69951A25 ON PUBLIC.MBBAN(BANUSERID) -CREATE UNIQUE INDEX IX_8ABC4E3B ON PUBLIC.MBBAN(GROUPID,BANUSERID) -CREATE INDEX IX_48814BBA ON PUBLIC.MBBAN(USERID) -CREATE INDEX IX_4F841574 ON PUBLIC.MBBAN(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_2A3B68F6 ON PUBLIC.MBBAN(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MBCATEGORY(UUID_ VARCHAR(75),CATEGORYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PARENTCATEGORYID BIGINT,NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),DISPLAYSTYLE VARCHAR(75),THREADCOUNT INTEGER,MESSAGECOUNT INTEGER,LASTPOSTDATE TIMESTAMP,LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_D1642361 ON PUBLIC.MBCATEGORY(CATEGORYID,GROUPID,PARENTCATEGORYID,STATUS) -CREATE INDEX IX_E15A5DB5 ON PUBLIC.MBCATEGORY(COMPANYID,STATUS) -CREATE INDEX IX_C295DBEE ON PUBLIC.MBCATEGORY(GROUPID,PARENTCATEGORYID,STATUS) -CREATE INDEX IX_DA84A9F7 ON PUBLIC.MBCATEGORY(GROUPID,STATUS) -CREATE INDEX IX_13DF4E6D ON PUBLIC.MBCATEGORY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_F7D28C2F ON PUBLIC.MBCATEGORY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MBDISCUSSION(UUID_ VARCHAR(75),DISCUSSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,THREADID BIGINT,LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_33A4DE38 ON PUBLIC.MBDISCUSSION(CLASSNAMEID,CLASSPK) -CREATE UNIQUE INDEX IX_B5CA2DC ON PUBLIC.MBDISCUSSION(THREADID) -CREATE INDEX IX_7E965757 ON PUBLIC.MBDISCUSSION(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_F7AAC799 ON PUBLIC.MBDISCUSSION(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MBMAILINGLIST(UUID_ VARCHAR(75),MAILINGLISTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CATEGORYID BIGINT,EMAILADDRESS VARCHAR(254),INPROTOCOL VARCHAR(75),INSERVERNAME VARCHAR(75),INSERVERPORT INTEGER,INUSESSL BIT(1),INUSERNAME VARCHAR(75),INPASSWORD VARCHAR(75),INREADINTERVAL INTEGER,OUTEMAILADDRESS VARCHAR(254),OUTCUSTOM BIT(1),OUTSERVERNAME VARCHAR(75),OUTSERVERPORT INTEGER,OUTUSESSL BIT(1),OUTUSERNAME VARCHAR(75),OUTPASSWORD VARCHAR(75),ALLOWANONYMOUS BIT(1),ACTIVE_ BIT(1)) -CREATE INDEX IX_BFEB984F ON PUBLIC.MBMAILINGLIST(ACTIVE_) -CREATE UNIQUE INDEX IX_76CE9CDD ON PUBLIC.MBMAILINGLIST(GROUPID,CATEGORYID) -CREATE INDEX IX_FC61676E ON PUBLIC.MBMAILINGLIST(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_E858F170 ON PUBLIC.MBMAILINGLIST(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MBMESSAGE(UUID_ VARCHAR(75),MESSAGEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,CATEGORYID BIGINT,THREADID BIGINT,ROOTMESSAGEID BIGINT,PARENTMESSAGEID BIGINT,SUBJECT VARCHAR(75),BODY VARCHAR(16777216),FORMAT VARCHAR(75),ANONYMOUS BIT(1),PRIORITY DOUBLE,ALLOWPINGBACKS BIT(1),ANSWER BIT(1),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_F6687633 ON PUBLIC.MBMESSAGE(CLASSNAMEID,CLASSPK,STATUS) -CREATE INDEX IX_1AD93C16 ON PUBLIC.MBMESSAGE(COMPANYID,STATUS) -CREATE INDEX IX_4257DB85 ON PUBLIC.MBMESSAGE(GROUPID,CATEGORYID,STATUS) -CREATE INDEX IX_CBFDBF0A ON PUBLIC.MBMESSAGE(GROUPID,CATEGORYID,THREADID,ANSWER) -CREATE INDEX IX_385E123E ON PUBLIC.MBMESSAGE(GROUPID,CATEGORYID,THREADID,STATUS) -CREATE INDEX IX_ED39AC98 ON PUBLIC.MBMESSAGE(GROUPID,STATUS) -CREATE INDEX IX_377858D2 ON PUBLIC.MBMESSAGE(GROUPID,USERID,STATUS) -CREATE INDEX IX_6A095F16 ON PUBLIC.MBMESSAGE(PARENTMESSAGEID,STATUS) -CREATE INDEX IX_9D7C3B23 ON PUBLIC.MBMESSAGE(THREADID,ANSWER) -CREATE INDEX IX_A7038CD7 ON PUBLIC.MBMESSAGE(THREADID,PARENTMESSAGEID) -CREATE INDEX IX_9DC8E57 ON PUBLIC.MBMESSAGE(THREADID,STATUS) -CREATE INDEX IX_4A4BB4ED ON PUBLIC.MBMESSAGE(USERID,CLASSNAMEID,CLASSPK,STATUS) -CREATE INDEX IX_3321F142 ON PUBLIC.MBMESSAGE(USERID,CLASSNAMEID,STATUS) -CREATE INDEX IX_57CA9FEC ON PUBLIC.MBMESSAGE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_8D12316E ON PUBLIC.MBMESSAGE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MBSTATSUSER(STATSUSERID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,MESSAGECOUNT INTEGER,LASTPOSTDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_9168E2C9 ON PUBLIC.MBSTATSUSER(GROUPID,USERID) -CREATE INDEX IX_847F92B5 ON PUBLIC.MBSTATSUSER(USERID) -CREATE MEMORY TABLE PUBLIC.MBTHREAD(UUID_ VARCHAR(75),THREADID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CATEGORYID BIGINT,ROOTMESSAGEID BIGINT,ROOTMESSAGEUSERID BIGINT,TITLE VARCHAR(75),MESSAGECOUNT INTEGER,VIEWCOUNT INTEGER,LASTPOSTBYUSERID BIGINT,LASTPOSTDATE TIMESTAMP,PRIORITY DOUBLE,QUESTION BIT(1),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_41F6DC8A ON PUBLIC.MBTHREAD(CATEGORYID,PRIORITY) -CREATE INDEX IX_50F1904A ON PUBLIC.MBTHREAD(GROUPID,CATEGORYID,LASTPOSTDATE) -CREATE INDEX IX_485F7E98 ON PUBLIC.MBTHREAD(GROUPID,CATEGORYID,STATUS) -CREATE INDEX IX_E1E7142B ON PUBLIC.MBTHREAD(GROUPID,STATUS) -CREATE INDEX IX_AEDD9CB5 ON PUBLIC.MBTHREAD(LASTPOSTDATE,PRIORITY) -CREATE INDEX IX_CC993ECB ON PUBLIC.MBTHREAD(ROOTMESSAGEID) -CREATE INDEX IX_F8CA2AB9 ON PUBLIC.MBTHREAD(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_3A200B7B ON PUBLIC.MBTHREAD(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MBTHREADFLAG(UUID_ VARCHAR(75),THREADFLAGID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,THREADID BIGINT,LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_8CB0A24A ON PUBLIC.MBTHREADFLAG(THREADID) -CREATE UNIQUE INDEX IX_33781904 ON PUBLIC.MBTHREADFLAG(USERID,THREADID) -CREATE INDEX IX_DCE308C5 ON PUBLIC.MBTHREADFLAG(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_FEB0FC87 ON PUBLIC.MBTHREADFLAG(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.SITENAVIGATIONMENU(UUID_ VARCHAR(75),SITENAVIGATIONMENUID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(75),TYPE_ INTEGER,AUTO_ BIT(1),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_1D786176 ON PUBLIC.SITENAVIGATIONMENU(GROUPID,AUTO_) -CREATE UNIQUE INDEX IX_ECBADAC9 ON PUBLIC.SITENAVIGATIONMENU(GROUPID,NAME) -CREATE INDEX IX_1125400B ON PUBLIC.SITENAVIGATIONMENU(GROUPID,TYPE_) -CREATE INDEX IX_606C7814 ON PUBLIC.SITENAVIGATIONMENU(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_711BF396 ON PUBLIC.SITENAVIGATIONMENU(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.SITENAVIGATIONMENUITEM(UUID_ VARCHAR(75),SITENAVIGATIONMENUITEMID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,SITENAVIGATIONMENUID BIGINT,PARENTSITENAVIGATIONMENUITEMID BIGINT,NAME VARCHAR(255),TYPE_ VARCHAR(75),TYPESETTINGS VARCHAR(16777216),ORDER_ INTEGER,LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_75495C39 ON PUBLIC.SITENAVIGATIONMENUITEM(PARENTSITENAVIGATIONMENUITEMID) -CREATE INDEX IX_9FA7003B ON PUBLIC.SITENAVIGATIONMENUITEM(SITENAVIGATIONMENUID,NAME) -CREATE INDEX IX_2294C622 ON PUBLIC.SITENAVIGATIONMENUITEM(SITENAVIGATIONMENUID,PARENTSITENAVIGATIONMENUITEMID) -CREATE INDEX IX_90D752C7 ON PUBLIC.SITENAVIGATIONMENUITEM(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_6FD3DF09 ON PUBLIC.SITENAVIGATIONMENUITEM(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.SITEFRIENDLYURL(UUID_ VARCHAR(75),SITEFRIENDLYURLID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,GROUPID BIGINT,FRIENDLYURL VARCHAR(75),LANGUAGEID VARCHAR(75),LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_FF899B2F ON PUBLIC.SITEFRIENDLYURL(COMPANYID,FRIENDLYURL) -CREATE UNIQUE INDEX IX_7A3B7A2C ON PUBLIC.SITEFRIENDLYURL(COMPANYID,GROUPID,LANGUAGEID) -CREATE INDEX IX_E6D46A97 ON PUBLIC.SITEFRIENDLYURL(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_82D4AAD9 ON PUBLIC.SITEFRIENDLYURL(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.READINGTIMEENTRY(UUID_ VARCHAR(75),READINGTIMEENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,READINGTIME BIGINT) -CREATE UNIQUE INDEX IX_73B13580 ON PUBLIC.READINGTIMEENTRY(GROUPID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_29FACA53 ON PUBLIC.READINGTIMEENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_D647C995 ON PUBLIC.READINGTIMEENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.OA2AUTHS_OA2SCOPEGRANTS(COMPANYID BIGINT NOT NULL,OAUTH2AUTHORIZATIONID BIGINT NOT NULL,OAUTH2SCOPEGRANTID BIGINT NOT NULL,PRIMARY KEY(OAUTH2AUTHORIZATIONID,OAUTH2SCOPEGRANTID)) -CREATE INDEX IX_87DAF9C3 ON PUBLIC.OA2AUTHS_OA2SCOPEGRANTS(COMPANYID) -CREATE INDEX IX_F4C82F24 ON PUBLIC.OA2AUTHS_OA2SCOPEGRANTS(OAUTH2AUTHORIZATIONID) -CREATE INDEX IX_2F541817 ON PUBLIC.OA2AUTHS_OA2SCOPEGRANTS(OAUTH2SCOPEGRANTID) -CREATE MEMORY TABLE PUBLIC.OAUTH2APPLICATION(OAUTH2APPLICATIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,OA2ASCOPEALIASESID BIGINT,ALLOWEDGRANTTYPES VARCHAR(75),CLIENTID VARCHAR(75),CLIENTPROFILE INTEGER,CLIENTSECRET VARCHAR(75),DESCRIPTION VARCHAR(16777216),FEATURES VARCHAR(16777216),HOMEPAGEURL VARCHAR(16777216),ICONFILEENTRYID BIGINT,NAME VARCHAR(75),PRIVACYPOLICYURL VARCHAR(16777216),REDIRECTURIS VARCHAR(16777216)) -CREATE INDEX IX_523E5C67 ON PUBLIC.OAUTH2APPLICATION(COMPANYID,CLIENTID) -CREATE MEMORY TABLE PUBLIC.OAUTH2APPLICATIONSCOPEALIASES(OA2ASCOPEALIASESID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,OAUTH2APPLICATIONID BIGINT,SCOPEALIASES VARCHAR(16777216),SCOPEALIASESHASH BIGINT) -CREATE INDEX IX_282ECE83 ON PUBLIC.OAUTH2APPLICATIONSCOPEALIASES(COMPANYID) -CREATE INDEX IX_29847127 ON PUBLIC.OAUTH2APPLICATIONSCOPEALIASES(OAUTH2APPLICATIONID,SCOPEALIASESHASH) -CREATE MEMORY TABLE PUBLIC.OAUTH2AUTHORIZATION(OAUTH2AUTHORIZATIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,OAUTH2APPLICATIONID BIGINT,OA2ASCOPEALIASESID BIGINT,ACCESSTOKENCONTENT VARCHAR(16777216),ACCESSTOKENCONTENTHASH BIGINT,ACCESSTOKENCREATEDATE TIMESTAMP,ACCESSTOKENEXPIRATIONDATE TIMESTAMP,REMOTEIPINFO VARCHAR(75),REFRESHTOKENCONTENT VARCHAR(16777216),REFRESHTOKENCONTENTHASH BIGINT,REFRESHTOKENCREATEDATE TIMESTAMP,REFRESHTOKENEXPIRATIONDATE TIMESTAMP) -CREATE INDEX IX_77D3B9EA ON PUBLIC.OAUTH2AUTHORIZATION(ACCESSTOKENCONTENTHASH) -CREATE INDEX IX_70DD169C ON PUBLIC.OAUTH2AUTHORIZATION(OAUTH2APPLICATIONID) -CREATE INDEX IX_10C77BD5 ON PUBLIC.OAUTH2AUTHORIZATION(REFRESHTOKENCONTENTHASH) -CREATE INDEX IX_719D503E ON PUBLIC.OAUTH2AUTHORIZATION(USERID) -CREATE MEMORY TABLE PUBLIC.OAUTH2SCOPEGRANT(OAUTH2SCOPEGRANTID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,OA2ASCOPEALIASESID BIGINT,APPLICATIONNAME VARCHAR(255),BUNDLESYMBOLICNAME VARCHAR(255),SCOPE VARCHAR(240)) -CREATE INDEX IX_88938BF ON PUBLIC.OAUTH2SCOPEGRANT(COMPANYID,OA2ASCOPEALIASESID,APPLICATIONNAME,BUNDLESYMBOLICNAME,SCOPE) -CREATE INDEX IX_80FCAC23 ON PUBLIC.OAUTH2SCOPEGRANT(OA2ASCOPEALIASESID) -CREATE MEMORY TABLE PUBLIC.FRAGMENTCOLLECTION(UUID_ VARCHAR(75),FRAGMENTCOLLECTIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,FRAGMENTCOLLECTIONKEY VARCHAR(75),NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_19562E6B ON PUBLIC.FRAGMENTCOLLECTION(GROUPID,FRAGMENTCOLLECTIONKEY) -CREATE INDEX IX_536510F5 ON PUBLIC.FRAGMENTCOLLECTION(GROUPID,NAME) -CREATE INDEX IX_9A228268 ON PUBLIC.FRAGMENTCOLLECTION(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_DFB882EA ON PUBLIC.FRAGMENTCOLLECTION(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.FRAGMENTENTRY(UUID_ VARCHAR(75),FRAGMENTENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,FRAGMENTCOLLECTIONID BIGINT,FRAGMENTENTRYKEY VARCHAR(75),NAME VARCHAR(75),CSS VARCHAR(16777216),HTML VARCHAR(16777216),JS VARCHAR(16777216),PREVIEWFILEENTRYID BIGINT,LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_DDB6278B ON PUBLIC.FRAGMENTENTRY(FRAGMENTCOLLECTIONID,STATUS) -CREATE UNIQUE INDEX IX_62913C70 ON PUBLIC.FRAGMENTENTRY(GROUPID,FRAGMENTCOLLECTIONID,FRAGMENTENTRYKEY) -CREATE INDEX IX_9EC6FEE4 ON PUBLIC.FRAGMENTENTRY(GROUPID,FRAGMENTCOLLECTIONID,NAME,STATUS) -CREATE INDEX IX_BD18F965 ON PUBLIC.FRAGMENTENTRY(GROUPID,FRAGMENTCOLLECTIONID,STATUS) -CREATE UNIQUE INDEX IX_7F3F0EB3 ON PUBLIC.FRAGMENTENTRY(GROUPID,FRAGMENTENTRYKEY) -CREATE INDEX IX_C65BF31C ON PUBLIC.FRAGMENTENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_553E909E ON PUBLIC.FRAGMENTENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.FRAGMENTENTRYLINK(UUID_ VARCHAR(75),FRAGMENTENTRYLINKID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,ORIGINALFRAGMENTENTRYLINKID BIGINT,FRAGMENTENTRYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,CSS VARCHAR(16777216),HTML VARCHAR(16777216),JS VARCHAR(16777216),EDITABLEVALUES VARCHAR(16777216),POSITION INTEGER,LASTPROPAGATIONDATE TIMESTAMP,NAMESPACE VARCHAR(75),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_2FB5437D ON PUBLIC.FRAGMENTENTRYLINK(GROUPID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_4A9E751A ON PUBLIC.FRAGMENTENTRYLINK(GROUPID,FRAGMENTENTRYID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_9266C536 ON PUBLIC.FRAGMENTENTRYLINK(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_AA2B2138 ON PUBLIC.FRAGMENTENTRYLINK(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.WIKINODE(UUID_ VARCHAR(75),NODEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),LASTPOSTDATE TIMESTAMP,LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_B54332D6 ON PUBLIC.WIKINODE(COMPANYID,STATUS) -CREATE UNIQUE INDEX IX_920CD8B1 ON PUBLIC.WIKINODE(GROUPID,NAME) -CREATE INDEX IX_23325358 ON PUBLIC.WIKINODE(GROUPID,STATUS) -CREATE INDEX IX_E0E6D12C ON PUBLIC.WIKINODE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_7609B2AE ON PUBLIC.WIKINODE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.WIKIPAGE(UUID_ VARCHAR(75),PAGEID BIGINT NOT NULL PRIMARY KEY,RESOURCEPRIMKEY BIGINT,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NODEID BIGINT,TITLE VARCHAR(255),VERSION DOUBLE,MINOREDIT BIT(1),CONTENT VARCHAR(16777216),SUMMARY VARCHAR(16777216),FORMAT VARCHAR(75),HEAD BIT(1),PARENTTITLE VARCHAR(255),REDIRECTTITLE VARCHAR(255),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_A2001730 ON PUBLIC.WIKIPAGE(FORMAT) -CREATE INDEX IX_BA72B89A ON PUBLIC.WIKIPAGE(GROUPID,NODEID,HEAD,PARENTTITLE,STATUS) -CREATE INDEX IX_E0092FF0 ON PUBLIC.WIKIPAGE(GROUPID,NODEID,HEAD,STATUS) -CREATE INDEX IX_941E429C ON PUBLIC.WIKIPAGE(GROUPID,NODEID,STATUS) -CREATE INDEX IX_5FF21CE6 ON PUBLIC.WIKIPAGE(GROUPID,NODEID,TITLE,HEAD) -CREATE INDEX IX_CAA451D6 ON PUBLIC.WIKIPAGE(GROUPID,USERID,NODEID,STATUS) -CREATE INDEX IX_9F7655DA ON PUBLIC.WIKIPAGE(NODEID,HEAD,PARENTTITLE,STATUS) -CREATE INDEX IX_40F94F68 ON PUBLIC.WIKIPAGE(NODEID,HEAD,REDIRECTTITLE,STATUS) -CREATE INDEX IX_432F0AB0 ON PUBLIC.WIKIPAGE(NODEID,HEAD,STATUS) -CREATE INDEX IX_46EEF3C8 ON PUBLIC.WIKIPAGE(NODEID,PARENTTITLE) -CREATE INDEX IX_1ECC7656 ON PUBLIC.WIKIPAGE(NODEID,REDIRECTTITLE) -CREATE INDEX IX_546F2D5C ON PUBLIC.WIKIPAGE(NODEID,STATUS) -CREATE INDEX IX_E745EA26 ON PUBLIC.WIKIPAGE(NODEID,TITLE,HEAD) -CREATE INDEX IX_BEA33AB8 ON PUBLIC.WIKIPAGE(NODEID,TITLE,STATUS) -CREATE UNIQUE INDEX IX_3D4AF476 ON PUBLIC.WIKIPAGE(NODEID,TITLE,VERSION) -CREATE INDEX IX_E1F55FB ON PUBLIC.WIKIPAGE(RESOURCEPRIMKEY,NODEID,HEAD) -CREATE INDEX IX_94D1054D ON PUBLIC.WIKIPAGE(RESOURCEPRIMKEY,NODEID,STATUS) -CREATE UNIQUE INDEX IX_2CD67C81 ON PUBLIC.WIKIPAGE(RESOURCEPRIMKEY,NODEID,VERSION) -CREATE INDEX IX_1725355C ON PUBLIC.WIKIPAGE(RESOURCEPRIMKEY,STATUS) -CREATE INDEX IX_FBBE7C96 ON PUBLIC.WIKIPAGE(USERID,NODEID,STATUS) -CREATE INDEX IX_5DC4BD39 ON PUBLIC.WIKIPAGE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_899D3DFB ON PUBLIC.WIKIPAGE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.WIKIPAGERESOURCE(UUID_ VARCHAR(75),RESOURCEPRIMKEY BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,NODEID BIGINT,TITLE VARCHAR(255)) -CREATE UNIQUE INDEX IX_21277664 ON PUBLIC.WIKIPAGERESOURCE(NODEID,TITLE) -CREATE INDEX IX_13319367 ON PUBLIC.WIKIPAGERESOURCE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_F705C7A9 ON PUBLIC.WIKIPAGERESOURCE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.JOURNALARTICLE(UUID_ VARCHAR(75),ID_ BIGINT NOT NULL PRIMARY KEY,RESOURCEPRIMKEY BIGINT,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,FOLDERID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,TREEPATH VARCHAR(16777216),ARTICLEID VARCHAR(75),VERSION DOUBLE,URLTITLE VARCHAR(255),CONTENT VARCHAR(16777216),DDMSTRUCTUREKEY VARCHAR(75),DDMTEMPLATEKEY VARCHAR(75),DEFAULTLANGUAGEID VARCHAR(75),LAYOUTUUID VARCHAR(75),DISPLAYDATE TIMESTAMP,EXPIRATIONDATE TIMESTAMP,REVIEWDATE TIMESTAMP,INDEXABLE BIT(1),SMALLIMAGE BIT(1),SMALLIMAGEID BIGINT,SMALLIMAGEURL VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_17806804 ON PUBLIC.JOURNALARTICLE(DDMSTRUCTUREKEY) -CREATE INDEX IX_75CCA4D1 ON PUBLIC.JOURNALARTICLE(DDMTEMPLATEKEY) -CREATE INDEX IX_C761B675 ON PUBLIC.JOURNALARTICLE(CLASSNAMEID,DDMTEMPLATEKEY) -CREATE INDEX IX_717D0FA0 ON PUBLIC.JOURNALARTICLE(CLASSNAMEID,EXPIRATIONDATE,STATUS) -CREATE INDEX IX_323DF109 ON PUBLIC.JOURNALARTICLE(COMPANYID,STATUS) -CREATE INDEX IX_E82F322B ON PUBLIC.JOURNALARTICLE(COMPANYID,VERSION,STATUS) -CREATE INDEX IX_EA05E9E1 ON PUBLIC.JOURNALARTICLE(DISPLAYDATE,STATUS) -CREATE INDEX IX_D8EB0D84 ON PUBLIC.JOURNALARTICLE(GROUPID,DDMSTRUCTUREKEY) -CREATE INDEX IX_31B74F51 ON PUBLIC.JOURNALARTICLE(GROUPID,DDMTEMPLATEKEY) -CREATE INDEX IX_4D5CD982 ON PUBLIC.JOURNALARTICLE(GROUPID,ARTICLEID,STATUS) -CREATE UNIQUE INDEX IX_85C52EEC ON PUBLIC.JOURNALARTICLE(GROUPID,ARTICLEID,VERSION) -CREATE INDEX IX_353BD560 ON PUBLIC.JOURNALARTICLE(GROUPID,CLASSNAMEID,DDMSTRUCTUREKEY) -CREATE INDEX IX_6E801BF5 ON PUBLIC.JOURNALARTICLE(GROUPID,CLASSNAMEID,DDMTEMPLATEKEY) -CREATE INDEX IX_9CE6E0FA ON PUBLIC.JOURNALARTICLE(GROUPID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_A2534AC2 ON PUBLIC.JOURNALARTICLE(GROUPID,CLASSNAMEID,LAYOUTUUID) -CREATE INDEX IX_F35391E8 ON PUBLIC.JOURNALARTICLE(GROUPID,FOLDERID,STATUS) -CREATE INDEX IX_3C028C1E ON PUBLIC.JOURNALARTICLE(GROUPID,LAYOUTUUID) -CREATE INDEX IX_301D024B ON PUBLIC.JOURNALARTICLE(GROUPID,STATUS) -CREATE INDEX IX_D2D249E8 ON PUBLIC.JOURNALARTICLE(GROUPID,URLTITLE,STATUS) -CREATE INDEX IX_43A0F80F ON PUBLIC.JOURNALARTICLE(GROUPID,USERID,CLASSNAMEID) -CREATE INDEX IX_3F1EA19E ON PUBLIC.JOURNALARTICLE(LAYOUTUUID) -CREATE INDEX IX_451D63EC ON PUBLIC.JOURNALARTICLE(RESOURCEPRIMKEY,INDEXABLE,STATUS) -CREATE INDEX IX_3E2765FC ON PUBLIC.JOURNALARTICLE(RESOURCEPRIMKEY,STATUS) -CREATE INDEX IX_EF9B7028 ON PUBLIC.JOURNALARTICLE(SMALLIMAGEID) -CREATE INDEX IX_71520099 ON PUBLIC.JOURNALARTICLE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_3463D95B ON PUBLIC.JOURNALARTICLE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.JOURNALARTICLELOCALIZATION(ARTICLELOCALIZATIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,ARTICLEPK BIGINT,TITLE VARCHAR(400),DESCRIPTION VARCHAR(16777216),LANGUAGEID VARCHAR(75)) -CREATE UNIQUE INDEX IX_ACF2560A ON PUBLIC.JOURNALARTICLELOCALIZATION(ARTICLEPK,LANGUAGEID) -CREATE MEMORY TABLE PUBLIC.JOURNALARTICLERESOURCE(UUID_ VARCHAR(75),RESOURCEPRIMKEY BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,ARTICLEID VARCHAR(75)) -CREATE UNIQUE INDEX IX_88DF994A ON PUBLIC.JOURNALARTICLERESOURCE(GROUPID,ARTICLEID) -CREATE INDEX IX_CC7576C7 ON PUBLIC.JOURNALARTICLERESOURCE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_84AB0309 ON PUBLIC.JOURNALARTICLERESOURCE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.JOURNALCONTENTSEARCH(CONTENTSEARCHID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,PRIVATELAYOUT BIT(1),LAYOUTID BIGINT,PORTLETID VARCHAR(200),ARTICLEID VARCHAR(75)) -CREATE INDEX IX_9207CB31 ON PUBLIC.JOURNALCONTENTSEARCH(ARTICLEID) -CREATE INDEX IX_6838E427 ON PUBLIC.JOURNALCONTENTSEARCH(GROUPID,ARTICLEID) -CREATE INDEX IX_7CC7D73E ON PUBLIC.JOURNALCONTENTSEARCH(GROUPID,PRIVATELAYOUT,ARTICLEID) -CREATE UNIQUE INDEX IX_C3AA93B8 ON PUBLIC.JOURNALCONTENTSEARCH(GROUPID,PRIVATELAYOUT,LAYOUTID,PORTLETID,ARTICLEID) -CREATE INDEX IX_8DAF8A35 ON PUBLIC.JOURNALCONTENTSEARCH(PORTLETID) -CREATE MEMORY TABLE PUBLIC.JOURNALFEED(UUID_ VARCHAR(75),ID_ BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,FEEDID VARCHAR(75),NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),DDMSTRUCTUREKEY VARCHAR(75),DDMTEMPLATEKEY VARCHAR(75),DDMRENDERERTEMPLATEKEY VARCHAR(75),DELTA INTEGER,ORDERBYCOL VARCHAR(75),ORDERBYTYPE VARCHAR(75),TARGETLAYOUTFRIENDLYURL VARCHAR(255),TARGETPORTLETID VARCHAR(200),CONTENTFIELD VARCHAR(75),FEEDFORMAT VARCHAR(75),FEEDVERSION DOUBLE,LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_65576CBC ON PUBLIC.JOURNALFEED(GROUPID,FEEDID) -CREATE INDEX IX_CB37A10F ON PUBLIC.JOURNALFEED(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_39031F51 ON PUBLIC.JOURNALFEED(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.JOURNALFOLDER(UUID_ VARCHAR(75),FOLDERID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PARENTFOLDERID BIGINT,TREEPATH VARCHAR(16777216),NAME VARCHAR(100),DESCRIPTION VARCHAR(16777216),RESTRICTIONTYPE INTEGER,LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_C36B0443 ON PUBLIC.JOURNALFOLDER(COMPANYID,STATUS) -CREATE INDEX IX_E988689E ON PUBLIC.JOURNALFOLDER(GROUPID,NAME) -CREATE UNIQUE INDEX IX_65026705 ON PUBLIC.JOURNALFOLDER(GROUPID,PARENTFOLDERID,NAME) -CREATE INDEX IX_EFD9CAC ON PUBLIC.JOURNALFOLDER(GROUPID,PARENTFOLDERID,STATUS) -CREATE INDEX IX_54F89E1F ON PUBLIC.JOURNALFOLDER(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_E002061 ON PUBLIC.JOURNALFOLDER(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.CHANGESETCOLLECTION(CHANGESETCOLLECTIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(75),DESCRIPTION VARCHAR(75)) -CREATE INDEX IX_9AC55E11 ON PUBLIC.CHANGESETCOLLECTION(COMPANYID,NAME) -CREATE UNIQUE INDEX IX_ABEEE793 ON PUBLIC.CHANGESETCOLLECTION(GROUPID,NAME) -CREATE INDEX IX_EE4B4B0E ON PUBLIC.CHANGESETCOLLECTION(GROUPID,USERID) -CREATE MEMORY TABLE PUBLIC.CHANGESETENTRY(CHANGESETENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CHANGESETCOLLECTIONID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT) -CREATE UNIQUE INDEX IX_EF48912A ON PUBLIC.CHANGESETENTRY(CHANGESETCOLLECTIONID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_CEB6AFA2 ON PUBLIC.CHANGESETENTRY(COMPANYID) -CREATE INDEX IX_4A5B2D2A ON PUBLIC.CHANGESETENTRY(GROUPID,CLASSNAMEID) -CREATE MEMORY TABLE PUBLIC.MDRACTION(UUID_ VARCHAR(75),ACTIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,RULEGROUPINSTANCEID BIGINT,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),TYPE_ VARCHAR(255),TYPESETTINGS VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_FD90786C ON PUBLIC.MDRACTION(RULEGROUPINSTANCEID) -CREATE INDEX IX_C58A516B ON PUBLIC.MDRACTION(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_75BE36AD ON PUBLIC.MDRACTION(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MDRRULE(UUID_ VARCHAR(75),RULEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,RULEGROUPID BIGINT,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),TYPE_ VARCHAR(255),TYPESETTINGS VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_4F4293F1 ON PUBLIC.MDRRULE(RULEGROUPID) -CREATE INDEX IX_7DEA8DF1 ON PUBLIC.MDRRULE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_F3EFDCB3 ON PUBLIC.MDRRULE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MDRRULEGROUP(UUID_ VARCHAR(75),RULEGROUPID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_5849891C ON PUBLIC.MDRRULEGROUP(GROUPID) -CREATE INDEX IX_CC14DC2 ON PUBLIC.MDRRULEGROUP(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_46665CC4 ON PUBLIC.MDRRULEGROUP(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.MDRRULEGROUPINSTANCE(UUID_ VARCHAR(75),RULEGROUPINSTANCEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,RULEGROUPID BIGINT,PRIORITY INTEGER,LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_808A0036 ON PUBLIC.MDRRULEGROUPINSTANCE(CLASSNAMEID,CLASSPK,RULEGROUPID) -CREATE INDEX IX_22DAB85C ON PUBLIC.MDRRULEGROUPINSTANCE(GROUPID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_BF3E642B ON PUBLIC.MDRRULEGROUPINSTANCE(RULEGROUPID) -CREATE INDEX IX_25C9D1F7 ON PUBLIC.MDRRULEGROUPINSTANCE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_9CBC6A39 ON PUBLIC.MDRRULEGROUPINSTANCE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.ASSETCATEGORYPROPERTY(CATEGORYPROPERTYID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CATEGORYID BIGINT,KEY_ VARCHAR(75),VALUE VARCHAR(75)) -CREATE UNIQUE INDEX IX_DBD111AA ON PUBLIC.ASSETCATEGORYPROPERTY(CATEGORYID,KEY_) -CREATE INDEX IX_52340033 ON PUBLIC.ASSETCATEGORYPROPERTY(COMPANYID,KEY_) -CREATE MEMORY TABLE PUBLIC.ASSETDISPLAYPAGEENTRY(UUID_ VARCHAR(75),ASSETDISPLAYPAGEENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,LAYOUTPAGETEMPLATEENTRYID BIGINT,TYPE_ INTEGER) -CREATE INDEX IX_31FA120C ON PUBLIC.ASSETDISPLAYPAGEENTRY(CLASSNAMEID,CLASSPK) -CREATE UNIQUE INDEX IX_A21FC9A8 ON PUBLIC.ASSETDISPLAYPAGEENTRY(GROUPID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_BFB8A913 ON PUBLIC.ASSETDISPLAYPAGEENTRY(LAYOUTPAGETEMPLATEENTRYID) -CREATE INDEX IX_1DA6952B ON PUBLIC.ASSETDISPLAYPAGEENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_DB986A6D ON PUBLIC.ASSETDISPLAYPAGEENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.ASSETENTRYASSETCATEGORYREL(ASSETENTRYASSETCATEGORYRELID BIGINT NOT NULL PRIMARY KEY,ASSETENTRYID BIGINT,ASSETCATEGORYID BIGINT,PRIORITY INTEGER) -CREATE INDEX IX_19EC1746 ON PUBLIC.ASSETENTRYASSETCATEGORYREL(ASSETCATEGORYID) -CREATE INDEX IX_E597E5D5 ON PUBLIC.ASSETENTRYASSETCATEGORYREL(ASSETENTRYID,ASSETCATEGORYID) -CREATE MEMORY TABLE PUBLIC.ASSETTAGSTATS(TAGSTATSID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,TAGID BIGINT,CLASSNAMEID BIGINT,ASSETCOUNT INTEGER) -CREATE INDEX IX_50702693 ON PUBLIC.ASSETTAGSTATS(CLASSNAMEID) -CREATE UNIQUE INDEX IX_56682CC4 ON PUBLIC.ASSETTAGSTATS(TAGID,CLASSNAMEID) -CREATE MEMORY TABLE PUBLIC.MARKETPLACE_APP(UUID_ VARCHAR(75),APPID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,REMOTEAPPID BIGINT,TITLE VARCHAR(75),DESCRIPTION VARCHAR(16777216),CATEGORY VARCHAR(75),ICONURL VARCHAR(16777216),VERSION VARCHAR(75),REQUIRED BIT(1)) -CREATE INDEX IX_94A7EF25 ON PUBLIC.MARKETPLACE_APP(CATEGORY) -CREATE INDEX IX_865B7BD5 ON PUBLIC.MARKETPLACE_APP(COMPANYID) -CREATE INDEX IX_20F14D93 ON PUBLIC.MARKETPLACE_APP(REMOTEAPPID) -CREATE INDEX IX_A7807DA7 ON PUBLIC.MARKETPLACE_APP(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.MARKETPLACE_MODULE(UUID_ VARCHAR(75),MODULEID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,APPID BIGINT,BUNDLESYMBOLICNAME VARCHAR(500),BUNDLEVERSION VARCHAR(75),CONTEXTNAME VARCHAR(75)) -CREATE INDEX IX_5848F52D ON PUBLIC.MARKETPLACE_MODULE(APPID,BUNDLESYMBOLICNAME,BUNDLEVERSION) -CREATE INDEX IX_C6938724 ON PUBLIC.MARKETPLACE_MODULE(APPID,CONTEXTNAME) -CREATE INDEX IX_DD03D499 ON PUBLIC.MARKETPLACE_MODULE(BUNDLESYMBOLICNAME) -CREATE INDEX IX_F2F1E964 ON PUBLIC.MARKETPLACE_MODULE(CONTEXTNAME) -CREATE INDEX IX_896A375A ON PUBLIC.MARKETPLACE_MODULE(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.AMIMAGEENTRY(UUID_ VARCHAR(75),AMIMAGEENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,CREATEDATE TIMESTAMP,CONFIGURATIONUUID VARCHAR(75),FILEVERSIONID BIGINT,MIMETYPE VARCHAR(75),HEIGHT INTEGER,WIDTH INTEGER,SIZE_ BIGINT) -CREATE INDEX IX_868E8C82 ON PUBLIC.AMIMAGEENTRY(COMPANYID,CONFIGURATIONUUID) -CREATE UNIQUE INDEX IX_C1EE916F ON PUBLIC.AMIMAGEENTRY(CONFIGURATIONUUID,FILEVERSIONID) -CREATE INDEX IX_E879919E ON PUBLIC.AMIMAGEENTRY(FILEVERSIONID) -CREATE INDEX IX_65AB1EA1 ON PUBLIC.AMIMAGEENTRY(GROUPID) -CREATE INDEX IX_257F1DDD ON PUBLIC.AMIMAGEENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_A0FF779F ON PUBLIC.AMIMAGEENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.SAPENTRY(UUID_ VARCHAR(75),SAPENTRYID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,ALLOWEDSERVICESIGNATURES VARCHAR(16777216),DEFAULTSAPENTRY BIT(1),ENABLED BIT(1),NAME VARCHAR(75),TITLE VARCHAR(16777216)) -CREATE INDEX IX_6D669D6F ON PUBLIC.SAPENTRY(COMPANYID,DEFAULTSAPENTRY) -CREATE INDEX IX_90740311 ON PUBLIC.SAPENTRY(COMPANYID,NAME) -CREATE INDEX IX_AAAEBA0A ON PUBLIC.SAPENTRY(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.LAYOUTPAGETEMPLATECOLLECTION(UUID_ VARCHAR(75),LAYOUTPAGETEMPLATECOLLECTIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_D569E8F2 ON PUBLIC.LAYOUTPAGETEMPLATECOLLECTION(GROUPID,NAME) -CREATE INDEX IX_BCD4D4B ON PUBLIC.LAYOUTPAGETEMPLATECOLLECTION(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_9E4EAA8D ON PUBLIC.LAYOUTPAGETEMPLATECOLLECTION(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.LAYOUTPAGETEMPLATEENTRY(UUID_ VARCHAR(75),LAYOUTPAGETEMPLATEENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,LAYOUTPAGETEMPLATECOLLECTIONID BIGINT,CLASSNAMEID BIGINT,CLASSTYPEID BIGINT,NAME VARCHAR(75),TYPE_ INTEGER,PREVIEWFILEENTRYID BIGINT,DEFAULTTEMPLATE BIT(1),LAYOUTPROTOTYPEID BIGINT,LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_957F6C5D ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,CLASSNAMEID,CLASSTYPEID,DEFAULTTEMPLATE,STATUS) -CREATE INDEX IX_E2488048 ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,CLASSNAMEID,CLASSTYPEID,NAME,TYPE_,STATUS) -CREATE INDEX IX_227636E7 ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,CLASSNAMEID,CLASSTYPEID,TYPE_,STATUS) -CREATE INDEX IX_1736F4A2 ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,CLASSNAMEID,DEFAULTTEMPLATE) -CREATE INDEX IX_4C3A286A ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,LAYOUTPAGETEMPLATECOLLECTIONID,NAME,STATUS) -CREATE INDEX IX_A4733F6B ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,LAYOUTPAGETEMPLATECOLLECTIONID,STATUS) -CREATE INDEX IX_4BCAC4B0 ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,LAYOUTPAGETEMPLATECOLLECTIONID,TYPE_) -CREATE INDEX IX_6120EE7E ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,LAYOUTPROTOTYPEID) -CREATE UNIQUE INDEX IX_A075DAA4 ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,NAME) -CREATE INDEX IX_1F1BEA76 ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(GROUPID,TYPE_,STATUS) -CREATE INDEX IX_A185457E ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(LAYOUTPROTOTYPEID) -CREATE INDEX IX_CEC0A659 ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_34C0EF1B ON PUBLIC.LAYOUTPAGETEMPLATEENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.HTMLPREVIEWENTRY(HTMLPREVIEWENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,FILEENTRYID BIGINT) -CREATE INDEX IX_B4B598A4 ON PUBLIC.HTMLPREVIEWENTRY(GROUPID,CLASSNAMEID,CLASSPK) -CREATE MEMORY TABLE PUBLIC.KBARTICLE(UUID_ VARCHAR(75),KBARTICLEID BIGINT NOT NULL PRIMARY KEY,RESOURCEPRIMKEY BIGINT,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,ROOTRESOURCEPRIMKEY BIGINT,PARENTRESOURCECLASSNAMEID BIGINT,PARENTRESOURCEPRIMKEY BIGINT,KBFOLDERID BIGINT,VERSION INTEGER,TITLE VARCHAR(16777216),URLTITLE VARCHAR(75),CONTENT VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),PRIORITY DOUBLE,SECTIONS VARCHAR(16777216),VIEWCOUNT INTEGER,LATEST BIT(1),MAIN BIT(1),SOURCEURL VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_571C019E ON PUBLIC.KBARTICLE(COMPANYID,LATEST) -CREATE INDEX IX_5A381890 ON PUBLIC.KBARTICLE(COMPANYID,MAIN) -CREATE INDEX IX_FBC2D349 ON PUBLIC.KBARTICLE(COMPANYID,STATUS) -CREATE INDEX IX_2B11F674 ON PUBLIC.KBARTICLE(GROUPID,KBFOLDERID,LATEST) -CREATE INDEX IX_CFB8C81F ON PUBLIC.KBARTICLE(GROUPID,KBFOLDERID,STATUS) -CREATE INDEX IX_379FD6BC ON PUBLIC.KBARTICLE(GROUPID,KBFOLDERID,URLTITLE,STATUS) -CREATE INDEX IX_694EA2E0 ON PUBLIC.KBARTICLE(GROUPID,LATEST) -CREATE INDEX IX_97C62252 ON PUBLIC.KBARTICLE(GROUPID,MAIN) -CREATE INDEX IX_994AC32D ON PUBLIC.KBARTICLE(GROUPID,PARENTRESOURCEPRIMKEY,LATEST,STATUS) -CREATE INDEX IX_D91D2879 ON PUBLIC.KBARTICLE(GROUPID,PARENTRESOURCEPRIMKEY,MAIN) -CREATE INDEX IX_55A38CF2 ON PUBLIC.KBARTICLE(GROUPID,PARENTRESOURCEPRIMKEY,STATUS) -CREATE INDEX IX_DF5748B ON PUBLIC.KBARTICLE(GROUPID,STATUS) -CREATE INDEX IX_86BA3247 ON PUBLIC.KBARTICLE(PARENTRESOURCEPRIMKEY,LATEST) -CREATE INDEX IX_1DCC5F79 ON PUBLIC.KBARTICLE(PARENTRESOURCEPRIMKEY,MAIN) -CREATE INDEX IX_2B6103F2 ON PUBLIC.KBARTICLE(PARENTRESOURCEPRIMKEY,STATUS) -CREATE INDEX IX_5FEF5F4F ON PUBLIC.KBARTICLE(RESOURCEPRIMKEY,GROUPID,LATEST) -CREATE INDEX IX_8EF92E81 ON PUBLIC.KBARTICLE(RESOURCEPRIMKEY,GROUPID,MAIN) -CREATE INDEX IX_49630FA ON PUBLIC.KBARTICLE(RESOURCEPRIMKEY,GROUPID,STATUS) -CREATE UNIQUE INDEX IX_B5B6C674 ON PUBLIC.KBARTICLE(RESOURCEPRIMKEY,GROUPID,VERSION) -CREATE INDEX IX_A9E2C691 ON PUBLIC.KBARTICLE(RESOURCEPRIMKEY,LATEST) -CREATE INDEX IX_69C17E43 ON PUBLIC.KBARTICLE(RESOURCEPRIMKEY,MAIN) -CREATE INDEX IX_4E89983C ON PUBLIC.KBARTICLE(RESOURCEPRIMKEY,STATUS) -CREATE UNIQUE INDEX IX_AA304772 ON PUBLIC.KBARTICLE(RESOURCEPRIMKEY,VERSION) -CREATE INDEX IX_4E87D659 ON PUBLIC.KBARTICLE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_5C941F1B ON PUBLIC.KBARTICLE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.KBCOMMENT(UUID_ VARCHAR(75),KBCOMMENTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,CONTENT VARCHAR(16777216),USERRATING INTEGER,LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER) -CREATE INDEX IX_47D3AE89 ON PUBLIC.KBCOMMENT(CLASSNAMEID,CLASSPK,STATUS) -CREATE INDEX IX_E8D43932 ON PUBLIC.KBCOMMENT(GROUPID,CLASSNAMEID) -CREATE INDEX IX_828BA082 ON PUBLIC.KBCOMMENT(GROUPID,STATUS) -CREATE INDEX IX_FD56A55D ON PUBLIC.KBCOMMENT(USERID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_6CB72942 ON PUBLIC.KBCOMMENT(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_791D1844 ON PUBLIC.KBCOMMENT(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.KBFOLDER(UUID_ VARCHAR(75),KBFOLDERID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PARENTKBFOLDERID BIGINT,NAME VARCHAR(75),URLTITLE VARCHAR(75),DESCRIPTION VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_3FA4415C ON PUBLIC.KBFOLDER(GROUPID,PARENTKBFOLDERID,NAME) -CREATE INDEX IX_729A89FA ON PUBLIC.KBFOLDER(GROUPID,PARENTKBFOLDERID,URLTITLE) -CREATE INDEX IX_32D1105F ON PUBLIC.KBFOLDER(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_1FD022A1 ON PUBLIC.KBFOLDER(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.KBTEMPLATE(UUID_ VARCHAR(75),KBTEMPLATEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,TITLE VARCHAR(16777216),CONTENT VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_83D9CC13 ON PUBLIC.KBTEMPLATE(GROUPID) -CREATE INDEX IX_853770AB ON PUBLIC.KBTEMPLATE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_40AA25ED ON PUBLIC.KBTEMPLATE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.TRASHENTRY(ENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,SYSTEMEVENTSETKEY BIGINT,TYPESETTINGS VARCHAR(16777216),STATUS INTEGER) -CREATE UNIQUE INDEX IX_B35F73D5 ON PUBLIC.TRASHENTRY(CLASSNAMEID,CLASSPK) -CREATE INDEX IX_2674F2A8 ON PUBLIC.TRASHENTRY(COMPANYID) -CREATE INDEX IX_FC4EEA64 ON PUBLIC.TRASHENTRY(GROUPID,CLASSNAMEID) -CREATE INDEX IX_6CAAE2E8 ON PUBLIC.TRASHENTRY(GROUPID,CREATEDATE) -CREATE MEMORY TABLE PUBLIC.TRASHVERSION(VERSIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,ENTRYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,TYPESETTINGS VARCHAR(16777216),STATUS INTEGER) -CREATE UNIQUE INDEX IX_630A643B ON PUBLIC.TRASHVERSION(CLASSNAMEID,CLASSPK) -CREATE INDEX IX_72D58D37 ON PUBLIC.TRASHVERSION(ENTRYID,CLASSNAMEID) -CREATE MEMORY TABLE PUBLIC.BLOGSENTRY(UUID_ VARCHAR(75),ENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,TITLE VARCHAR(150),SUBTITLE VARCHAR(16777216),URLTITLE VARCHAR(255),DESCRIPTION VARCHAR(16777216),CONTENT VARCHAR(16777216),DISPLAYDATE TIMESTAMP,ALLOWPINGBACKS BIT(1),ALLOWTRACKBACKS BIT(1),TRACKBACKS VARCHAR(16777216),COVERIMAGECAPTION VARCHAR(16777216),COVERIMAGEFILEENTRYID BIGINT,COVERIMAGEURL VARCHAR(16777216),SMALLIMAGE BIT(1),SMALLIMAGEFILEENTRYID BIGINT,SMALLIMAGEID BIGINT,SMALLIMAGEURL VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_BB0C2905 ON PUBLIC.BLOGSENTRY(COMPANYID,DISPLAYDATE,STATUS) -CREATE INDEX IX_EB2DCE27 ON PUBLIC.BLOGSENTRY(COMPANYID,STATUS) -CREATE INDEX IX_A5F57B61 ON PUBLIC.BLOGSENTRY(COMPANYID,USERID,STATUS) -CREATE INDEX IX_2672F77F ON PUBLIC.BLOGSENTRY(DISPLAYDATE,STATUS) -CREATE INDEX IX_F0E73383 ON PUBLIC.BLOGSENTRY(GROUPID,DISPLAYDATE,STATUS) -CREATE INDEX IX_1EFD8EE9 ON PUBLIC.BLOGSENTRY(GROUPID,STATUS) -CREATE UNIQUE INDEX IX_DB780A20 ON PUBLIC.BLOGSENTRY(GROUPID,URLTITLE) -CREATE INDEX IX_DA04F689 ON PUBLIC.BLOGSENTRY(GROUPID,USERID,DISPLAYDATE,STATUS) -CREATE INDEX IX_49E15A23 ON PUBLIC.BLOGSENTRY(GROUPID,USERID,STATUS) -CREATE INDEX IX_5E8307BB ON PUBLIC.BLOGSENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_1B1040FD ON PUBLIC.BLOGSENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.BLOGSSTATSUSER(STATSUSERID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,ENTRYCOUNT INTEGER,LASTPOSTDATE TIMESTAMP,RATINGSTOTALENTRIES INTEGER,RATINGSTOTALSCORE DOUBLE,RATINGSAVERAGESCORE DOUBLE) -CREATE INDEX IX_90CDA39A ON PUBLIC.BLOGSSTATSUSER(COMPANYID,ENTRYCOUNT) -CREATE INDEX IX_28C78D5C ON PUBLIC.BLOGSSTATSUSER(GROUPID,ENTRYCOUNT) -CREATE UNIQUE INDEX IX_82254C25 ON PUBLIC.BLOGSSTATSUSER(GROUPID,USERID) -CREATE INDEX IX_507BA031 ON PUBLIC.BLOGSSTATSUSER(USERID,LASTPOSTDATE) -CREATE MEMORY TABLE PUBLIC.BACKGROUNDTASK(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,BACKGROUNDTASKID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(255),SERVLETCONTEXTNAMES VARCHAR(255),TASKEXECUTORCLASSNAME VARCHAR(200),TASKCONTEXTMAP VARCHAR(16777216),COMPLETED BIT(1),COMPLETIONDATE TIMESTAMP,STATUS INTEGER,STATUSMESSAGE VARCHAR(16777216)) -CREATE INDEX IX_C5A6C78F ON PUBLIC.BACKGROUNDTASK(COMPANYID) -CREATE INDEX IX_FBF5FAA2 ON PUBLIC.BACKGROUNDTASK(COMPLETED) -CREATE INDEX IX_579C63B0 ON PUBLIC.BACKGROUNDTASK(GROUPID,NAME,TASKEXECUTORCLASSNAME,COMPLETED) -CREATE INDEX IX_C71C3B7 ON PUBLIC.BACKGROUNDTASK(GROUPID,STATUS) -CREATE INDEX IX_7A9FF471 ON PUBLIC.BACKGROUNDTASK(GROUPID,TASKEXECUTORCLASSNAME,COMPLETED) -CREATE INDEX IX_7E757D70 ON PUBLIC.BACKGROUNDTASK(GROUPID,TASKEXECUTORCLASSNAME,STATUS) -CREATE INDEX IX_75638CDF ON PUBLIC.BACKGROUNDTASK(STATUS) -CREATE INDEX IX_2FCFE748 ON PUBLIC.BACKGROUNDTASK(TASKEXECUTORCLASSNAME,STATUS) -CREATE MEMORY TABLE PUBLIC.DLCONTENT(CONTENTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,REPOSITORYID BIGINT,PATH_ VARCHAR(255),VERSION VARCHAR(75),DATA_ BLOB(1G),SIZE_ BIGINT) -CREATE UNIQUE INDEX IX_FDD1AAA8 ON PUBLIC.DLCONTENT(COMPANYID,REPOSITORYID,PATH_,VERSION) -CREATE MEMORY TABLE PUBLIC.DLFILERANK(FILERANKID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,CREATEDATE TIMESTAMP,FILEENTRYID BIGINT,ACTIVE_ BIT(1)) -CREATE INDEX IX_38F0315 ON PUBLIC.DLFILERANK(COMPANYID,USERID,FILEENTRYID) -CREATE INDEX IX_A65A1F8B ON PUBLIC.DLFILERANK(FILEENTRYID) -CREATE INDEX IX_4E96195B ON PUBLIC.DLFILERANK(GROUPID,USERID,ACTIVE_) -CREATE INDEX IX_EED06670 ON PUBLIC.DLFILERANK(USERID) -CREATE MEMORY TABLE PUBLIC.DLSYNCEVENT(SYNCEVENTID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,MODIFIEDTIME BIGINT,EVENT VARCHAR(75),TYPE_ VARCHAR(75),TYPEPK BIGINT) -CREATE INDEX IX_3D8E1607 ON PUBLIC.DLSYNCEVENT(MODIFIEDTIME) -CREATE UNIQUE INDEX IX_57D82B06 ON PUBLIC.DLSYNCEVENT(TYPEPK) -CREATE MEMORY TABLE PUBLIC.KALEOACTION(KALEOACTIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEOCLASSNAME VARCHAR(200),KALEOCLASSPK BIGINT,KALEODEFINITIONVERSIONID BIGINT,KALEONODENAME VARCHAR(200),NAME VARCHAR(200),DESCRIPTION VARCHAR(16777216),EXECUTIONTYPE VARCHAR(20),SCRIPT VARCHAR(16777216),SCRIPTLANGUAGE VARCHAR(75),SCRIPTREQUIREDCONTEXTS VARCHAR(16777216),PRIORITY INTEGER) -CREATE INDEX IX_50E9112C ON PUBLIC.KALEOACTION(COMPANYID) -CREATE INDEX IX_4B2545E8 ON PUBLIC.KALEOACTION(KALEOCLASSNAME,KALEOCLASSPK,EXECUTIONTYPE) -CREATE INDEX IX_F8808C50 ON PUBLIC.KALEOACTION(KALEODEFINITIONVERSIONID) -CREATE MEMORY TABLE PUBLIC.KALEOCONDITION(KALEOCONDITIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEONODEID BIGINT,SCRIPT VARCHAR(16777216),SCRIPTLANGUAGE VARCHAR(75),SCRIPTREQUIREDCONTEXTS VARCHAR(16777216)) -CREATE INDEX IX_FEE46067 ON PUBLIC.KALEOCONDITION(COMPANYID) -CREATE INDEX IX_353B7FB5 ON PUBLIC.KALEOCONDITION(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_86CBD4C ON PUBLIC.KALEOCONDITION(KALEONODEID) -CREATE MEMORY TABLE PUBLIC.KALEODEFINITION(KALEODEFINITIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(200),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),CONTENT VARCHAR(16777216),VERSION INTEGER,ACTIVE_ BIT(1)) -CREATE INDEX IX_408542BA ON PUBLIC.KALEODEFINITION(COMPANYID,ACTIVE_) -CREATE INDEX IX_4C23F11B ON PUBLIC.KALEODEFINITION(COMPANYID,NAME,ACTIVE_) -CREATE INDEX IX_EC14F81A ON PUBLIC.KALEODEFINITION(COMPANYID,NAME,VERSION) -CREATE MEMORY TABLE PUBLIC.KALEODEFINITIONVERSION(KALEODEFINITIONVERSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP,CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(200),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),CONTENT VARCHAR(16777216),VERSION VARCHAR(75),STARTKALEONODEID BIGINT,STATUS INTEGER) -CREATE UNIQUE INDEX IX_AE02DCC ON PUBLIC.KALEODEFINITIONVERSION(COMPANYID,NAME,VERSION) -CREATE MEMORY TABLE PUBLIC.KALEOINSTANCE(KALEOINSTANCEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEODEFINITIONNAME VARCHAR(200),KALEODEFINITIONVERSION INTEGER,ROOTKALEOINSTANCETOKENID BIGINT,CLASSNAME VARCHAR(200),CLASSPK BIGINT,COMPLETED BIT(1),COMPLETIONDATE TIMESTAMP,WORKFLOWCONTEXT VARCHAR(16777216)) -CREATE INDEX IX_58D85ECB ON PUBLIC.KALEOINSTANCE(CLASSNAME,CLASSPK) -CREATE INDEX IX_BF5839F8 ON PUBLIC.KALEOINSTANCE(COMPANYID,KALEODEFINITIONNAME,KALEODEFINITIONVERSION,COMPLETIONDATE) -CREATE INDEX IX_C6D7A867 ON PUBLIC.KALEOINSTANCE(COMPANYID,USERID) -CREATE INDEX IX_3DA1A5AC ON PUBLIC.KALEOINSTANCE(KALEODEFINITIONVERSIONID,COMPLETED) -CREATE MEMORY TABLE PUBLIC.KALEOINSTANCETOKEN(KALEOINSTANCETOKENID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEOINSTANCEID BIGINT,PARENTKALEOINSTANCETOKENID BIGINT,CURRENTKALEONODEID BIGINT,CURRENTKALEONODENAME VARCHAR(200),CLASSNAME VARCHAR(200),CLASSPK BIGINT,COMPLETED BIT(1),COMPLETIONDATE TIMESTAMP) -CREATE INDEX IX_360D34D9 ON PUBLIC.KALEOINSTANCETOKEN(COMPANYID,PARENTKALEOINSTANCETOKENID,COMPLETIONDATE) -CREATE INDEX IX_1181057E ON PUBLIC.KALEOINSTANCETOKEN(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_F42AAFF6 ON PUBLIC.KALEOINSTANCETOKEN(KALEOINSTANCEID) -CREATE MEMORY TABLE PUBLIC.KALEOLOG(KALEOLOGID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEOCLASSNAME VARCHAR(200),KALEOCLASSPK BIGINT,KALEODEFINITIONVERSIONID BIGINT,KALEOINSTANCEID BIGINT,KALEOINSTANCETOKENID BIGINT,KALEOTASKINSTANCETOKENID BIGINT,KALEONODENAME VARCHAR(200),TERMINALKALEONODE BIT(1),KALEOACTIONID BIGINT,KALEOACTIONNAME VARCHAR(200),KALEOACTIONDESCRIPTION VARCHAR(16777216),PREVIOUSKALEONODEID BIGINT,PREVIOUSKALEONODENAME VARCHAR(200),PREVIOUSASSIGNEECLASSNAME VARCHAR(200),PREVIOUSASSIGNEECLASSPK BIGINT,CURRENTASSIGNEECLASSNAME VARCHAR(200),CURRENTASSIGNEECLASSPK BIGINT,TYPE_ VARCHAR(50),COMMENT_ VARCHAR(16777216),STARTDATE TIMESTAMP,ENDDATE TIMESTAMP,DURATION BIGINT,WORKFLOWCONTEXT VARCHAR(16777216)) -CREATE INDEX IX_73B5F4DE ON PUBLIC.KALEOLOG(COMPANYID) -CREATE INDEX IX_E66A153A ON PUBLIC.KALEOLOG(KALEOCLASSNAME,KALEOCLASSPK,KALEOINSTANCETOKENID,TYPE_) -CREATE INDEX IX_935D8E5E ON PUBLIC.KALEOLOG(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_5BC6AB16 ON PUBLIC.KALEOLOG(KALEOINSTANCEID) -CREATE INDEX IX_470B9FF8 ON PUBLIC.KALEOLOG(KALEOINSTANCETOKENID,TYPE_) -CREATE INDEX IX_B0CDCA38 ON PUBLIC.KALEOLOG(KALEOTASKINSTANCETOKENID) -CREATE MEMORY TABLE PUBLIC.KALEONODE(KALEONODEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,NAME VARCHAR(200),METADATA VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),TYPE_ VARCHAR(20),INITIAL_ BIT(1),TERMINAL BIT(1)) -CREATE INDEX IX_4B1D16B4 ON PUBLIC.KALEONODE(COMPANYID,KALEODEFINITIONVERSIONID) -CREATE INDEX IX_F066921C ON PUBLIC.KALEONODE(KALEODEFINITIONVERSIONID) -CREATE MEMORY TABLE PUBLIC.KALEONOTIFICATION(KALEONOTIFICATIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEOCLASSNAME VARCHAR(200),KALEOCLASSPK BIGINT,KALEODEFINITIONVERSIONID BIGINT,KALEONODENAME VARCHAR(200),NAME VARCHAR(200),DESCRIPTION VARCHAR(16777216),EXECUTIONTYPE VARCHAR(20),TEMPLATE VARCHAR(16777216),TEMPLATELANGUAGE VARCHAR(75),NOTIFICATIONTYPES VARCHAR(25)) -CREATE INDEX IX_38829497 ON PUBLIC.KALEONOTIFICATION(COMPANYID) -CREATE INDEX IX_F3362E93 ON PUBLIC.KALEONOTIFICATION(KALEOCLASSNAME,KALEOCLASSPK,EXECUTIONTYPE) -CREATE INDEX IX_B8486585 ON PUBLIC.KALEONOTIFICATION(KALEODEFINITIONVERSIONID) -CREATE MEMORY TABLE PUBLIC.KALEONOTIFICATIONRECIPIENT(KALEONOTIFICATIONRECIPIENTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEONOTIFICATIONID BIGINT,RECIPIENTCLASSNAME VARCHAR(200),RECIPIENTCLASSPK BIGINT,RECIPIENTROLETYPE INTEGER,RECIPIENTSCRIPT VARCHAR(16777216),RECIPIENTSCRIPTLANGUAGE VARCHAR(75),RECIPIENTSCRIPTCONTEXTS VARCHAR(16777216),ADDRESS VARCHAR(255),NOTIFICATIONRECEPTIONTYPE VARCHAR(3)) -CREATE INDEX IX_2C8C4AF4 ON PUBLIC.KALEONOTIFICATIONRECIPIENT(COMPANYID) -CREATE INDEX IX_B6D98988 ON PUBLIC.KALEONOTIFICATIONRECIPIENT(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_7F4FED02 ON PUBLIC.KALEONOTIFICATIONRECIPIENT(KALEONOTIFICATIONID) -CREATE MEMORY TABLE PUBLIC.KALEOTASK(KALEOTASKID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEONODEID BIGINT,NAME VARCHAR(200),DESCRIPTION VARCHAR(16777216)) -CREATE INDEX IX_E1F8B23D ON PUBLIC.KALEOTASK(COMPANYID) -CREATE INDEX IX_FECA871F ON PUBLIC.KALEOTASK(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_77B3F1A2 ON PUBLIC.KALEOTASK(KALEONODEID) -CREATE MEMORY TABLE PUBLIC.KALEOTASKASSIGNMENT(KALEOTASKASSIGNMENTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEOCLASSNAME VARCHAR(200),KALEOCLASSPK BIGINT,KALEODEFINITIONVERSIONID BIGINT,KALEONODEID BIGINT,ASSIGNEECLASSNAME VARCHAR(200),ASSIGNEECLASSPK BIGINT,ASSIGNEEACTIONID VARCHAR(75),ASSIGNEESCRIPT VARCHAR(16777216),ASSIGNEESCRIPTLANGUAGE VARCHAR(75),ASSIGNEESCRIPTREQUIREDCONTEXTS VARCHAR(16777216)) -CREATE INDEX IX_611732B0 ON PUBLIC.KALEOTASKASSIGNMENT(COMPANYID) -CREATE INDEX IX_1087068E ON PUBLIC.KALEOTASKASSIGNMENT(KALEOCLASSNAME,KALEOCLASSPK,ASSIGNEECLASSNAME) -CREATE INDEX IX_E362B24C ON PUBLIC.KALEOTASKASSIGNMENT(KALEODEFINITIONVERSIONID) -CREATE MEMORY TABLE PUBLIC.KALEOTASKASSIGNMENTINSTANCE(KALEOTASKASSIGNMENTINSTANCEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEOINSTANCEID BIGINT,KALEOINSTANCETOKENID BIGINT,KALEOTASKINSTANCETOKENID BIGINT,KALEOTASKID BIGINT,KALEOTASKNAME VARCHAR(200),ASSIGNEECLASSNAME VARCHAR(200),ASSIGNEECLASSPK BIGINT,COMPLETED BIT(1),COMPLETIONDATE TIMESTAMP) -CREATE INDEX IX_3BD436FD ON PUBLIC.KALEOTASKASSIGNMENTINSTANCE(ASSIGNEECLASSNAME,ASSIGNEECLASSPK) -CREATE INDEX IX_6E3CDA1B ON PUBLIC.KALEOTASKASSIGNMENTINSTANCE(COMPANYID) -CREATE INDEX IX_38A47B17 ON PUBLIC.KALEOTASKASSIGNMENTINSTANCE(GROUPID,ASSIGNEECLASSPK) -CREATE INDEX IX_B751E781 ON PUBLIC.KALEOTASKASSIGNMENTINSTANCE(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_67A9EE93 ON PUBLIC.KALEOTASKASSIGNMENTINSTANCE(KALEOINSTANCEID) -CREATE INDEX IX_D4C2235B ON PUBLIC.KALEOTASKASSIGNMENTINSTANCE(KALEOTASKINSTANCETOKENID) -CREATE MEMORY TABLE PUBLIC.KALEOTASKFORM(KALEOTASKFORMID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEONODEID BIGINT,KALEOTASKID BIGINT,KALEOTASKNAME VARCHAR(200),NAME VARCHAR(200),DESCRIPTION VARCHAR(16777216),FORMCOMPANYID BIGINT,FORMDEFINITION VARCHAR(16777216),FORMGROUPID BIGINT,FORMID BIGINT,FORMUUID VARCHAR(75),METADATA VARCHAR(16777216),PRIORITY INTEGER) -CREATE INDEX IX_EFDA7E59 ON PUBLIC.KALEOTASKFORM(COMPANYID) -CREATE INDEX IX_3B8B7F83 ON PUBLIC.KALEOTASKFORM(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_945326BE ON PUBLIC.KALEOTASKFORM(KALEONODEID) -CREATE INDEX IX_E38A5954 ON PUBLIC.KALEOTASKFORM(KALEOTASKID,FORMUUID) -CREATE MEMORY TABLE PUBLIC.KALEOTASKFORMINSTANCE(KALEOTASKFORMINSTANCEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEOINSTANCEID BIGINT,KALEOTASKID BIGINT,KALEOTASKINSTANCETOKENID BIGINT,KALEOTASKFORMID BIGINT,FORMVALUES VARCHAR(16777216),FORMVALUEENTRYGROUPID BIGINT,FORMVALUEENTRYID BIGINT,FORMVALUEENTRYUUID VARCHAR(75),METADATA VARCHAR(16777216)) -CREATE INDEX IX_77B26CC4 ON PUBLIC.KALEOTASKFORMINSTANCE(COMPANYID) -CREATE INDEX IX_F118DB8 ON PUBLIC.KALEOTASKFORMINSTANCE(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_FF271E7C ON PUBLIC.KALEOTASKFORMINSTANCE(KALEOINSTANCEID) -CREATE INDEX IX_E7F42BD0 ON PUBLIC.KALEOTASKFORMINSTANCE(KALEOTASKFORMID) -CREATE INDEX IX_2A86346C ON PUBLIC.KALEOTASKFORMINSTANCE(KALEOTASKID) -CREATE INDEX IX_2C81C992 ON PUBLIC.KALEOTASKFORMINSTANCE(KALEOTASKINSTANCETOKENID) -CREATE MEMORY TABLE PUBLIC.KALEOTASKINSTANCETOKEN(KALEOTASKINSTANCETOKENID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEOINSTANCEID BIGINT,KALEOINSTANCETOKENID BIGINT,KALEOTASKID BIGINT,KALEOTASKNAME VARCHAR(200),CLASSNAME VARCHAR(200),CLASSPK BIGINT,COMPLETIONUSERID BIGINT,COMPLETED BIT(1),COMPLETIONDATE TIMESTAMP,DUEDATE TIMESTAMP,WORKFLOWCONTEXT VARCHAR(16777216)) -CREATE INDEX IX_A3271995 ON PUBLIC.KALEOTASKINSTANCETOKEN(CLASSNAME,CLASSPK) -CREATE INDEX IX_997FE723 ON PUBLIC.KALEOTASKINSTANCETOKEN(COMPANYID) -CREATE INDEX IX_B2822979 ON PUBLIC.KALEOTASKINSTANCETOKEN(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_B857A115 ON PUBLIC.KALEOTASKINSTANCETOKEN(KALEOINSTANCEID,KALEOTASKID) -CREATE MEMORY TABLE PUBLIC.KALEOTIMER(KALEOTIMERID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEOCLASSNAME VARCHAR(200),KALEOCLASSPK BIGINT,KALEODEFINITIONVERSIONID BIGINT,NAME VARCHAR(75),BLOCKING BIT(1),DESCRIPTION VARCHAR(16777216),DURATION DOUBLE,SCALE VARCHAR(75),RECURRENCEDURATION DOUBLE,RECURRENCESCALE VARCHAR(75)) -CREATE INDEX IX_1A479F32 ON PUBLIC.KALEOTIMER(KALEOCLASSNAME,KALEOCLASSPK,BLOCKING) -CREATE MEMORY TABLE PUBLIC.KALEOTIMERINSTANCETOKEN(KALEOTIMERINSTANCETOKENID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEOCLASSNAME VARCHAR(200),KALEOCLASSPK BIGINT,KALEODEFINITIONVERSIONID BIGINT,KALEOINSTANCEID BIGINT,KALEOINSTANCETOKENID BIGINT,KALEOTASKINSTANCETOKENID BIGINT,KALEOTIMERID BIGINT,KALEOTIMERNAME VARCHAR(200),BLOCKING BIT(1),COMPLETIONUSERID BIGINT,COMPLETED BIT(1),COMPLETIONDATE TIMESTAMP,WORKFLOWCONTEXT VARCHAR(16777216)) -CREATE INDEX IX_DB96C55B ON PUBLIC.KALEOTIMERINSTANCETOKEN(KALEOINSTANCEID) -CREATE INDEX IX_F904A89A ON PUBLIC.KALEOTIMERINSTANCETOKEN(KALEOINSTANCETOKENID,BLOCKING,COMPLETED) -CREATE INDEX IX_DB279423 ON PUBLIC.KALEOTIMERINSTANCETOKEN(KALEOINSTANCETOKENID,COMPLETED) -CREATE INDEX IX_13A5BA2C ON PUBLIC.KALEOTIMERINSTANCETOKEN(KALEOINSTANCETOKENID,KALEOTIMERID) -CREATE MEMORY TABLE PUBLIC.KALEOTRANSITION(KALEOTRANSITIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KALEODEFINITIONVERSIONID BIGINT,KALEONODEID BIGINT,NAME VARCHAR(200),DESCRIPTION VARCHAR(16777216),SOURCEKALEONODEID BIGINT,SOURCEKALEONODENAME VARCHAR(200),TARGETKALEONODEID BIGINT,TARGETKALEONODENAME VARCHAR(200),DEFAULTTRANSITION BIT(1)) -CREATE INDEX IX_41D6C6D ON PUBLIC.KALEOTRANSITION(COMPANYID) -CREATE INDEX IX_16B426EF ON PUBLIC.KALEOTRANSITION(KALEODEFINITIONVERSIONID) -CREATE INDEX IX_A38E2194 ON PUBLIC.KALEOTRANSITION(KALEONODEID,DEFAULTTRANSITION) -CREATE INDEX IX_85268A11 ON PUBLIC.KALEOTRANSITION(KALEONODEID,NAME) -CREATE MEMORY TABLE PUBLIC.DDMCONTENT(UUID_ VARCHAR(75),CONTENTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),DATA_ VARCHAR(16777216)) -CREATE INDEX IX_E3BAF436 ON PUBLIC.DDMCONTENT(COMPANYID) -CREATE INDEX IX_50BF1038 ON PUBLIC.DDMCONTENT(GROUPID) -CREATE INDEX IX_3A9C0626 ON PUBLIC.DDMCONTENT(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_EB9BDE28 ON PUBLIC.DDMCONTENT(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDMDATAPROVIDERINSTANCE(UUID_ VARCHAR(75),DATAPROVIDERINSTANCEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),DEFINITION VARCHAR(16777216),TYPE_ VARCHAR(75)) -CREATE INDEX IX_DB54A6E5 ON PUBLIC.DDMDATAPROVIDERINSTANCE(COMPANYID) -CREATE INDEX IX_1333A2A7 ON PUBLIC.DDMDATAPROVIDERINSTANCE(GROUPID) -CREATE INDEX IX_C903C097 ON PUBLIC.DDMDATAPROVIDERINSTANCE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_B4E180D9 ON PUBLIC.DDMDATAPROVIDERINSTANCE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDMDATAPROVIDERINSTANCELINK(DATAPROVIDERINSTANCELINKID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,DATAPROVIDERINSTANCEID BIGINT,STRUCTUREID BIGINT) -CREATE UNIQUE INDEX IX_8C878342 ON PUBLIC.DDMDATAPROVIDERINSTANCELINK(DATAPROVIDERINSTANCEID,STRUCTUREID) -CREATE INDEX IX_CB823541 ON PUBLIC.DDMDATAPROVIDERINSTANCELINK(STRUCTUREID) -CREATE MEMORY TABLE PUBLIC.DDMFORMINSTANCE(UUID_ VARCHAR(75),FORMINSTANCEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),VERSIONUSERID BIGINT,VERSIONUSERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,STRUCTUREID BIGINT,VERSION VARCHAR(75),NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),SETTINGS_ VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_9E1C31FE ON PUBLIC.DDMFORMINSTANCE(GROUPID) -CREATE INDEX IX_E418320 ON PUBLIC.DDMFORMINSTANCE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_AA9051A2 ON PUBLIC.DDMFORMINSTANCE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDMFORMINSTANCERECORD(UUID_ VARCHAR(75),FORMINSTANCERECORDID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),VERSIONUSERID BIGINT,VERSIONUSERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,FORMINSTANCEID BIGINT,FORMINSTANCEVERSION VARCHAR(75),STORAGEID BIGINT,VERSION VARCHAR(75),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_5BC982B ON PUBLIC.DDMFORMINSTANCERECORD(COMPANYID) -CREATE INDEX IX_242301EA ON PUBLIC.DDMFORMINSTANCERECORD(FORMINSTANCEID,FORMINSTANCEVERSION) -CREATE INDEX IX_3C8DBDFF ON PUBLIC.DDMFORMINSTANCERECORD(FORMINSTANCEID,USERID) -CREATE INDEX IX_E1971FF ON PUBLIC.DDMFORMINSTANCERECORD(USERID,FORMINSTANCEID) -CREATE INDEX IX_CF8CF491 ON PUBLIC.DDMFORMINSTANCERECORD(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_AA3B6B53 ON PUBLIC.DDMFORMINSTANCERECORD(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDMFORMINSTANCERECORDVERSION(FORMINSTANCERECORDVERSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,FORMINSTANCEID BIGINT,FORMINSTANCEVERSION VARCHAR(75),FORMINSTANCERECORDID BIGINT,VERSION VARCHAR(75),STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP,STORAGEID BIGINT) -CREATE INDEX IX_EAAF6D80 ON PUBLIC.DDMFORMINSTANCERECORDVERSION(FORMINSTANCEID,FORMINSTANCEVERSION) -CREATE INDEX IX_B5A3FAC6 ON PUBLIC.DDMFORMINSTANCERECORDVERSION(FORMINSTANCERECORDID,STATUS) -CREATE UNIQUE INDEX IX_26623628 ON PUBLIC.DDMFORMINSTANCERECORDVERSION(FORMINSTANCERECORDID,VERSION) -CREATE INDEX IX_57CA016C ON PUBLIC.DDMFORMINSTANCERECORDVERSION(USERID,FORMINSTANCEID,FORMINSTANCEVERSION,STATUS) -CREATE MEMORY TABLE PUBLIC.DDMFORMINSTANCEVERSION(FORMINSTANCEVERSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,FORMINSTANCEID BIGINT,STRUCTUREVERSIONID BIGINT,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),SETTINGS_ VARCHAR(16777216),VERSION VARCHAR(75),STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_EB92EF26 ON PUBLIC.DDMFORMINSTANCEVERSION(FORMINSTANCEID,STATUS) -CREATE UNIQUE INDEX IX_AE51CDC8 ON PUBLIC.DDMFORMINSTANCEVERSION(FORMINSTANCEID,VERSION) -CREATE MEMORY TABLE PUBLIC.DDMSTORAGELINK(UUID_ VARCHAR(75),STORAGELINKID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,STRUCTUREID BIGINT,STRUCTUREVERSIONID BIGINT) -CREATE UNIQUE INDEX IX_702D1AD5 ON PUBLIC.DDMSTORAGELINK(CLASSPK) -CREATE INDEX IX_81776090 ON PUBLIC.DDMSTORAGELINK(STRUCTUREID) -CREATE INDEX IX_14DADA22 ON PUBLIC.DDMSTORAGELINK(STRUCTUREVERSIONID) -CREATE INDEX IX_DB81EB42 ON PUBLIC.DDMSTORAGELINK(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.DDMSTRUCTURE(UUID_ VARCHAR(75),STRUCTUREID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),VERSIONUSERID BIGINT,VERSIONUSERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,PARENTSTRUCTUREID BIGINT,CLASSNAMEID BIGINT,STRUCTUREKEY VARCHAR(75),VERSION VARCHAR(75),NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),DEFINITION VARCHAR(16777216),STORAGETYPE VARCHAR(75),TYPE_ INTEGER,LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_31817A62 ON PUBLIC.DDMSTRUCTURE(CLASSNAMEID) -CREATE INDEX IX_4FBAC092 ON PUBLIC.DDMSTRUCTURE(COMPANYID,CLASSNAMEID) -CREATE UNIQUE INDEX IX_C8785130 ON PUBLIC.DDMSTRUCTURE(GROUPID,CLASSNAMEID,STRUCTUREKEY) -CREATE INDEX IX_43395316 ON PUBLIC.DDMSTRUCTURE(GROUPID,PARENTSTRUCTUREID) -CREATE INDEX IX_657899A8 ON PUBLIC.DDMSTRUCTURE(PARENTSTRUCTUREID) -CREATE INDEX IX_20FDE04C ON PUBLIC.DDMSTRUCTURE(STRUCTUREKEY) -CREATE INDEX IX_F9FB8D60 ON PUBLIC.DDMSTRUCTURE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_85C7EBE2 ON PUBLIC.DDMSTRUCTURE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDMSTRUCTURELAYOUT(UUID_ VARCHAR(75),STRUCTURELAYOUTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,STRUCTUREVERSIONID BIGINT,DEFINITION VARCHAR(16777216)) -CREATE UNIQUE INDEX IX_B7158C0A ON PUBLIC.DDMSTRUCTURELAYOUT(STRUCTUREVERSIONID) -CREATE INDEX IX_A90FF72A ON PUBLIC.DDMSTRUCTURELAYOUT(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_C9A0402C ON PUBLIC.DDMSTRUCTURELAYOUT(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDMSTRUCTURELINK(STRUCTURELINKID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,STRUCTUREID BIGINT) -CREATE UNIQUE INDEX IX_E43143A3 ON PUBLIC.DDMSTRUCTURELINK(CLASSNAMEID,CLASSPK,STRUCTUREID) -CREATE INDEX IX_17692B58 ON PUBLIC.DDMSTRUCTURELINK(STRUCTUREID) -CREATE MEMORY TABLE PUBLIC.DDMSTRUCTUREVERSION(STRUCTUREVERSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,STRUCTUREID BIGINT,VERSION VARCHAR(75),PARENTSTRUCTUREID BIGINT,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),DEFINITION VARCHAR(16777216),STORAGETYPE VARCHAR(75),TYPE_ INTEGER,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_17B3C96C ON PUBLIC.DDMSTRUCTUREVERSION(STRUCTUREID,STATUS) -CREATE UNIQUE INDEX IX_64C3C42 ON PUBLIC.DDMSTRUCTUREVERSION(STRUCTUREID,VERSION) -CREATE MEMORY TABLE PUBLIC.DDMTEMPLATE(UUID_ VARCHAR(75),TEMPLATEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),VERSIONUSERID BIGINT,VERSIONUSERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,RESOURCECLASSNAMEID BIGINT,TEMPLATEKEY VARCHAR(75),VERSION VARCHAR(75),NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),TYPE_ VARCHAR(75),MODE_ VARCHAR(75),LANGUAGE VARCHAR(75),SCRIPT VARCHAR(16777216),CACHEABLE BIT(1),SMALLIMAGE BIT(1),SMALLIMAGEID BIGINT,SMALLIMAGEURL VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_B6356F93 ON PUBLIC.DDMTEMPLATE(CLASSNAMEID,CLASSPK,TYPE_) -CREATE INDEX IX_32F83D16 ON PUBLIC.DDMTEMPLATE(CLASSPK) -CREATE INDEX IX_F0C3449 ON PUBLIC.DDMTEMPLATE(GROUPID,CLASSNAMEID,CLASSPK,TYPE_,MODE_) -CREATE UNIQUE INDEX IX_E6DFAB84 ON PUBLIC.DDMTEMPLATE(GROUPID,CLASSNAMEID,TEMPLATEKEY) -CREATE INDEX IX_B1C33EA6 ON PUBLIC.DDMTEMPLATE(GROUPID,CLASSPK) -CREATE INDEX IX_33BEF579 ON PUBLIC.DDMTEMPLATE(LANGUAGE) -CREATE INDEX IX_127A35B0 ON PUBLIC.DDMTEMPLATE(SMALLIMAGEID) -CREATE INDEX IX_CAE41A28 ON PUBLIC.DDMTEMPLATE(TEMPLATEKEY) -CREATE INDEX IX_C4F283C8 ON PUBLIC.DDMTEMPLATE(TYPE_) -CREATE INDEX IX_D4C2C221 ON PUBLIC.DDMTEMPLATE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_1AA75CE3 ON PUBLIC.DDMTEMPLATE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDMTEMPLATELINK(TEMPLATELINKID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT,TEMPLATEID BIGINT) -CREATE UNIQUE INDEX IX_6F3B3E9C ON PUBLIC.DDMTEMPLATELINK(CLASSNAMEID,CLASSPK) -CREATE INDEX IX_85278170 ON PUBLIC.DDMTEMPLATELINK(TEMPLATEID) -CREATE MEMORY TABLE PUBLIC.DDMTEMPLATEVERSION(TEMPLATEVERSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,TEMPLATEID BIGINT,VERSION VARCHAR(75),NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),LANGUAGE VARCHAR(75),SCRIPT VARCHAR(16777216),STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_66382FC6 ON PUBLIC.DDMTEMPLATEVERSION(TEMPLATEID,STATUS) -CREATE UNIQUE INDEX IX_8854A128 ON PUBLIC.DDMTEMPLATEVERSION(TEMPLATEID,VERSION) -CREATE MEMORY TABLE PUBLIC.FRIENDLYURLENTRY(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),DEFAULTLANGUAGEID VARCHAR(75),FRIENDLYURLENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT) -CREATE INDEX IX_F3DC928B ON PUBLIC.FRIENDLYURLENTRY(GROUPID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_20861768 ON PUBLIC.FRIENDLYURLENTRY(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_63FD57EA ON PUBLIC.FRIENDLYURLENTRY(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.FRIENDLYURLENTRYLOCALIZATION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,FRIENDLYURLENTRYLOCALIZATIONID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,FRIENDLYURLENTRYID BIGINT,LANGUAGEID VARCHAR(75),URLTITLE VARCHAR(255),GROUPID BIGINT,CLASSNAMEID BIGINT,CLASSPK BIGINT) -CREATE UNIQUE INDEX IX_68BE94B1 ON PUBLIC.FRIENDLYURLENTRYLOCALIZATION(FRIENDLYURLENTRYID,LANGUAGEID) -CREATE UNIQUE INDEX IX_8AB5CAE ON PUBLIC.FRIENDLYURLENTRYLOCALIZATION(GROUPID,CLASSNAMEID,URLTITLE) -CREATE MEMORY TABLE PUBLIC.FRIENDLYURLENTRYMAPPING(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,FRIENDLYURLENTRYMAPPINGID BIGINT NOT NULL PRIMARY KEY,CLASSNAMEID BIGINT,CLASSPK BIGINT,FRIENDLYURLENTRYID BIGINT) -CREATE UNIQUE INDEX IX_3B5E645B ON PUBLIC.FRIENDLYURLENTRYMAPPING(CLASSNAMEID,CLASSPK) -CREATE MEMORY TABLE PUBLIC.LOCK_(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,UUID_ VARCHAR(75),LOCKID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,CLASSNAME VARCHAR(75),KEY_ VARCHAR(200),OWNER VARCHAR(1024),INHERITABLE BIT(1),EXPIRATIONDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_228562AD ON PUBLIC.LOCK_(CLASSNAME,KEY_) -CREATE INDEX IX_E3F1286B ON PUBLIC.LOCK_(EXPIRATIONDATE) -CREATE INDEX IX_2C418EAE ON PUBLIC.LOCK_(UUID_,COMPANYID) -CREATE MEMORY TABLE PUBLIC.AUDIT_AUDITEVENT(AUDITEVENTID BIGINT NOT NULL PRIMARY KEY,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(200),CREATEDATE TIMESTAMP,EVENTTYPE VARCHAR(75),CLASSNAME VARCHAR(200),CLASSPK VARCHAR(75),MESSAGE VARCHAR(16777216),CLIENTHOST VARCHAR(255),CLIENTIP VARCHAR(75),SERVERNAME VARCHAR(255),SERVERPORT INTEGER,SESSIONID VARCHAR(255),ADDITIONALINFO VARCHAR(16777216)) -CREATE INDEX IX_8FE31EDF ON PUBLIC.AUDIT_AUDITEVENT(COMPANYID) -CREATE MEMORY TABLE PUBLIC.SUBSCRIPTION(MVCCVERSION BIGINT DEFAULT 0 NOT NULL,SUBSCRIPTIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,FREQUENCY VARCHAR(75)) -CREATE INDEX IX_786D171A ON PUBLIC.SUBSCRIPTION(COMPANYID,CLASSNAMEID,CLASSPK) -CREATE UNIQUE INDEX IX_2E1A92D4 ON PUBLIC.SUBSCRIPTION(COMPANYID,USERID,CLASSNAMEID,CLASSPK) -CREATE INDEX IX_1290B81 ON PUBLIC.SUBSCRIPTION(GROUPID,USERID) -CREATE INDEX IX_E8F34171 ON PUBLIC.SUBSCRIPTION(USERID,CLASSNAMEID) -CREATE MEMORY TABLE PUBLIC.POLLSCHOICE(UUID_ VARCHAR(75),CHOICEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,QUESTIONID BIGINT,NAME VARCHAR(75),DESCRIPTION VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_D76DD2CF ON PUBLIC.POLLSCHOICE(QUESTIONID,NAME) -CREATE INDEX IX_8AE746EF ON PUBLIC.POLLSCHOICE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_C222BD31 ON PUBLIC.POLLSCHOICE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.POLLSQUESTION(UUID_ VARCHAR(75),QUESTIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),EXPIRATIONDATE TIMESTAMP,LASTPUBLISHDATE TIMESTAMP,LASTVOTEDATE TIMESTAMP) -CREATE INDEX IX_9FF342EA ON PUBLIC.POLLSQUESTION(GROUPID) -CREATE INDEX IX_F910BBB4 ON PUBLIC.POLLSQUESTION(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_F3C9F36 ON PUBLIC.POLLSQUESTION(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.POLLSVOTE(UUID_ VARCHAR(75),VOTEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,QUESTIONID BIGINT,CHOICEID BIGINT,LASTPUBLISHDATE TIMESTAMP,VOTEDATE TIMESTAMP) -CREATE INDEX IX_D5DF7B54 ON PUBLIC.POLLSVOTE(CHOICEID) -CREATE INDEX IX_1BBFD4D3 ON PUBLIC.POLLSVOTE(QUESTIONID,USERID) -CREATE INDEX IX_7D8E92B8 ON PUBLIC.POLLSVOTE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_A88C673A ON PUBLIC.POLLSVOTE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.CALENDAR(UUID_ VARCHAR(75),CALENDARID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CALENDARRESOURCEID BIGINT,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),TIMEZONEID VARCHAR(75),COLOR INTEGER,DEFAULTCALENDAR BIT(1),ENABLECOMMENTS BIT(1),ENABLERATINGS BIT(1),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_97FC174E ON PUBLIC.CALENDAR(GROUPID,CALENDARRESOURCEID,DEFAULTCALENDAR) -CREATE INDEX IX_97656498 ON PUBLIC.CALENDAR(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_3AE311A ON PUBLIC.CALENDAR(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.CALENDARBOOKING(UUID_ VARCHAR(75),CALENDARBOOKINGID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CALENDARID BIGINT,CALENDARRESOURCEID BIGINT,PARENTCALENDARBOOKINGID BIGINT,RECURRINGCALENDARBOOKINGID BIGINT,VEVENTUID VARCHAR(255),TITLE VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),LOCATION VARCHAR(16777216),STARTTIME BIGINT,ENDTIME BIGINT,ALLDAY BIT(1),RECURRENCE VARCHAR(16777216),FIRSTREMINDER BIGINT,FIRSTREMINDERTYPE VARCHAR(75),SECONDREMINDER BIGINT,SECONDREMINDERTYPE VARCHAR(75),LASTPUBLISHDATE TIMESTAMP,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_113A264E ON PUBLIC.CALENDARBOOKING(CALENDARID,PARENTCALENDARBOOKINGID) -CREATE INDEX IX_470170B4 ON PUBLIC.CALENDARBOOKING(CALENDARID,STATUS) -CREATE UNIQUE INDEX IX_8B23DA0E ON PUBLIC.CALENDARBOOKING(CALENDARID,VEVENTUID) -CREATE INDEX IX_B198FFC ON PUBLIC.CALENDARBOOKING(CALENDARRESOURCEID) -CREATE INDEX IX_F7B8A941 ON PUBLIC.CALENDARBOOKING(PARENTCALENDARBOOKINGID,STATUS) -CREATE INDEX IX_14ADC52E ON PUBLIC.CALENDARBOOKING(RECURRINGCALENDARBOOKINGID) -CREATE INDEX IX_A21D9FD5 ON PUBLIC.CALENDARBOOKING(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_F4C61797 ON PUBLIC.CALENDARBOOKING(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.CALENDARNOTIFICATIONTEMPLATE(UUID_ VARCHAR(75),CALENDARNOTIFICATIONTEMPLATEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CALENDARID BIGINT,NOTIFICATIONTYPE VARCHAR(75),NOTIFICATIONTYPESETTINGS VARCHAR(75),NOTIFICATIONTEMPLATETYPE VARCHAR(75),SUBJECT VARCHAR(75),BODY VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_7727A482 ON PUBLIC.CALENDARNOTIFICATIONTEMPLATE(CALENDARID,NOTIFICATIONTYPE,NOTIFICATIONTEMPLATETYPE) -CREATE INDEX IX_4D7D97BD ON PUBLIC.CALENDARNOTIFICATIONTEMPLATE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_4012E97F ON PUBLIC.CALENDARNOTIFICATIONTEMPLATE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.CALENDARRESOURCE(UUID_ VARCHAR(75),CALENDARRESOURCEID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,CLASSNAMEID BIGINT,CLASSPK BIGINT,CLASSUUID VARCHAR(75),CODE_ VARCHAR(75),NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),ACTIVE_ BIT(1),LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_76DDD0F7 ON PUBLIC.CALENDARRESOURCE(ACTIVE_) -CREATE UNIQUE INDEX IX_16A12327 ON PUBLIC.CALENDARRESOURCE(CLASSNAMEID,CLASSPK) -CREATE INDEX IX_4470A59D ON PUBLIC.CALENDARRESOURCE(COMPANYID,CODE_,ACTIVE_) -CREATE INDEX IX_40678371 ON PUBLIC.CALENDARRESOURCE(GROUPID,ACTIVE_) -CREATE INDEX IX_55C2F8AA ON PUBLIC.CALENDARRESOURCE(GROUPID,CODE_) -CREATE INDEX IX_56A06BC6 ON PUBLIC.CALENDARRESOURCE(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_4ABD2BC8 ON PUBLIC.CALENDARRESOURCE(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.IM_MEMBERREQUEST(MEMBERREQUESTID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,KEY_ VARCHAR(75),RECEIVERUSERID BIGINT,INVITEDROLEID BIGINT,INVITEDTEAMID BIGINT,STATUS INTEGER) -CREATE INDEX IX_4C831DF9 ON PUBLIC.IM_MEMBERREQUEST(GROUPID,RECEIVERUSERID,STATUS) -CREATE INDEX IX_B4BCD9B4 ON PUBLIC.IM_MEMBERREQUEST(KEY_) -CREATE INDEX IX_B312EB0F ON PUBLIC.IM_MEMBERREQUEST(RECEIVERUSERID,STATUS) -CREATE MEMORY TABLE PUBLIC.DDLRECORD(UUID_ VARCHAR(75),RECORDID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),VERSIONUSERID BIGINT,VERSIONUSERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,DDMSTORAGEID BIGINT,RECORDSETID BIGINT,RECORDSETVERSION VARCHAR(75),VERSION VARCHAR(75),DISPLAYINDEX INTEGER,LASTPUBLISHDATE TIMESTAMP) -CREATE INDEX IX_6A6C1C85 ON PUBLIC.DDLRECORD(COMPANYID) -CREATE INDEX IX_F12C61D4 ON PUBLIC.DDLRECORD(RECORDSETID,RECORDSETVERSION) -CREATE INDEX IX_AAC564D3 ON PUBLIC.DDLRECORD(RECORDSETID,USERID) -CREATE INDEX IX_384AB6F7 ON PUBLIC.DDLRECORD(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_B4328F39 ON PUBLIC.DDLRECORD(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDLRECORDSET(UUID_ VARCHAR(75),RECORDSETID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),VERSIONUSERID BIGINT,VERSIONUSERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,DDMSTRUCTUREID BIGINT,RECORDSETKEY VARCHAR(75),VERSION VARCHAR(75),NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),MINDISPLAYROWS INTEGER,SCOPE INTEGER,SETTINGS_ VARCHAR(16777216),LASTPUBLISHDATE TIMESTAMP) -CREATE UNIQUE INDEX IX_56DAB121 ON PUBLIC.DDLRECORDSET(GROUPID,RECORDSETKEY) -CREATE INDEX IX_5938C39F ON PUBLIC.DDLRECORDSET(UUID_,COMPANYID) -CREATE UNIQUE INDEX IX_270BA5E1 ON PUBLIC.DDLRECORDSET(UUID_,GROUPID) -CREATE MEMORY TABLE PUBLIC.DDLRECORDSETVERSION(RECORDSETVERSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,RECORDSETID BIGINT,DDMSTRUCTUREVERSIONID BIGINT,NAME VARCHAR(16777216),DESCRIPTION VARCHAR(16777216),SETTINGS_ VARCHAR(16777216),VERSION VARCHAR(75),STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_1C4E1CC9 ON PUBLIC.DDLRECORDSETVERSION(RECORDSETID,STATUS) -CREATE UNIQUE INDEX IX_94FC5485 ON PUBLIC.DDLRECORDSETVERSION(RECORDSETID,VERSION) -CREATE MEMORY TABLE PUBLIC.DDLRECORDVERSION(RECORDVERSIONID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,DDMSTORAGEID BIGINT,RECORDSETID BIGINT,RECORDSETVERSION VARCHAR(75),RECORDID BIGINT,VERSION VARCHAR(75),DISPLAYINDEX INTEGER,STATUS INTEGER,STATUSBYUSERID BIGINT,STATUSBYUSERNAME VARCHAR(75),STATUSDATE TIMESTAMP) -CREATE INDEX IX_762ADC7 ON PUBLIC.DDLRECORDVERSION(RECORDID,STATUS) -CREATE UNIQUE INDEX IX_C79E347 ON PUBLIC.DDLRECORDVERSION(RECORDID,VERSION) -CREATE INDEX IX_19AD75F6 ON PUBLIC.DDLRECORDVERSION(RECORDSETID,RECORDSETVERSION) -CREATE INDEX IX_28202A62 ON PUBLIC.DDLRECORDVERSION(USERID,RECORDSETID,RECORDSETVERSION,STATUS) -CREATE MEMORY TABLE PUBLIC.CONTACTS_ENTRY(ENTRYID BIGINT NOT NULL PRIMARY KEY,GROUPID BIGINT,COMPANYID BIGINT,USERID BIGINT,USERNAME VARCHAR(75),CREATEDATE TIMESTAMP,MODIFIEDDATE TIMESTAMP,FULLNAME VARCHAR(75),EMAILADDRESS VARCHAR(254),COMMENTS VARCHAR(16777216)) -CREATE INDEX IX_C257DE32 ON PUBLIC.CONTACTS_ENTRY(USERID,EMAILADDRESS) -ALTER SEQUENCE SYSTEM_LOBS.LOB_ID RESTART WITH 1 -SET DATABASE DEFAULT INITIAL SCHEMA PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.SQL_IDENTIFIER TO PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.YES_OR_NO TO PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.TIME_STAMP TO PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CARDINAL_NUMBER TO PUBLIC -GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CHARACTER_DATA TO PUBLIC -GRANT DBA TO SA -SET SCHEMA SYSTEM_LOBS -INSERT INTO BLOCKS VALUES(0,2147483647,0) -SET SCHEMA PUBLIC -INSERT INTO ACCOUNT_ VALUES(0,20101,20099,0,NULL,'2019-05-09 00:27:27.868000','2019-05-09 00:27:27.868000',0,'Liferay',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL) -INSERT INTO ASSETENTRY VALUES(20122,20116,20099,20103,NULL,'2019-05-09 00:27:28.457000','2019-05-09 00:27:28.457000',20002,20120,'c2ee30a5-effd-f535-94b0-333e213a3a70',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Control Panel','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(20131,20126,20099,20103,NULL,'2019-05-09 00:27:28.555000','2019-05-09 00:27:28.555000',20002,20129,'2b6bcff6-1520-71c7-1a10-c1623de99e89',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Welcome','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(20145,20135,20099,20139,'Test Test','2019-05-09 00:27:28.854000','2019-05-09 00:27:28.854000',20006,20139,'4ef84411-749a-e617-6191-10e0c6a7147b',0,'1','0',NULL,NULL,NULL,NULL,NULL,'Test Test','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(20152,20147,20099,20103,NULL,'2019-05-09 00:27:29.171000','2019-05-09 00:27:29.171000',20002,20150,'9f94ec08-1aab-e5dc-6655-928d03e85698',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Search','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(20166,20126,20099,20103,NULL,'2019-05-09 00:27:29.404000','2019-05-09 00:27:29.554000',20002,20164,'07b16e43-b960-48eb-5ad6-80d66065b376',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Search','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(32143,20135,20099,20103,NULL,'2019-05-09 00:27:49.890000','2019-05-09 00:27:49.890000',20008,32141,'7371e9af-472b-5e02-de1b-3fbfc39cc3f5',0,'1','0',NULL,NULL,NULL,NULL,'image/png','id-ca91aeeb-91de-4ad9-c381-41ec40bc25','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(32322,20135,20099,20103,NULL,'2019-05-09 00:27:49.474000','2019-05-09 00:27:49.474000',20009,32137,'82fc323f-746b-1d17-300f-7daead665143',0,'1','0',NULL,NULL,NULL,NULL,NULL,'com.liferay.oauth2.provider','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(32323,20135,20099,20103,NULL,'2019-05-09 00:27:49.608000','2019-05-09 00:27:49.608000',20009,32140,'ed15ad69-6747-d860-15a6-a1e3597deac8',0,'1','0',NULL,NULL,NULL,NULL,NULL,'icons','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33231,20123,20099,20103,NULL,'2019-05-09 00:27:59.013000','2019-05-09 00:27:59.013000',20002,33229,'aaeef41d-52b9-616b-2989-f72bbad6693f',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Shared','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33234,20123,20099,20103,NULL,'2019-05-09 00:27:59.033000','2019-05-09 00:27:59.033000',20002,33232,'c7555f37-f169-ac22-3d40-756c869d1c44',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Shared','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33335,33330,20099,20103,NULL,'2019-05-09 00:28:07.430000','2019-05-09 00:28:07.430000',20002,33333,'96d72ccd-a698-10ed-4eee-2defe740d5dd',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Wiki','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33350,33345,20099,20103,NULL,'2019-05-09 00:28:07.631000','2019-05-09 00:28:07.631000',20002,33348,'0cfc4e15-9f99-cd63-f053-bca4af30ca85',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Blog','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33374,33369,20099,20103,NULL,'2019-05-09 00:28:08.104000','2019-05-09 00:28:08.104000',20002,33372,'c288c0b9-e48f-493e-8c16-24ad2092a8cc',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Home','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33378,33369,20099,20103,NULL,'2019-05-09 00:28:08.166000','2019-05-09 00:28:08.166000',20002,33376,'538a883f-1bc6-d304-146a-31c924d3152a',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Wiki','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33385,33380,20099,20103,NULL,'2019-05-09 00:28:08.217000','2019-05-09 00:28:08.217000',20002,33383,'70748bb2-949a-d0fa-925c-aedc5fa5d991',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Home','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33389,33380,20099,20103,NULL,'2019-05-09 00:28:08.255000','2019-05-09 00:28:08.255000',20002,33387,'8850790d-be66-a3a5-d6ce-193e617b35e1',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Documents and Media','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33393,33380,20099,20103,NULL,'2019-05-09 00:28:08.287000','2019-05-09 00:28:08.287000',20002,33391,'b4d38a96-864b-5526-75ba-e6e759ecf1e4',0,'1','0',NULL,NULL,NULL,NULL,'text/html','News','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33603,20142,20099,20139,'Test Test','2019-07-30 09:43:16.828000','2019-07-30 09:43:16.828000',20002,33601,'bfa45509-d3ee-9f72-48f6-687a902776ea',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Welcome','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO ASSETENTRY VALUES(33606,20142,20099,20139,'Test Test','2019-07-30 09:43:16.921000','2019-07-30 09:43:16.921000',20002,33604,'a28e2cc6-558e-827e-4535-dc592e47f09b',0,'1','0',NULL,NULL,NULL,NULL,'text/html','Welcome','','',NULL,NULL,0,0,0.0E0,0) -INSERT INTO CLASSNAME_ VALUES(0,20001,'com.liferay.portal.kernel.model.Group') -INSERT INTO CLASSNAME_ VALUES(0,20002,'com.liferay.portal.kernel.model.Layout') -INSERT INTO CLASSNAME_ VALUES(0,20003,'com.liferay.portal.kernel.model.Organization') -INSERT INTO CLASSNAME_ VALUES(0,20004,'com.liferay.portal.kernel.model.Role') -INSERT INTO CLASSNAME_ VALUES(0,20005,'com.liferay.portal.kernel.model.Team') -INSERT INTO CLASSNAME_ VALUES(0,20006,'com.liferay.portal.kernel.model.User') -INSERT INTO CLASSNAME_ VALUES(0,20007,'com.liferay.portal.kernel.model.UserGroup') -INSERT INTO CLASSNAME_ VALUES(0,20008,'com.liferay.document.library.kernel.model.DLFileEntry') -INSERT INTO CLASSNAME_ VALUES(0,20009,'com.liferay.document.library.kernel.model.DLFolder') -INSERT INTO CLASSNAME_ VALUES(0,20010,'com.liferay.announcements.kernel.model.AnnouncementsDelivery') -INSERT INTO CLASSNAME_ VALUES(0,20011,'com.liferay.announcements.kernel.model.AnnouncementsEntry') -INSERT INTO CLASSNAME_ VALUES(0,20012,'com.liferay.announcements.kernel.model.AnnouncementsFlag') -INSERT INTO CLASSNAME_ VALUES(0,20013,'com.liferay.asset.kernel.model.AssetCategory') -INSERT INTO CLASSNAME_ VALUES(0,20014,'com.liferay.asset.kernel.model.AssetCategoryProperty') -INSERT INTO CLASSNAME_ VALUES(0,20015,'com.liferay.asset.kernel.model.AssetEntry') -INSERT INTO CLASSNAME_ VALUES(0,20016,'com.liferay.asset.kernel.model.AssetLink') -INSERT INTO CLASSNAME_ VALUES(0,20017,'com.liferay.asset.kernel.model.AssetTag') -INSERT INTO CLASSNAME_ VALUES(0,20018,'com.liferay.asset.kernel.model.AssetTagStats') -INSERT INTO CLASSNAME_ VALUES(0,20019,'com.liferay.asset.kernel.model.AssetVocabulary') -INSERT INTO CLASSNAME_ VALUES(0,20020,'com.liferay.counter.kernel.model.Counter') -INSERT INTO CLASSNAME_ VALUES(0,20021,'com.liferay.document.library.kernel.model.DLFileEntryMetadata') -INSERT INTO CLASSNAME_ VALUES(0,20022,'com.liferay.document.library.kernel.model.DLFileEntryType') -INSERT INTO CLASSNAME_ VALUES(0,20023,'com.liferay.document.library.kernel.model.DLFileShortcut') -INSERT INTO CLASSNAME_ VALUES(0,20024,'com.liferay.document.library.kernel.model.DLFileVersion') -INSERT INTO CLASSNAME_ VALUES(0,20025,'com.liferay.expando.kernel.model.ExpandoColumn') -INSERT INTO CLASSNAME_ VALUES(0,20026,'com.liferay.expando.kernel.model.ExpandoRow') -INSERT INTO CLASSNAME_ VALUES(0,20027,'com.liferay.expando.kernel.model.ExpandoTable') -INSERT INTO CLASSNAME_ VALUES(0,20028,'com.liferay.expando.kernel.model.ExpandoValue') -INSERT INTO CLASSNAME_ VALUES(0,20029,'com.liferay.exportimport.kernel.model.ExportImportConfiguration') -INSERT INTO CLASSNAME_ VALUES(0,20030,'com.liferay.portal.kernel.model.Account') -INSERT INTO CLASSNAME_ VALUES(0,20031,'com.liferay.portal.kernel.model.Address') -INSERT INTO CLASSNAME_ VALUES(0,20032,'com.liferay.portal.kernel.model.BrowserTracker') -INSERT INTO CLASSNAME_ VALUES(0,20033,'com.liferay.portal.kernel.model.ClassName') -INSERT INTO CLASSNAME_ VALUES(0,20034,'com.liferay.portal.kernel.model.ClusterGroup') -INSERT INTO CLASSNAME_ VALUES(0,20035,'com.liferay.portal.kernel.model.Company') -INSERT INTO CLASSNAME_ VALUES(0,20036,'com.liferay.portal.kernel.model.Contact') -INSERT INTO CLASSNAME_ VALUES(0,20037,'com.liferay.portal.kernel.model.Country') -INSERT INTO CLASSNAME_ VALUES(0,20038,'com.liferay.portal.kernel.model.EmailAddress') -INSERT INTO CLASSNAME_ VALUES(0,20039,'com.liferay.portal.kernel.model.Image') -INSERT INTO CLASSNAME_ VALUES(0,20040,'com.liferay.portal.kernel.model.LayoutBranch') -INSERT INTO CLASSNAME_ VALUES(0,20041,'com.liferay.portal.kernel.model.LayoutFriendlyURL') -INSERT INTO CLASSNAME_ VALUES(0,20042,'com.liferay.portal.kernel.model.LayoutPrototype') -INSERT INTO CLASSNAME_ VALUES(0,20043,'com.liferay.portal.kernel.model.LayoutRevision') -INSERT INTO CLASSNAME_ VALUES(0,20044,'com.liferay.portal.kernel.model.LayoutSet') -INSERT INTO CLASSNAME_ VALUES(0,20045,'com.liferay.portal.kernel.model.LayoutSetBranch') -INSERT INTO CLASSNAME_ VALUES(0,20046,'com.liferay.portal.kernel.model.LayoutSetPrototype') -INSERT INTO CLASSNAME_ VALUES(0,20047,'com.liferay.portal.kernel.model.ListType') -INSERT INTO CLASSNAME_ VALUES(0,20048,'com.liferay.portal.kernel.model.MembershipRequest') -INSERT INTO CLASSNAME_ VALUES(0,20049,'com.liferay.portal.kernel.model.OrgGroupRole') -INSERT INTO CLASSNAME_ VALUES(0,20050,'com.liferay.portal.kernel.model.OrgLabor') -INSERT INTO CLASSNAME_ VALUES(0,20051,'com.liferay.portal.kernel.model.PasswordPolicy') -INSERT INTO CLASSNAME_ VALUES(0,20052,'com.liferay.portal.kernel.model.PasswordPolicyRel') -INSERT INTO CLASSNAME_ VALUES(0,20053,'com.liferay.portal.kernel.model.PasswordTracker') -INSERT INTO CLASSNAME_ VALUES(0,20054,'com.liferay.portal.kernel.model.Phone') -INSERT INTO CLASSNAME_ VALUES(0,20055,'com.liferay.portal.kernel.model.PluginSetting') -INSERT INTO CLASSNAME_ VALUES(0,20056,'com.liferay.portal.kernel.model.PortalPreferences') -INSERT INTO CLASSNAME_ VALUES(0,20057,'com.liferay.portal.kernel.model.Portlet') -INSERT INTO CLASSNAME_ VALUES(0,20058,'com.liferay.portal.kernel.model.PortletItem') -INSERT INTO CLASSNAME_ VALUES(0,20059,'com.liferay.portal.kernel.model.PortletPreferences') -INSERT INTO CLASSNAME_ VALUES(0,20060,'com.liferay.portal.kernel.model.RecentLayoutBranch') -INSERT INTO CLASSNAME_ VALUES(0,20061,'com.liferay.portal.kernel.model.RecentLayoutRevision') -INSERT INTO CLASSNAME_ VALUES(0,20062,'com.liferay.portal.kernel.model.RecentLayoutSetBranch') -INSERT INTO CLASSNAME_ VALUES(0,20063,'com.liferay.portal.kernel.model.Region') -INSERT INTO CLASSNAME_ VALUES(0,20064,'com.liferay.portal.kernel.model.Release') -INSERT INTO CLASSNAME_ VALUES(0,20065,'com.liferay.portal.kernel.model.Repository') -INSERT INTO CLASSNAME_ VALUES(0,20066,'com.liferay.portal.kernel.model.RepositoryEntry') -INSERT INTO CLASSNAME_ VALUES(0,20067,'com.liferay.portal.kernel.model.ResourceAction') -INSERT INTO CLASSNAME_ VALUES(0,20068,'com.liferay.portal.kernel.model.ResourceBlock') -INSERT INTO CLASSNAME_ VALUES(0,20069,'com.liferay.portal.kernel.model.ResourceBlockPermission') -INSERT INTO CLASSNAME_ VALUES(0,20070,'com.liferay.portal.kernel.model.ResourcePermission') -INSERT INTO CLASSNAME_ VALUES(0,20071,'com.liferay.portal.kernel.model.ResourceTypePermission') -INSERT INTO CLASSNAME_ VALUES(0,20072,'com.liferay.portal.kernel.model.ServiceComponent') -INSERT INTO CLASSNAME_ VALUES(0,20073,'com.liferay.portal.kernel.model.Subscription') -INSERT INTO CLASSNAME_ VALUES(0,20074,'com.liferay.portal.kernel.model.SystemEvent') -INSERT INTO CLASSNAME_ VALUES(0,20075,'com.liferay.portal.kernel.model.Ticket') -INSERT INTO CLASSNAME_ VALUES(0,20076,'com.liferay.portal.kernel.model.UserGroupGroupRole') -INSERT INTO CLASSNAME_ VALUES(0,20077,'com.liferay.portal.kernel.model.UserGroupRole') -INSERT INTO CLASSNAME_ VALUES(0,20078,'com.liferay.portal.kernel.model.UserIdMapper') -INSERT INTO CLASSNAME_ VALUES(0,20079,'com.liferay.portal.kernel.model.UserNotificationDelivery') -INSERT INTO CLASSNAME_ VALUES(0,20080,'com.liferay.portal.kernel.model.UserNotificationEvent') -INSERT INTO CLASSNAME_ VALUES(0,20081,'com.liferay.portal.kernel.model.UserTracker') -INSERT INTO CLASSNAME_ VALUES(0,20082,'com.liferay.portal.kernel.model.UserTrackerPath') -INSERT INTO CLASSNAME_ VALUES(0,20083,'com.liferay.portal.kernel.model.VirtualHost') -INSERT INTO CLASSNAME_ VALUES(0,20084,'com.liferay.portal.kernel.model.WebDAVProps') -INSERT INTO CLASSNAME_ VALUES(0,20085,'com.liferay.portal.kernel.model.Website') -INSERT INTO CLASSNAME_ VALUES(0,20086,'com.liferay.portal.kernel.model.WorkflowDefinitionLink') -INSERT INTO CLASSNAME_ VALUES(0,20087,'com.liferay.portal.kernel.model.WorkflowInstanceLink') -INSERT INTO CLASSNAME_ VALUES(0,20088,'com.liferay.portal.kernel.workflow.WorkflowTask') -INSERT INTO CLASSNAME_ VALUES(0,20089,'com.liferay.ratings.kernel.model.RatingsEntry') -INSERT INTO CLASSNAME_ VALUES(0,20090,'com.liferay.ratings.kernel.model.RatingsStats') -INSERT INTO CLASSNAME_ VALUES(0,20091,'com.liferay.social.kernel.model.SocialActivity') -INSERT INTO CLASSNAME_ VALUES(0,20092,'com.liferay.social.kernel.model.SocialActivityAchievement') -INSERT INTO CLASSNAME_ VALUES(0,20093,'com.liferay.social.kernel.model.SocialActivityCounter') -INSERT INTO CLASSNAME_ VALUES(0,20094,'com.liferay.social.kernel.model.SocialActivityLimit') -INSERT INTO CLASSNAME_ VALUES(0,20095,'com.liferay.social.kernel.model.SocialActivitySet') -INSERT INTO CLASSNAME_ VALUES(0,20096,'com.liferay.social.kernel.model.SocialActivitySetting') -INSERT INTO CLASSNAME_ VALUES(0,20097,'com.liferay.social.kernel.model.SocialRelation') -INSERT INTO CLASSNAME_ VALUES(0,20098,'com.liferay.social.kernel.model.SocialRequest') -INSERT INTO CLASSNAME_ VALUES(0,20118,'com.liferay.portal.kernel.model.UserPersonalSite') -INSERT INTO CLASSNAME_ VALUES(0,20178,'com.liferay.portal.kernel.theme.NavItem') -INSERT INTO CLASSNAME_ VALUES(0,26902,'com.liferay.portlet.calendar.model.CalEvent') -INSERT INTO CLASSNAME_ VALUES(0,27501,'com.liferay.message.boards.model.MBBan') -INSERT INTO CLASSNAME_ VALUES(0,27502,'com.liferay.message.boards.model.MBCategory') -INSERT INTO CLASSNAME_ VALUES(0,27503,'com.liferay.message.boards.model.MBDiscussion') -INSERT INTO CLASSNAME_ VALUES(0,27504,'com.liferay.message.boards.model.MBMailingList') -INSERT INTO CLASSNAME_ VALUES(0,27505,'com.liferay.message.boards.model.MBMessage') -INSERT INTO CLASSNAME_ VALUES(0,27506,'com.liferay.message.boards.model.MBStatsUser') -INSERT INTO CLASSNAME_ VALUES(0,27507,'com.liferay.message.boards.model.MBThread') -INSERT INTO CLASSNAME_ VALUES(0,27508,'com.liferay.message.boards.model.MBThreadFlag') -INSERT INTO CLASSNAME_ VALUES(0,27601,'com.liferay.site.navigation.model.SiteNavigationMenu') -INSERT INTO CLASSNAME_ VALUES(0,27602,'com.liferay.site.navigation.model.SiteNavigationMenuItem') -INSERT INTO CLASSNAME_ VALUES(0,27701,'com.liferay.site.model.SiteFriendlyURL') -INSERT INTO CLASSNAME_ VALUES(0,27901,'com.liferay.reading.time.model.ReadingTimeEntry') -INSERT INTO CLASSNAME_ VALUES(0,28001,'com.liferay.oauth2.provider.model.OAuth2Application') -INSERT INTO CLASSNAME_ VALUES(0,28002,'com.liferay.oauth2.provider.model.OAuth2ApplicationScopeAliases') -INSERT INTO CLASSNAME_ VALUES(0,28003,'com.liferay.oauth2.provider.model.OAuth2Authorization') -INSERT INTO CLASSNAME_ VALUES(0,28004,'com.liferay.oauth2.provider.model.OAuth2ScopeGrant') -INSERT INTO CLASSNAME_ VALUES(0,28101,'com.liferay.fragment.model.FragmentCollection') -INSERT INTO CLASSNAME_ VALUES(0,28102,'com.liferay.fragment.model.FragmentEntry') -INSERT INTO CLASSNAME_ VALUES(0,28103,'com.liferay.fragment.model.FragmentEntryLink') -INSERT INTO CLASSNAME_ VALUES(0,28201,'com.liferay.wiki.model.WikiNode') -INSERT INTO CLASSNAME_ VALUES(0,28202,'com.liferay.wiki.model.WikiPage') -INSERT INTO CLASSNAME_ VALUES(0,28203,'com.liferay.wiki.model.WikiPageResource') -INSERT INTO CLASSNAME_ VALUES(0,28301,'com.liferay.journal.model.JournalArticle') -INSERT INTO CLASSNAME_ VALUES(0,28302,'com.liferay.journal.model.JournalArticleLocalization') -INSERT INTO CLASSNAME_ VALUES(0,28303,'com.liferay.journal.model.JournalArticleResource') -INSERT INTO CLASSNAME_ VALUES(0,28304,'com.liferay.journal.model.JournalContentSearch') -INSERT INTO CLASSNAME_ VALUES(0,28305,'com.liferay.journal.model.JournalFeed') -INSERT INTO CLASSNAME_ VALUES(0,28306,'com.liferay.journal.model.JournalFolder') -INSERT INTO CLASSNAME_ VALUES(0,28401,'com.liferay.changeset.model.ChangesetCollection') -INSERT INTO CLASSNAME_ VALUES(0,28402,'com.liferay.changeset.model.ChangesetEntry') -INSERT INTO CLASSNAME_ VALUES(0,28601,'com.liferay.mobile.device.rules.model.MDRAction') -INSERT INTO CLASSNAME_ VALUES(0,28602,'com.liferay.mobile.device.rules.model.MDRRule') -INSERT INTO CLASSNAME_ VALUES(0,28603,'com.liferay.mobile.device.rules.model.MDRRuleGroup') -INSERT INTO CLASSNAME_ VALUES(0,28604,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance') -INSERT INTO CLASSNAME_ VALUES(0,28701,'com.liferay.asset.category.property.model.AssetCategoryProperty') -INSERT INTO CLASSNAME_ VALUES(0,28801,'com.liferay.asset.display.page.model.AssetDisplayPageEntry') -INSERT INTO CLASSNAME_ VALUES(0,28901,'com.liferay.asset.entry.rel.model.AssetEntryAssetCategoryRel') -INSERT INTO CLASSNAME_ VALUES(0,29001,'com.liferay.asset.tag.stats.model.AssetTagStats') -INSERT INTO CLASSNAME_ VALUES(0,29201,'com.liferay.marketplace.model.App') -INSERT INTO CLASSNAME_ VALUES(0,29202,'com.liferay.marketplace.model.Module') -INSERT INTO CLASSNAME_ VALUES(0,30201,'com.liferay.adaptive.media.image.model.AMImageEntry') -INSERT INTO CLASSNAME_ VALUES(0,30401,'com.liferay.portal.security.service.access.policy.model.SAPEntry') -INSERT INTO CLASSNAME_ VALUES(0,30501,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection') -INSERT INTO CLASSNAME_ VALUES(0,30502,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry') -INSERT INTO CLASSNAME_ VALUES(0,30601,'com.liferay.html.preview.model.HtmlPreviewEntry') -INSERT INTO CLASSNAME_ VALUES(0,30701,'com.liferay.knowledge.base.model.KBArticle') -INSERT INTO CLASSNAME_ VALUES(0,30702,'com.liferay.knowledge.base.model.KBComment') -INSERT INTO CLASSNAME_ VALUES(0,30703,'com.liferay.knowledge.base.model.KBFolder') -INSERT INTO CLASSNAME_ VALUES(0,30704,'com.liferay.knowledge.base.model.KBTemplate') -INSERT INTO CLASSNAME_ VALUES(0,30801,'com.liferay.trash.model.TrashEntry') -INSERT INTO CLASSNAME_ VALUES(0,30802,'com.liferay.trash.model.TrashVersion') -INSERT INTO CLASSNAME_ VALUES(0,30901,'com.liferay.blogs.model.BlogsEntry') -INSERT INTO CLASSNAME_ VALUES(0,30902,'com.liferay.blogs.model.BlogsStatsUser') -INSERT INTO CLASSNAME_ VALUES(0,31101,'com.liferay.portal.background.task.model.BackgroundTask') -INSERT INTO CLASSNAME_ VALUES(0,31301,'com.liferay.document.library.content.model.DLContent') -INSERT INTO CLASSNAME_ VALUES(0,31401,'com.liferay.document.library.file.rank.model.DLFileRank') -INSERT INTO CLASSNAME_ VALUES(0,31501,'com.liferay.document.library.sync.model.DLSyncEvent') -INSERT INTO CLASSNAME_ VALUES(0,31701,'com.liferay.portal.workflow.kaleo.model.KaleoAction') -INSERT INTO CLASSNAME_ VALUES(0,31702,'com.liferay.portal.workflow.kaleo.model.KaleoCondition') -INSERT INTO CLASSNAME_ VALUES(0,31703,'com.liferay.portal.workflow.kaleo.model.KaleoDefinition') -INSERT INTO CLASSNAME_ VALUES(0,31704,'com.liferay.portal.workflow.kaleo.model.KaleoDefinitionVersion') -INSERT INTO CLASSNAME_ VALUES(0,31705,'com.liferay.portal.workflow.kaleo.model.KaleoInstance') -INSERT INTO CLASSNAME_ VALUES(0,31706,'com.liferay.portal.workflow.kaleo.model.KaleoInstanceToken') -INSERT INTO CLASSNAME_ VALUES(0,31707,'com.liferay.portal.workflow.kaleo.model.KaleoLog') -INSERT INTO CLASSNAME_ VALUES(0,31708,'com.liferay.portal.workflow.kaleo.model.KaleoNode') -INSERT INTO CLASSNAME_ VALUES(0,31709,'com.liferay.portal.workflow.kaleo.model.KaleoNotification') -INSERT INTO CLASSNAME_ VALUES(0,31710,'com.liferay.portal.workflow.kaleo.model.KaleoNotificationRecipient') -INSERT INTO CLASSNAME_ VALUES(0,31711,'com.liferay.portal.workflow.kaleo.model.KaleoTask') -INSERT INTO CLASSNAME_ VALUES(0,31712,'com.liferay.portal.workflow.kaleo.model.KaleoTaskAssignment') -INSERT INTO CLASSNAME_ VALUES(0,31713,'com.liferay.portal.workflow.kaleo.model.KaleoTaskAssignmentInstance') -INSERT INTO CLASSNAME_ VALUES(0,31714,'com.liferay.portal.workflow.kaleo.model.KaleoTaskForm') -INSERT INTO CLASSNAME_ VALUES(0,31715,'com.liferay.portal.workflow.kaleo.model.KaleoTaskFormInstance') -INSERT INTO CLASSNAME_ VALUES(0,31716,'com.liferay.portal.workflow.kaleo.model.KaleoTaskInstanceToken') -INSERT INTO CLASSNAME_ VALUES(0,31717,'com.liferay.portal.workflow.kaleo.model.KaleoTimer') -INSERT INTO CLASSNAME_ VALUES(0,31718,'com.liferay.portal.workflow.kaleo.model.KaleoTimerInstanceToken') -INSERT INTO CLASSNAME_ VALUES(0,31719,'com.liferay.portal.workflow.kaleo.model.KaleoTransition') -INSERT INTO CLASSNAME_ VALUES(0,31801,'com.liferay.dynamic.data.mapping.model.DDMContent') -INSERT INTO CLASSNAME_ VALUES(0,31802,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance') -INSERT INTO CLASSNAME_ VALUES(0,31803,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstanceLink') -INSERT INTO CLASSNAME_ VALUES(0,31804,'com.liferay.dynamic.data.mapping.model.DDMFormInstance') -INSERT INTO CLASSNAME_ VALUES(0,31805,'com.liferay.dynamic.data.mapping.model.DDMFormInstanceRecord') -INSERT INTO CLASSNAME_ VALUES(0,31806,'com.liferay.dynamic.data.mapping.model.DDMFormInstanceRecordVersion') -INSERT INTO CLASSNAME_ VALUES(0,31807,'com.liferay.dynamic.data.mapping.model.DDMFormInstanceVersion') -INSERT INTO CLASSNAME_ VALUES(0,31808,'com.liferay.dynamic.data.mapping.model.DDMStorageLink') -INSERT INTO CLASSNAME_ VALUES(0,31809,'com.liferay.dynamic.data.mapping.model.DDMStructure') -INSERT INTO CLASSNAME_ VALUES(0,31810,'com.liferay.dynamic.data.mapping.model.DDMStructureLayout') -INSERT INTO CLASSNAME_ VALUES(0,31811,'com.liferay.dynamic.data.mapping.model.DDMStructureLink') -INSERT INTO CLASSNAME_ VALUES(0,31812,'com.liferay.dynamic.data.mapping.model.DDMStructureVersion') -INSERT INTO CLASSNAME_ VALUES(0,31813,'com.liferay.dynamic.data.mapping.model.DDMTemplate') -INSERT INTO CLASSNAME_ VALUES(0,31814,'com.liferay.dynamic.data.mapping.model.DDMTemplateLink') -INSERT INTO CLASSNAME_ VALUES(0,31815,'com.liferay.dynamic.data.mapping.model.DDMTemplateVersion') -INSERT INTO CLASSNAME_ VALUES(0,32001,'com.liferay.friendly.url.model.FriendlyURLEntry') -INSERT INTO CLASSNAME_ VALUES(0,32002,'com.liferay.friendly.url.model.FriendlyURLEntryLocalization') -INSERT INTO CLASSNAME_ VALUES(0,32003,'com.liferay.friendly.url.model.FriendlyURLEntryMapping') -INSERT INTO CLASSNAME_ VALUES(0,32101,'com.liferay.portal.lock.model.Lock') -INSERT INTO CLASSNAME_ VALUES(0,32135,'com.liferay.portal.repository.portletrepository.PortletRepository') -INSERT INTO CLASSNAME_ VALUES(0,32138,'com.liferay.portal.repository.liferayrepository.LiferayRepository') -INSERT INTO CLASSNAME_ VALUES(0,32139,'com.liferay.portal.repository.temporaryrepository.TemporaryFileEntryRepository') -INSERT INTO CLASSNAME_ VALUES(0,32144,'com.liferay.document.library.kernel.util.RawMetadataProcessor') -INSERT INTO CLASSNAME_ VALUES(0,32201,'com.liferay.portal.kernel.servlet.taglib.ui.BreadcrumbEntry') -INSERT INTO CLASSNAME_ VALUES(0,32202,'com.liferay.portlet.display.template.PortletDisplayTemplate') -INSERT INTO CLASSNAME_ VALUES(0,32215,'com.liferay.rss.web.internal.util.RSSFeed') -INSERT INTO CLASSNAME_ VALUES(0,32219,'com.liferay.portal.kernel.repository.model.FileEntry') -INSERT INTO CLASSNAME_ VALUES(0,32265,'com.liferay.portal.kernel.servlet.taglib.ui.LanguageEntry') -INSERT INTO CLASSNAME_ VALUES(0,32401,'com.liferay.portal.security.audit.storage.model.AuditEvent') -INSERT INTO CLASSNAME_ VALUES(0,32501,'com.liferay.subscription.model.Subscription') -INSERT INTO CLASSNAME_ VALUES(0,32801,'com.liferay.polls.model.PollsChoice') -INSERT INTO CLASSNAME_ VALUES(0,32802,'com.liferay.polls.model.PollsQuestion') -INSERT INTO CLASSNAME_ VALUES(0,32803,'com.liferay.polls.model.PollsVote') -INSERT INTO CLASSNAME_ VALUES(0,32901,'com.liferay.calendar.model.Calendar') -INSERT INTO CLASSNAME_ VALUES(0,32902,'com.liferay.calendar.model.CalendarBooking') -INSERT INTO CLASSNAME_ VALUES(0,32903,'com.liferay.calendar.model.CalendarNotificationTemplate') -INSERT INTO CLASSNAME_ VALUES(0,32904,'com.liferay.calendar.model.CalendarResource') -INSERT INTO CLASSNAME_ VALUES(0,33001,'com.liferay.invitation.invite.members.model.MemberRequest') -INSERT INTO CLASSNAME_ VALUES(0,33101,'com.liferay.dynamic.data.lists.model.DDLRecordSet') -INSERT INTO CLASSNAME_ VALUES(0,33102,'com.liferay.dynamic.data.lists.model.DDLRecord') -INSERT INTO CLASSNAME_ VALUES(0,33103,'com.liferay.dynamic.data.lists.model.DDLRecordSetVersion') -INSERT INTO CLASSNAME_ VALUES(0,33104,'com.liferay.dynamic.data.lists.model.DDLRecordVersion') -INSERT INTO CLASSNAME_ VALUES(0,33201,'com.liferay.contacts.model.Entry') -INSERT INTO COMPANY VALUES(1,20099,20101,'liferay.com','F8XsCq2oLcdw/NCyexrDDA==','liferay.com',NULL,0,'0',0,'1') -INSERT INTO CONTACT_ VALUES(0,20104,20099,20103,NULL,'2019-05-09 00:27:28.179000','2019-05-09 00:27:28.179000',20006,20103,20101,0,'default@liferay.com',NULL,NULL,NULL,0,0,'1','2019-05-09 00:27:27.762000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL) -INSERT INTO CONTACT_ VALUES(0,20141,20099,20139,NULL,'2019-05-09 00:27:28.856000','2019-05-09 00:27:28.856000',20006,20139,20101,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) -INSERT INTO COUNTER VALUES('com.liferay.counter.kernel.model.Counter',34000) -INSERT INTO COUNTER VALUES('com.liferay.document.library.kernel.model.DLFileEntry',100) -INSERT INTO COUNTER VALUES('com.liferay.oauth2.provider.model.OAuth2Application',300) -INSERT INTO COUNTER VALUES('com.liferay.oauth2.provider.model.OAuth2ApplicationScopeAliases',300) -INSERT INTO COUNTER VALUES('com.liferay.oauth2.provider.model.OAuth2Authorization',100) -INSERT INTO COUNTER VALUES('com.liferay.oauth2.provider.model.OAuth2ScopeGrant',200) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#20116#true',1) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#20123#false',1) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#20123#true',1) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#20126#false',2) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#20142#false',1) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#20142#true',1) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#20147#true',1) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#33330#true',1) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#33345#true',1) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#33369#true',2) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.Layout#33380#true',3) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.ResourceAction',2800) -INSERT INTO COUNTER VALUES('com.liferay.portal.kernel.model.ResourcePermission',1800) -INSERT INTO COUNTRY VALUES(0,1,'canada','CA','CAN','124','001','1','1') -INSERT INTO COUNTRY VALUES(0,2,'china','CN','CHN','156','086','1','1') -INSERT INTO COUNTRY VALUES(0,3,'france','FR','FRA','250','033','1','1') -INSERT INTO COUNTRY VALUES(0,4,'germany','DE','DEU','276','049','1','1') -INSERT INTO COUNTRY VALUES(0,5,'hong-kong','HK','HKG','344','852','1','1') -INSERT INTO COUNTRY VALUES(0,6,'hungary','HU','HUN','348','036','1','1') -INSERT INTO COUNTRY VALUES(0,7,'israel','IL','ISR','376','972','1','1') -INSERT INTO COUNTRY VALUES(0,8,'italy','IT','ITA','380','039','1','1') -INSERT INTO COUNTRY VALUES(0,9,'japan','JP','JPN','392','081','0','1') -INSERT INTO COUNTRY VALUES(0,10,'south-korea','KR','KOR','410','082','1','1') -INSERT INTO COUNTRY VALUES(0,11,'netherlands','NL','NLD','528','031','1','1') -INSERT INTO COUNTRY VALUES(0,12,'portugal','PT','PRT','620','351','1','1') -INSERT INTO COUNTRY VALUES(0,13,'russia','RU','RUS','643','007','1','1') -INSERT INTO COUNTRY VALUES(0,14,'singapore','SG','SGP','702','065','1','1') -INSERT INTO COUNTRY VALUES(0,15,'spain','ES','ESP','724','034','1','1') -INSERT INTO COUNTRY VALUES(0,16,'turkey','TR','TUR','792','090','1','1') -INSERT INTO COUNTRY VALUES(0,17,'vietnam','VN','VNM','704','084','1','1') -INSERT INTO COUNTRY VALUES(0,18,'united-kingdom','GB','GBR','826','044','1','1') -INSERT INTO COUNTRY VALUES(0,19,'united-states','US','USA','840','001','1','1') -INSERT INTO COUNTRY VALUES(0,20,'afghanistan','AF','AFG','4','093','1','1') -INSERT INTO COUNTRY VALUES(0,21,'albania','AL','ALB','8','355','1','1') -INSERT INTO COUNTRY VALUES(0,22,'algeria','DZ','DZA','12','213','1','1') -INSERT INTO COUNTRY VALUES(0,23,'american-samoa','AS','ASM','16','684','1','1') -INSERT INTO COUNTRY VALUES(0,24,'andorra','AD','AND','20','376','1','1') -INSERT INTO COUNTRY VALUES(0,25,'angola','AO','AGO','24','244','0','1') -INSERT INTO COUNTRY VALUES(0,26,'anguilla','AI','AIA','660','264','1','1') -INSERT INTO COUNTRY VALUES(0,27,'antarctica','AQ','ATA','10','672','1','1') -INSERT INTO COUNTRY VALUES(0,28,'antigua-barbuda','AG','ATG','28','268','0','1') -INSERT INTO COUNTRY VALUES(0,29,'argentina','AR','ARG','32','054','1','1') -INSERT INTO COUNTRY VALUES(0,30,'armenia','AM','ARM','51','374','1','1') -INSERT INTO COUNTRY VALUES(0,31,'aruba','AW','ABW','533','297','0','1') -INSERT INTO COUNTRY VALUES(0,32,'australia','AU','AUS','36','061','1','1') -INSERT INTO COUNTRY VALUES(0,33,'austria','AT','AUT','40','043','1','1') -INSERT INTO COUNTRY VALUES(0,34,'azerbaijan','AZ','AZE','31','994','1','1') -INSERT INTO COUNTRY VALUES(0,35,'bahamas','BS','BHS','44','242','0','1') -INSERT INTO COUNTRY VALUES(0,36,'bahrain','BH','BHR','48','973','1','1') -INSERT INTO COUNTRY VALUES(0,37,'bangladesh','BD','BGD','50','880','1','1') -INSERT INTO COUNTRY VALUES(0,38,'barbados','BB','BRB','52','246','1','1') -INSERT INTO COUNTRY VALUES(0,39,'belarus','BY','BLR','112','375','1','1') -INSERT INTO COUNTRY VALUES(0,40,'belgium','BE','BEL','56','032','1','1') -INSERT INTO COUNTRY VALUES(0,41,'belize','BZ','BLZ','84','501','0','1') -INSERT INTO COUNTRY VALUES(0,42,'benin','BJ','BEN','204','229','0','1') -INSERT INTO COUNTRY VALUES(0,43,'bermuda','BM','BMU','60','441','1','1') -INSERT INTO COUNTRY VALUES(0,44,'bhutan','BT','BTN','64','975','1','1') -INSERT INTO COUNTRY VALUES(0,45,'bolivia','BO','BOL','68','591','1','1') -INSERT INTO COUNTRY VALUES(0,46,'bosnia-herzegovina','BA','BIH','70','387','1','1') -INSERT INTO COUNTRY VALUES(0,47,'botswana','BW','BWA','72','267','0','1') -INSERT INTO COUNTRY VALUES(0,48,'brazil','BR','BRA','76','055','1','1') -INSERT INTO COUNTRY VALUES(0,49,'british-virgin-islands','VG','VGB','92','284','1','1') -INSERT INTO COUNTRY VALUES(0,50,'brunei','BN','BRN','96','673','1','1') -INSERT INTO COUNTRY VALUES(0,51,'bulgaria','BG','BGR','100','359','1','1') -INSERT INTO COUNTRY VALUES(0,52,'burkina-faso','BF','BFA','854','226','0','1') -INSERT INTO COUNTRY VALUES(0,53,'burma-myanmar','MM','MMR','104','095','1','1') -INSERT INTO COUNTRY VALUES(0,54,'burundi','BI','BDI','108','257','0','1') -INSERT INTO COUNTRY VALUES(0,55,'cambodia','KH','KHM','116','855','1','1') -INSERT INTO COUNTRY VALUES(0,56,'cameroon','CM','CMR','120','237','1','1') -INSERT INTO COUNTRY VALUES(0,57,'cape-verde-island','CV','CPV','132','238','1','1') -INSERT INTO COUNTRY VALUES(0,58,'cayman-islands','KY','CYM','136','345','1','1') -INSERT INTO COUNTRY VALUES(0,59,'central-african-republic','CF','CAF','140','236','0','1') -INSERT INTO COUNTRY VALUES(0,60,'chad','TD','TCD','148','235','1','1') -INSERT INTO COUNTRY VALUES(0,61,'chile','CL','CHL','152','056','1','1') -INSERT INTO COUNTRY VALUES(0,62,'christmas-island','CX','CXR','162','061','1','1') -INSERT INTO COUNTRY VALUES(0,63,'cocos-islands','CC','CCK','166','061','1','1') -INSERT INTO COUNTRY VALUES(0,64,'colombia','CO','COL','170','057','1','1') -INSERT INTO COUNTRY VALUES(0,65,'comoros','KM','COM','174','269','0','1') -INSERT INTO COUNTRY VALUES(0,66,'republic-of-congo','CD','COD','180','242','0','1') -INSERT INTO COUNTRY VALUES(0,67,'democratic-republic-of-congo','CG','COG','178','243','0','1') -INSERT INTO COUNTRY VALUES(0,68,'cook-islands','CK','COK','184','682','0','1') -INSERT INTO COUNTRY VALUES(0,69,'costa-rica','CR','CRI','188','506','1','1') -INSERT INTO COUNTRY VALUES(0,70,'croatia','HR','HRV','191','385','1','1') -INSERT INTO COUNTRY VALUES(0,71,'cuba','CU','CUB','192','053','1','1') -INSERT INTO COUNTRY VALUES(0,72,'cyprus','CY','CYP','196','357','1','1') -INSERT INTO COUNTRY VALUES(0,73,'czech-republic','CZ','CZE','203','420','1','1') -INSERT INTO COUNTRY VALUES(0,74,'denmark','DK','DNK','208','045','1','1') -INSERT INTO COUNTRY VALUES(0,75,'djibouti','DJ','DJI','262','253','0','1') -INSERT INTO COUNTRY VALUES(0,76,'dominica','DM','DMA','212','767','0','1') -INSERT INTO COUNTRY VALUES(0,77,'dominican-republic','DO','DOM','214','809','1','1') -INSERT INTO COUNTRY VALUES(0,78,'ecuador','EC','ECU','218','593','1','1') -INSERT INTO COUNTRY VALUES(0,79,'egypt','EG','EGY','818','020','1','1') -INSERT INTO COUNTRY VALUES(0,80,'el-salvador','SV','SLV','222','503','1','1') -INSERT INTO COUNTRY VALUES(0,81,'equatorial-guinea','GQ','GNQ','226','240','0','1') -INSERT INTO COUNTRY VALUES(0,82,'eritrea','ER','ERI','232','291','0','1') -INSERT INTO COUNTRY VALUES(0,83,'estonia','EE','EST','233','372','1','1') -INSERT INTO COUNTRY VALUES(0,84,'ethiopia','ET','ETH','231','251','1','1') -INSERT INTO COUNTRY VALUES(0,85,'faeroe-islands','FO','FRO','234','298','1','1') -INSERT INTO COUNTRY VALUES(0,86,'falkland-islands','FK','FLK','238','500','1','1') -INSERT INTO COUNTRY VALUES(0,87,'fiji-islands','FJ','FJI','242','679','0','1') -INSERT INTO COUNTRY VALUES(0,88,'finland','FI','FIN','246','358','1','1') -INSERT INTO COUNTRY VALUES(0,89,'french-guiana','GF','GUF','254','594','1','1') -INSERT INTO COUNTRY VALUES(0,90,'french-polynesia','PF','PYF','258','689','1','1') -INSERT INTO COUNTRY VALUES(0,91,'gabon','GA','GAB','266','241','1','1') -INSERT INTO COUNTRY VALUES(0,92,'gambia','GM','GMB','270','220','0','1') -INSERT INTO COUNTRY VALUES(0,93,'georgia','GE','GEO','268','995','1','1') -INSERT INTO COUNTRY VALUES(0,94,'ghana','GH','GHA','288','233','0','1') -INSERT INTO COUNTRY VALUES(0,95,'gibraltar','GI','GIB','292','350','1','1') -INSERT INTO COUNTRY VALUES(0,96,'greece','GR','GRC','300','030','1','1') -INSERT INTO COUNTRY VALUES(0,97,'greenland','GL','GRL','304','299','1','1') -INSERT INTO COUNTRY VALUES(0,98,'grenada','GD','GRD','308','473','0','1') -INSERT INTO COUNTRY VALUES(0,99,'guadeloupe','GP','GLP','312','590','1','1') -INSERT INTO COUNTRY VALUES(0,100,'guam','GU','GUM','316','671','1','1') -INSERT INTO COUNTRY VALUES(0,101,'guatemala','GT','GTM','320','502','1','1') -INSERT INTO COUNTRY VALUES(0,102,'guinea','GN','GIN','324','224','0','1') -INSERT INTO COUNTRY VALUES(0,103,'guinea-bissau','GW','GNB','624','245','1','1') -INSERT INTO COUNTRY VALUES(0,104,'guyana','GY','GUY','328','592','0','1') -INSERT INTO COUNTRY VALUES(0,105,'haiti','HT','HTI','332','509','1','1') -INSERT INTO COUNTRY VALUES(0,106,'honduras','HN','HND','340','504','1','1') -INSERT INTO COUNTRY VALUES(0,107,'iceland','IS','ISL','352','354','1','1') -INSERT INTO COUNTRY VALUES(0,108,'india','IN','IND','356','091','1','1') -INSERT INTO COUNTRY VALUES(0,109,'indonesia','ID','IDN','360','062','1','1') -INSERT INTO COUNTRY VALUES(0,110,'iran','IR','IRN','364','098','1','1') -INSERT INTO COUNTRY VALUES(0,111,'iraq','IQ','IRQ','368','964','1','1') -INSERT INTO COUNTRY VALUES(0,112,'ireland','IE','IRL','372','353','0','1') -INSERT INTO COUNTRY VALUES(0,113,'ivory-coast','CI','CIV','384','225','1','1') -INSERT INTO COUNTRY VALUES(0,114,'jamaica','JM','JAM','388','876','1','1') -INSERT INTO COUNTRY VALUES(0,115,'jordan','JO','JOR','400','962','1','1') -INSERT INTO COUNTRY VALUES(0,116,'kazakhstan','KZ','KAZ','398','007','1','1') -INSERT INTO COUNTRY VALUES(0,117,'kenya','KE','KEN','404','254','1','1') -INSERT INTO COUNTRY VALUES(0,118,'kiribati','KI','KIR','408','686','0','1') -INSERT INTO COUNTRY VALUES(0,119,'kuwait','KW','KWT','414','965','1','1') -INSERT INTO COUNTRY VALUES(0,120,'north-korea','KP','PRK','408','850','0','1') -INSERT INTO COUNTRY VALUES(0,121,'kyrgyzstan','KG','KGZ','471','996','1','1') -INSERT INTO COUNTRY VALUES(0,122,'laos','LA','LAO','418','856','1','1') -INSERT INTO COUNTRY VALUES(0,123,'latvia','LV','LVA','428','371','1','1') -INSERT INTO COUNTRY VALUES(0,124,'lebanon','LB','LBN','422','961','1','1') -INSERT INTO COUNTRY VALUES(0,125,'lesotho','LS','LSO','426','266','1','1') -INSERT INTO COUNTRY VALUES(0,126,'liberia','LR','LBR','430','231','1','1') -INSERT INTO COUNTRY VALUES(0,127,'libya','LY','LBY','434','218','1','1') -INSERT INTO COUNTRY VALUES(0,128,'liechtenstein','LI','LIE','438','423','1','1') -INSERT INTO COUNTRY VALUES(0,129,'lithuania','LT','LTU','440','370','1','1') -INSERT INTO COUNTRY VALUES(0,130,'luxembourg','LU','LUX','442','352','1','1') -INSERT INTO COUNTRY VALUES(0,131,'macau','MO','MAC','446','853','0','1') -INSERT INTO COUNTRY VALUES(0,132,'macedonia','MK','MKD','807','389','1','1') -INSERT INTO COUNTRY VALUES(0,133,'madagascar','MG','MDG','450','261','1','1') -INSERT INTO COUNTRY VALUES(0,134,'malawi','MW','MWI','454','265','0','1') -INSERT INTO COUNTRY VALUES(0,135,'malaysia','MY','MYS','458','060','1','1') -INSERT INTO COUNTRY VALUES(0,136,'maldives','MV','MDV','462','960','1','1') -INSERT INTO COUNTRY VALUES(0,137,'mali','ML','MLI','466','223','0','1') -INSERT INTO COUNTRY VALUES(0,138,'malta','MT','MLT','470','356','1','1') -INSERT INTO COUNTRY VALUES(0,139,'marshall-islands','MH','MHL','584','692','1','1') -INSERT INTO COUNTRY VALUES(0,140,'martinique','MQ','MTQ','474','596','1','1') -INSERT INTO COUNTRY VALUES(0,141,'mauritania','MR','MRT','478','222','0','1') -INSERT INTO COUNTRY VALUES(0,142,'mauritius','MU','MUS','480','230','0','1') -INSERT INTO COUNTRY VALUES(0,143,'mayotte-island','YT','MYT','175','269','1','1') -INSERT INTO COUNTRY VALUES(0,144,'mexico','MX','MEX','484','052','1','1') -INSERT INTO COUNTRY VALUES(0,145,'micronesia','FM','FSM','583','691','1','1') -INSERT INTO COUNTRY VALUES(0,146,'moldova','MD','MDA','498','373','1','1') -INSERT INTO COUNTRY VALUES(0,147,'monaco','MC','MCO','492','377','1','1') -INSERT INTO COUNTRY VALUES(0,148,'mongolia','MN','MNG','496','976','1','1') -INSERT INTO COUNTRY VALUES(0,149,'montenegro','ME','MNE','499','382','1','1') -INSERT INTO COUNTRY VALUES(0,150,'montserrat','MS','MSR','500','664','0','1') -INSERT INTO COUNTRY VALUES(0,151,'morocco','MA','MAR','504','212','1','1') -INSERT INTO COUNTRY VALUES(0,152,'mozambique','MZ','MOZ','508','258','1','1') -INSERT INTO COUNTRY VALUES(0,153,'namibia','NA','NAM','516','264','1','1') -INSERT INTO COUNTRY VALUES(0,154,'nauru','NR','NRU','520','674','0','1') -INSERT INTO COUNTRY VALUES(0,155,'nepal','NP','NPL','524','977','1','1') -INSERT INTO COUNTRY VALUES(0,156,'netherlands-antilles','AN','ANT','530','599','1','1') -INSERT INTO COUNTRY VALUES(0,157,'new-caledonia','NC','NCL','540','687','1','1') -INSERT INTO COUNTRY VALUES(0,158,'new-zealand','NZ','NZL','554','064','1','1') -INSERT INTO COUNTRY VALUES(0,159,'nicaragua','NI','NIC','558','505','1','1') -INSERT INTO COUNTRY VALUES(0,160,'niger','NE','NER','562','227','1','1') -INSERT INTO COUNTRY VALUES(0,161,'nigeria','NG','NGA','566','234','1','1') -INSERT INTO COUNTRY VALUES(0,162,'niue','NU','NIU','570','683','0','1') -INSERT INTO COUNTRY VALUES(0,163,'norfolk-island','NF','NFK','574','672','1','1') -INSERT INTO COUNTRY VALUES(0,164,'norway','NO','NOR','578','047','1','1') -INSERT INTO COUNTRY VALUES(0,165,'oman','OM','OMN','512','968','1','1') -INSERT INTO COUNTRY VALUES(0,166,'pakistan','PK','PAK','586','092','1','1') -INSERT INTO COUNTRY VALUES(0,167,'palau','PW','PLW','585','680','1','1') -INSERT INTO COUNTRY VALUES(0,168,'palestine','PS','PSE','275','970','1','1') -INSERT INTO COUNTRY VALUES(0,169,'panama','PA','PAN','591','507','1','1') -INSERT INTO COUNTRY VALUES(0,170,'papua-new-guinea','PG','PNG','598','675','1','1') -INSERT INTO COUNTRY VALUES(0,171,'paraguay','PY','PRY','600','595','1','1') -INSERT INTO COUNTRY VALUES(0,172,'peru','PE','PER','604','051','1','1') -INSERT INTO COUNTRY VALUES(0,173,'philippines','PH','PHL','608','063','1','1') -INSERT INTO COUNTRY VALUES(0,174,'poland','PL','POL','616','048','1','1') -INSERT INTO COUNTRY VALUES(0,175,'puerto-rico','PR','PRI','630','787','1','1') -INSERT INTO COUNTRY VALUES(0,176,'qatar','QA','QAT','634','974','0','1') -INSERT INTO COUNTRY VALUES(0,177,'reunion-island','RE','REU','638','262','1','1') -INSERT INTO COUNTRY VALUES(0,178,'romania','RO','ROU','642','040','1','1') -INSERT INTO COUNTRY VALUES(0,179,'rwanda','RW','RWA','646','250','0','1') -INSERT INTO COUNTRY VALUES(0,180,'st-helena','SH','SHN','654','290','1','1') -INSERT INTO COUNTRY VALUES(0,181,'st-kitts','KN','KNA','659','869','0','1') -INSERT INTO COUNTRY VALUES(0,182,'st-lucia','LC','LCA','662','758','0','1') -INSERT INTO COUNTRY VALUES(0,183,'st-pierre-miquelon','PM','SPM','666','508','1','1') -INSERT INTO COUNTRY VALUES(0,184,'st-vincent','VC','VCT','670','784','1','1') -INSERT INTO COUNTRY VALUES(0,185,'san-marino','SM','SMR','674','378','1','1') -INSERT INTO COUNTRY VALUES(0,186,'sao-tome-principe','ST','STP','678','239','0','1') -INSERT INTO COUNTRY VALUES(0,187,'saudi-arabia','SA','SAU','682','966','1','1') -INSERT INTO COUNTRY VALUES(0,188,'senegal','SN','SEN','686','221','1','1') -INSERT INTO COUNTRY VALUES(0,189,'serbia','RS','SRB','688','381','1','1') -INSERT INTO COUNTRY VALUES(0,190,'seychelles','SC','SYC','690','248','0','1') -INSERT INTO COUNTRY VALUES(0,191,'sierra-leone','SL','SLE','694','249','0','1') -INSERT INTO COUNTRY VALUES(0,192,'slovakia','SK','SVK','703','421','1','1') -INSERT INTO COUNTRY VALUES(0,193,'slovenia','SI','SVN','705','386','1','1') -INSERT INTO COUNTRY VALUES(0,194,'solomon-islands','SB','SLB','90','677','0','1') -INSERT INTO COUNTRY VALUES(0,195,'somalia','SO','SOM','706','252','0','1') -INSERT INTO COUNTRY VALUES(0,196,'south-africa','ZA','ZAF','710','027','1','1') -INSERT INTO COUNTRY VALUES(0,197,'sri-lanka','LK','LKA','144','094','1','1') -INSERT INTO COUNTRY VALUES(0,198,'sudan','SD','SDN','736','095','1','1') -INSERT INTO COUNTRY VALUES(0,199,'suriname','SR','SUR','740','597','0','1') -INSERT INTO COUNTRY VALUES(0,200,'swaziland','SZ','SWZ','748','268','1','1') -INSERT INTO COUNTRY VALUES(0,201,'sweden','SE','SWE','752','046','1','1') -INSERT INTO COUNTRY VALUES(0,202,'switzerland','CH','CHE','756','041','1','1') -INSERT INTO COUNTRY VALUES(0,203,'syria','SY','SYR','760','963','0','1') -INSERT INTO COUNTRY VALUES(0,204,'taiwan','TW','TWN','158','886','1','1') -INSERT INTO COUNTRY VALUES(0,205,'tajikistan','TJ','TJK','762','992','1','1') -INSERT INTO COUNTRY VALUES(0,206,'tanzania','TZ','TZA','834','255','0','1') -INSERT INTO COUNTRY VALUES(0,207,'thailand','TH','THA','764','066','1','1') -INSERT INTO COUNTRY VALUES(0,208,'togo','TG','TGO','768','228','1','1') -INSERT INTO COUNTRY VALUES(0,209,'tonga','TO','TON','776','676','0','1') -INSERT INTO COUNTRY VALUES(0,210,'trinidad-tobago','TT','TTO','780','868','0','1') -INSERT INTO COUNTRY VALUES(0,211,'tunisia','TN','TUN','788','216','1','1') -INSERT INTO COUNTRY VALUES(0,212,'turkmenistan','TM','TKM','795','993','1','1') -INSERT INTO COUNTRY VALUES(0,213,'turks-caicos','TC','TCA','796','649','1','1') -INSERT INTO COUNTRY VALUES(0,214,'tuvalu','TV','TUV','798','688','0','1') -INSERT INTO COUNTRY VALUES(0,215,'uganda','UG','UGA','800','256','0','1') -INSERT INTO COUNTRY VALUES(0,216,'ukraine','UA','UKR','804','380','1','1') -INSERT INTO COUNTRY VALUES(0,217,'united-arab-emirates','AE','ARE','784','971','0','1') -INSERT INTO COUNTRY VALUES(0,218,'uruguay','UY','URY','858','598','1','1') -INSERT INTO COUNTRY VALUES(0,219,'uzbekistan','UZ','UZB','860','998','1','1') -INSERT INTO COUNTRY VALUES(0,220,'vanuatu','VU','VUT','548','678','0','1') -INSERT INTO COUNTRY VALUES(0,221,'vatican-city','VA','VAT','336','039','1','1') -INSERT INTO COUNTRY VALUES(0,222,'venezuela','VE','VEN','862','058','1','1') -INSERT INTO COUNTRY VALUES(0,223,'wallis-futuna','WF','WLF','876','681','1','1') -INSERT INTO COUNTRY VALUES(0,224,'western-samoa','WS','WSM','882','685','1','1') -INSERT INTO COUNTRY VALUES(0,225,'yemen','YE','YEM','887','967','0','1') -INSERT INTO COUNTRY VALUES(0,226,'zambia','ZM','ZMB','894','260','1','1') -INSERT INTO COUNTRY VALUES(0,227,'zimbabwe','ZW','ZWE','716','263','0','1') -INSERT INTO COUNTRY VALUES(0,228,'aland-islands','AX','ALA','248','359','1','1') -INSERT INTO COUNTRY VALUES(0,229,'bonaire-st-eustatius-saba','BQ','BES','535','599','1','1') -INSERT INTO COUNTRY VALUES(0,230,'bouvet-island','BV','BVT','74','047','1','1') -INSERT INTO COUNTRY VALUES(0,231,'british-indian-ocean-territory','IO','IOT','86','246','1','1') -INSERT INTO COUNTRY VALUES(0,232,'curacao','CW','CUW','531','599','1','1') -INSERT INTO COUNTRY VALUES(0,233,'french-southern-territories','TF','ATF','260','033','0','1') -INSERT INTO COUNTRY VALUES(0,234,'guernsey','GG','GGY','831','044','1','1') -INSERT INTO COUNTRY VALUES(0,235,'heard-island-mcdonald-islands','HM','HMD','334','061','1','1') -INSERT INTO COUNTRY VALUES(0,236,'isle-of-man','IM','IMN','833','044','1','1') -INSERT INTO COUNTRY VALUES(0,237,'jersey','JE','JEY','832','044','1','1') -INSERT INTO COUNTRY VALUES(0,238,'northern-mariana-islands','MP','MNP','580','670','1','1') -INSERT INTO COUNTRY VALUES(0,239,'pitcairn','PN','PCN','612','649','1','1') -INSERT INTO COUNTRY VALUES(0,240,'south-georgia-south-sandwich-islands','GS','SGS','239','044','1','1') -INSERT INTO COUNTRY VALUES(0,241,'south-sudan','SS','SSD','728','211','1','1') -INSERT INTO COUNTRY VALUES(0,242,'sint-maarten','SX','SXM','534','721','1','1') -INSERT INTO COUNTRY VALUES(0,243,'st-barthelemy','BL','BLM','652','590','1','1') -INSERT INTO COUNTRY VALUES(0,244,'st-martin','MF','MAF','663','590','1','1') -INSERT INTO COUNTRY VALUES(0,245,'tokelau','TK','TKL','772','690','0','1') -INSERT INTO COUNTRY VALUES(0,246,'timor-leste','TL','TLS','626','670','1','1') -INSERT INTO COUNTRY VALUES(0,247,'united-states-minor-outlying-islands','UM','UMI','581','699','1','1') -INSERT INTO COUNTRY VALUES(0,248,'united-states-virgin-islands','VI','VIR','850','340','1','1') -INSERT INTO COUNTRY VALUES(0,249,'western-sahara','EH','ESH','732','212','1','1') -INSERT INTO DLFILEENTRY VALUES('7371e9af-472b-5e02-de1b-3fbfc39cc3f5',32141,20135,20099,20103,NULL,'2019-05-09 00:27:49.890000','2019-05-09 00:27:49.976000',28001,1,32136,32140,'/32137/32140/','1','id-ca91aeeb-91de-4ad9-c381-41ec40bc25',NULL,'image/png','id-ca91aeeb-91de-4ad9-c381-41ec40bc25',NULL,'',0,'1.0',629,0,0,0,0,0,'0',NULL) -INSERT INTO DLFILEENTRYTYPE VALUES('034354ab-74b0-f522-5d7e-e85d4d4af7c9',0,0,0,0,NULL,'2019-05-09 00:27:49.871000','2019-05-09 00:27:49.871000','BASIC-DOCUMENT','basic-document',NULL,NULL) -INSERT INTO DLFILEENTRYTYPE VALUES('8417a772-8874-8d87-4c00-ea69d8c9a7de',32296,20135,20099,20103,NULL,'2019-05-09 00:27:52.795000','2019-05-09 00:27:52.795000','CONTRACT','SopimusContract\u5408\u540cContratos\u05d7\u05d5\u05d6\u05d9\u05ddContrato\u5951\u7d04ContratsContractesContractenSzerz\u0151d\u00e9sVertrag','SopimusContract\u5408\u540cContratos\u05d7\u05d5\u05d6\u05d9\u05ddContrato\u5951\u7d04ContratsContractesContractenSzerz\u0151d\u00e9sVertrag',NULL) -INSERT INTO DLFILEENTRYTYPE VALUES('9b580594-8930-d58e-c34a-1a976ec4c384',32301,20135,20099,20103,NULL,'2019-05-09 00:27:52.835000','2019-05-09 00:27:52.835000','MARKETING BANNER','MarkkinointimainospalkkiMarketing Banner\u8425\u9500\u6807\u8bedBanner comercial\u05d1\u05d0\u05e0\u05e8 \u05e9\u05d9\u05d5\u05d5\u05e7\u05d9Banner de Marketing\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u30d0\u30ca\u30fcBanni\u00e8re commercialeB\u00e0ner de m\u00e0rquetingMarketingbannerH\u00edrdet\u00e9si cs\u00edkMarketingbanner','MarkkinointimainospalkkiMarketing Banner\u8425\u9500\u6807\u8bedBanner comercial\u05d1\u05d0\u05e0\u05e8 \u05e9\u05d9\u05d5\u05d5\u05e7\u05d9Banner de Marketing\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u30d0\u30ca\u30fcBanni\u00e8re commercialeB\u00e0ner de m\u00e0rquetingMarketingbannerH\u00edrdet\u00e9si cs\u00edkMarketingbanner',NULL) -INSERT INTO DLFILEENTRYTYPE VALUES('e0311bbd-00b5-6259-00cb-807730da187d',32307,20135,20099,20103,NULL,'2019-05-09 00:27:52.857000','2019-05-09 00:27:52.857000','ONLINE TRAINING','Online koulutusOnline Training\u5728\u7ebf\u57f9\u8badFormaci\u00f3n en l\u00ednea\u05d4\u05db\u05e9\u05e8\u05d4 \u05de\u05e7\u05d5\u05d5\u05e0\u05eaTreinamento Online\u30aa\u30f3\u30e9\u30a4\u30f3\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0Formation en ligneFromaci\u00f3 en l\u00edniaOnline trainingOnline tanfolyamOnline-Training','Online koulutusOnline Training\u5728\u7ebf\u57f9\u8badFormaci\u00f3n en l\u00ednea\u05d4\u05db\u05e9\u05e8\u05d4 \u05de\u05e7\u05d5\u05d5\u05e0\u05eaTreinamento Online\u30aa\u30f3\u30e9\u30a4\u30f3\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0Formation en ligneFromaci\u00f3 en l\u00edniaOnline trainingOnline tanfolyamOnline-Training',NULL) -INSERT INTO DLFILEENTRYTYPE VALUES('2baa59ad-e80b-336c-1542-ae997379d16c',32313,20135,20099,20103,NULL,'2019-05-09 00:27:52.884000','2019-05-09 00:27:52.884000','SALES PRESENTATION','Myynti esitysSales Presentation\u9500\u552e\u62a5\u544aPresentaci\u00f3n de ventas\u05de\u05e6\u05d2\u05ea \u05de\u05db\u05d9\u05e8\u05d5\u05eaApresenta\u00e7\u00e3o de Vendas\u30bb\u30fc\u30eb\u30b9\u30d7\u30ec\u30bc\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3Pr\u00e9sentation des ventesPresentaci\u00f3 de vendesVerkooppresentatieKeresked\u0151i el\u0151ad\u00e1sVertriebspr\u00e4sentation','Myynti esitysSales Presentation\u9500\u552e\u62a5\u544aPresentaci\u00f3n de ventas\u05de\u05e6\u05d2\u05ea \u05de\u05db\u05d9\u05e8\u05d5\u05eaApresenta\u00e7\u00e3o de Vendas\u30bb\u30fc\u30eb\u30b9\u30d7\u30ec\u30bc\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3Pr\u00e9sentation des ventesPresentaci\u00f3 de vendesVerkooppresentatieKeresked\u0151i el\u0151ad\u00e1sVertriebspr\u00e4sentation',NULL) -INSERT INTO DLFILEVERSION VALUES('31747896-470a-b8a8-a99e-7c928c07650e',32142,20135,20099,20103,NULL,'2019-05-09 00:27:49.917000','2019-05-09 00:27:49.976000',32136,32140,32141,'/32137/32140/','id-ca91aeeb-91de-4ad9-c381-41ec40bc25',NULL,'image/png','id-ca91aeeb-91de-4ad9-c381-41ec40bc25',NULL,NULL,'',0,'1.0',629,NULL,NULL,0,20103,NULL,'2019-05-09 00:27:49.976000') -INSERT INTO DLFOLDER VALUES('82fc323f-746b-1d17-300f-7daead665143',32137,20135,20099,20103,NULL,'2019-05-09 00:27:49.474000','2019-05-09 00:27:49.474000',32136,'1',0,'/32137/','com.liferay.oauth2.provider',NULL,'2019-05-09 00:27:49.606000',0,'1',0,NULL,0,0,NULL,NULL) -INSERT INTO DLFOLDER VALUES('ed15ad69-6747-d860-15a6-a1e3597deac8',32140,20135,20099,20103,NULL,'2019-05-09 00:27:49.608000','2019-05-09 00:27:49.608000',32136,'0',32137,'/32137/32140/','icons',NULL,'2019-05-09 00:27:49.890000',0,'0',0,NULL,0,0,NULL,NULL) -INSERT INTO EXPANDOCOLUMN VALUES(33222,20099,33221,'googleAccessToken',15,'','hidden=true\u000avisible-with-update-permission=false\u000a') -INSERT INTO EXPANDOCOLUMN VALUES(33223,20099,33221,'googleRefreshToken',15,'','hidden=true\u000avisible-with-update-permission=false\u000a') -INSERT INTO EXPANDOCOLUMN VALUES(33225,20099,33224,'accessSecret',15,'','') -INSERT INTO EXPANDOCOLUMN VALUES(33226,20099,33224,'accessToken',15,'','') -INSERT INTO EXPANDOCOLUMN VALUES(33227,20099,33224,'requestSecret',15,'','') -INSERT INTO EXPANDOCOLUMN VALUES(33228,20099,33224,'requestToken',15,'','') -INSERT INTO EXPANDOTABLE VALUES(33221,20099,20006,'CUSTOM_FIELDS') -INSERT INTO EXPANDOTABLE VALUES(33224,20099,20006,'MP') -INSERT INTO GROUP_ VALUES(0,'ec8546b3-981f-dc1e-2208-b9897319b4a9',20116,20099,20103,20001,20116,0,0,'/20116/','Control Panel','Control Panel',NULL,3,'','1',0,'/control_panel','0',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'e29107b8-df1e-116e-552f-c1c116b5444b',20123,20099,20103,20001,20123,0,0,'/20123/','Forms','Forms',NULL,3,'','1',0,'/forms','0',0,'0','1') -INSERT INTO GROUP_ VALUES(1,'d144a7aa-2d7b-c65a-cddc-becd5000cc55',20126,20099,20103,20001,20126,0,0,'/20126/','Guest','Guest',NULL,1,'searchLayoutCreated=true\u000a','1',0,'/guest','1',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'0b25d310-5aca-c1e7-d32c-9f4475178340',20132,20099,20103,20118,20103,0,0,'/20132/','User Personal Site','User Personal Site',NULL,3,'','1',0,'/personal_site','0',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'d29b046a-d11e-8605-e983-932a7c124383',20135,20099,20103,20035,20099,0,0,'/20135/','20099','Global',NULL,0,'','1',0,'/global','1',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'981b554b-66fd-0583-f907-34c59ba5ddfc',20142,20099,20139,20006,20139,0,0,'/20142/','20139',NULL,NULL,0,'','1',0,'/test','0',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'0271e979-e917-afc8-2f53-72ba93ddd220',20147,20099,20103,20042,20146,0,0,'/20147/','20146','HakuSearch\u641c\u7d22B\u00fasqueda\u05d7\u05e4\u05e9Busca\u691c\u7d22RechercherCercaZoekenKeres\u00e9sSuche',NULL,0,'','1',0,'/template-20146','0',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'ab5aafd5-b39b-9ac3-dbda-afb4134ac103',33330,20099,20103,20042,33328,0,0,'/33330/','33328','WikitWikiWikiWiki\u05d5\u05d9\u05e7\u05d9WikiWikiWiki (Panneau de Configuration)WikiWiki''sWikikWiki',NULL,0,'','1',0,'/template-33328','0',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'d2e18fbd-71ad-a24d-5d4e-65fa1b560aca',33345,20099,20103,20042,33343,0,0,'/33345/','33343','BlogitBlog\u535a\u5ba2Blog\u05d1\u05dc\u05d5\u05d2Blog\u30d6\u30ed\u30b0BlogueBlocBlogBlogBlog',NULL,0,'','1',0,'/template-33343','0',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'4a87e940-91ad-549b-b4ab-1dcbcb7ac478',33369,20099,20103,20046,33368,0,0,'/33369/','33368','Yhteis\u00f6sivustoCommunity Site\u793e\u533a\u7f51\u7ad9Sitio de comunidad\u05d0\u05ea\u05e8 \u05e7\u05d4\u05d9\u05dc\u05d4Site da Comunidade\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u30fc\u30b5\u30a4\u30c8Site de communaut\u00e9Lloc comunitariCommunity websiteK\u00f6z\u00f6ss\u00e9gi webhelyCommunity-Site',NULL,0,'','1',0,'/template-33368','0',0,'0','1') -INSERT INTO GROUP_ VALUES(0,'0b252108-b4e3-c283-937b-9eb42c4c7855',33380,20099,20103,20046,33379,0,0,'/33380/','33379','Intranet sivustoIntranet Site\u5185\u7f51Sitio de intranet\u05d0\u05ea\u05e8 \u05d0\u05d9\u05e0\u05d8\u05e8\u05d0\u05e0\u05d8Site da Intranet\u30a4\u30f3\u30c8\u30e9\u30cd\u30c3\u30c8\u30b5\u30a4\u30c8Site intranetLloc web tipus IntranetIntranet WebsiteIntranetes webhelyIntranet-Site',NULL,0,'','1',0,'/template-33379','0',0,'0','1') -INSERT INTO LAYOUT VALUES(0,'c2ee30a5-effd-f535-94b0-333e213a3a70',20120,20116,20099,20103,NULL,'2019-05-09 00:27:28.457000','2019-05-09 00:27:28.457000','1',1,0,'Control Panel',NULL,NULL,NULL,NULL,'control_panel','privateLayout=true\u000a','0','/manage',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(1,'2b6bcff6-1520-71c7-1a10-c1623de99e89',20129,20126,20099,20103,NULL,'2019-05-09 00:27:28.555000','2019-05-09 00:27:28.588000','0',1,0,'Welcome',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_hello_world_web_portlet_HelloWorldPortlet,\u000alayout-template-id=1_column\u000a','0','/home',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(23,'9f94ec08-1aab-e5dc-6655-928d03e85698',20150,20147,20099,20103,NULL,'2019-05-09 00:27:29.171000','2019-05-09 00:27:29.380000','1',1,0,'HakuSearch\u641c\u7d22B\u00fasqueda\u05d7\u05e4\u05e9Busca\u691c\u7d22RechercherCercaZoekenKeres\u00e9sSuche',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet,com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet,\u000acolumn-2=com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet,com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet,com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet,com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet,com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet,com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet,com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet,\u000acolumn-3=com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet,com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet,\u000alayout-template-id=1_2_columns_i\u000amerge-fail-count=0\u000aprivateLayout=true\u000a','0','/layout',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(11,'07b16e43-b960-48eb-5ad6-80d66065b376',20164,20126,20099,20103,NULL,'2019-05-09 00:27:29.404000','2019-05-09 00:27:29.554000','0',2,0,'SearchCerca\u641c\u7d22ZoekenHakuRechercherSuche\u05d7\u05e4\u05e9Keres\u00e9s\u691c\u7d22BuscaB\u00fasqueda',NULL,'Display search results with a default set of facets.Mostra els resultats de cerca amb un conjunt de facetes predeterminades.\u901a\u8fc7\u9ed8\u8ba4Facet\u96c6\u663e\u793a\u641c\u7d22\u7ed3\u679c\u3002Zoekresultaten met een standaard facettenset weergeven.N\u00e4yt\u00e4 hakutulokset oletusfacettisarjalla.Afficher les r\u00e9sultats de recherche avec un jeu de facettes par d\u00e9faut.Suchergebnisse mit einem standardm\u00e4\u00dfigen Facettenset anzeigen.\u05d4\u05e6\u05d2 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9 \u05e2\u05dd \u05e2\u05e8\u05db\u05ea \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc \u05e9\u05dc \u05d4\u05d9\u05d1\u05d8\u05d9\u05dd.Megjelen\u00edti a keres\u00e9si eredm\u00e9nyeket az alap\u00e9rtelmezett fazettak\u00e9szlettel.\u30d5\u30a1\u30bb\u30c3\u30c8\u306e\u65e2\u5b9a\u306e\u30bb\u30c3\u30c8\u3067\u691c\u7d22\u7d50\u679c\u3092\u8868\u793a\u3057\u307e\u3059\u3002Exibir resultados de pesquisa com um conjunto de facetas padr\u00e3o.Mostrar resultados de la b\u00fasqueda con un conjunto por defecto de facetas.',NULL,NULL,'portlet','column-1=com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet,com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet,\u000acolumn-2=com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet,com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet,com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet,com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet,com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet,com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet,com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet,\u000acolumn-3=com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet,com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet,\u000alast-merge-time=1557361649553\u000alayout-template-id=1_2_columns_i\u000aprivateLayout=true\u000a','1','/search',0,NULL,NULL,'',1,'571c98f8-f8ae-1b0a-e892-fdf5cf8e32a5','0',NULL,NULL) -INSERT INTO LAYOUT VALUES(0,'aaeef41d-52b9-616b-2989-f72bbad6693f',33229,20123,20099,20103,NULL,'2019-05-09 00:27:59.013000','2019-05-09 00:27:59.013000','0',1,0,'Shared',NULL,NULL,NULL,NULL,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet','layoutUpdateable=false\u000a','1','/shared',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(0,'c7555f37-f169-ac22-3d40-756c869d1c44',33232,20123,20099,20103,NULL,'2019-05-09 00:27:59.033000','2019-05-09 00:27:59.033000','1',1,0,'Shared',NULL,NULL,NULL,NULL,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet','layoutUpdateable=false\u000aprivateLayout=true\u000a','1','/shared',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(4,'96d72ccd-a698-10ed-4eee-2defe740d5dd',33333,33330,20099,20103,NULL,'2019-05-09 00:28:07.430000','2019-05-09 00:28:07.464000','1',1,0,'WikitWikiWikiWiki\u05d5\u05d9\u05e7\u05d9WikiWikiWiki (Panneau de Configuration)WikiWiki''sWikikWiki',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_wiki_web_portlet_WikiPortlet,\u000acolumn-2=com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet_INSTANCE_lPePuBoS7CoM,com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet_INSTANCE_gdp1mJdWPHMf,\u000alayout-template-id=2_columns_iii\u000aprivateLayout=true\u000a','0','/layout',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(4,'0cfc4e15-9f99-cd63-f053-bca4af30ca85',33348,33345,20099,20103,NULL,'2019-05-09 00:28:07.631000','2019-05-09 00:28:07.663000','1',1,0,'BlogitBlog\u535a\u5ba2Blog\u05d1\u05dc\u05d5\u05d2Blog\u30d6\u30ed\u30b0BlogueBlocBlogBlogBlog',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_blogs_web_portlet_BlogsPortlet,\u000acolumn-2=com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet_INSTANCE_jGKFa1hO9eiI,com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet,\u000alayout-template-id=2_columns_iii\u000aprivateLayout=true\u000a','0','/layout',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(4,'c288c0b9-e48f-493e-8c16-24ad2092a8cc',33372,33369,20099,20103,NULL,'2019-05-09 00:28:08.104000','2019-05-09 00:28:08.155000','1',1,0,'EtusivuHome\u4e3b\u9875Inicio\u05d1\u05d9\u05eaIn\u00edcio\u30db\u30fc\u30e0AccueilIniciStartpaginaNyit\u00f3lapStartseite',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_message_boards_web_portlet_MBPortlet,\u000acolumn-2=com_liferay_polls_web_portlet_PollsDisplayPortlet_INSTANCE_5vT4mNFRdLPD,com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_KnyTR9RaAJ50,\u000alayout-template-id=2_columns_iii\u000aprivateLayout=true\u000a','0','/home',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(3,'538a883f-1bc6-d304-146a-31c924d3152a',33376,33369,20099,20103,NULL,'2019-05-09 00:28:08.166000','2019-05-09 00:28:08.190000','1',2,0,'WikitWiki\u7ef4\u57faWiki\u05d5\u05d9\u05e7\u05d9WikiWikiWiki (Panneau de Configuration)WikiWiki''sWikikWiki',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_wiki_web_portlet_WikiPortlet,\u000acolumn-2=com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet_INSTANCE_L7DvROiN7zsY,com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet_INSTANCE_fBj9lookIuEA,\u000alayout-template-id=2_columns_iii\u000aprivateLayout=true\u000a','0','/wiki',0,NULL,NULL,'',1,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(4,'70748bb2-949a-d0fa-925c-aedc5fa5d991',33383,33380,20099,20103,NULL,'2019-05-09 00:28:08.217000','2019-05-09 00:28:08.246000','1',1,0,'EtusivuHome\u4e3b\u9875Inicio\u05d1\u05d9\u05eaIn\u00edcio\u30db\u30fc\u30e0AccueilIniciStartpaginaNyit\u00f3lapStartseite',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_social_activities_web_portlet_SocialActivitiesPortlet,\u000acolumn-2=com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet,com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_K58Qa5I5B9Sp,\u000alayout-template-id=2_columns_i\u000aprivateLayout=true\u000a','0','/home',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(2,'8850790d-be66-a3a5-d6ce-193e617b35e1',33387,33380,20099,20103,NULL,'2019-05-09 00:28:08.255000','2019-05-09 00:28:08.278000','1',2,0,'Asiakirjat ja mediaDocuments and Media\u6587\u6863\u4e0e\u5a92\u4f53Documentos y multimedia\u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d5\u05de\u05d3\u05d9\u05d4Documentos e M\u00eddias\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3068\u30e1\u30c7\u30a3\u30a2Documents et m\u00e9diasDocuments i fitxers multim\u00e8diaDocumenten en MediaDokumentumok \u00e9s m\u00e9diaf\u00e1jlokDokumente',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_document_library_web_portlet_DLPortlet_INSTANCE_oNJznkM8d15i,\u000alayout-template-id=1_column\u000aprivateLayout=true\u000a','0','/documents',0,NULL,NULL,'',1,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(4,'b4d38a96-864b-5526-75ba-e6e759ecf1e4',33391,33380,20099,20103,NULL,'2019-05-09 00:28:08.287000','2019-05-09 00:28:08.321000','1',3,0,'NewsNewsNewsNewsNewsNewsNewsNewsNewsNewsNewsNews',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_rss_web_portlet_RSSPortlet_INSTANCE_xIxhnBsVXKdw,\u000acolumn-2=com_liferay_rss_web_portlet_RSSPortlet_INSTANCE_7blYVKysEJkz,\u000alayout-template-id=2_columns_iii\u000aprivateLayout=true\u000a','0','/news',0,NULL,NULL,'',2,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(1,'bfa45509-d3ee-9f72-48f6-687a902776ea',33601,20142,20099,20139,'Test Test','2019-07-30 09:43:16.828000','2019-07-30 09:43:16.908000','1',1,0,'Welcome',NULL,NULL,NULL,NULL,'portlet','column-1=com_liferay_site_my_sites_web_portlet_MySitesPortlet,\u000alayout-template-id=1_column\u000aprivateLayout=true\u000a','0','/home',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUT VALUES(1,'a28e2cc6-558e-827e-4535-dc592e47f09b',33604,20142,20099,20139,'Test Test','2019-07-30 09:43:16.921000','2019-07-30 09:43:16.934000','0',1,0,'Welcome',NULL,NULL,NULL,NULL,'portlet','layout-template-id=1_column\u000a','0','/home',0,NULL,NULL,'',0,NULL,'0',NULL,NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'2cc450e0-bfe0-dbe6-6d66-0b5b58d8188f',20121,20116,20099,20103,NULL,'2019-05-09 00:27:28.469000','2019-05-09 00:27:28.469000',20120,'1','/manage','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'e6933273-6deb-07db-4d1e-9d66aa9fbd51',20130,20126,20099,20103,NULL,'2019-05-09 00:27:28.570000','2019-05-09 00:27:28.570000',20129,'0','/home','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'59cb9169-efb2-6db0-f08a-ed8439a335f5',20151,20147,20099,20103,NULL,'2019-05-09 00:27:29.173000','2019-05-09 00:27:29.173000',20150,'1','/layout','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(1,'10571a58-2bd6-ceee-8eb8-1b3a491108e7',20165,20126,20099,20103,NULL,'2019-05-09 00:27:29.407000','2019-05-09 00:27:29.442000',20164,'0','/search','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'ba64f894-1fd9-474e-8672-912f80a4ce4f',33230,20123,20099,20103,NULL,'2019-05-09 00:27:59.015000','2019-05-09 00:27:59.015000',33229,'0','/shared','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'6b474862-3d92-91d7-c6d6-360c3e3a40b0',33233,20123,20099,20103,NULL,'2019-05-09 00:27:59.034000','2019-05-09 00:27:59.034000',33232,'1','/shared','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'e5bece60-f44d-3492-0d36-d567e0c11c0f',33334,33330,20099,20103,NULL,'2019-05-09 00:28:07.432000','2019-05-09 00:28:07.432000',33333,'1','/layout','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'ba0c8662-8d81-b870-77e8-015e5f8914f3',33349,33345,20099,20103,NULL,'2019-05-09 00:28:07.632000','2019-05-09 00:28:07.632000',33348,'1','/layout','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'917c585c-202a-a2ad-0d69-bfbf56ab6690',33373,33369,20099,20103,NULL,'2019-05-09 00:28:08.107000','2019-05-09 00:28:08.107000',33372,'1','/home','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'b3d97fee-4851-2250-b834-1dfb685c4374',33377,33369,20099,20103,NULL,'2019-05-09 00:28:08.168000','2019-05-09 00:28:08.168000',33376,'1','/wiki','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'d9e88a52-f98d-3d13-556c-c0bb7f021c3b',33384,33380,20099,20103,NULL,'2019-05-09 00:28:08.219000','2019-05-09 00:28:08.219000',33383,'1','/home','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'9dbff5fa-6ebb-697c-4a59-2968286410c8',33388,33380,20099,20103,NULL,'2019-05-09 00:28:08.258000','2019-05-09 00:28:08.258000',33387,'1','/documents','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'32ba3f48-eee1-08d2-eb0b-3925a8a8a51a',33392,33380,20099,20103,NULL,'2019-05-09 00:28:08.289000','2019-05-09 00:28:08.289000',33391,'1','/news','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'e4d85ebe-f0c6-f423-dcbd-ac084387b045',33602,20142,20099,20139,'Test Test','2019-07-30 09:43:16.868000','2019-07-30 09:43:16.868000',33601,'1','/home','en_US',NULL) -INSERT INTO LAYOUTFRIENDLYURL VALUES(0,'b3468134-6eb2-6ec4-ec60-a0481d4030a8',33605,20142,20099,20139,'Test Test','2019-07-30 09:43:16.922000','2019-07-30 09:43:16.922000',33604,'0','/home','en_US',NULL) -INSERT INTO LAYOUTPROTOTYPE VALUES(0,'571c98f8-f8ae-1b0a-e892-fdf5cf8e32a5',20146,20099,20103,NULL,'2019-05-09 00:27:29.144000','2019-05-09 00:27:29.144000','HakuSearch\u641c\u7d22B\u00fasqueda\u05d7\u05e4\u05e9Busca\u691c\u7d22RechercherCercaZoekenKeres\u00e9sSuche','N\u00e4yt\u00e4 hakutulokset oletusfacettisarjalla.Display search results with a default set of facets.\u901a\u8fc7\u9ed8\u8ba4Facet\u96c6\u663e\u793a\u641c\u7d22\u7ed3\u679c\u3002Mostrar resultados de la b\u00fasqueda con un conjunto por defecto de facetas.\u05d4\u05e6\u05d2 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9 \u05e2\u05dd \u05e2\u05e8\u05db\u05ea \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc \u05e9\u05dc \u05d4\u05d9\u05d1\u05d8\u05d9\u05dd.Exibir resultados de pesquisa com um conjunto de facetas padr\u00e3o.\u30d5\u30a1\u30bb\u30c3\u30c8\u306e\u65e2\u5b9a\u306e\u30bb\u30c3\u30c8\u3067\u691c\u7d22\u7d50\u679c\u3092\u8868\u793a\u3057\u307e\u3059\u3002Afficher les r\u00e9sultats de recherche avec un jeu de facettes par d\u00e9faut.Mostra els resultats de cerca amb un conjunt de facetes predeterminades.Zoekresultaten met een standaard facettenset weergeven.Megjelen\u00edti a keres\u00e9si eredm\u00e9nyeket az alap\u00e9rtelmezett fazettak\u00e9szlettel.Suchergebnisse mit einem standardm\u00e4\u00dfigen Facettenset anzeigen.',NULL,'1') -INSERT INTO LAYOUTPROTOTYPE VALUES(0,'6a8b451b-c63e-9cc8-6477-10d15c63bc15',33328,20099,20103,NULL,'2019-05-09 00:28:07.036000','2019-05-09 00:28:07.036000','WikitWikiWikiWiki\u05d5\u05d9\u05e7\u05d9WikiWikiWiki (Panneau de Configuration)WikiWiki''sWikikWiki','Tee yhteisty\u00f6t\u00e4 j\u00e4senten kanssa wikin kautta t\u00e4ll\u00e4 sivulla. Tutustu aiheeseen liittyv\u00e4\u00e4n sis\u00e4lt\u00f6\u00f6n tunnisteiden kautta ja siirry helposti ja nopeasti luokkien v\u00e4lill\u00e4.Collaborate with members through the wiki on this page. Discover related content through tags, and navigate quickly and easily with categories.\u901a\u8fc7\u6b64\u9875\u7684Wiki\u4e0e\u6210\u5458\u534f\u4f5c\u3002\u901a\u8fc7\u6807\u7b7e\u641c\u7d22\u76f8\u5173\u7684\u5185\u5bb9\uff0c\u5feb\u901f\u5bfc\u822a\u3001\u8f7b\u677e\u7684\u7c7b\u522b\u3002Colabora con los miembros a trav\u00e9s de la wiki en esta p\u00e1gina. Descubre el contenido relacionado a trav\u00e9s de etiquetas y navega r\u00e1pida y f\u00e1cilmente por las categor\u00edas.\u05e9\u05ea\u05e4\u05d5 \u05e4\u05e2\u05d5\u05dc\u05d4 \u05e2\u05dd \u05d7\u05d1\u05e8\u05d9\u05dd \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05d4\u05d5\u05d5\u05d9\u05e7\u05d9 \u05d1\u05d3\u05e3 \u05d6\u05d4. \u05d2\u05dc\u05d5 \u05ea\u05d5\u05db\u05df \u05e7\u05e9\u05d5\u05e8 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05ea\u05d2\u05d9\u05d5\u05ea \u05d5\u05e0\u05d5\u05d5\u05d8\u05d5 \u05de\u05d4\u05e8 \u05d5\u05d1\u05e7\u05dc\u05d5\u05ea \u05d1\u05d9\u05df \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea.Colabore com os membros atrav\u00e9s do wiki nesta p\u00e1gina. Descubra conte\u00fado relacionado atrav\u00e9s de etiquetas e navegue r\u00e1pida e facilmente com as categorias.\u3053\u306e\u30da\u30fc\u30b8\u306eWiki\u3092\u901a\u3058\u3066\u30e1\u30f3\u30d0\u30fc\u3068\u30b3\u30e9\u30dc\u30ec\u30fc\u30b7\u30e7\u30f3\u3067\u304d\u307e\u3059\u3002\u30bf\u30b0\u3092\u5229\u7528\u3057\u3066\u95a2\u9023\u3059\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u3064\u3051\u305f\u308a\u3001\u30ab\u30c6\u30b4\u30ea\u3092\u4f7f\u3063\u3066\u7c21\u5358\u306b\u60c5\u5831\u3092\u305f\u3069\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059Collaborez avec les membres par le bias de wiki sur cette page. D\u00e9couvrez le contenu li\u00e9 par le biais des tags et naviguez rapidement et facilement avec les cat\u00e9gories.Col\u00b7labora amb els membres a trav\u00e9s de la wiki en aquesta p\u00e0gina. Descobreix el contingut relacionat a trav\u00e9s d''etiquetes i navega d''una forma r\u00e0pida i f\u00e0cil amb les categories.Werk samen met leden via de wiki op deze pagina. Ontdek verwante inhoud via tags en navigeer snel en eenvoudig met behulp van categorie\u00ebn.M\u0171k\u00f6dj\u00f6n egy\u00fctt a tagokkal az ezen az oldalon tal\u00e1lhat\u00f3 wiki-n kereszt\u00fcl. Fedezzen fel kapcsol\u00f3d\u00f3 tartalmat c\u00edmk\u00e9kkel, \u00e9s navig\u00e1ljon gyorsan \u00e9s k\u00f6nnyen kateg\u00f3ri\u00e1kkal.Arbeiten Sie mit Hilfe des Wikis dieser Seite mit anderen Mitgliedern zusammen. Entdecken Sie in Verbindung stehende Inhalte \u00fcber Tags und navigieren Sie schnell und einfach mit Kategorien.',NULL,'1') -INSERT INTO LAYOUTPROTOTYPE VALUES(0,'c517b822-6a3c-c969-e1a6-d0e816492ec3',33343,20099,20103,NULL,'2019-05-09 00:28:07.608000','2019-05-09 00:28:07.608000','BlogitBlog\u535a\u5ba2Blog\u05d1\u05dc\u05d5\u05d2Blog\u30d6\u30ed\u30b0BlogueBlocBlogBlogBlog','Luo, muokkaa ja n\u00e4yt\u00e4 t\u00e4m\u00e4n sivun blogit. Selaa aiheita k\u00e4yt\u00e4m\u00e4ll\u00e4 tunnisteita ja tutustu muihin t\u00e4m\u00e4n blogin kirjoittajiin.Create, edit, and view blogs from this page. Explore topics using tags, and connect with other members that blog.\u5728\u9875\u9762\u4e2d\u521b\u5efa\uff0c\u7f16\u8f91\u5e76\u4e14\u9884\u89c8\u535a\u5ba2\u3002\u901a\u4fbf\u7b7e\u5bfc\u51fa\u4e3b\u9898\uff0c\u5e76\u4e5f\u535a\u5ba2\u4e2d\u7684\u5176\u4ed6\u6210\u5458\u8054\u7cfb\u3002Cree, edite y vea blogs desde esta p\u00e1gina. Explore los temas usando etiquetas y conecte con otros miembros del blog.\u05e6\u05d5\u05e8, \u05e2\u05e8\u05d5\u05da \u05d5\u05e6\u05e4\u05d4 \u05d1\u05d1\u05dc\u05d5\u05d2\u05d9\u05dd \u05de\u05e2\u05de\u05d5\u05d3 \u05d6\u05d4. \u05d7\u05e7\u05d5\u05e8 \u05e0\u05d5\u05e9\u05d0\u05d9\u05dd \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05ea\u05d2\u05d9\u05d5\u05ea \u05d5\u05d4\u05ea\u05d7\u05d1\u05e8 \u05e2\u05dd \u05d7\u05d1\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05e9\u05db\u05d5\u05ea\u05d1\u05d9\u05dd \u05d1\u05dc\u05d5\u05d2\u05d9\u05dd.Crie, edite e visualize blogs a partir desta p\u00e1gina. Explore t\u00f3picos utilizando tags e conecte-se a outros membros deste blog.\u3053\u306e\u30da\u30fc\u30b8\u304b\u3089\u30d6\u30ed\u30b0\u306e\u4f5c\u6210\u3001\u7de8\u96c6\u3001\u95b2\u89a7\u304c\u3067\u304d\u307e\u3059\u3002\u30bf\u30b0\u3092\u4f7f\u7528\u3057\u3066\u8a18\u4e8b\u3092\u691c\u7d22\u3057\u305f\u308a\u3001\u30d6\u30ed\u30b0\u306e\u4ed6\u306e\u30e1\u30f3\u30d0\u30fc\u3092\u7d50\u3073\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002Cr\u00e9er, \u00e9diter et visualiser les blogs de cette page. Explorer les sujets en utilisant des tags et se connecter \u00e0 d''autres membres de ce blog.Crear, editar i veure els blogs d''aquesta p\u00e0gina. Explorar temes fent \u00fas de les etiquetes i connectar-se amb altres membres d''aquest 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\u00e9tre, szerkessz \u00e9s tekints meg blogokat err\u0151l az oldalr\u00f3l. Fedezd fel a t\u00e9m\u00e1kat a c\u00edmk\u00e9k seg\u00edts\u00e9g\u00e9vel \u00e9s l\u00e9pj kapcsolatba a t\u00f6bbi blog taggal.Erstellen, bearbeiten und ansehen von Blogs dieser Seite. Erkunden Sie Themen mit Hilfe von Tags und verbinden Sie sich mit anderen Mitgliedern, die bloggen.',NULL,'1') -INSERT INTO LAYOUTSET VALUES(1,20117,20116,20099,'2019-05-09 00:27:28.376000','2019-05-09 00:27:28.482000','1',0,'classic_WAR_classictheme','01','',1,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,20119,20116,20099,'2019-05-09 00:27:28.398000','2019-05-09 00:27:28.398000','0',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(1,20124,20123,20099,'2019-05-09 00:27:28.512000','2019-05-09 00:27:59.035000','1',0,'classic_WAR_classictheme','01','',1,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(1,20125,20123,20099,'2019-05-09 00:27:28.513000','2019-05-09 00:27:59.018000','0',0,'classic_WAR_classictheme','01','',1,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,20127,20126,20099,'2019-05-09 00:27:28.525000','2019-05-09 00:27:28.525000','1',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(2,20128,20126,20099,'2019-05-09 00:27:28.532000','2019-05-09 00:27:29.559000','0',0,'classic_WAR_classictheme','01','',2,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,20133,20132,20099,'2019-05-09 00:27:28.593000','2019-05-09 00:27:28.593000','1',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,20134,20132,20099,'2019-05-09 00:27:28.594000','2019-05-09 00:27:28.594000','0',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,20136,20135,20099,'2019-05-09 00:27:28.614000','2019-05-09 00:27:28.614000','1',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,20137,20135,20099,'2019-05-09 00:27:28.615000','2019-05-09 00:27:28.615000','0',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(1,20143,20142,20099,'2019-05-09 00:27:28.860000','2019-07-30 09:43:16.882000','1',0,'classic_WAR_classictheme','01','',1,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(1,20144,20142,20099,'2019-05-09 00:27:28.862000','2019-07-30 09:43:16.927000','0',0,'classic_WAR_classictheme','01','',1,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(1,20148,20147,20099,'2019-05-09 00:27:29.158000','2019-05-09 00:27:29.175000','1',0,'classic_WAR_classictheme','01','',1,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,20149,20147,20099,'2019-05-09 00:27:29.159000','2019-05-09 00:27:29.159000','0',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(1,33331,33330,20099,'2019-05-09 00:28:07.083000','2019-05-09 00:28:07.433000','1',0,'classic_WAR_classictheme','01','',1,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,33332,33330,20099,'2019-05-09 00:28:07.084000','2019-05-09 00:28:07.084000','0',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(1,33346,33345,20099,'2019-05-09 00:28:07.615000','2019-05-09 00:28:07.634000','1',0,'classic_WAR_classictheme','01','',1,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,33347,33345,20099,'2019-05-09 00:28:07.615000','2019-05-09 00:28:07.615000','0',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(11,33370,33369,20099,'2019-05-09 00:28:08.058000','2019-05-09 00:28:08.190000','1',0,'classic_WAR_classictheme','01','',2,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,33371,33369,20099,'2019-05-09 00:28:08.062000','2019-05-09 00:28:08.062000','0',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(16,33381,33380,20099,'2019-05-09 00:28:08.204000','2019-05-09 00:28:08.321000','1',0,'classic_WAR_classictheme','01','',3,'',NULL,'0') -INSERT INTO LAYOUTSET VALUES(0,33382,33380,20099,'2019-05-09 00:28:08.205000','2019-05-09 00:28:08.205000','0',0,'classic_WAR_classictheme','01','',0,'',NULL,'0') -INSERT INTO LAYOUTSETPROTOTYPE VALUES(12,'607df147-dd5c-9626-7657-a45a907692fd',33368,20099,20103,NULL,'2019-05-09 00:28:08.049000','2019-05-09 00:28:08.190000','Yhteis\u00f6sivustoCommunity Site\u793e\u533a\u7f51\u7ad9Sitio de comunidad\u05d0\u05ea\u05e8 \u05e7\u05d4\u05d9\u05dc\u05d4Site da Comunidade\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u30fc\u30b5\u30a4\u30c8Site de communaut\u00e9Lloc comunitariCommunity websiteK\u00f6z\u00f6ss\u00e9gi webhelyCommunity-Site','Sivusto keskusteluryhmill\u00e4 ja wikill\u00e4Site with Forums and Wiki\u6709\u8bba\u575b\u548cWiki\u7684\u7ad9\u70b9Sitio con foro y wiki\u05d0\u05ea\u05e8 \u05e2\u05dd \u05e4\u05d5\u05e8\u05d5\u05de\u05d9\u05dd \u05d5-WikiSite com F\u00f3runs e WikiWiki\u3068\u30d5\u30a9\u30fc\u30e9\u30e0\u306e\u30b5\u30a4\u30c8Site avec forums et wikiLlocs amb f\u00f2rums i WikiSite met forum en wikiWebhely F\u00f3rumokkal \u00e9s WikivelSite mit Forum und Wiki','layoutsUpdateable=true\u000a','1') -INSERT INTO LAYOUTSETPROTOTYPE VALUES(17,'d7a9ee57-cb38-17a4-e1ed-c38f0dc8270b',33379,20099,20103,NULL,'2019-05-09 00:28:08.200000','2019-05-09 00:28:08.321000','Intranet sivustoIntranet Site\u5185\u7f51Sitio de intranet\u05d0\u05ea\u05e8 \u05d0\u05d9\u05e0\u05d8\u05e8\u05d0\u05e0\u05d8Site da Intranet\u30a4\u30f3\u30c8\u30e9\u30cd\u30c3\u30c8\u30b5\u30a4\u30c8Site intranetLloc web tipus IntranetIntranet WebsiteIntranetes webhelyIntranet-Site','Asiakirjoja ja uutisia sis\u00e4lt\u00e4v\u00e4 sivustoSite with Documents and News\u6709\u5185\u5bb9\u548c\u65b0\u95fb\u7684\u7f51\u7ad9Sitio con documentos y noticias\u05d0\u05ea\u05e8 \u05e2\u05dd \u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d5\u05d7\u05d3\u05e9\u05d5\u05eaSite com Documentos e Not\u00edcias\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3068\u30cb\u30e5\u30fc\u30b9\u306e\u30b5\u30a4\u30c8Site avec documents et actualit\u00e9sLloc amb documents i not\u00edciesSite met documenten en nieuwsWebhely dokumentumokkal \u00e9s h\u00edrekkelSite mit Dokumenten und Nachrichten','layoutsUpdateable=true\u000a','1') -INSERT INTO LISTTYPE VALUES(0,10000,'billing','com.liferay.portal.kernel.model.Account.address') -INSERT INTO LISTTYPE VALUES(0,10001,'other','com.liferay.portal.kernel.model.Account.address') -INSERT INTO LISTTYPE VALUES(0,10002,'p-o-box','com.liferay.portal.kernel.model.Account.address') -INSERT INTO LISTTYPE VALUES(0,10003,'shipping','com.liferay.portal.kernel.model.Account.address') -INSERT INTO LISTTYPE VALUES(0,10004,'email-address','com.liferay.portal.kernel.model.Account.emailAddress') -INSERT INTO LISTTYPE VALUES(0,10005,'email-address-2','com.liferay.portal.kernel.model.Account.emailAddress') -INSERT INTO LISTTYPE VALUES(0,10006,'email-address-3','com.liferay.portal.kernel.model.Account.emailAddress') -INSERT INTO LISTTYPE VALUES(0,10007,'fax','com.liferay.portal.kernel.model.Account.phone') -INSERT INTO LISTTYPE VALUES(0,10008,'local','com.liferay.portal.kernel.model.Account.phone') -INSERT INTO LISTTYPE VALUES(0,10009,'other','com.liferay.portal.kernel.model.Account.phone') -INSERT INTO LISTTYPE VALUES(0,10010,'toll-free','com.liferay.portal.kernel.model.Account.phone') -INSERT INTO LISTTYPE VALUES(0,10011,'tty','com.liferay.portal.kernel.model.Account.phone') -INSERT INTO LISTTYPE VALUES(0,10012,'intranet','com.liferay.portal.kernel.model.Account.website') -INSERT INTO LISTTYPE VALUES(0,10013,'public','com.liferay.portal.kernel.model.Account.website') -INSERT INTO LISTTYPE VALUES(0,11000,'business','com.liferay.portal.kernel.model.Contact.address') -INSERT INTO LISTTYPE VALUES(0,11001,'other','com.liferay.portal.kernel.model.Contact.address') -INSERT INTO LISTTYPE VALUES(0,11002,'personal','com.liferay.portal.kernel.model.Contact.address') -INSERT INTO LISTTYPE VALUES(0,11003,'email-address','com.liferay.portal.kernel.model.Contact.emailAddress') -INSERT INTO LISTTYPE VALUES(0,11004,'email-address-2','com.liferay.portal.kernel.model.Contact.emailAddress') -INSERT INTO LISTTYPE VALUES(0,11005,'email-address-3','com.liferay.portal.kernel.model.Contact.emailAddress') -INSERT INTO LISTTYPE VALUES(0,11006,'business','com.liferay.portal.kernel.model.Contact.phone') -INSERT INTO LISTTYPE VALUES(0,11007,'business-fax','com.liferay.portal.kernel.model.Contact.phone') -INSERT INTO LISTTYPE VALUES(0,11008,'mobile-phone','com.liferay.portal.kernel.model.Contact.phone') -INSERT INTO LISTTYPE VALUES(0,11009,'other','com.liferay.portal.kernel.model.Contact.phone') -INSERT INTO LISTTYPE VALUES(0,11010,'pager','com.liferay.portal.kernel.model.Contact.phone') -INSERT INTO LISTTYPE VALUES(0,11011,'personal','com.liferay.portal.kernel.model.Contact.phone') -INSERT INTO LISTTYPE VALUES(0,11012,'personal-fax','com.liferay.portal.kernel.model.Contact.phone') -INSERT INTO LISTTYPE VALUES(0,11013,'tty','com.liferay.portal.kernel.model.Contact.phone') -INSERT INTO LISTTYPE VALUES(0,11014,'dr','com.liferay.portal.kernel.model.Contact.prefix') -INSERT INTO LISTTYPE VALUES(0,11015,'mr','com.liferay.portal.kernel.model.Contact.prefix') -INSERT INTO LISTTYPE VALUES(0,11016,'mrs','com.liferay.portal.kernel.model.Contact.prefix') -INSERT INTO LISTTYPE VALUES(0,11017,'ms','com.liferay.portal.kernel.model.Contact.prefix') -INSERT INTO LISTTYPE VALUES(0,11020,'ii','com.liferay.portal.kernel.model.Contact.suffix') -INSERT INTO LISTTYPE VALUES(0,11021,'iii','com.liferay.portal.kernel.model.Contact.suffix') -INSERT INTO LISTTYPE VALUES(0,11022,'iv','com.liferay.portal.kernel.model.Contact.suffix') -INSERT INTO LISTTYPE VALUES(0,11023,'jr','com.liferay.portal.kernel.model.Contact.suffix') -INSERT INTO LISTTYPE VALUES(0,11024,'phd','com.liferay.portal.kernel.model.Contact.suffix') -INSERT INTO LISTTYPE VALUES(0,11025,'sr','com.liferay.portal.kernel.model.Contact.suffix') -INSERT INTO LISTTYPE VALUES(0,11026,'blog','com.liferay.portal.kernel.model.Contact.website') -INSERT INTO LISTTYPE VALUES(0,11027,'business','com.liferay.portal.kernel.model.Contact.website') -INSERT INTO LISTTYPE VALUES(0,11028,'other','com.liferay.portal.kernel.model.Contact.website') -INSERT INTO LISTTYPE VALUES(0,11029,'personal','com.liferay.portal.kernel.model.Contact.website') -INSERT INTO LISTTYPE VALUES(0,12000,'billing','com.liferay.portal.kernel.model.Organization.address') -INSERT INTO LISTTYPE VALUES(0,12001,'other','com.liferay.portal.kernel.model.Organization.address') -INSERT INTO LISTTYPE VALUES(0,12002,'p-o-box','com.liferay.portal.kernel.model.Organization.address') -INSERT INTO LISTTYPE VALUES(0,12003,'shipping','com.liferay.portal.kernel.model.Organization.address') -INSERT INTO LISTTYPE VALUES(0,12004,'email-address','com.liferay.portal.kernel.model.Organization.emailAddress') -INSERT INTO LISTTYPE VALUES(0,12005,'email-address-2','com.liferay.portal.kernel.model.Organization.emailAddress') -INSERT INTO LISTTYPE VALUES(0,12006,'email-address-3','com.liferay.portal.kernel.model.Organization.emailAddress') -INSERT INTO LISTTYPE VALUES(0,12007,'fax','com.liferay.portal.kernel.model.Organization.phone') -INSERT INTO LISTTYPE VALUES(0,12008,'local','com.liferay.portal.kernel.model.Organization.phone') -INSERT INTO LISTTYPE VALUES(0,12009,'other','com.liferay.portal.kernel.model.Organization.phone') -INSERT INTO LISTTYPE VALUES(0,12010,'toll-free','com.liferay.portal.kernel.model.Organization.phone') -INSERT INTO LISTTYPE VALUES(0,12011,'tty','com.liferay.portal.kernel.model.Organization.phone') -INSERT INTO LISTTYPE VALUES(0,12012,'administrative','com.liferay.portal.kernel.model.Organization.service') -INSERT INTO LISTTYPE VALUES(0,12013,'contracts','com.liferay.portal.kernel.model.Organization.service') -INSERT INTO LISTTYPE VALUES(0,12014,'donation','com.liferay.portal.kernel.model.Organization.service') -INSERT INTO LISTTYPE VALUES(0,12015,'retail','com.liferay.portal.kernel.model.Organization.service') -INSERT INTO LISTTYPE VALUES(0,12016,'training','com.liferay.portal.kernel.model.Organization.service') -INSERT INTO LISTTYPE VALUES(0,12017,'full-member','com.liferay.portal.kernel.model.Organization.status') -INSERT INTO LISTTYPE VALUES(0,12018,'provisional-member','com.liferay.portal.kernel.model.Organization.status') -INSERT INTO LISTTYPE VALUES(0,12019,'intranet','com.liferay.portal.kernel.model.Organization.website') -INSERT INTO LISTTYPE VALUES(0,12020,'public','com.liferay.portal.kernel.model.Organization.website') -INSERT INTO PASSWORDPOLICY VALUES(0,'4df76cb7-fb2f-9b68-48a0-eb2509acc182',20138,20099,20103,NULL,'2019-05-09 00:27:28.630000','2019-05-09 00:27:28.630000','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) -INSERT INTO PORTALPREFERENCES VALUES(0,20100,20099,1,'') -INSERT INTO PORTALPREFERENCES VALUES(0,20140,0,1,'') -INSERT INTO PORTALPREFERENCES VALUES(0,33412,20103,4,'') -INSERT INTO PORTALPREFERENCES VALUES(2,33607,20139,4,'com.liferay.portal.kernel.util.SessionClicks#com.liferay.product.navigation.product.menu.web_productMenuStateopencom.liferay.portal.kernel.util.SessionClicks#com.liferay.site.util_recentGroups20126') -INSERT INTO PORTLET VALUES(0,33235,20099,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33236,20099,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33237,20099,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33238,20099,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33239,20099,'com_liferay_user_associated_data_web_portlet_UserAssociatedData',NULL,'1') -INSERT INTO PORTLET VALUES(0,33240,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33241,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33242,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33244,20099,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33245,20099,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33246,20099,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33247,20099,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33248,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33249,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33250,20099,'com_liferay_comment_web_portlet_CommentPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33251,20099,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33252,20099,'com_liferay_exportimport_web_portlet_ChangesetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33253,20099,'com_liferay_iframe_web_portlet_IFramePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33254,20099,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33255,20099,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33257,20099,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33259,20099,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33260,20099,'com_liferay_monitoring_web_portlet_MonitoringPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33261,20099,'com_liferay_rss_web_portlet_RSSPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33262,20099,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33263,20099,'com_liferay_polls_web_portlet_PollsDisplayPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33264,20099,'com_liferay_polls_web_portlet_PollsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33265,20099,'com_liferay_login_web_portlet_FastLoginPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33266,20099,'com_liferay_login_web_portlet_LoginPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33267,20099,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33268,20099,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33269,20099,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33270,20099,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33271,20099,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33272,20099,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33273,20099,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33275,20099,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33276,20099,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33277,20099,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33278,20099,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33279,20099,'com_liferay_mentions_web_portlet_MentionsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33280,20099,'com_liferay_portal_search_web_portlet_SearchPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33281,20099,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33282,20099,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33283,20099,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33284,20099,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33285,20099,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33286,20099,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33287,20099,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33288,20099,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33289,20099,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33290,20099,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33291,20099,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33292,20099,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33293,20099,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33294,20099,'com_liferay_fragment_web_portlet_FragmentPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33295,20099,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33296,20099,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33297,20099,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33298,20099,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33299,20099,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33300,20099,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33301,20099,'com_liferay_announcements_web_portlet_AlertsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33302,20099,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33303,20099,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33304,20099,'com_liferay_flags_web_portlet_FlagsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33305,20099,'com_liferay_flags_web_portlet_PageFlagsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33306,20099,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33307,20099,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33308,20099,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33309,20099,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33310,20099,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33311,20099,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33312,20099,'com_liferay_document_library_web_portlet_DLAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33313,20099,'com_liferay_document_library_web_portlet_DLPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33314,20099,'com_liferay_document_library_web_portlet_IGDisplayPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33316,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33317,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33318,20099,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33319,20099,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33320,20099,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33321,20099,'com_liferay_trash_web_portlet_TrashPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33322,20099,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33323,20099,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33324,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33325,20099,'com_liferay_wiki_web_portlet_WikiAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33326,20099,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33327,20099,'com_liferay_wiki_web_portlet_WikiPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33337,20099,'com_liferay_message_boards_web_portlet_MBAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33338,20099,'com_liferay_message_boards_web_portlet_MBPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33339,20099,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33340,20099,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33341,20099,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33342,20099,'com_liferay_blogs_web_portlet_BlogsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33352,20099,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33353,20099,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33354,20099,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33355,20099,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33356,20099,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33357,20099,'com_liferay_knowledge_base_web_portlet_AdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33358,20099,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33359,20099,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33360,20099,'com_liferay_knowledge_base_web_portlet_SearchPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33361,20099,'com_liferay_knowledge_base_web_portlet_SectionPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33362,20099,'com_liferay_notifications_web_portlet_NotificationsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33364,20099,'com_liferay_journal_content_web_portlet_JournalContentPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33365,20099,'com_liferay_journal_web_portlet_JournalPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33366,20099,'com_liferay_adaptive_media_web_portlet_AMPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33367,20099,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33396,20099,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33397,20099,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33398,20099,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33399,20099,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33400,20099,'com_liferay_calendar_web_portlet_CalendarPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33401,20099,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33402,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33403,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33404,20099,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33405,20099,'com_liferay_contacts_web_portlet_MembersPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33406,20099,'com_liferay_contacts_web_portlet_MyContactsPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33407,20099,'com_liferay_contacts_web_portlet_ProfilePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33408,20099,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33409,20099,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33410,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',NULL,'1') -INSERT INTO PORTLET VALUES(0,33411,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',NULL,'1') -INSERT INTO PORTLETPREFERENCES VALUES(1,20153,20099,0,3,20150,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20154,20099,0,3,20150,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20155,20099,0,3,20150,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20156,20099,0,3,20150,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20157,20099,0,3,20150,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20158,20099,0,3,20150,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20159,20099,0,3,20150,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20160,20099,0,3,20150,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20161,20099,0,3,20150,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20162,20099,0,3,20150,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20163,20099,0,3,20150,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20167,20099,0,3,20164,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20168,20099,0,3,20164,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20169,20099,0,3,20164,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20170,20099,0,3,20164,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20171,20099,0,3,20164,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20172,20099,0,3,20164,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20173,20099,0,3,20164,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20174,20099,0,3,20164,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20175,20099,0,3,20164,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20176,20099,0,3,20164,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,20177,20099,0,3,20164,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet','portletSetupPortletDecoratorIdbarebone') -INSERT INTO PORTLETPREFERENCES VALUES(1,30203,20099,20099,1,0,'com.liferay.adaptive.media.image.internal.configuration.AMImageCompanyConfiguration','imageVariantsPreview+1000x0:This+image+resolution+was+automatically+added.:Preview-1000x0:max-height=0;max-width=1000:enabled=trueThumbnail+300x300:This+image+resolution+was+automatically+added.:Thumbnail-300x300:max-height=300;max-width=300:enabled=true') -INSERT INTO PORTLETPREFERENCES VALUES(1,33243,20099,20099,1,0,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue') -INSERT INTO PORTLETPREFERENCES VALUES(1,33256,20099,20099,1,0,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue') -INSERT INTO PORTLETPREFERENCES VALUES(1,33258,20099,20099,1,0,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue') -INSERT INTO PORTLETPREFERENCES VALUES(1,33274,20099,20099,1,0,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue') -INSERT INTO PORTLETPREFERENCES VALUES(1,33315,20099,20099,1,0,'com_liferay_my_account_web_portlet_MyAccountPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue') -INSERT INTO PORTLETPREFERENCES VALUES(1,33336,20099,0,3,33333,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet_INSTANCE_gdp1mJdWPHMf','showAssetCounttrueclassNameId28202') -INSERT INTO PORTLETPREFERENCES VALUES(1,33351,20099,0,3,33348,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet_INSTANCE_jGKFa1hO9eiI','displayStylecloudshowAssetCounttruemaxAssetTags10showZeroAssetCountfalseclassNameId30901') -INSERT INTO PORTLETPREFERENCES VALUES(1,33363,20099,20099,1,0,'com_liferay_notifications_web_portlet_NotificationsPortlet','myAccountAccessInControlPanelPermissionsInitializedtrue') -INSERT INTO PORTLETPREFERENCES VALUES(1,33375,20099,0,3,33372,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_KnyTR9RaAJ50','portletSetupUseCustomTitletrueportletSetupTitle_en_USRecent ContentanyAssetTypefalse') -INSERT INTO PORTLETPREFERENCES VALUES(1,33386,20099,0,3,33383,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_K58Qa5I5B9Sp','portletSetupUseCustomTitletrueportletSetupTitle_en_USRecent Content') -INSERT INTO PORTLETPREFERENCES VALUES(1,33390,20099,0,3,33387,'com_liferay_document_library_web_portlet_DLPortlet_INSTANCE_oNJznkM8d15i','portletSetupPortletDecoratorIdborderless') -INSERT INTO PORTLETPREFERENCES VALUES(1,33394,20099,0,3,33391,'com_liferay_rss_web_portlet_RSSPortlet_INSTANCE_xIxhnBsVXKdw','portletSetupUseCustomTitletrueurlshttp://www.nytimes.com/services/xml/rss/userland/Technology.xmlportletSetupTitle_en_USTechnology newsexpandedEntriesPerFeed3') -INSERT INTO PORTLETPREFERENCES VALUES(1,33395,20099,0,3,33391,'com_liferay_rss_web_portlet_RSSPortlet_INSTANCE_7blYVKysEJkz','portletSetupUseCustomTitletrueurlshttps://www.liferay.com/about-us/newsroom/press-releases/-/asset_publisher/2oZC/rssportletSetupTitle_en_USLiferay newsexpandedEntriesPerFeed0titlesLiferay Press Releases') -INSERT INTO PORTLETPREFERENCES VALUES(0,33501,20099,20126,3,0,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch','portletSetupPortletDecoratorIdbarebonedestination/search') -INSERT INTO PORTLETPREFERENCES VALUES(0,33502,20099,0,3,20129,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch','portletSetupPortletDecoratorIdbarebonedestination/search') -INSERT INTO PORTLETPREFERENCES VALUES(0,33503,20099,20126,3,0,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','') -INSERT INTO PORTLETPREFERENCES VALUES(0,33504,20099,0,3,20129,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','') -INSERT INTO PORTLETPREFERENCES VALUES(0,33505,20099,20126,3,0,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','portletSetupPortletDecoratorIdbarebonedestination/search') -INSERT INTO PORTLETPREFERENCES VALUES(0,33506,20099,0,3,20129,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','portletSetupPortletDecoratorIdbarebonedestination/search') -INSERT INTO PORTLETPREFERENCES VALUES(0,33609,20099,0,3,20120,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','\u000a\u000a\u000a\u0009\u000a\u0009\u0009oAuth2Features\u000a\u0009\u0009token_introspection\u000a\u0009\u000a\u0009\u000a\u0009\u0009oAuth2Grants\u000a\u0009\u0009\u000a\u0009\u000a') -INSERT INTO PORTLETPREFERENCES VALUES(0,33610,20099,20099,1,0,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','\u000a\u000a\u000a\u0009\u000a\u0009\u0009oAuth2Features\u000a\u0009\u0009token_introspection\u000a\u0009\u000a\u0009\u000a\u0009\u0009oAuth2Grants\u000a\u0009\u0009\u000a\u0009\u000a') -INSERT INTO PORTLETPREFERENCES VALUES(0,33611,20099,20116,3,0,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','') -INSERT INTO PORTLETPREFERENCES VALUES(0,33612,20099,0,3,20120,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','') -INSERT INTO PORTLETPREFERENCES VALUES(0,33701,20099,20126,3,0,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','') -INSERT INTO PORTLETPREFERENCES VALUES(0,33702,20099,0,3,20129,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','') -INSERT INTO PORTLETPREFERENCES VALUES(0,33801,20099,0,3,20120,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet','') -INSERT INTO PORTLETPREFERENCES VALUES(0,33802,20099,20116,2,0,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet','') -INSERT INTO PORTLETPREFERENCES VALUES(0,33901,20099,0,3,20120,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','') -INSERT INTO REGION VALUES(0,1001,1,'AB','Alberta','1') -INSERT INTO REGION VALUES(0,1002,1,'BC','British Columbia','1') -INSERT INTO REGION VALUES(0,1003,1,'MB','Manitoba','1') -INSERT INTO REGION VALUES(0,1004,1,'NB','New Brunswick','1') -INSERT INTO REGION VALUES(0,1005,1,'NL','Newfoundland and Labrador','1') -INSERT INTO REGION VALUES(0,1006,1,'NT','Northwest Territories','1') -INSERT INTO REGION VALUES(0,1007,1,'NS','Nova Scotia','1') -INSERT INTO REGION VALUES(0,1008,1,'NU','Nunavut','1') -INSERT INTO REGION VALUES(0,1009,1,'ON','Ontario','1') -INSERT INTO REGION VALUES(0,1010,1,'PE','Prince Edward Island','1') -INSERT INTO REGION VALUES(0,1011,1,'QC','Quebec','1') -INSERT INTO REGION VALUES(0,1012,1,'SK','Saskatchewan','1') -INSERT INTO REGION VALUES(0,1013,1,'YT','Yukon','1') -INSERT INTO REGION VALUES(0,2001,2,'CN-34','Anhui','1') -INSERT INTO REGION VALUES(0,2002,2,'CN-92','Aomen','1') -INSERT INTO REGION VALUES(0,2003,2,'CN-11','Beijing','1') -INSERT INTO REGION VALUES(0,2004,2,'CN-50','Chongqing','1') -INSERT INTO REGION VALUES(0,2005,2,'CN-35','Fujian','1') -INSERT INTO REGION VALUES(0,2006,2,'CN-62','Gansu','1') -INSERT INTO REGION VALUES(0,2007,2,'CN-44','Guangdong','1') -INSERT INTO REGION VALUES(0,2008,2,'CN-45','Guangxi','1') -INSERT INTO REGION VALUES(0,2009,2,'CN-52','Guizhou','1') -INSERT INTO REGION VALUES(0,2010,2,'CN-46','Hainan','1') -INSERT INTO REGION VALUES(0,2011,2,'CN-13','Hebei','1') -INSERT INTO REGION VALUES(0,2012,2,'CN-23','Heilongjiang','1') -INSERT INTO REGION VALUES(0,2013,2,'CN-41','Henan','1') -INSERT INTO REGION VALUES(0,2014,2,'CN-42','Hubei','1') -INSERT INTO REGION VALUES(0,2015,2,'CN-43','Hunan','1') -INSERT INTO REGION VALUES(0,2016,2,'CN-32','Jiangsu','1') -INSERT INTO REGION VALUES(0,2017,2,'CN-36','Jiangxi','1') -INSERT INTO REGION VALUES(0,2018,2,'CN-22','Jilin','1') -INSERT INTO REGION VALUES(0,2019,2,'CN-21','Liaoning','1') -INSERT INTO REGION VALUES(0,2020,2,'CN-15','Nei Mongol','1') -INSERT INTO REGION VALUES(0,2021,2,'CN-64','Ningxia','1') -INSERT INTO REGION VALUES(0,2022,2,'CN-63','Qinghai','1') -INSERT INTO REGION VALUES(0,2023,2,'CN-61','Shaanxi','1') -INSERT INTO REGION VALUES(0,2024,2,'CN-37','Shandong','1') -INSERT INTO REGION VALUES(0,2025,2,'CN-31','Shanghai','1') -INSERT INTO REGION VALUES(0,2026,2,'CN-14','Shanxi','1') -INSERT INTO REGION VALUES(0,2027,2,'CN-51','Sichuan','1') -INSERT INTO REGION VALUES(0,2028,2,'CN-71','Taiwan','1') -INSERT INTO REGION VALUES(0,2029,2,'CN-12','Tianjin','1') -INSERT INTO REGION VALUES(0,2030,2,'CN-91','Xianggang','1') -INSERT INTO REGION VALUES(0,2031,2,'CN-65','Xinjiang','1') -INSERT INTO REGION VALUES(0,2032,2,'CN-54','Xizang','1') -INSERT INTO REGION VALUES(0,2033,2,'CN-53','Yunnan','1') -INSERT INTO REGION VALUES(0,2034,2,'CN-33','Zhejiang','1') -INSERT INTO REGION VALUES(0,3001,3,'A','Alsace','1') -INSERT INTO REGION VALUES(0,3002,3,'B','Aquitaine','1') -INSERT INTO REGION VALUES(0,3003,3,'C','Auvergne','1') -INSERT INTO REGION VALUES(0,3004,3,'P','Basse-Normandie','1') -INSERT INTO REGION VALUES(0,3005,3,'D','Bourgogne','1') -INSERT INTO REGION VALUES(0,3006,3,'E','Bretagne','1') -INSERT INTO REGION VALUES(0,3007,3,'F','Centre','1') -INSERT INTO REGION VALUES(0,3008,3,'G','Champagne-Ardenne','1') -INSERT INTO REGION VALUES(0,3009,3,'H','Corse','1') -INSERT INTO REGION VALUES(0,3010,3,'GF','Guyane','1') -INSERT INTO REGION VALUES(0,3011,3,'I','Franche Comt\u00e9','1') -INSERT INTO REGION VALUES(0,3012,3,'GP','Guadeloupe','1') -INSERT INTO REGION VALUES(0,3013,3,'Q','Haute-Normandie','1') -INSERT INTO REGION VALUES(0,3014,3,'J','\u00cele-de-France','1') -INSERT INTO REGION VALUES(0,3015,3,'K','Languedoc-Roussillon','1') -INSERT INTO REGION VALUES(0,3016,3,'L','Limousin','1') -INSERT INTO REGION VALUES(0,3017,3,'M','Lorraine','1') -INSERT INTO REGION VALUES(0,3018,3,'MQ','Martinique','1') -INSERT INTO REGION VALUES(0,3019,3,'N','Midi-Pyr\u00e9n\u00e9es','1') -INSERT INTO REGION VALUES(0,3020,3,'O','Nord Pas de Calais','1') -INSERT INTO REGION VALUES(0,3021,3,'R','Pays de la Loire','1') -INSERT INTO REGION VALUES(0,3022,3,'S','Picardie','1') -INSERT INTO REGION VALUES(0,3023,3,'T','Poitou-Charentes','1') -INSERT INTO REGION VALUES(0,3024,3,'U','Provence-Alpes-C\u00f4te-d''Azur','1') -INSERT INTO REGION VALUES(0,3025,3,'RE','R\u00e9union','1') -INSERT INTO REGION VALUES(0,3026,3,'V','Rh\u00f4ne-Alpes','1') -INSERT INTO REGION VALUES(0,4001,4,'BW','Baden-W\u00fcrttemberg','1') -INSERT INTO REGION VALUES(0,4002,4,'BY','Bayern','1') -INSERT INTO REGION VALUES(0,4003,4,'BE','Berlin','1') -INSERT INTO REGION VALUES(0,4004,4,'BB','Brandenburg','1') -INSERT INTO REGION VALUES(0,4005,4,'HB','Bremen','1') -INSERT INTO REGION VALUES(0,4006,4,'HH','Hamburg','1') -INSERT INTO REGION VALUES(0,4007,4,'HE','Hessen','1') -INSERT INTO REGION VALUES(0,4008,4,'MV','Mecklenburg-Vorpommern','1') -INSERT INTO REGION VALUES(0,4009,4,'NI','Niedersachsen','1') -INSERT INTO REGION VALUES(0,4010,4,'NW','Nordrhein-Westfalen','1') -INSERT INTO REGION VALUES(0,4011,4,'RP','Rheinland-Pfalz','1') -INSERT INTO REGION VALUES(0,4012,4,'SL','Saarland','1') -INSERT INTO REGION VALUES(0,4013,4,'SN','Sachsen','1') -INSERT INTO REGION VALUES(0,4014,4,'ST','Sachsen-Anhalt','1') -INSERT INTO REGION VALUES(0,4015,4,'SH','Schleswig-Holstein','1') -INSERT INTO REGION VALUES(0,4016,4,'TH','Th\u00fcringen','1') -INSERT INTO REGION VALUES(0,8001,8,'AG','Agrigento','1') -INSERT INTO REGION VALUES(0,8002,8,'AL','Alessandria','1') -INSERT INTO REGION VALUES(0,8003,8,'AN','Ancona','1') -INSERT INTO REGION VALUES(0,8004,8,'AO','Aosta','1') -INSERT INTO REGION VALUES(0,8005,8,'AR','Arezzo','1') -INSERT INTO REGION VALUES(0,8006,8,'AP','Ascoli Piceno','1') -INSERT INTO REGION VALUES(0,8007,8,'AT','Asti','1') -INSERT INTO REGION VALUES(0,8008,8,'AV','Avellino','1') -INSERT INTO REGION VALUES(0,8009,8,'BA','Bari','1') -INSERT INTO REGION VALUES(0,8010,8,'BT','Barletta-Andria-Trani','1') -INSERT INTO REGION VALUES(0,8011,8,'BL','Belluno','1') -INSERT INTO REGION VALUES(0,8012,8,'BN','Benevento','1') -INSERT INTO REGION VALUES(0,8013,8,'BG','Bergamo','1') -INSERT INTO REGION VALUES(0,8014,8,'BI','Biella','1') -INSERT INTO REGION VALUES(0,8015,8,'BO','Bologna','1') -INSERT INTO REGION VALUES(0,8016,8,'BZ','Bolzano','1') -INSERT INTO REGION VALUES(0,8017,8,'BS','Brescia','1') -INSERT INTO REGION VALUES(0,8018,8,'BR','Brindisi','1') -INSERT INTO REGION VALUES(0,8019,8,'CA','Cagliari','1') -INSERT INTO REGION VALUES(0,8020,8,'CL','Caltanissetta','1') -INSERT INTO REGION VALUES(0,8021,8,'CB','Campobasso','1') -INSERT INTO REGION VALUES(0,8022,8,'CI','Carbonia-Iglesias','1') -INSERT INTO REGION VALUES(0,8023,8,'CE','Caserta','1') -INSERT INTO REGION VALUES(0,8024,8,'CT','Catania','1') -INSERT INTO REGION VALUES(0,8025,8,'CZ','Catanzaro','1') -INSERT INTO REGION VALUES(0,8026,8,'CH','Chieti','1') -INSERT INTO REGION VALUES(0,8027,8,'CO','Como','1') -INSERT INTO REGION VALUES(0,8028,8,'CS','Cosenza','1') -INSERT INTO REGION VALUES(0,8029,8,'CR','Cremona','1') -INSERT INTO REGION VALUES(0,8030,8,'KR','Crotone','1') -INSERT INTO REGION VALUES(0,8031,8,'CN','Cuneo','1') -INSERT INTO REGION VALUES(0,8032,8,'EN','Enna','1') -INSERT INTO REGION VALUES(0,8033,8,'FM','Fermo','1') -INSERT INTO REGION VALUES(0,8034,8,'FE','Ferrara','1') -INSERT INTO REGION VALUES(0,8035,8,'FI','Firenze','1') -INSERT INTO REGION VALUES(0,8036,8,'FG','Foggia','1') -INSERT INTO REGION VALUES(0,8037,8,'FC','Forli-Cesena','1') -INSERT INTO REGION VALUES(0,8038,8,'FR','Frosinone','1') -INSERT INTO REGION VALUES(0,8039,8,'GE','Genova','1') -INSERT INTO REGION VALUES(0,8040,8,'GO','Gorizia','1') -INSERT INTO REGION VALUES(0,8041,8,'GR','Grosseto','1') -INSERT INTO REGION VALUES(0,8042,8,'IM','Imperia','1') -INSERT INTO REGION VALUES(0,8043,8,'IS','Isernia','1') -INSERT INTO REGION VALUES(0,8044,8,'AQ','L''Aquila','1') -INSERT INTO REGION VALUES(0,8045,8,'SP','La Spezia','1') -INSERT INTO REGION VALUES(0,8046,8,'LT','Latina','1') -INSERT INTO REGION VALUES(0,8047,8,'LE','Lecce','1') -INSERT INTO REGION VALUES(0,8048,8,'LC','Lecco','1') -INSERT INTO REGION VALUES(0,8049,8,'LI','Livorno','1') -INSERT INTO REGION VALUES(0,8050,8,'LO','Lodi','1') -INSERT INTO REGION VALUES(0,8051,8,'LU','Lucca','1') -INSERT INTO REGION VALUES(0,8052,8,'MC','Macerata','1') -INSERT INTO REGION VALUES(0,8053,8,'MN','Mantova','1') -INSERT INTO REGION VALUES(0,8054,8,'MS','Massa-Carrara','1') -INSERT INTO REGION VALUES(0,8055,8,'MT','Matera','1') -INSERT INTO REGION VALUES(0,8056,8,'MA','Medio Campidano','1') -INSERT INTO REGION VALUES(0,8057,8,'ME','Messina','1') -INSERT INTO REGION VALUES(0,8058,8,'MI','Milano','1') -INSERT INTO REGION VALUES(0,8059,8,'MO','Modena','1') -INSERT INTO REGION VALUES(0,8060,8,'MB','Monza e Brianza','1') -INSERT INTO REGION VALUES(0,8061,8,'NA','Napoli','1') -INSERT INTO REGION VALUES(0,8062,8,'NO','Novara','1') -INSERT INTO REGION VALUES(0,8063,8,'NU','Nuoro','1') -INSERT INTO REGION VALUES(0,8064,8,'OG','Ogliastra','1') -INSERT INTO REGION VALUES(0,8065,8,'OT','Olbia-Tempio','1') -INSERT INTO REGION VALUES(0,8066,8,'OR','Oristano','1') -INSERT INTO REGION VALUES(0,8067,8,'PD','Padova','1') -INSERT INTO REGION VALUES(0,8068,8,'PA','Palermo','1') -INSERT INTO REGION VALUES(0,8069,8,'PR','Parma','1') -INSERT INTO REGION VALUES(0,8070,8,'PV','Pavia','1') -INSERT INTO REGION VALUES(0,8071,8,'PG','Perugia','1') -INSERT INTO REGION VALUES(0,8072,8,'PU','Pesaro e Urbino','1') -INSERT INTO REGION VALUES(0,8073,8,'PE','Pescara','1') -INSERT INTO REGION VALUES(0,8074,8,'PC','Piacenza','1') -INSERT INTO REGION VALUES(0,8075,8,'PI','Pisa','1') -INSERT INTO REGION VALUES(0,8076,8,'PT','Pistoia','1') -INSERT INTO REGION VALUES(0,8077,8,'PN','Pordenone','1') -INSERT INTO REGION VALUES(0,8078,8,'PZ','Potenza','1') -INSERT INTO REGION VALUES(0,8079,8,'PO','Prato','1') -INSERT INTO REGION VALUES(0,8080,8,'RG','Ragusa','1') -INSERT INTO REGION VALUES(0,8081,8,'RA','Ravenna','1') -INSERT INTO REGION VALUES(0,8082,8,'RC','Reggio Calabria','1') -INSERT INTO REGION VALUES(0,8083,8,'RE','Reggio Emilia','1') -INSERT INTO REGION VALUES(0,8084,8,'RI','Rieti','1') -INSERT INTO REGION VALUES(0,8085,8,'RN','Rimini','1') -INSERT INTO REGION VALUES(0,8086,8,'RM','Roma','1') -INSERT INTO REGION VALUES(0,8087,8,'RO','Rovigo','1') -INSERT INTO REGION VALUES(0,8088,8,'SA','Salerno','1') -INSERT INTO REGION VALUES(0,8089,8,'SS','Sassari','1') -INSERT INTO REGION VALUES(0,8090,8,'SV','Savona','1') -INSERT INTO REGION VALUES(0,8091,8,'SI','Siena','1') -INSERT INTO REGION VALUES(0,8092,8,'SR','Siracusa','1') -INSERT INTO REGION VALUES(0,8093,8,'SO','Sondrio','1') -INSERT INTO REGION VALUES(0,8094,8,'TA','Taranto','1') -INSERT INTO REGION VALUES(0,8095,8,'TE','Teramo','1') -INSERT INTO REGION VALUES(0,8096,8,'TR','Terni','1') -INSERT INTO REGION VALUES(0,8097,8,'TO','Torino','1') -INSERT INTO REGION VALUES(0,8098,8,'TP','Trapani','1') -INSERT INTO REGION VALUES(0,8099,8,'TN','Trento','1') -INSERT INTO REGION VALUES(0,8100,8,'TV','Treviso','1') -INSERT INTO REGION VALUES(0,8101,8,'TS','Trieste','1') -INSERT INTO REGION VALUES(0,8102,8,'UD','Udine','1') -INSERT INTO REGION VALUES(0,8103,8,'VA','Varese','1') -INSERT INTO REGION VALUES(0,8104,8,'VE','Venezia','1') -INSERT INTO REGION VALUES(0,8105,8,'VB','Verbano-Cusio-Ossola','1') -INSERT INTO REGION VALUES(0,8106,8,'VC','Vercelli','1') -INSERT INTO REGION VALUES(0,8107,8,'VR','Verona','1') -INSERT INTO REGION VALUES(0,8108,8,'VV','Vibo Valentia','1') -INSERT INTO REGION VALUES(0,8109,8,'VI','Vicenza','1') -INSERT INTO REGION VALUES(0,8110,8,'VT','Viterbo','1') -INSERT INTO REGION VALUES(0,9001,9,'JP-01','\u5317\u6d77\u9053','1') -INSERT INTO REGION VALUES(0,9002,9,'JP-02','\u9752\u68ee\u770c','1') -INSERT INTO REGION VALUES(0,9003,9,'JP-03','\u5ca9\u624b\u770c','1') -INSERT INTO REGION VALUES(0,9004,9,'JP-04','\u5bae\u57ce\u770c','1') -INSERT INTO REGION VALUES(0,9005,9,'JP-05','\u79cb\u7530\u770c','1') -INSERT INTO REGION VALUES(0,9006,9,'JP-06','\u5c71\u5f62\u770c','1') -INSERT INTO REGION VALUES(0,9007,9,'JP-07','\u798f\u5cf6\u770c','1') -INSERT INTO REGION VALUES(0,9008,9,'JP-08','\u8328\u57ce\u770c','1') -INSERT INTO REGION VALUES(0,9009,9,'JP-09','\u6803\u6728\u770c','1') -INSERT INTO REGION VALUES(0,9010,9,'JP-10','\u7fa4\u99ac\u770c','1') -INSERT INTO REGION VALUES(0,9011,9,'JP-11','\u57fc\u7389\u770c','1') -INSERT INTO REGION VALUES(0,9012,9,'JP-12','\u5343\u8449\u770c','1') -INSERT INTO REGION VALUES(0,9013,9,'JP-13','\u6771\u4eac\u90fd','1') -INSERT INTO REGION VALUES(0,9014,9,'JP-14','\u795e\u5948\u5ddd\u770c','1') -INSERT INTO REGION VALUES(0,9015,9,'JP-15','\u65b0\u6f5f\u770c','1') -INSERT INTO REGION VALUES(0,9016,9,'JP-16','\u5bcc\u5c71\u770c','1') -INSERT INTO REGION VALUES(0,9017,9,'JP-17','\u77f3\u5ddd\u770c','1') -INSERT INTO REGION VALUES(0,9018,9,'JP-18','\u798f\u4e95\u770c','1') -INSERT INTO REGION VALUES(0,9019,9,'JP-19','\u5c71\u68a8\u770c','1') -INSERT INTO REGION VALUES(0,9020,9,'JP-20','\u9577\u91ce\u770c','1') -INSERT INTO REGION VALUES(0,9021,9,'JP-21','\u5c90\u961c\u770c','1') -INSERT INTO REGION VALUES(0,9022,9,'JP-22','\u9759\u5ca1\u770c','1') -INSERT INTO REGION VALUES(0,9023,9,'JP-23','\u611b\u77e5\u770c','1') -INSERT INTO REGION VALUES(0,9024,9,'JP-24','\u4e09\u91cd\u770c','1') -INSERT INTO REGION VALUES(0,9025,9,'JP-25','\u6ecb\u8cc0\u770c','1') -INSERT INTO REGION VALUES(0,9026,9,'JP-26','\u4eac\u90fd\u5e9c','1') -INSERT INTO REGION VALUES(0,9027,9,'JP-27','\u5927\u962a\u5e9c','1') -INSERT INTO REGION VALUES(0,9028,9,'JP-28','\u5175\u5eab\u770c','1') -INSERT INTO REGION VALUES(0,9029,9,'JP-29','\u5948\u826f\u770c','1') -INSERT INTO REGION VALUES(0,9030,9,'JP-30','\u548c\u6b4c\u5c71\u770c','1') -INSERT INTO REGION VALUES(0,9031,9,'JP-31','\u9ce5\u53d6\u770c','1') -INSERT INTO REGION VALUES(0,9032,9,'JP-32','\u5cf6\u6839\u770c','1') -INSERT INTO REGION VALUES(0,9033,9,'JP-33','\u5ca1\u5c71\u770c','1') -INSERT INTO REGION VALUES(0,9034,9,'JP-34','\u5e83\u5cf6\u770c','1') -INSERT INTO REGION VALUES(0,9035,9,'JP-35','\u5c71\u53e3\u770c','1') -INSERT INTO REGION VALUES(0,9036,9,'JP-36','\u5fb3\u5cf6\u770c','1') -INSERT INTO REGION VALUES(0,9037,9,'JP-37','\u9999\u5ddd\u770c','1') -INSERT INTO REGION VALUES(0,9038,9,'JP-38','\u611b\u5a9b\u770c','1') -INSERT INTO REGION VALUES(0,9039,9,'JP-39','\u9ad8\u77e5\u770c','1') -INSERT INTO REGION VALUES(0,9040,9,'JP-40','\u798f\u5ca1\u770c','1') -INSERT INTO REGION VALUES(0,9041,9,'JP-41','\u4f50\u8cc0\u770c','1') -INSERT INTO REGION VALUES(0,9042,9,'JP-42','\u9577\u5d0e\u770c','1') -INSERT INTO REGION VALUES(0,9043,9,'JP-43','\u718a\u672c\u770c','1') -INSERT INTO REGION VALUES(0,9044,9,'JP-44','\u5927\u5206\u770c','1') -INSERT INTO REGION VALUES(0,9045,9,'JP-45','\u5bae\u5d0e\u770c','1') -INSERT INTO REGION VALUES(0,9046,9,'JP-46','\u9e7f\u5150\u5cf6\u770c','1') -INSERT INTO REGION VALUES(0,9047,9,'JP-47','\u6c96\u7e04\u770c','1') -INSERT INTO REGION VALUES(0,11001,11,'DR','Drenthe','1') -INSERT INTO REGION VALUES(0,11002,11,'FL','Flevoland','1') -INSERT INTO REGION VALUES(0,11003,11,'FR','Friesland','1') -INSERT INTO REGION VALUES(0,11004,11,'GE','Gelderland','1') -INSERT INTO REGION VALUES(0,11005,11,'GR','Groningen','1') -INSERT INTO REGION VALUES(0,11006,11,'LI','Limburg','1') -INSERT INTO REGION VALUES(0,11007,11,'NB','Noord-Brabant','1') -INSERT INTO REGION VALUES(0,11008,11,'NH','Noord-Holland','1') -INSERT INTO REGION VALUES(0,11009,11,'OV','Overijssel','1') -INSERT INTO REGION VALUES(0,11010,11,'UT','Utrecht','1') -INSERT INTO REGION VALUES(0,11011,11,'ZE','Zeeland','1') -INSERT INTO REGION VALUES(0,11012,11,'ZH','Zuid-Holland','1') -INSERT INTO REGION VALUES(0,15001,15,'AN','Andalusia','1') -INSERT INTO REGION VALUES(0,15002,15,'AR','Aragon','1') -INSERT INTO REGION VALUES(0,15003,15,'AS','Asturias','1') -INSERT INTO REGION VALUES(0,15004,15,'IB','Balearic Islands','1') -INSERT INTO REGION VALUES(0,15005,15,'PV','Basque Country','1') -INSERT INTO REGION VALUES(0,15006,15,'CN','Canary Islands','1') -INSERT INTO REGION VALUES(0,15007,15,'CB','Cantabria','1') -INSERT INTO REGION VALUES(0,15008,15,'CL','Castile and Leon','1') -INSERT INTO REGION VALUES(0,15009,15,'CM','Castile-La Mancha','1') -INSERT INTO REGION VALUES(0,15010,15,'CT','Catalonia','1') -INSERT INTO REGION VALUES(0,15011,15,'CE','Ceuta','1') -INSERT INTO REGION VALUES(0,15012,15,'EX','Extremadura','1') -INSERT INTO REGION VALUES(0,15013,15,'GA','Galicia','1') -INSERT INTO REGION VALUES(0,15014,15,'LO','La Rioja','1') -INSERT INTO REGION VALUES(0,15015,15,'M','Madrid','1') -INSERT INTO REGION VALUES(0,15016,15,'ML','Melilla','1') -INSERT INTO REGION VALUES(0,15017,15,'MU','Murcia','1') -INSERT INTO REGION VALUES(0,15018,15,'NA','Navarra','1') -INSERT INTO REGION VALUES(0,15019,15,'VC','Valencia','1') -INSERT INTO REGION VALUES(0,19001,19,'AL','Alabama','1') -INSERT INTO REGION VALUES(0,19002,19,'AK','Alaska','1') -INSERT INTO REGION VALUES(0,19003,19,'AZ','Arizona','1') -INSERT INTO REGION VALUES(0,19004,19,'AR','Arkansas','1') -INSERT INTO REGION VALUES(0,19005,19,'CA','California','1') -INSERT INTO REGION VALUES(0,19006,19,'CO','Colorado','1') -INSERT INTO REGION VALUES(0,19007,19,'CT','Connecticut','1') -INSERT INTO REGION VALUES(0,19008,19,'DC','District of Columbia','1') -INSERT INTO REGION VALUES(0,19009,19,'DE','Delaware','1') -INSERT INTO REGION VALUES(0,19010,19,'FL','Florida','1') -INSERT INTO REGION VALUES(0,19011,19,'GA','Georgia','1') -INSERT INTO REGION VALUES(0,19012,19,'HI','Hawaii','1') -INSERT INTO REGION VALUES(0,19013,19,'ID','Idaho','1') -INSERT INTO REGION VALUES(0,19014,19,'IL','Illinois','1') -INSERT INTO REGION VALUES(0,19015,19,'IN','Indiana','1') -INSERT INTO REGION VALUES(0,19016,19,'IA','Iowa','1') -INSERT INTO REGION VALUES(0,19017,19,'KS','Kansas','1') -INSERT INTO REGION VALUES(0,19018,19,'KY','Kentucky ','1') -INSERT INTO REGION VALUES(0,19019,19,'LA','Louisiana ','1') -INSERT INTO REGION VALUES(0,19020,19,'ME','Maine','1') -INSERT INTO REGION VALUES(0,19021,19,'MD','Maryland','1') -INSERT INTO REGION VALUES(0,19022,19,'MA','Massachusetts','1') -INSERT INTO REGION VALUES(0,19023,19,'MI','Michigan','1') -INSERT INTO REGION VALUES(0,19024,19,'MN','Minnesota','1') -INSERT INTO REGION VALUES(0,19025,19,'MS','Mississippi','1') -INSERT INTO REGION VALUES(0,19026,19,'MO','Missouri','1') -INSERT INTO REGION VALUES(0,19027,19,'MT','Montana','1') -INSERT INTO REGION VALUES(0,19028,19,'NE','Nebraska','1') -INSERT INTO REGION VALUES(0,19029,19,'NV','Nevada','1') -INSERT INTO REGION VALUES(0,19030,19,'NH','New Hampshire','1') -INSERT INTO REGION VALUES(0,19031,19,'NJ','New Jersey','1') -INSERT INTO REGION VALUES(0,19032,19,'NM','New Mexico','1') -INSERT INTO REGION VALUES(0,19033,19,'NY','New York','1') -INSERT INTO REGION VALUES(0,19034,19,'NC','North Carolina','1') -INSERT INTO REGION VALUES(0,19035,19,'ND','North Dakota','1') -INSERT INTO REGION VALUES(0,19036,19,'OH','Ohio','1') -INSERT INTO REGION VALUES(0,19037,19,'OK','Oklahoma ','1') -INSERT INTO REGION VALUES(0,19038,19,'OR','Oregon','1') -INSERT INTO REGION VALUES(0,19039,19,'PA','Pennsylvania','1') -INSERT INTO REGION VALUES(0,19040,19,'PR','Puerto Rico','1') -INSERT INTO REGION VALUES(0,19041,19,'RI','Rhode Island','1') -INSERT INTO REGION VALUES(0,19042,19,'SC','South Carolina','1') -INSERT INTO REGION VALUES(0,19043,19,'SD','South Dakota','1') -INSERT INTO REGION VALUES(0,19044,19,'TN','Tennessee','1') -INSERT INTO REGION VALUES(0,19045,19,'TX','Texas','1') -INSERT INTO REGION VALUES(0,19046,19,'UT','Utah','1') -INSERT INTO REGION VALUES(0,19047,19,'VT','Vermont','1') -INSERT INTO REGION VALUES(0,19048,19,'VA','Virginia','1') -INSERT INTO REGION VALUES(0,19049,19,'WA','Washington','1') -INSERT INTO REGION VALUES(0,19050,19,'WV','West Virginia','1') -INSERT INTO REGION VALUES(0,19051,19,'WI','Wisconsin','1') -INSERT INTO REGION VALUES(0,19052,19,'WY','Wyoming','1') -INSERT INTO REGION VALUES(0,32001,32,'ACT','Australian Capital Territory','1') -INSERT INTO REGION VALUES(0,32002,32,'NSW','New South Wales','1') -INSERT INTO REGION VALUES(0,32003,32,'NT','Northern Territory','1') -INSERT INTO REGION VALUES(0,32004,32,'QLD','Queensland','1') -INSERT INTO REGION VALUES(0,32005,32,'SA','South Australia','1') -INSERT INTO REGION VALUES(0,32006,32,'TAS','Tasmania','1') -INSERT INTO REGION VALUES(0,32007,32,'VIC','Victoria','1') -INSERT INTO REGION VALUES(0,32008,32,'WA','Western Australia','1') -INSERT INTO REGION VALUES(0,33001,33,'AT-1','Burgenland','1') -INSERT INTO REGION VALUES(0,33002,33,'AT-2','K\u00e4rnten','1') -INSERT INTO REGION VALUES(0,33003,33,'AT-3','Nieder\u00f6sterreich','1') -INSERT INTO REGION VALUES(0,33004,33,'AT-4','Ober\u00f6sterreich','1') -INSERT INTO REGION VALUES(0,33005,33,'AT-5','Salzburg','1') -INSERT INTO REGION VALUES(0,33006,33,'AT-6','Steiermark','1') -INSERT INTO REGION VALUES(0,33007,33,'AT-7','Tirol','1') -INSERT INTO REGION VALUES(0,33008,33,'AT-8','Vorarlberg','1') -INSERT INTO REGION VALUES(0,33009,33,'AT-9','Vienna','1') -INSERT INTO REGION VALUES(0,144001,144,'MX-AGS','Aguascalientes','1') -INSERT INTO REGION VALUES(0,144002,144,'MX-BCN','Baja California','1') -INSERT INTO REGION VALUES(0,144003,144,'MX-BCS','Baja California Sur','1') -INSERT INTO REGION VALUES(0,144004,144,'MX-CAM','Campeche','1') -INSERT INTO REGION VALUES(0,144005,144,'MX-CHP','Chiapas','1') -INSERT INTO REGION VALUES(0,144006,144,'MX-CHI','Chihuahua','1') -INSERT INTO REGION VALUES(0,144007,144,'MX-COA','Coahuila','1') -INSERT INTO REGION VALUES(0,144008,144,'MX-COL','Colima','1') -INSERT INTO REGION VALUES(0,144009,144,'MX-DUR','Durango','1') -INSERT INTO REGION VALUES(0,144010,144,'MX-GTO','Guanajuato','1') -INSERT INTO REGION VALUES(0,144011,144,'MX-GRO','Guerrero','1') -INSERT INTO REGION VALUES(0,144012,144,'MX-HGO','Hidalgo','1') -INSERT INTO REGION VALUES(0,144013,144,'MX-JAL','Jalisco','1') -INSERT INTO REGION VALUES(0,144014,144,'MX-MEX','Mexico','1') -INSERT INTO REGION VALUES(0,144015,144,'MX-MIC','Michoacan','1') -INSERT INTO REGION VALUES(0,144016,144,'MX-MOR','Morelos','1') -INSERT INTO REGION VALUES(0,144017,144,'MX-NAY','Nayarit','1') -INSERT INTO REGION VALUES(0,144018,144,'MX-NLE','Nuevo Leon','1') -INSERT INTO REGION VALUES(0,144019,144,'MX-OAX','Oaxaca','1') -INSERT INTO REGION VALUES(0,144020,144,'MX-PUE','Puebla','1') -INSERT INTO REGION VALUES(0,144021,144,'MX-QRO','Queretaro','1') -INSERT INTO REGION VALUES(0,144023,144,'MX-ROO','Quintana Roo','1') -INSERT INTO REGION VALUES(0,144024,144,'MX-SLP','San Luis Potos\u00ed','1') -INSERT INTO REGION VALUES(0,144025,144,'MX-SIN','Sinaloa','1') -INSERT INTO REGION VALUES(0,144026,144,'MX-SON','Sonora','1') -INSERT INTO REGION VALUES(0,144027,144,'MX-TAB','Tabasco','1') -INSERT INTO REGION VALUES(0,144028,144,'MX-TAM','Tamaulipas','1') -INSERT INTO REGION VALUES(0,144029,144,'MX-TLX','Tlaxcala','1') -INSERT INTO REGION VALUES(0,144030,144,'MX-VER','Veracruz','1') -INSERT INTO REGION VALUES(0,144031,144,'MX-YUC','Yucatan','1') -INSERT INTO REGION VALUES(0,144032,144,'MX-ZAC','Zacatecas','1') -INSERT INTO REGION VALUES(0,164001,164,'01','\u00d8stfold','1') -INSERT INTO REGION VALUES(0,164002,164,'02','Akershus','1') -INSERT INTO REGION VALUES(0,164003,164,'03','Oslo','1') -INSERT INTO REGION VALUES(0,164004,164,'04','Hedmark','1') -INSERT INTO REGION VALUES(0,164005,164,'05','Oppland','1') -INSERT INTO REGION VALUES(0,164006,164,'06','Buskerud','1') -INSERT INTO REGION VALUES(0,164007,164,'07','Vestfold','1') -INSERT INTO REGION VALUES(0,164008,164,'08','Telemark','1') -INSERT INTO REGION VALUES(0,164009,164,'09','Aust-Agder','1') -INSERT INTO REGION VALUES(0,164010,164,'10','Vest-Agder','1') -INSERT INTO REGION VALUES(0,164011,164,'11','Rogaland','1') -INSERT INTO REGION VALUES(0,164012,164,'12','Hordaland','1') -INSERT INTO REGION VALUES(0,164013,164,'14','Sogn og Fjordane','1') -INSERT INTO REGION VALUES(0,164014,164,'15','M\u00f8re of Romsdal','1') -INSERT INTO REGION VALUES(0,164015,164,'16','S\u00f8r-Tr\u00f8ndelag','1') -INSERT INTO REGION VALUES(0,164016,164,'17','Nord-Tr\u00f8ndelag','1') -INSERT INTO REGION VALUES(0,164017,164,'18','Nordland','1') -INSERT INTO REGION VALUES(0,164018,164,'19','Troms','1') -INSERT INTO REGION VALUES(0,164019,164,'20','Finnmark','1') -INSERT INTO REGION VALUES(0,202001,202,'AG','Aargau','1') -INSERT INTO REGION VALUES(0,202002,202,'AR','Appenzell Ausserrhoden','1') -INSERT INTO REGION VALUES(0,202003,202,'AI','Appenzell Innerrhoden','1') -INSERT INTO REGION VALUES(0,202004,202,'BL','Basel-Landschaft','1') -INSERT INTO REGION VALUES(0,202005,202,'BS','Basel-Stadt','1') -INSERT INTO REGION VALUES(0,202006,202,'BE','Bern','1') -INSERT INTO REGION VALUES(0,202007,202,'FR','Fribourg','1') -INSERT INTO REGION VALUES(0,202008,202,'GE','Geneva','1') -INSERT INTO REGION VALUES(0,202009,202,'GL','Glarus','1') -INSERT INTO REGION VALUES(0,202010,202,'GR','Graub\u00fcnden','1') -INSERT INTO REGION VALUES(0,202011,202,'JU','Jura','1') -INSERT INTO REGION VALUES(0,202012,202,'LU','Lucerne','1') -INSERT INTO REGION VALUES(0,202013,202,'NE','Neuch\u00e2tel','1') -INSERT INTO REGION VALUES(0,202014,202,'NW','Nidwalden','1') -INSERT INTO REGION VALUES(0,202015,202,'OW','Obwalden','1') -INSERT INTO REGION VALUES(0,202016,202,'SH','Schaffhausen','1') -INSERT INTO REGION VALUES(0,202017,202,'SZ','Schwyz','1') -INSERT INTO REGION VALUES(0,202018,202,'SO','Solothurn','1') -INSERT INTO REGION VALUES(0,202019,202,'SG','St. Gallen','1') -INSERT INTO REGION VALUES(0,202020,202,'TG','Thurgau','1') -INSERT INTO REGION VALUES(0,202021,202,'TI','Ticino','1') -INSERT INTO REGION VALUES(0,202022,202,'UR','Uri','1') -INSERT INTO REGION VALUES(0,202023,202,'VS','Valais','1') -INSERT INTO REGION VALUES(0,202024,202,'VD','Vaud','1') -INSERT INTO REGION VALUES(0,202025,202,'ZG','Zug','1') -INSERT INTO REGION VALUES(0,202026,202,'ZH','Z\u00fcrich','1') -INSERT INTO RELEASE_ VALUES(10,1,'2019-05-09 00:27:24.000000','2019-10-25 13:56:33.890000','portal','2.0.4',7102,'2019-05-14 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.') -INSERT INTO RELEASE_ VALUES(0,20179,'2019-05-09 00:27:33.555000','2019-05-09 00:27:33.555000','com.liferay.portal.scheduler.internal.verify',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20180,'2019-05-09 00:27:33.569000','2019-05-09 00:27:33.569000','com.liferay.organizations.service',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20181,'2019-05-09 00:27:33.589000','2019-05-09 00:27:33.589000','com.liferay.portal.security.sso.cas',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20182,'2019-05-09 00:27:33.600000','2019-05-09 00:27:33.600000','com.liferay.portal.security.sso.opensso',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20183,'2019-05-09 00:27:33.609000','2019-05-09 00:27:33.609000','com.liferay.portal.security.sso.facebook.connect',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20184,'2019-05-09 00:27:33.619000','2019-05-09 00:27:33.619000','com.liferay.portal.security.sso.ntlm',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20185,'2019-05-09 00:27:33.629000','2019-05-09 00:27:33.629000','com.liferay.portal.security.sso.openid',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20186,'2019-05-09 00:27:33.639000','2019-05-09 00:27:33.639000','com.liferay.portal.security.sso.google',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20187,'2019-05-09 00:27:33.648000','2019-05-09 00:27:33.648000','com.liferay.portal.security.sso.token.shibboleth',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20188,'2019-05-09 00:27:33.657000','2019-05-09 00:27:33.657000','com.liferay.portal.security.sso.token.siteminder',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20189,'2019-05-09 00:27:33.669000','2019-05-09 00:27:33.669000','com.liferay.systemevent.internal.verify',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(0,20190,'2019-05-09 00:27:33.677000','2019-05-09 00:27:33.677000','com.liferay.portal.security.ldap',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(3,20191,'2019-05-09 00:27:33.711000','2019-05-09 00:27:33.820000','com.liferay.message.boards.layout.set.prototype','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,20201,'2019-05-09 00:27:33.841000','2019-05-09 00:27:33.845000','com.liferay.site.navigation.breadcrumb.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,20301,'2019-05-09 00:27:33.859000','2019-05-09 00:27:33.864000','com.liferay.site.navigation.directory.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,20401,'2019-05-09 00:27:33.881000','2019-05-09 00:27:33.885000','com.liferay.site.navigation.language.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,20501,'2019-05-09 00:27:33.900000','2019-05-09 00:27:33.921000','com.liferay.site.navigation.menu.web','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,20601,'2019-05-09 00:27:33.934000','2019-05-09 00:27:33.937000','com.liferay.site.navigation.site.map.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,20701,'2019-05-09 00:27:33.950000','2019-05-09 00:27:33.953000','com.liferay.site.browser.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,20801,'2019-05-09 00:27:33.965000','2019-05-09 00:27:33.968000','com.liferay.site.my.sites.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,20901,'2019-05-09 00:27:33.984000','2019-05-09 00:27:33.988000','com.liferay.portal.security.sso.token.impl','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,21001,'2019-05-09 00:27:34.000000','2019-05-09 00:27:34.003000','com.liferay.hello.world.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,21101,'2019-05-09 00:27:34.018000','2019-05-09 00:27:34.023000','com.liferay.portal.settings.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,21201,'2019-05-09 00:27:34.035000','2019-05-09 00:27:34.044000','com.liferay.license.manager.web','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,21301,'2019-05-09 00:27:34.055000','2019-05-09 00:27:34.128000','com.liferay.wiki.layout.prototype','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,21401,'2019-05-09 00:27:34.141000','2019-05-09 00:27:34.145000','com.liferay.journal.content.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,21501,'2019-05-09 00:27:34.157000','2019-05-09 00:27:34.161000','com.liferay.journal.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,21601,'2019-05-09 00:27:34.179000','2019-05-09 00:27:34.188000','com.liferay.announcements.web','1.0.4',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,21701,'2019-05-09 00:27:34.202000','2019-05-09 00:27:34.206000','com.liferay.product.navigation.product.menu.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,21801,'2019-05-09 00:27:34.220000','2019-05-09 00:27:34.223000','com.liferay.server.admin.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,21901,'2019-05-09 00:27:34.237000','2019-05-09 00:27:34.240000','com.liferay.asset.browser.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,22001,'2019-05-09 00:27:34.251000','2019-05-09 00:27:34.255000','com.liferay.asset.categories.navigation.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,22101,'2019-05-09 00:27:34.265000','2019-05-09 00:27:34.268000','com.liferay.asset.categories.selector.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,22201,'2019-05-09 00:27:34.283000','2019-05-09 00:27:34.286000','com.liferay.asset.display.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,22301,'2019-05-09 00:27:34.300000','2019-05-09 00:27:34.349000','com.liferay.asset.publisher.layout.prototype','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,22401,'2019-05-09 00:27:34.365000','2019-05-09 00:27:34.369000','com.liferay.asset.tags.compiler.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,22501,'2019-05-09 00:27:34.380000','2019-05-09 00:27:34.383000','com.liferay.asset.tags.navigation.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,22601,'2019-05-09 00:27:34.394000','2019-05-09 00:27:34.397000','com.liferay.asset.tags.selector.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,22701,'2019-05-09 00:27:34.412000','2019-05-09 00:27:34.415000','com.liferay.flags.web','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,22801,'2019-05-09 00:27:34.433000','2019-05-09 00:27:34.437000','com.liferay.comment.page.comments.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(7,22901,'2019-05-09 00:27:34.452000','2019-05-09 00:27:34.474000','com.liferay.portal.security.auth.verifier','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,23001,'2019-05-09 00:27:34.492000','2019-05-09 00:27:34.496000','com.liferay.layout.impl','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,23101,'2019-05-09 00:27:34.509000','2019-05-09 00:27:34.513000','com.liferay.portal.scheduler.quartz','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,23201,'2019-05-09 00:27:34.716000','2019-05-09 00:27:34.722000','com.liferay.trash.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,23301,'2019-05-09 00:27:34.741000','2019-05-09 00:27:34.809000','com.liferay.blogs.layout.prototype','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,23401,'2019-05-09 00:27:34.822000','2019-05-09 00:27:34.826000','com.liferay.blogs.recent.bloggers.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,23501,'2019-05-09 00:27:34.840000','2019-05-09 00:27:34.844000','com.liferay.exportimport.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,23601,'2019-05-09 00:27:34.858000','2019-05-09 00:27:34.862000','com.liferay.iframe.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,23701,'2019-05-09 00:27:34.883000','2019-05-09 00:27:34.887000','com.liferay.portal.instances.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,23801,'2019-05-09 00:27:34.901000','2019-05-09 00:27:34.908000','com.liferay.staging.bar.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,23901,'2019-05-09 00:27:35.043000','2019-05-09 00:27:35.106000','com.liferay.document.library.layout.set.prototype','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24001,'2019-05-09 00:27:35.124000','2019-05-09 00:27:35.128000','com.liferay.item.selector.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24101,'2019-05-09 00:27:35.161000','2019-05-09 00:27:35.165000','com.liferay.social.activities.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24201,'2019-05-09 00:27:35.182000','2019-05-09 00:27:35.186000','com.liferay.nested.portlets.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24301,'2019-05-09 00:27:35.198000','2019-05-09 00:27:35.202000','com.liferay.dynamic.data.mapping.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,24401,'2019-05-09 00:27:35.213000','2019-05-09 00:27:35.220000','com.liferay.portal.remote.soap.extender.impl','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24501,'2019-05-09 00:27:35.231000','2019-05-09 00:27:35.235000','com.liferay.ratings.page.ratings.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24601,'2019-05-09 00:27:35.252000','2019-05-09 00:27:35.256000','com.liferay.plugins.admin.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24701,'2019-05-09 00:27:35.272000','2019-05-09 00:27:35.276000','com.liferay.monitoring.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24801,'2019-05-09 00:27:35.289000','2019-05-09 00:27:35.292000','com.liferay.portlet.configuration.css.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,24901,'2019-05-09 00:27:35.310000','2019-05-09 00:27:35.313000','com.liferay.portlet.configuration.sharing.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,25001,'2019-05-09 00:27:35.325000','2019-05-09 00:27:35.328000','com.liferay.portlet.configuration.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(4,25101,'2019-05-09 00:27:35.350000','2019-05-09 00:27:35.360000','com.liferay.rss.web','3.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,25201,'2019-05-09 00:27:35.378000','2019-05-09 00:27:35.381000','com.liferay.portal.template.soy.impl','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,25301,'2019-05-09 00:27:35.392000','2019-05-09 00:27:35.396000','com.liferay.portal.messaging','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,25401,'2019-05-09 00:27:35.408000','2019-05-09 00:27:35.412000','com.liferay.portal.monitoring','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,25501,'2019-05-09 00:27:35.434000','2019-05-09 00:27:35.437000','com.liferay.login.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,25601,'2019-05-09 00:27:35.455000','2019-05-09 00:27:35.484000','com.liferay.contacts.web','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,25701,'2019-05-09 00:27:35.497000','2019-05-09 00:27:35.500000','com.liferay.image.uploader.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,25801,'2019-05-09 00:27:35.517000','2019-05-09 00:27:35.526000','com.liferay.portal.search.web','2.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,25901,'2019-05-09 00:27:35.538000','2019-05-09 00:27:35.549000','com.liferay.portal.upload','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,26001,'2019-05-09 00:27:35.561000','2019-05-09 00:27:35.574000','com.liferay.captcha.impl','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(6,26101,'2019-05-09 00:27:35.587000','2019-05-09 00:27:53.328000','com.liferay.document.library.service','1.0.2',0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(3,26201,'2019-05-09 00:27:35.619000','2019-05-09 00:27:35.627000','com.liferay.document.library.document.conversion','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,26301,'2019-05-09 00:27:35.651000','2019-05-09 00:27:35.654000','com.liferay.wiki.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,26401,'2019-05-09 00:27:35.665000','2019-05-09 00:27:35.668000','com.liferay.message.boards.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,26501,'2019-05-09 00:27:35.689000','2019-05-09 00:27:35.692000','com.liferay.document.library.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(4,26601,'2019-05-09 00:27:35.708000','2019-05-09 00:27:35.740000','com.liferay.blogs.web','1.2.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(4,26701,'2019-05-09 00:27:35.752000','2019-05-09 00:27:35.771000','com.liferay.users.admin.web','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,26801,'2019-05-09 00:27:35.786000','2019-05-09 00:27:35.790000','com.liferay.dynamic.data.lists.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(6,26901,'2019-05-09 00:27:35.806000','2019-05-09 00:27:35.851000','com.liferay.calendar.web','1.1.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(4,27001,'2019-05-09 00:27:35.901000','2019-05-09 00:27:35.919000','com.liferay.dynamic.data.mapping.form.web','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,27101,'2019-05-09 00:27:35.954000','2019-05-09 00:27:35.958000','com.liferay.notifications.web','2.1.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,27201,'2019-05-09 00:27:35.970000','2019-05-09 00:27:35.973000','com.liferay.wiki.navigation.web','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(4,27301,'2019-05-09 00:27:36.009000','2019-05-09 00:27:36.023000','com.liferay.knowledge.base.web','1.2.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,27401,'2019-05-09 00:27:36.223000','2019-05-09 00:27:47.883000','com.liferay.message.boards.service','1.1.0',1,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(2,27510,'2019-05-09 00:27:36.351000','2019-05-09 00:27:36.355000','com.liferay.site.navigation.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,27604,'2019-05-09 00:27:36.922000','2019-05-09 00:27:36.926000','com.liferay.site.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,27703,'2019-05-09 00:27:37.086000','2019-05-09 00:27:37.089000','com.liferay.screens.service','1.0.8',2,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,27802,'2019-05-09 00:27:37.121000','2019-05-09 00:27:37.124000','com.liferay.reading.time.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,27903,'2019-05-09 00:27:37.308000','2019-05-09 00:27:37.312000','com.liferay.oauth2.provider.service','1.1.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,28006,'2019-05-09 00:27:37.404000','2019-05-09 00:27:37.408000','com.liferay.fragment.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,28105,'2019-05-09 00:27:37.855000','2019-05-09 00:27:47.854000','com.liferay.wiki.service','1.1.0',2,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(2,28205,'2019-05-09 00:27:38.063000','2019-05-09 00:27:38.067000','com.liferay.journal.service','1.1.6',3,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,28308,'2019-05-09 00:27:38.145000','2019-05-09 00:27:38.149000','com.liferay.changeset.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,28404,'2019-05-09 00:27:38.381000','2019-05-09 00:27:38.780000','com.liferay.mobile.device.rules.service','1.0.1',3,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(6,28501,'2019-05-09 00:27:38.403000','2019-05-09 00:27:38.431000','com.liferay.mobile.device.rules.web','1.0.2',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,28606,'2019-05-09 00:27:38.834000','2019-05-09 00:27:38.838000','com.liferay.asset.category.property.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,28703,'2019-05-09 00:27:38.878000','2019-05-09 00:27:38.882000','com.liferay.asset.display.page.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,28802,'2019-05-09 00:27:39.023000','2019-05-09 00:27:39.026000','com.liferay.asset.entry.rel.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,28902,'2019-05-09 00:27:39.180000','2019-05-09 00:27:39.183000','com.liferay.asset.tag.stats.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,29002,'2019-05-09 00:27:39.319000','2019-05-09 00:27:39.323000','com.liferay.flags.service','2.0.1',2,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,29102,'2019-05-09 00:27:39.475000','2019-05-09 00:27:39.479000','com.liferay.marketplace.service','2.0.2',6,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,30125,'2019-05-09 00:27:42.842000','2019-05-09 00:27:42.846000','com.liferay.adaptive.media.image.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,30204,'2019-05-09 00:27:43.040000','2019-05-09 00:27:43.043000','com.liferay.adaptive.media.document.library.thumbnails','1.0.1',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,30301,'2019-05-09 00:27:43.116000','2019-05-09 00:27:43.392000','com.liferay.portal.security.service.access.policy.service','2.0.13',3,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(3,30412,'2019-05-09 00:27:43.474000','2019-05-09 00:27:43.484000','com.liferay.layout.page.template.service','1.1.1',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,30504,'2019-05-09 00:27:43.603000','2019-05-09 00:27:43.607000','com.liferay.html.preview.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,30603,'2019-05-09 00:27:43.853000','2019-05-09 00:27:43.856000','com.liferay.knowledge.base.service','2.0.2',15,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,30706,'2019-05-09 00:27:43.928000','2019-05-09 00:27:43.932000','com.liferay.trash.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,30804,'2019-05-09 00:27:44.222000','2019-05-09 00:27:47.743000','com.liferay.blogs.service','1.1.2',1,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(2,30904,'2019-05-09 00:27:44.289000','2019-05-09 00:27:44.292000','com.liferay.portal.background.task.service','1.0.0',2,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31001,'2019-05-09 00:27:44.304000','2019-05-09 00:27:44.307000','com.liferay.exportimport.service','1.0.0',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31103,'2019-05-09 00:27:44.481000','2019-05-09 00:27:44.485000','com.liferay.portal.instances.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31202,'2019-05-09 00:27:44.580000','2019-05-09 00:27:44.583000','com.liferay.document.library.content.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31303,'2019-05-09 00:27:44.816000','2019-05-09 00:27:44.820000','com.liferay.document.library.file.rank.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31402,'2019-05-09 00:27:44.975000','2019-05-09 00:27:44.978000','com.liferay.document.library.sync.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31503,'2019-05-09 00:27:45.128000','2019-05-09 00:27:45.132000','com.liferay.portal.workflow.kaleo.runtime.impl','2.0.3',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31601,'2019-05-09 00:27:45.372000','2019-05-09 00:27:45.375000','com.liferay.portal.workflow.kaleo.service','1.4.1',10,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,31721,'2019-05-09 00:27:46.870000','2019-05-09 00:27:53.273000','com.liferay.dynamic.data.mapping.service','2.0.4',2,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31817,'2019-05-09 00:27:46.925000','2019-05-09 00:27:46.928000','com.liferay.external.reference.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,31902,'2019-05-09 00:27:47.031000','2019-05-09 00:27:47.034000','com.liferay.friendly.url.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,32005,'2019-05-09 00:27:47.221000','2019-05-09 00:27:47.225000','com.liferay.portal.lock.service','1.0.0',2,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(5,32145,'2019-05-09 00:27:51.927000','2019-05-09 00:27:51.948000','com.liferay.asset.publisher.web','1.0.3',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,32324,'2019-05-09 00:27:53.353000','2019-05-09 00:27:53.356000','com.liferay.portal.security.audit.storage.service','1.0.0',2,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,32403,'2019-05-09 00:27:53.558000','2019-05-09 00:27:53.561000','com.liferay.subscription.service','1.0.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(4,32509,'2019-05-09 00:27:56.259000','2019-05-09 00:27:56.271000','com.liferay.layout.admin.web','1.0.2',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(0,32601,'2019-05-09 00:27:56.784000','2019-05-09 00:27:56.784000','com.liferay.blogs.trackbacks',NULL,0,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(2,32602,'2019-05-09 00:27:56.830000','2019-05-09 00:27:56.833000','com.liferay.adaptive.media.web','1.0.2',0,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(3,32707,'2019-05-09 00:27:57.075000','2019-05-09 00:27:57.325000','com.liferay.polls.service','1.0.4',2,NULL,'1',0,NULL) -INSERT INTO RELEASE_ VALUES(2,32805,'2019-05-09 00:27:57.418000','2019-05-09 00:27:57.421000','com.liferay.calendar.service','3.0.0',6,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,32906,'2019-05-09 00:27:57.919000','2019-05-09 00:27:57.922000','com.liferay.invitation.invite.members.service','1.0.1',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,33003,'2019-05-09 00:27:58.099000','2019-05-09 00:27:58.102000','com.liferay.dynamic.data.lists.service','1.1.0',1,NULL,'0',0,NULL) -INSERT INTO RELEASE_ VALUES(2,33106,'2019-05-09 00:27:58.613000','2019-05-09 00:27:58.616000','com.liferay.contacts.service','2.0.2',2,NULL,'0',0,NULL) -INSERT INTO REPOSITORY VALUES(0,'a360bdc7-a111-c176-f9f3-7ebebadc573e',32136,20135,20099,20103,NULL,'2019-05-09 00:27:49.484000','2019-05-09 00:27:49.484000',32135,'com.liferay.oauth2.provider',NULL,'com.liferay.oauth2.provider','',32137,NULL) -INSERT INTO RESOURCEACTION VALUES(0,1,'com.liferay.document.library.kernel.model.DLFileEntry','UPDATE_DISCUSSION',2) -INSERT INTO RESOURCEACTION VALUES(0,2,'com.liferay.document.library.kernel.model.DLFileEntry','DELETE',4) -INSERT INTO RESOURCEACTION VALUES(0,3,'com.liferay.document.library.kernel.model.DLFileEntry','OVERRIDE_CHECKOUT',8) -INSERT INTO RESOURCEACTION VALUES(0,4,'com.liferay.document.library.kernel.model.DLFileEntry','PERMISSIONS',16) -INSERT INTO RESOURCEACTION VALUES(0,5,'com.liferay.document.library.kernel.model.DLFileEntry','DELETE_DISCUSSION',32) -INSERT INTO RESOURCEACTION VALUES(0,6,'com.liferay.document.library.kernel.model.DLFileEntry','UPDATE',64) -INSERT INTO RESOURCEACTION VALUES(0,7,'com.liferay.document.library.kernel.model.DLFileEntry','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,8,'com.liferay.document.library.kernel.model.DLFileEntry','ADD_DISCUSSION',128) -INSERT INTO RESOURCEACTION VALUES(0,9,'com.liferay.portal.kernel.model.User','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,10,'com.liferay.portal.kernel.model.User','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,11,'com.liferay.portal.kernel.model.User','IMPERSONATE',8) -INSERT INTO RESOURCEACTION VALUES(0,12,'com.liferay.portal.kernel.model.User','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,13,'com.liferay.portal.kernel.model.User','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,14,'com.liferay.portal.kernel.model.UserGroup','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,15,'com.liferay.portal.kernel.model.UserGroup','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,16,'com.liferay.portal.kernel.model.UserGroup','ASSIGN_MEMBERS',8) -INSERT INTO RESOURCEACTION VALUES(0,17,'com.liferay.portal.kernel.model.UserGroup','VIEW_MEMBERS',16) -INSERT INTO RESOURCEACTION VALUES(0,18,'com.liferay.portal.kernel.model.UserGroup','MANAGE_ANNOUNCEMENTS',32) -INSERT INTO RESOURCEACTION VALUES(0,19,'com.liferay.portal.kernel.model.UserGroup','UPDATE',64) -INSERT INTO RESOURCEACTION VALUES(0,20,'com.liferay.portal.kernel.model.UserGroup','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,21,'com.liferay.asset.kernel.model.AssetCategory','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,22,'com.liferay.asset.kernel.model.AssetCategory','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,23,'com.liferay.asset.kernel.model.AssetCategory','ADD_CATEGORY',8) -INSERT INTO RESOURCEACTION VALUES(0,24,'com.liferay.asset.kernel.model.AssetCategory','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,25,'com.liferay.asset.kernel.model.AssetCategory','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,26,'com.liferay.asset.tags','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,27,'com.liferay.asset.tags','MANAGE_TAG',4) -INSERT INTO RESOURCEACTION VALUES(0,28,'com.liferay.document.library','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,29,'com.liferay.document.library','ADD_REPOSITORY',4) -INSERT INTO RESOURCEACTION VALUES(0,30,'com.liferay.document.library','ADD_DOCUMENT_TYPE',8) -INSERT INTO RESOURCEACTION VALUES(0,31,'com.liferay.document.library','ADD_SHORTCUT',16) -INSERT INTO RESOURCEACTION VALUES(0,32,'com.liferay.document.library','UPDATE',32) -INSERT INTO RESOURCEACTION VALUES(0,33,'com.liferay.document.library','ADD_DOCUMENT',64) -INSERT INTO RESOURCEACTION VALUES(0,34,'com.liferay.document.library','SUBSCRIBE',128) -INSERT INTO RESOURCEACTION VALUES(0,35,'com.liferay.document.library','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,36,'com.liferay.document.library','ADD_FOLDER',256) -INSERT INTO RESOURCEACTION VALUES(0,37,'com.liferay.document.library','ADD_STRUCTURE',512) -INSERT INTO RESOURCEACTION VALUES(0,38,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,39,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,40,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,41,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,42,'com.liferay.portal.kernel.model.LayoutSetBranch','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,43,'com.liferay.portal.kernel.model.LayoutSetBranch','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,44,'com.liferay.portal.kernel.model.LayoutSetBranch','MERGE',8) -INSERT INTO RESOURCEACTION VALUES(0,45,'com.liferay.portal.kernel.model.LayoutSetBranch','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,46,'com.liferay.asset.kernel.model.AssetVocabulary','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,47,'com.liferay.asset.kernel.model.AssetVocabulary','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,48,'com.liferay.asset.kernel.model.AssetVocabulary','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,49,'com.liferay.asset.kernel.model.AssetVocabulary','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,50,'com.liferay.announcements.kernel.model.AnnouncementsEntry','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,51,'com.liferay.announcements.kernel.model.AnnouncementsEntry','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,52,'com.liferay.announcements.kernel.model.AnnouncementsEntry','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,53,'com.liferay.announcements.kernel.model.AnnouncementsEntry','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,54,'com.liferay.document.library.kernel.model.DLFolder','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,55,'com.liferay.document.library.kernel.model.DLFolder','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,56,'com.liferay.document.library.kernel.model.DLFolder','ADD_SUBFOLDER',8) -INSERT INTO RESOURCEACTION VALUES(0,57,'com.liferay.document.library.kernel.model.DLFolder','ADD_SHORTCUT',16) -INSERT INTO RESOURCEACTION VALUES(0,58,'com.liferay.document.library.kernel.model.DLFolder','UPDATE',32) -INSERT INTO RESOURCEACTION VALUES(0,59,'com.liferay.document.library.kernel.model.DLFolder','ADD_DOCUMENT',64) -INSERT INTO RESOURCEACTION VALUES(0,60,'com.liferay.document.library.kernel.model.DLFolder','SUBSCRIBE',128) -INSERT INTO RESOURCEACTION VALUES(0,61,'com.liferay.document.library.kernel.model.DLFolder','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,62,'com.liferay.document.library.kernel.model.DLFolder','ACCESS',256) -INSERT INTO RESOURCEACTION VALUES(0,63,'com.liferay.portal.kernel.model.Layout','UPDATE_DISCUSSION',2) -INSERT INTO RESOURCEACTION VALUES(0,64,'com.liferay.portal.kernel.model.Layout','DELETE',4) -INSERT INTO RESOURCEACTION VALUES(0,65,'com.liferay.portal.kernel.model.Layout','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,66,'com.liferay.portal.kernel.model.Layout','CUSTOMIZE',16) -INSERT INTO RESOURCEACTION VALUES(0,67,'com.liferay.portal.kernel.model.Layout','ADD_LAYOUT',32) -INSERT INTO RESOURCEACTION VALUES(0,68,'com.liferay.portal.kernel.model.Layout','DELETE_DISCUSSION',64) -INSERT INTO RESOURCEACTION VALUES(0,69,'com.liferay.portal.kernel.model.Layout','CONFIGURE_PORTLETS',128) -INSERT INTO RESOURCEACTION VALUES(0,70,'com.liferay.portal.kernel.model.Layout','UPDATE',256) -INSERT INTO RESOURCEACTION VALUES(0,71,'com.liferay.portal.kernel.model.Layout','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,72,'com.liferay.portal.kernel.model.Layout','ADD_DISCUSSION',512) -INSERT INTO RESOURCEACTION VALUES(0,73,'com.liferay.document.library.kernel.model.DLFileEntryType','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,74,'com.liferay.document.library.kernel.model.DLFileEntryType','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,75,'com.liferay.document.library.kernel.model.DLFileEntryType','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,76,'com.liferay.document.library.kernel.model.DLFileEntryType','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,77,'com.liferay.portal.kernel.model.LayoutPrototype','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,78,'com.liferay.portal.kernel.model.LayoutPrototype','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,79,'com.liferay.portal.kernel.model.LayoutPrototype','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,80,'com.liferay.portal.kernel.model.LayoutPrototype','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,81,'com.liferay.asset.categories','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,82,'com.liferay.asset.categories','ADD_CATEGORY',4) -INSERT INTO RESOURCEACTION VALUES(0,83,'com.liferay.asset.categories','ADD_VOCABULARY',8) -INSERT INTO RESOURCEACTION VALUES(0,101,'com.liferay.portal.kernel.model.Group','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,102,'com.liferay.portal.kernel.model.Group','VIEW_MEMBERS',4) -INSERT INTO RESOURCEACTION VALUES(0,103,'com.liferay.portal.kernel.model.Group','MANAGE_ANNOUNCEMENTS',8) -INSERT INTO RESOURCEACTION VALUES(0,104,'com.liferay.portal.kernel.model.Group','PUBLISH_STAGING',16) -INSERT INTO RESOURCEACTION VALUES(0,105,'com.liferay.portal.kernel.model.Group','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,106,'com.liferay.portal.kernel.model.Group','EXPORT_IMPORT_LAYOUTS',32) -INSERT INTO RESOURCEACTION VALUES(0,107,'com.liferay.portal.kernel.model.Group','ASSIGN_USER_ROLES',64) -INSERT INTO RESOURCEACTION VALUES(0,108,'com.liferay.portal.kernel.model.Group','DELETE',128) -INSERT INTO RESOURCEACTION VALUES(0,109,'com.liferay.portal.kernel.model.Group','VIEW_SITE_ADMINISTRATION',256) -INSERT INTO RESOURCEACTION VALUES(0,110,'com.liferay.portal.kernel.model.Group','ASSIGN_MEMBERS',512) -INSERT INTO RESOURCEACTION VALUES(0,111,'com.liferay.portal.kernel.model.Group','MANAGE_LAYOUTS',1024) -INSERT INTO RESOURCEACTION VALUES(0,112,'com.liferay.portal.kernel.model.Group','MANAGE_ARCHIVED_SETUPS',2048) -INSERT INTO RESOURCEACTION VALUES(0,113,'com.liferay.portal.kernel.model.Group','ADD_COMMUNITY',4096) -INSERT INTO RESOURCEACTION VALUES(0,114,'com.liferay.portal.kernel.model.Group','UPDATE',8192) -INSERT INTO RESOURCEACTION VALUES(0,115,'com.liferay.portal.kernel.model.Group','PUBLISH_PORTLET_INFO',16384) -INSERT INTO RESOURCEACTION VALUES(0,116,'com.liferay.portal.kernel.model.Group','ADD_LAYOUT_SET_BRANCH',32768) -INSERT INTO RESOURCEACTION VALUES(0,117,'com.liferay.portal.kernel.model.Group','PREVIEW_IN_DEVICE',65536) -INSERT INTO RESOURCEACTION VALUES(0,118,'com.liferay.portal.kernel.model.Group','MANAGE_TEAMS',131072) -INSERT INTO RESOURCEACTION VALUES(0,119,'com.liferay.portal.kernel.model.Group','ADD_LAYOUT',262144) -INSERT INTO RESOURCEACTION VALUES(0,120,'com.liferay.portal.kernel.model.Group','ADD_LAYOUT_BRANCH',524288) -INSERT INTO RESOURCEACTION VALUES(0,121,'com.liferay.portal.kernel.model.Group','MANAGE_SUBGROUPS',1048576) -INSERT INTO RESOURCEACTION VALUES(0,122,'com.liferay.portal.kernel.model.Group','VIEW_STAGING',2097152) -INSERT INTO RESOURCEACTION VALUES(0,123,'com.liferay.portal.kernel.model.Group','EXPORT_IMPORT_PORTLET_INFO',4194304) -INSERT INTO RESOURCEACTION VALUES(0,124,'com.liferay.portal.kernel.model.Group','CONFIGURE_PORTLETS',8388608) -INSERT INTO RESOURCEACTION VALUES(0,125,'com.liferay.portal.kernel.model.Group','MANAGE_STAGING',16777216) -INSERT INTO RESOURCEACTION VALUES(0,126,'com.liferay.portal.kernel.model.LayoutSetPrototype','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,127,'com.liferay.portal.kernel.model.LayoutSetPrototype','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,128,'com.liferay.portal.kernel.model.LayoutSetPrototype','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,129,'com.liferay.portal.kernel.model.LayoutSetPrototype','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,130,'com.liferay.portal.kernel.model.Team','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,131,'com.liferay.portal.kernel.model.Team','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,132,'com.liferay.portal.kernel.model.Team','ASSIGN_MEMBERS',8) -INSERT INTO RESOURCEACTION VALUES(0,133,'com.liferay.portal.kernel.model.Team','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,134,'com.liferay.portal.kernel.model.Team','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,135,'com.liferay.portal.kernel.model.Organization','ASSIGN_USER_ROLES',2) -INSERT INTO RESOURCEACTION VALUES(0,136,'com.liferay.portal.kernel.model.Organization','DELETE',4) -INSERT INTO RESOURCEACTION VALUES(0,137,'com.liferay.portal.kernel.model.Organization','MANAGE_SUBORGANIZATIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,138,'com.liferay.portal.kernel.model.Organization','PERMISSIONS',16) -INSERT INTO RESOURCEACTION VALUES(0,139,'com.liferay.portal.kernel.model.Organization','ASSIGN_MEMBERS',32) -INSERT INTO RESOURCEACTION VALUES(0,140,'com.liferay.portal.kernel.model.Organization','VIEW_MEMBERS',64) -INSERT INTO RESOURCEACTION VALUES(0,141,'com.liferay.portal.kernel.model.Organization','MANAGE_ANNOUNCEMENTS',128) -INSERT INTO RESOURCEACTION VALUES(0,142,'com.liferay.portal.kernel.model.Organization','UPDATE',256) -INSERT INTO RESOURCEACTION VALUES(0,143,'com.liferay.portal.kernel.model.Organization','MANAGE_USERS',512) -INSERT INTO RESOURCEACTION VALUES(0,144,'com.liferay.portal.kernel.model.Organization','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,145,'com.liferay.portal.kernel.model.Organization','ADD_ORGANIZATION',1024) -INSERT INTO RESOURCEACTION VALUES(0,146,'com.liferay.portal.kernel.model.PasswordPolicy','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,147,'com.liferay.portal.kernel.model.PasswordPolicy','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,148,'com.liferay.portal.kernel.model.PasswordPolicy','ASSIGN_MEMBERS',8) -INSERT INTO RESOURCEACTION VALUES(0,149,'com.liferay.portal.kernel.model.PasswordPolicy','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,150,'com.liferay.portal.kernel.model.PasswordPolicy','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,151,'com.liferay.document.library.kernel.model.DLFileShortcut','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,152,'com.liferay.document.library.kernel.model.DLFileShortcut','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,153,'com.liferay.document.library.kernel.model.DLFileShortcut','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,154,'com.liferay.document.library.kernel.model.DLFileShortcut','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,155,'com.liferay.expando.kernel.model.ExpandoColumn','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,156,'com.liferay.expando.kernel.model.ExpandoColumn','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,157,'com.liferay.expando.kernel.model.ExpandoColumn','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,158,'com.liferay.expando.kernel.model.ExpandoColumn','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,159,'com.liferay.portal.kernel.model.LayoutBranch','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,160,'com.liferay.portal.kernel.model.LayoutBranch','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,161,'com.liferay.portal.kernel.model.LayoutBranch','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,162,'com.liferay.portal.kernel.model.Role','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,163,'com.liferay.portal.kernel.model.Role','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,164,'com.liferay.portal.kernel.model.Role','DEFINE_PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,165,'com.liferay.portal.kernel.model.Role','ASSIGN_MEMBERS',16) -INSERT INTO RESOURCEACTION VALUES(0,166,'com.liferay.portal.kernel.model.Role','MANAGE_ANNOUNCEMENTS',32) -INSERT INTO RESOURCEACTION VALUES(0,167,'com.liferay.portal.kernel.model.Role','UPDATE',64) -INSERT INTO RESOURCEACTION VALUES(0,168,'com.liferay.portal.kernel.model.Role','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,169,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,170,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,171,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,172,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,173,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,174,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,175,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,176,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,177,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,178,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,179,'com_liferay_announcements_web_portlet_AlertsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,180,'com_liferay_announcements_web_portlet_AlertsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,181,'com_liferay_announcements_web_portlet_AlertsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,182,'com_liferay_announcements_web_portlet_AlertsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,183,'com_liferay_announcements_web_portlet_AlertsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,184,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,185,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,186,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,187,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,188,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,189,'150','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,190,'150','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,191,'150','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,192,'150','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,193,'150','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,194,'151','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,195,'151','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,196,'151','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,197,'151','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,198,'151','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,201,'152','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,202,'152','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,203,'152','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,204,'152','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,205,'152','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,206,'153','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,207,'153','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,208,'153','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,209,'153','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,210,'153','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,211,'153','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,212,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,213,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,214,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,215,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,216,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,217,'157','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,218,'157','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,219,'157','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,220,'157','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,221,'157','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,222,'136','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,223,'136','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,224,'136','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,225,'136','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,226,'136','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,227,'158','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,228,'158','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,229,'158','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,230,'158','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,231,'158','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,232,'158','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,233,'90','VIEW_CONTROL_PANEL',2) -INSERT INTO RESOURCEACTION VALUES(0,234,'90','ADD_GENERAL_ANNOUNCEMENTS',4) -INSERT INTO RESOURCEACTION VALUES(0,235,'90','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,236,'90','UNLINK_LAYOUT_SET_PROTOTYPE',16) -INSERT INTO RESOURCEACTION VALUES(0,237,'90','ADD_USER',32) -INSERT INTO RESOURCEACTION VALUES(0,238,'90','ADD_ROLE',64) -INSERT INTO RESOURCEACTION VALUES(0,239,'90','EXPORT_USER',128) -INSERT INTO RESOURCEACTION VALUES(0,240,'90','ADD_LICENSE',256) -INSERT INTO RESOURCEACTION VALUES(0,241,'90','ADD_ORGANIZATION',512) -INSERT INTO RESOURCEACTION VALUES(0,242,'90','ADD_USER_GROUP',1024) -INSERT INTO RESOURCEACTION VALUES(0,243,'90','ADD_LAYOUT_PROTOTYPE',2048) -INSERT INTO RESOURCEACTION VALUES(0,244,'90','ADD_COMMUNITY',4096) -INSERT INTO RESOURCEACTION VALUES(0,245,'90','ADD_LAYOUT_SET_PROTOTYPE',8192) -INSERT INTO RESOURCEACTION VALUES(0,246,'90','IMPERSONATE',16384) -INSERT INTO RESOURCEACTION VALUES(0,247,'90','ADD_PASSWORD_POLICY',32768) -INSERT INTO RESOURCEACTION VALUES(0,248,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,249,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,250,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,251,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,252,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,253,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,254,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,255,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,256,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,257,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,258,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,259,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,260,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,261,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,262,'com_liferay_announcements_web_portlet_AnnouncementsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,263,'com_liferay_document_library_web_portlet_DLAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,264,'com_liferay_document_library_web_portlet_DLAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,265,'com_liferay_document_library_web_portlet_DLAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,266,'com_liferay_document_library_web_portlet_DLAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,267,'com_liferay_document_library_web_portlet_DLAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,268,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,269,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,270,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,271,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,272,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,273,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,274,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,275,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,276,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,277,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,278,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,279,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,280,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,281,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,282,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,283,'com_liferay_document_library_web_portlet_DLPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,284,'com_liferay_document_library_web_portlet_DLPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,285,'com_liferay_document_library_web_portlet_DLPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,286,'com_liferay_document_library_web_portlet_DLPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,287,'com_liferay_document_library_web_portlet_DLPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,288,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,289,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,290,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,291,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,292,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,293,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,294,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,295,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,296,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,297,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,301,'com_liferay_expando_web_portlet_ExpandoPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,302,'com_liferay_expando_web_portlet_ExpandoPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,303,'com_liferay_expando_web_portlet_ExpandoPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,304,'com_liferay_expando_web_portlet_ExpandoPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,305,'com_liferay_expando_web_portlet_ExpandoPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,306,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,307,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,308,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,309,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,310,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,311,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,312,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,313,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,314,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,315,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,316,'com_liferay_document_library_web_portlet_IGDisplayPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,317,'com_liferay_document_library_web_portlet_IGDisplayPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,318,'com_liferay_document_library_web_portlet_IGDisplayPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,319,'com_liferay_document_library_web_portlet_IGDisplayPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,320,'com_liferay_document_library_web_portlet_IGDisplayPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,321,'90','ADD_TO_PAGE',65536) -INSERT INTO RESOURCEACTION VALUES(0,322,'90','PERMISSIONS',131072) -INSERT INTO RESOURCEACTION VALUES(0,323,'90','PREFERENCES',262144) -INSERT INTO RESOURCEACTION VALUES(0,324,'90','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,325,'90','ACCESS_IN_CONTROL_PANEL',524288) -INSERT INTO RESOURCEACTION VALUES(0,401,'com_liferay_message_boards_web_portlet_MBPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,402,'com_liferay_message_boards_web_portlet_MBPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,403,'com_liferay_message_boards_web_portlet_MBPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,404,'com_liferay_message_boards_web_portlet_MBPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,405,'com_liferay_message_boards_web_portlet_MBPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,406,'com.liferay.message.boards.model.MBCategory','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,407,'com.liferay.message.boards.model.MBCategory','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,408,'com.liferay.message.boards.model.MBCategory','ADD_FILE',8) -INSERT INTO RESOURCEACTION VALUES(0,409,'com.liferay.message.boards.model.MBCategory','REPLY_TO_MESSAGE',16) -INSERT INTO RESOURCEACTION VALUES(0,410,'com.liferay.message.boards.model.MBCategory','LOCK_THREAD',32) -INSERT INTO RESOURCEACTION VALUES(0,411,'com.liferay.message.boards.model.MBCategory','UPDATE',64) -INSERT INTO RESOURCEACTION VALUES(0,412,'com.liferay.message.boards.model.MBCategory','SUBSCRIBE',128) -INSERT INTO RESOURCEACTION VALUES(0,413,'com.liferay.message.boards.model.MBCategory','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,414,'com.liferay.message.boards.model.MBCategory','ADD_MESSAGE',256) -INSERT INTO RESOURCEACTION VALUES(0,415,'com.liferay.message.boards.model.MBCategory','MOVE_THREAD',512) -INSERT INTO RESOURCEACTION VALUES(0,416,'com.liferay.message.boards.model.MBCategory','ADD_SUBCATEGORY',1024) -INSERT INTO RESOURCEACTION VALUES(0,417,'com.liferay.message.boards.model.MBCategory','UPDATE_THREAD_PRIORITY',2048) -INSERT INTO RESOURCEACTION VALUES(0,418,'com.liferay.message.boards.model.MBThread','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,419,'com.liferay.message.boards.model.MBThread','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,420,'com.liferay.message.boards.model.MBThread','SUBSCRIBE',8) -INSERT INTO RESOURCEACTION VALUES(0,421,'com.liferay.message.boards.model.MBThread','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,422,'com.liferay.message.boards.model.MBMessage','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,423,'com.liferay.message.boards.model.MBMessage','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,424,'com.liferay.message.boards.model.MBMessage','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,425,'com.liferay.message.boards.model.MBMessage','SUBSCRIBE',16) -INSERT INTO RESOURCEACTION VALUES(0,426,'com.liferay.message.boards.model.MBMessage','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,427,'com.liferay.message.boards','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,428,'com.liferay.message.boards','ADD_FILE',4) -INSERT INTO RESOURCEACTION VALUES(0,429,'com.liferay.message.boards','BAN_USER',8) -INSERT INTO RESOURCEACTION VALUES(0,430,'com.liferay.message.boards','ADD_CATEGORY',16) -INSERT INTO RESOURCEACTION VALUES(0,431,'com.liferay.message.boards','REPLY_TO_MESSAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,432,'com.liferay.message.boards','LOCK_THREAD',64) -INSERT INTO RESOURCEACTION VALUES(0,433,'com.liferay.message.boards','SUBSCRIBE',128) -INSERT INTO RESOURCEACTION VALUES(0,434,'com.liferay.message.boards','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,435,'com.liferay.message.boards','ADD_MESSAGE',256) -INSERT INTO RESOURCEACTION VALUES(0,436,'com.liferay.message.boards','MOVE_THREAD',512) -INSERT INTO RESOURCEACTION VALUES(0,437,'com.liferay.message.boards','UPDATE_THREAD_PRIORITY',1024) -INSERT INTO RESOURCEACTION VALUES(0,438,'com_liferay_message_boards_web_portlet_MBAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,439,'com_liferay_message_boards_web_portlet_MBAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,440,'com_liferay_message_boards_web_portlet_MBAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,441,'com_liferay_message_boards_web_portlet_MBAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,442,'com_liferay_message_boards_web_portlet_MBAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,501,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,502,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,503,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,504,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,505,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,506,'com.liferay.site.navigation.model.SiteNavigationMenuItem','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,507,'com.liferay.site.navigation.model.SiteNavigationMenuItem','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,508,'com.liferay.site.navigation.model.SiteNavigationMenuItem','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,509,'com.liferay.site.navigation.model.SiteNavigationMenuItem','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,510,'com.liferay.site.navigation.model.SiteNavigationMenu','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,511,'com.liferay.site.navigation.model.SiteNavigationMenu','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,512,'com.liferay.site.navigation.model.SiteNavigationMenu','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,513,'com.liferay.site.navigation.model.SiteNavigationMenu','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,514,'com.liferay.site.navigation','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,515,'com.liferay.site.navigation','ADD_SITE_NAVIGATION_MENU',4) -INSERT INTO RESOURCEACTION VALUES(0,601,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,602,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,603,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,604,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,605,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,606,'com.liferay.oauth2.provider','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,607,'com.liferay.oauth2.provider','ADD_APPLICATION',4) -INSERT INTO RESOURCEACTION VALUES(0,608,'com.liferay.oauth2.provider.model.OAuth2Application','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,609,'com.liferay.oauth2.provider.model.OAuth2Application','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,610,'com.liferay.oauth2.provider.model.OAuth2Application','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,611,'com.liferay.oauth2.provider.model.OAuth2Application','CREATE_TOKEN',16) -INSERT INTO RESOURCEACTION VALUES(0,612,'com.liferay.oauth2.provider.model.OAuth2Application','REVOKE_TOKEN',32) -INSERT INTO RESOURCEACTION VALUES(0,613,'com.liferay.oauth2.provider.model.OAuth2Application','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,701,'com_liferay_fragment_web_portlet_FragmentPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,702,'com_liferay_fragment_web_portlet_FragmentPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,703,'com_liferay_fragment_web_portlet_FragmentPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,704,'com_liferay_fragment_web_portlet_FragmentPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,705,'com_liferay_fragment_web_portlet_FragmentPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,706,'com.liferay.fragment','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,707,'com.liferay.fragment','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,708,'com.liferay.fragment','MANAGE_FRAGMENT_ENTRIES',4) -INSERT INTO RESOURCEACTION VALUES(0,801,'com_liferay_wiki_web_portlet_WikiPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,802,'com_liferay_wiki_web_portlet_WikiPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,803,'com_liferay_wiki_web_portlet_WikiPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,804,'com_liferay_wiki_web_portlet_WikiPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,805,'com_liferay_wiki_web_portlet_WikiPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,806,'com.liferay.wiki.model.WikiPage','UPDATE_DISCUSSION',2) -INSERT INTO RESOURCEACTION VALUES(0,807,'com.liferay.wiki.model.WikiPage','DELETE',4) -INSERT INTO RESOURCEACTION VALUES(0,808,'com.liferay.wiki.model.WikiPage','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,809,'com.liferay.wiki.model.WikiPage','DELETE_DISCUSSION',16) -INSERT INTO RESOURCEACTION VALUES(0,810,'com.liferay.wiki.model.WikiPage','UPDATE',32) -INSERT INTO RESOURCEACTION VALUES(0,811,'com.liferay.wiki.model.WikiPage','SUBSCRIBE',64) -INSERT INTO RESOURCEACTION VALUES(0,812,'com.liferay.wiki.model.WikiPage','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,813,'com.liferay.wiki.model.WikiPage','ADD_DISCUSSION',128) -INSERT INTO RESOURCEACTION VALUES(0,814,'com.liferay.wiki','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,815,'com.liferay.wiki','ADD_NODE',4) -INSERT INTO RESOURCEACTION VALUES(0,816,'com.liferay.wiki.model.WikiNode','ADD_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,817,'com.liferay.wiki.model.WikiNode','IMPORT',4) -INSERT INTO RESOURCEACTION VALUES(0,818,'com.liferay.wiki.model.WikiNode','DELETE',8) -INSERT INTO RESOURCEACTION VALUES(0,819,'com.liferay.wiki.model.WikiNode','PERMISSIONS',16) -INSERT INTO RESOURCEACTION VALUES(0,820,'com.liferay.wiki.model.WikiNode','UPDATE',32) -INSERT INTO RESOURCEACTION VALUES(0,821,'com.liferay.wiki.model.WikiNode','ADD_ATTACHMENT',64) -INSERT INTO RESOURCEACTION VALUES(0,822,'com.liferay.wiki.model.WikiNode','SUBSCRIBE',128) -INSERT INTO RESOURCEACTION VALUES(0,823,'com.liferay.wiki.model.WikiNode','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,824,'com_liferay_wiki_web_portlet_WikiAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,825,'com_liferay_wiki_web_portlet_WikiAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,826,'com_liferay_wiki_web_portlet_WikiAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,827,'com_liferay_wiki_web_portlet_WikiAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,828,'com_liferay_wiki_web_portlet_WikiAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,901,'com_liferay_journal_web_portlet_JournalPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,902,'com_liferay_journal_web_portlet_JournalPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,903,'com_liferay_journal_web_portlet_JournalPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,904,'com_liferay_journal_web_portlet_JournalPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,905,'com_liferay_journal_web_portlet_JournalPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,906,'com.liferay.journal.model.JournalFeed','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,907,'com.liferay.journal.model.JournalFeed','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,908,'com.liferay.journal.model.JournalFeed','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,909,'com.liferay.journal.model.JournalFeed','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,910,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,911,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,912,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,913,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,914,'com.liferay.journal.model.JournalArticle','UPDATE_DISCUSSION',2) -INSERT INTO RESOURCEACTION VALUES(0,915,'com.liferay.journal.model.JournalArticle','DELETE',4) -INSERT INTO RESOURCEACTION VALUES(0,916,'com.liferay.journal.model.JournalArticle','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,917,'com.liferay.journal.model.JournalArticle','EXPIRE',16) -INSERT INTO RESOURCEACTION VALUES(0,918,'com.liferay.journal.model.JournalArticle','DELETE_DISCUSSION',32) -INSERT INTO RESOURCEACTION VALUES(0,919,'com.liferay.journal.model.JournalArticle','UPDATE',64) -INSERT INTO RESOURCEACTION VALUES(0,920,'com.liferay.journal.model.JournalArticle','SUBSCRIBE',128) -INSERT INTO RESOURCEACTION VALUES(0,921,'com.liferay.journal.model.JournalArticle','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,922,'com.liferay.journal.model.JournalArticle','ADD_DISCUSSION',256) -INSERT INTO RESOURCEACTION VALUES(0,923,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,924,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,925,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,926,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,927,'com.liferay.journal','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,928,'com.liferay.journal','ADD_FEED',4) -INSERT INTO RESOURCEACTION VALUES(0,929,'com.liferay.journal','ADD_TEMPLATE',8) -INSERT INTO RESOURCEACTION VALUES(0,930,'com.liferay.journal','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,931,'com.liferay.journal','ADD_ARTICLE',32) -INSERT INTO RESOURCEACTION VALUES(0,932,'com.liferay.journal','SUBSCRIBE',64) -INSERT INTO RESOURCEACTION VALUES(0,933,'com.liferay.journal','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,934,'com.liferay.journal','ADD_FOLDER',128) -INSERT INTO RESOURCEACTION VALUES(0,935,'com.liferay.journal','ADD_STRUCTURE',256) -INSERT INTO RESOURCEACTION VALUES(0,936,'com.liferay.journal.model.JournalFolder','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,937,'com.liferay.journal.model.JournalFolder','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,938,'com.liferay.journal.model.JournalFolder','ADD_SUBFOLDER',8) -INSERT INTO RESOURCEACTION VALUES(0,939,'com.liferay.journal.model.JournalFolder','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,940,'com.liferay.journal.model.JournalFolder','ADD_ARTICLE',32) -INSERT INTO RESOURCEACTION VALUES(0,941,'com.liferay.journal.model.JournalFolder','SUBSCRIBE',64) -INSERT INTO RESOURCEACTION VALUES(0,942,'com.liferay.journal.model.JournalFolder','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,943,'com.liferay.journal.model.JournalFolder','ACCESS',128) -INSERT INTO RESOURCEACTION VALUES(0,1001,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1002,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1003,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1004,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1005,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1006,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1007,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1008,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1009,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1010,'com.liferay.mobile.device.rules.model.MDRRuleGroup','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1011,'com.liferay.mobile.device.rules.model.MDRRuleGroup','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1012,'com.liferay.mobile.device.rules.model.MDRRuleGroup','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1013,'com.liferay.mobile.device.rules.model.MDRRuleGroup','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1014,'com.liferay.mobile.device.rules','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,1015,'com.liferay.mobile.device.rules','ADD_RULE_GROUP',4) -INSERT INTO RESOURCEACTION VALUES(0,1016,'com.liferay.mobile.device.rules','ADD_RULE_GROUP_INSTANCE',8) -INSERT INTO RESOURCEACTION VALUES(0,1017,'com.liferay.mobile.device.rules','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,1018,'com.liferay.mobile.device.rules','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1101,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1102,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1103,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1104,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1105,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1106,'com.liferay.marketplace','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,1107,'com.liferay.marketplace','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1108,'com.liferay.marketplace','ACCESS_IN_CONTROL_PANEL',8) -INSERT INTO RESOURCEACTION VALUES(0,1109,'com.liferay.marketplace','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1110,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1111,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1112,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1113,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1114,'com_liferay_marketplace_store_web_portlet_MarketplacePuchasedPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1115,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1116,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1117,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1118,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1119,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1201,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1202,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1203,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1204,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1205,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1206,'com.liferay.portal.security.service.access.policy','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,1207,'com.liferay.portal.security.service.access.policy','ADD_SAP_ENTRY',4) -INSERT INTO RESOURCEACTION VALUES(0,1208,'com.liferay.portal.security.service.access.policy.model.SAPEntry','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1209,'com.liferay.portal.security.service.access.policy.model.SAPEntry','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1210,'com.liferay.portal.security.service.access.policy.model.SAPEntry','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1211,'com.liferay.portal.security.service.access.policy.model.SAPEntry','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1301,'com.liferay.layout.page.template','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,1302,'com.liferay.layout.page.template','ADD_LAYOUT_PAGE_TEMPLATE_COLLECTION',4) -INSERT INTO RESOURCEACTION VALUES(0,1303,'com.liferay.layout.page.template','ADD_LAYOUT_PAGE_TEMPLATE_ENTRY',8) -INSERT INTO RESOURCEACTION VALUES(0,1304,'com.liferay.layout.page.template','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1305,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1306,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1307,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1308,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1309,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1310,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1311,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1312,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1401,'com_liferay_knowledge_base_web_portlet_AdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1402,'com_liferay_knowledge_base_web_portlet_AdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1403,'com_liferay_knowledge_base_web_portlet_AdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1404,'com_liferay_knowledge_base_web_portlet_AdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1405,'com_liferay_knowledge_base_web_portlet_AdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1406,'com.liferay.knowledge.base.admin','VIEW_SUGGESTIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,1407,'com.liferay.knowledge.base.admin','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1408,'com.liferay.knowledge.base.admin','UPDATE_KB_ARTICLES_PRIORITIES',8) -INSERT INTO RESOURCEACTION VALUES(0,1409,'com.liferay.knowledge.base.admin','ADD_KB_ARTICLE',16) -INSERT INTO RESOURCEACTION VALUES(0,1410,'com.liferay.knowledge.base.admin','DELETE_KB_TEMPLATES',32) -INSERT INTO RESOURCEACTION VALUES(0,1411,'com.liferay.knowledge.base.admin','ADD_KB_FOLDER',64) -INSERT INTO RESOURCEACTION VALUES(0,1412,'com.liferay.knowledge.base.admin','IMPORT_KB_ARTICLES',128) -INSERT INTO RESOURCEACTION VALUES(0,1413,'com.liferay.knowledge.base.admin','DELETE_KB_ARTICLES',256) -INSERT INTO RESOURCEACTION VALUES(0,1414,'com.liferay.knowledge.base.admin','ADD_KB_TEMPLATE',512) -INSERT INTO RESOURCEACTION VALUES(0,1415,'com.liferay.knowledge.base.admin','SUBSCRIBE',1024) -INSERT INTO RESOURCEACTION VALUES(0,1416,'com.liferay.knowledge.base.admin','VIEW_KB_TEMPLATES',2048) -INSERT INTO RESOURCEACTION VALUES(0,1417,'com.liferay.knowledge.base.model.KBFolder','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1418,'com.liferay.knowledge.base.model.KBFolder','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1419,'com.liferay.knowledge.base.model.KBFolder','ADD_KB_ARTICLE',8) -INSERT INTO RESOURCEACTION VALUES(0,1420,'com.liferay.knowledge.base.model.KBFolder','ADD_KB_FOLDER',16) -INSERT INTO RESOURCEACTION VALUES(0,1421,'com.liferay.knowledge.base.model.KBFolder','MOVE_KB_FOLDER',32) -INSERT INTO RESOURCEACTION VALUES(0,1422,'com.liferay.knowledge.base.model.KBFolder','UPDATE',64) -INSERT INTO RESOURCEACTION VALUES(0,1423,'com.liferay.knowledge.base.model.KBFolder','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1424,'com.liferay.knowledge.base.model.KBTemplate','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1425,'com.liferay.knowledge.base.model.KBTemplate','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1426,'com.liferay.knowledge.base.model.KBTemplate','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1427,'com.liferay.knowledge.base.model.KBTemplate','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1428,'com.liferay.knowledge.base.model.KBArticle','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1429,'com.liferay.knowledge.base.model.KBArticle','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1430,'com.liferay.knowledge.base.model.KBArticle','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1431,'com.liferay.knowledge.base.model.KBArticle','MOVE_KB_ARTICLE',16) -INSERT INTO RESOURCEACTION VALUES(0,1432,'com.liferay.knowledge.base.model.KBArticle','SUBSCRIBE',32) -INSERT INTO RESOURCEACTION VALUES(0,1433,'com.liferay.knowledge.base.model.KBArticle','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1434,'com_liferay_knowledge_base_web_portlet_DisplayPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1435,'com_liferay_knowledge_base_web_portlet_DisplayPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1436,'com_liferay_knowledge_base_web_portlet_DisplayPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1437,'com_liferay_knowledge_base_web_portlet_DisplayPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1438,'com_liferay_knowledge_base_web_portlet_DisplayPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1439,'com.liferay.knowledge.base.display','ADMINISTRATOR',2) -INSERT INTO RESOURCEACTION VALUES(0,1440,'com.liferay.knowledge.base.display','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1441,'com.liferay.knowledge.base.display','ADD_KB_ARTICLE',8) -INSERT INTO RESOURCEACTION VALUES(0,1442,'com.liferay.knowledge.base.display','ADD_KB_TEMPLATE',16) -INSERT INTO RESOURCEACTION VALUES(0,1443,'com.liferay.knowledge.base.display','SUBSCRIBE',32) -INSERT INTO RESOURCEACTION VALUES(0,1444,'com.liferay.knowledge.base.display','VIEW_KB_TEMPLATES',64) -INSERT INTO RESOURCEACTION VALUES(0,1501,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1502,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1503,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1504,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1505,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1506,'com.liferay.blogs','ADD_ENTRY',2) -INSERT INTO RESOURCEACTION VALUES(0,1507,'com.liferay.blogs','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1508,'com.liferay.blogs','SUBSCRIBE',8) -INSERT INTO RESOURCEACTION VALUES(0,1509,'com.liferay.blogs.model.BlogsEntry','UPDATE_DISCUSSION',2) -INSERT INTO RESOURCEACTION VALUES(0,1510,'com.liferay.blogs.model.BlogsEntry','DELETE',4) -INSERT INTO RESOURCEACTION VALUES(0,1511,'com.liferay.blogs.model.BlogsEntry','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1512,'com.liferay.blogs.model.BlogsEntry','DELETE_DISCUSSION',16) -INSERT INTO RESOURCEACTION VALUES(0,1513,'com.liferay.blogs.model.BlogsEntry','UPDATE',32) -INSERT INTO RESOURCEACTION VALUES(0,1514,'com.liferay.blogs.model.BlogsEntry','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1515,'com.liferay.blogs.model.BlogsEntry','ADD_DISCUSSION',64) -INSERT INTO RESOURCEACTION VALUES(0,1516,'com_liferay_blogs_web_portlet_BlogsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1517,'com_liferay_blogs_web_portlet_BlogsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1518,'com_liferay_blogs_web_portlet_BlogsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1519,'com_liferay_blogs_web_portlet_BlogsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1520,'com_liferay_blogs_web_portlet_BlogsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1601,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1602,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1603,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1604,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1605,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1606,'com.liferay.dynamic.data.mapping.model.DDMTemplate','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1607,'com.liferay.dynamic.data.mapping.model.DDMTemplate','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1608,'com.liferay.dynamic.data.mapping.model.DDMTemplate','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1609,'com.liferay.dynamic.data.mapping.model.DDMTemplate','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1610,'com.liferay.dynamic.data.mapping.model.DDMStructure','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1611,'com.liferay.dynamic.data.mapping.model.DDMStructure','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1612,'com.liferay.dynamic.data.mapping.model.DDMStructure','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1613,'com.liferay.dynamic.data.mapping.model.DDMStructure','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1614,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1615,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1616,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1617,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1618,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1619,'com.liferay.dynamic.data.mapping','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,1620,'com.liferay.dynamic.data.mapping','ADD_DATA_PROVIDER_INSTANCE',4) -INSERT INTO RESOURCEACTION VALUES(0,1621,'com.liferay.dynamic.data.mapping','ADD_FORM_INSTANCE',8) -INSERT INTO RESOURCEACTION VALUES(0,1622,'com.liferay.dynamic.data.mapping','ADD_STRUCTURE',16) -INSERT INTO RESOURCEACTION VALUES(0,1623,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1624,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1625,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1626,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1627,'com.liferay.dynamic.data.mapping.model.DDMFormInstance','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1628,'com.liferay.dynamic.data.mapping.model.DDMFormInstance','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1629,'com.liferay.dynamic.data.mapping.model.DDMFormInstance','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,1630,'com.liferay.dynamic.data.mapping.model.DDMFormInstance','ADD_FORM_INSTANCE_RECORD',16) -INSERT INTO RESOURCEACTION VALUES(0,1631,'com.liferay.dynamic.data.mapping.model.DDMFormInstance','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1632,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1633,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1634,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1635,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1636,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1701,'com_liferay_audit_web_portlet_AuditPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1702,'com_liferay_audit_web_portlet_AuditPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1703,'com_liferay_audit_web_portlet_AuditPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1704,'com_liferay_audit_web_portlet_AuditPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1705,'com_liferay_audit_web_portlet_AuditPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1801,'com_liferay_polls_web_portlet_PollsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1802,'com_liferay_polls_web_portlet_PollsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1803,'com_liferay_polls_web_portlet_PollsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1804,'com_liferay_polls_web_portlet_PollsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1805,'com_liferay_polls_web_portlet_PollsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1806,'com.liferay.polls.model.PollsQuestion','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1807,'com.liferay.polls.model.PollsQuestion','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1808,'com.liferay.polls.model.PollsQuestion','ADD_VOTE',8) -INSERT INTO RESOURCEACTION VALUES(0,1809,'com.liferay.polls.model.PollsQuestion','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,1810,'com.liferay.polls.model.PollsQuestion','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1811,'com.liferay.polls','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,1812,'com.liferay.polls','ADD_QUESTION',4) -INSERT INTO RESOURCEACTION VALUES(0,1813,'com_liferay_polls_web_portlet_PollsDisplayPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1814,'com_liferay_polls_web_portlet_PollsDisplayPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1815,'com_liferay_polls_web_portlet_PollsDisplayPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1816,'com_liferay_polls_web_portlet_PollsDisplayPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1817,'com_liferay_polls_web_portlet_PollsDisplayPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1901,'com_liferay_calendar_web_portlet_CalendarPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,1902,'com_liferay_calendar_web_portlet_CalendarPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,1903,'com_liferay_calendar_web_portlet_CalendarPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,1904,'com_liferay_calendar_web_portlet_CalendarPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,1905,'com_liferay_calendar_web_portlet_CalendarPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1906,'com.liferay.calendar.model.CalendarResource','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1907,'com.liferay.calendar.model.CalendarResource','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1908,'com.liferay.calendar.model.CalendarResource','ADD_CALENDAR',8) -INSERT INTO RESOURCEACTION VALUES(0,1909,'com.liferay.calendar.model.CalendarResource','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,1910,'com.liferay.calendar.model.CalendarResource','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,1911,'com.liferay.calendar.model.CalendarBooking','UPDATE_DISCUSSION',2) -INSERT INTO RESOURCEACTION VALUES(0,1912,'com.liferay.calendar.model.CalendarBooking','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1913,'com.liferay.calendar.model.CalendarBooking','DELETE_DISCUSSION',8) -INSERT INTO RESOURCEACTION VALUES(0,1914,'com.liferay.calendar.model.CalendarBooking','ADD_DISCUSSION',16) -INSERT INTO RESOURCEACTION VALUES(0,1915,'com.liferay.calendar','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,1916,'com.liferay.calendar','ADD_RESOURCE',4) -INSERT INTO RESOURCEACTION VALUES(0,1917,'com.liferay.calendar.model.Calendar','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,1918,'com.liferay.calendar.model.Calendar','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,1919,'com.liferay.calendar.model.Calendar','MANAGE_BOOKINGS',8) -INSERT INTO RESOURCEACTION VALUES(0,1920,'com.liferay.calendar.model.Calendar','VIEW_BOOKING_DETAILS',16) -INSERT INTO RESOURCEACTION VALUES(0,1921,'com.liferay.calendar.model.Calendar','UPDATE',32) -INSERT INTO RESOURCEACTION VALUES(0,1922,'com.liferay.calendar.model.Calendar','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2001,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2002,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2003,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2004,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2005,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2006,'com.liferay.dynamic.data.lists','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2007,'com.liferay.dynamic.data.lists','ADD_RECORD_SET',4) -INSERT INTO RESOURCEACTION VALUES(0,2008,'com.liferay.dynamic.data.lists','ADD_TEMPLATE',8) -INSERT INTO RESOURCEACTION VALUES(0,2009,'com.liferay.dynamic.data.lists','ADD_STRUCTURE',16) -INSERT INTO RESOURCEACTION VALUES(0,2010,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,2011,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2012,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,2013,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2014,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,2015,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2016,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate','UPDATE',8) -INSERT INTO RESOURCEACTION VALUES(0,2017,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMTemplate','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2018,'com.liferay.dynamic.data.lists.model.DDLRecordSet','DELETE',2) -INSERT INTO RESOURCEACTION VALUES(0,2019,'com.liferay.dynamic.data.lists.model.DDLRecordSet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2020,'com.liferay.dynamic.data.lists.model.DDLRecordSet','ADD_RECORD',8) -INSERT INTO RESOURCEACTION VALUES(0,2021,'com.liferay.dynamic.data.lists.model.DDLRecordSet','UPDATE',16) -INSERT INTO RESOURCEACTION VALUES(0,2022,'com.liferay.dynamic.data.lists.model.DDLRecordSet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2023,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2024,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2025,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2026,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2027,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2101,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2102,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2103,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2104,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2105,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2106,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2107,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2) -INSERT INTO RESOURCEACTION VALUES(0,2108,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2109,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','PREFERENCES',8) -INSERT INTO RESOURCEACTION VALUES(0,2110,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,2111,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2112,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,2113,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2114,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2115,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2116,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2117,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2118,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2119,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2120,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2121,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2122,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2123,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2124,'com_liferay_hello_world_web_portlet_HelloWorldPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2125,'com_liferay_reading_time_web_portlet_ReadingTimePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2126,'com_liferay_reading_time_web_portlet_ReadingTimePortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2127,'com_liferay_reading_time_web_portlet_ReadingTimePortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2128,'com_liferay_reading_time_web_portlet_ReadingTimePortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2129,'com_liferay_reading_time_web_portlet_ReadingTimePortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2130,'com_liferay_reading_time_web_portlet_ReadingTimePortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2131,'com_liferay_user_associated_data_web_portlet_UserAssociatedData','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2132,'com_liferay_user_associated_data_web_portlet_UserAssociatedData','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2133,'com_liferay_user_associated_data_web_portlet_UserAssociatedData','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2134,'com_liferay_user_associated_data_web_portlet_UserAssociatedData','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2135,'com_liferay_user_associated_data_web_portlet_UserAssociatedData','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2136,'com_liferay_user_associated_data_web_portlet_UserAssociatedData','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2137,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','VIEW_GRANTED_AUTHORIZATIONS',32) -INSERT INTO RESOURCEACTION VALUES(0,2138,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet','ACCESS_IN_CONTROL_PANEL',64) -INSERT INTO RESOURCEACTION VALUES(0,2139,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2140,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2141,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2142,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2143,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2144,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2145,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2146,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2147,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2148,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2149,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2150,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2151,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2152,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2153,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2154,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2155,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2156,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2157,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2158,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2159,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2160,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2161,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2162,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2163,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2164,'com_liferay_server_admin_web_portlet_ServerAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2165,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2) -INSERT INTO RESOURCEACTION VALUES(0,2166,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2167,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','PREFERENCES',8) -INSERT INTO RESOURCEACTION VALUES(0,2168,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,2169,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2170,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,2171,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2172,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2173,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2174,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2175,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2176,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2177,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2178,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2179,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2180,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2181,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2182,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2183,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2184,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2185,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2186,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2187,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2188,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2189,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2) -INSERT INTO RESOURCEACTION VALUES(0,2190,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2191,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','PREFERENCES',8) -INSERT INTO RESOURCEACTION VALUES(0,2192,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,2193,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2194,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,2195,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2196,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2197,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2198,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2199,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2200,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2201,'com_liferay_asset_web_portlet_AssetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2202,'com_liferay_asset_web_portlet_AssetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2203,'com_liferay_asset_web_portlet_AssetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2204,'com_liferay_asset_web_portlet_AssetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2205,'com_liferay_asset_web_portlet_AssetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2206,'com_liferay_asset_web_portlet_AssetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2207,'com_liferay_comment_web_portlet_CommentPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2208,'com_liferay_comment_web_portlet_CommentPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2209,'com_liferay_comment_web_portlet_CommentPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2210,'com_liferay_comment_web_portlet_CommentPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2211,'com_liferay_comment_web_portlet_CommentPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2212,'com_liferay_comment_web_portlet_CommentPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2213,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2214,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2215,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2216,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2217,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2218,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2219,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2220,'com_liferay_exportimport_web_portlet_ChangesetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2221,'com_liferay_exportimport_web_portlet_ChangesetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2222,'com_liferay_exportimport_web_portlet_ChangesetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2223,'com_liferay_exportimport_web_portlet_ChangesetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2224,'com_liferay_exportimport_web_portlet_ChangesetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2225,'com_liferay_exportimport_web_portlet_ChangesetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2226,'com_liferay_iframe_web_portlet_IFramePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2227,'com_liferay_iframe_web_portlet_IFramePortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2228,'com_liferay_iframe_web_portlet_IFramePortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2229,'com_liferay_iframe_web_portlet_IFramePortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2230,'com_liferay_iframe_web_portlet_IFramePortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2231,'com_liferay_iframe_web_portlet_IFramePortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2232,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2233,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2234,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2235,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2236,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2237,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2238,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2239,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2240,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2241,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2242,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2243,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2244,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2245,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2246,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2247,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2248,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2249,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2250,'com_liferay_users_admin_web_portlet_UsersAdminPortlet','EXPORT_USER',64) -INSERT INTO RESOURCEACTION VALUES(0,2251,'com_liferay_monitoring_web_portlet_MonitoringPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2252,'com_liferay_monitoring_web_portlet_MonitoringPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2253,'com_liferay_monitoring_web_portlet_MonitoringPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2254,'com_liferay_monitoring_web_portlet_MonitoringPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2255,'com_liferay_monitoring_web_portlet_MonitoringPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2256,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2257,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2258,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2259,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2260,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2261,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2262,'com_liferay_rss_web_portlet_RSSPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2) -INSERT INTO RESOURCEACTION VALUES(0,2263,'com_liferay_rss_web_portlet_RSSPortlet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2264,'com_liferay_rss_web_portlet_RSSPortlet','PREFERENCES',8) -INSERT INTO RESOURCEACTION VALUES(0,2265,'com_liferay_rss_web_portlet_RSSPortlet','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,2266,'com_liferay_rss_web_portlet_RSSPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2267,'com_liferay_rss_web_portlet_RSSPortlet','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,2268,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2269,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2270,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2271,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2272,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2273,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2274,'com_liferay_polls_web_portlet_PollsDisplayPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2275,'com_liferay_polls_web_portlet_PollsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2276,'com_liferay_login_web_portlet_FastLoginPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2277,'com_liferay_login_web_portlet_FastLoginPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2278,'com_liferay_login_web_portlet_FastLoginPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2279,'com_liferay_login_web_portlet_FastLoginPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2280,'com_liferay_login_web_portlet_FastLoginPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2281,'com_liferay_login_web_portlet_FastLoginPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2282,'com_liferay_login_web_portlet_LoginPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2283,'com_liferay_login_web_portlet_LoginPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2284,'com_liferay_login_web_portlet_LoginPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2285,'com_liferay_login_web_portlet_LoginPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2286,'com_liferay_login_web_portlet_LoginPortlet','ADD_TO_PAGE',16) -INSERT INTO RESOURCEACTION VALUES(0,2287,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2288,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2289,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2290,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2291,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2292,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2293,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2294,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2295,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2296,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2297,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2301,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2302,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2303,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2304,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2305,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2306,'com_liferay_image_editor_web_portlet_ImageEditorPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2307,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2308,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet','ADD_SITE_NAVIGATION_MENU',64) -INSERT INTO RESOURCEACTION VALUES(0,2309,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2310,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2311,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2312,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2313,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2314,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2315,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2316,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2317,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2318,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2319,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2320,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2321,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2322,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2323,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2324,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2325,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2326,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2327,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2328,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2329,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2330,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2331,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2332,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2333,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2334,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2335,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2336,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2337,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet','ADD_TO_PAGE',16) -INSERT INTO RESOURCEACTION VALUES(0,2338,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2339,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2340,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2341,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2342,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2343,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2344,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2345,'com_liferay_expando_web_portlet_ExpandoPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2346,'com_liferay_expando_web_portlet_ExpandoPortlet','ADD_EXPANDO',64) -INSERT INTO RESOURCEACTION VALUES(0,2347,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2348,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2349,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2350,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2351,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2352,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2353,'com_liferay_mentions_web_portlet_MentionsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2354,'com_liferay_mentions_web_portlet_MentionsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2355,'com_liferay_mentions_web_portlet_MentionsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2356,'com_liferay_mentions_web_portlet_MentionsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2357,'com_liferay_mentions_web_portlet_MentionsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2358,'com_liferay_mentions_web_portlet_MentionsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2359,'com_liferay_portal_search_web_portlet_SearchPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2360,'com_liferay_portal_search_web_portlet_SearchPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2361,'com_liferay_portal_search_web_portlet_SearchPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2362,'com_liferay_portal_search_web_portlet_SearchPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2363,'com_liferay_portal_search_web_portlet_SearchPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2364,'com_liferay_portal_search_web_portlet_SearchPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2365,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2366,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2367,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2368,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2369,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2370,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2371,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2372,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2373,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2374,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2375,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2376,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2377,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2378,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2379,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2380,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2381,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2382,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2383,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2384,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2385,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2386,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2387,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2388,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2389,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2390,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2391,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2392,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2393,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2394,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2395,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2396,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2397,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2398,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2399,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2400,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2401,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2402,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2403,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2404,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2405,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2406,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2407,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2408,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2409,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2410,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2411,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2412,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2413,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2414,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2415,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2416,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2417,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2418,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2419,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2420,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2421,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2422,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2423,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2424,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2425,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2426,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2427,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2428,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2429,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2430,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2431,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2432,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2433,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2434,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2435,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2436,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2437,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2438,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2439,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2440,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2441,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2442,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2443,'com_liferay_fragment_web_portlet_FragmentPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2444,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2445,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2446,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2447,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2448,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2449,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2450,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2451,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2452,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2453,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2454,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2455,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2456,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2457,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2458,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2459,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2460,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2461,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2462,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2463,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2464,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2465,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2466,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2467,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2468,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2469,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2470,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2471,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2472,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2473,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2474,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2475,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2476,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2477,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2478,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2479,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2480,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2481,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2482,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2483,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2484,'com_liferay_site_my_sites_web_portlet_MySitesPortlet','ADD_TO_PAGE',16) -INSERT INTO RESOURCEACTION VALUES(0,2485,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2486,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2487,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2488,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2489,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2490,'com_liferay_flags_web_portlet_FlagsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2491,'com_liferay_flags_web_portlet_FlagsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2492,'com_liferay_flags_web_portlet_FlagsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2493,'com_liferay_flags_web_portlet_FlagsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2494,'com_liferay_flags_web_portlet_FlagsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2495,'com_liferay_flags_web_portlet_FlagsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2501,'com_liferay_flags_web_portlet_PageFlagsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2502,'com_liferay_flags_web_portlet_PageFlagsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2503,'com_liferay_flags_web_portlet_PageFlagsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2504,'com_liferay_flags_web_portlet_PageFlagsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2505,'com_liferay_flags_web_portlet_PageFlagsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2506,'com_liferay_flags_web_portlet_PageFlagsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2507,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2508,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2509,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2510,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2511,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2512,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2513,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2514,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2515,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2516,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2517,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2518,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2519,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2520,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2521,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2522,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2523,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2524,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2525,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2526,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2527,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2528,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2529,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2530,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2531,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2532,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2533,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2534,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2535,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2536,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2537,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2538,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2539,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2540,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2541,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2542,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2543,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2544,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2545,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2546,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2547,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2548,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2549,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2550,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2551,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2552,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2553,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2554,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2555,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2556,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2557,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2558,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2559,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2560,'com_liferay_document_library_web_portlet_DLAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2561,'com_liferay_document_library_web_portlet_DLPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',32) -INSERT INTO RESOURCEACTION VALUES(0,2562,'com_liferay_document_library_web_portlet_IGDisplayPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2563,'com_liferay_my_account_web_portlet_MyAccountPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2564,'com_liferay_my_account_web_portlet_MyAccountPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2565,'com_liferay_my_account_web_portlet_MyAccountPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2566,'com_liferay_my_account_web_portlet_MyAccountPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2567,'com_liferay_my_account_web_portlet_MyAccountPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2568,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2569,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2570,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2571,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2572,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2573,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2574,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2575,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2576,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2577,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2578,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2579,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2580,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2581,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2582,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2583,'com_liferay_exportimport_web_portlet_ExportImportPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2584,'com_liferay_exportimport_web_portlet_ExportImportPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2585,'com_liferay_exportimport_web_portlet_ExportImportPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2586,'com_liferay_exportimport_web_portlet_ExportImportPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2587,'com_liferay_exportimport_web_portlet_ExportImportPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2588,'com_liferay_exportimport_web_portlet_ExportImportPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2589,'com_liferay_exportimport_web_portlet_ExportPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2590,'com_liferay_exportimport_web_portlet_ExportPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2591,'com_liferay_exportimport_web_portlet_ExportPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2592,'com_liferay_exportimport_web_portlet_ExportPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2593,'com_liferay_exportimport_web_portlet_ExportPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2594,'com_liferay_exportimport_web_portlet_ExportPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2595,'com_liferay_exportimport_web_portlet_ImportPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2596,'com_liferay_exportimport_web_portlet_ImportPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2597,'com_liferay_exportimport_web_portlet_ImportPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2598,'com_liferay_exportimport_web_portlet_ImportPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2599,'com_liferay_exportimport_web_portlet_ImportPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2600,'com_liferay_exportimport_web_portlet_ImportPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2601,'com_liferay_trash_web_portlet_TrashPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2602,'com_liferay_trash_web_portlet_TrashPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2603,'com_liferay_trash_web_portlet_TrashPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2604,'com_liferay_trash_web_portlet_TrashPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2605,'com_liferay_trash_web_portlet_TrashPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2606,'com_liferay_trash_web_portlet_TrashPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2607,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2608,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2609,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2610,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2611,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2612,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2613,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2614,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2615,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2616,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2617,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2618,'com_liferay_staging_bar_web_portlet_StagingBarPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2619,'com_liferay_site_admin_web_portlet_SiteAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2620,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2621,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2622,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2623,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2624,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2625,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2626,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2627,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2628,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2629,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2630,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2631,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2632,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2633,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2634,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2635,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2636,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2637,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2638,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2639,'com_liferay_wiki_web_portlet_WikiAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2640,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2641,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2642,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2643,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2644,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2645,'com_liferay_wiki_web_portlet_WikiDisplayPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2646,'com_liferay_wiki_web_portlet_WikiPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',32) -INSERT INTO RESOURCEACTION VALUES(0,2647,'com_liferay_message_boards_web_portlet_MBAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2648,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2649,'com_liferay_blogs_web_portlet_BlogsAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2650,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2651,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2652,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2653,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2654,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2655,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2656,'com_liferay_blogs_web_portlet_BlogsPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',32) -INSERT INTO RESOURCEACTION VALUES(0,2657,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2658,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2659,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2660,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2661,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2662,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2663,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2664,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2) -INSERT INTO RESOURCEACTION VALUES(0,2665,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2666,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','PREFERENCES',8) -INSERT INTO RESOURCEACTION VALUES(0,2667,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,2668,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2669,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,2670,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2) -INSERT INTO RESOURCEACTION VALUES(0,2671,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2672,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','PREFERENCES',8) -INSERT INTO RESOURCEACTION VALUES(0,2673,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,2674,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2675,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,2676,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2) -INSERT INTO RESOURCEACTION VALUES(0,2677,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2678,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','PREFERENCES',8) -INSERT INTO RESOURCEACTION VALUES(0,2679,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,2680,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2681,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,2682,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2683,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2684,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2685,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2686,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2687,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2688,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2689,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2690,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2691,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2692,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2693,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2694,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2695,'com_liferay_knowledge_base_web_portlet_AdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2696,'com_liferay_knowledge_base_web_portlet_ArticlePortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2697,'com_liferay_knowledge_base_web_portlet_ArticlePortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2698,'com_liferay_knowledge_base_web_portlet_ArticlePortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2699,'com_liferay_knowledge_base_web_portlet_ArticlePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2700,'com_liferay_knowledge_base_web_portlet_ArticlePortlet','ADD_TO_PAGE',16) -INSERT INTO RESOURCEACTION VALUES(0,2701,'com_liferay_knowledge_base_web_portlet_SearchPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2702,'com_liferay_knowledge_base_web_portlet_SearchPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2703,'com_liferay_knowledge_base_web_portlet_SearchPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2704,'com_liferay_knowledge_base_web_portlet_SearchPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2705,'com_liferay_knowledge_base_web_portlet_SearchPortlet','ADD_TO_PAGE',16) -INSERT INTO RESOURCEACTION VALUES(0,2706,'com_liferay_knowledge_base_web_portlet_SectionPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2707,'com_liferay_knowledge_base_web_portlet_SectionPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2708,'com_liferay_knowledge_base_web_portlet_SectionPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2709,'com_liferay_knowledge_base_web_portlet_SectionPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2710,'com_liferay_knowledge_base_web_portlet_SectionPortlet','ADD_TO_PAGE',16) -INSERT INTO RESOURCEACTION VALUES(0,2711,'com_liferay_notifications_web_portlet_NotificationsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2712,'com_liferay_notifications_web_portlet_NotificationsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2713,'com_liferay_notifications_web_portlet_NotificationsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2714,'com_liferay_notifications_web_portlet_NotificationsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2715,'com_liferay_notifications_web_portlet_NotificationsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2716,'com_liferay_notifications_web_portlet_NotificationsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2717,'com_liferay_journal_content_web_portlet_JournalContentPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2718,'com_liferay_journal_content_web_portlet_JournalContentPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2719,'com_liferay_journal_content_web_portlet_JournalContentPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2720,'com_liferay_journal_content_web_portlet_JournalContentPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2721,'com_liferay_journal_content_web_portlet_JournalContentPortlet','ADD_TO_PAGE',16) -INSERT INTO RESOURCEACTION VALUES(0,2722,'com_liferay_journal_web_portlet_JournalPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2723,'com_liferay_adaptive_media_web_portlet_AMPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2724,'com_liferay_adaptive_media_web_portlet_AMPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2725,'com_liferay_adaptive_media_web_portlet_AMPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2726,'com_liferay_adaptive_media_web_portlet_AMPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2727,'com_liferay_adaptive_media_web_portlet_AMPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2728,'com_liferay_adaptive_media_web_portlet_AMPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2729,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','ADD_PORTLET_DISPLAY_TEMPLATE',2) -INSERT INTO RESOURCEACTION VALUES(0,2730,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','PERMISSIONS',4) -INSERT INTO RESOURCEACTION VALUES(0,2731,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','PREFERENCES',8) -INSERT INTO RESOURCEACTION VALUES(0,2732,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','CONFIGURATION',16) -INSERT INTO RESOURCEACTION VALUES(0,2733,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','SUBSCRIBE',32) -INSERT INTO RESOURCEACTION VALUES(0,2734,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2735,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet','ADD_TO_PAGE',64) -INSERT INTO RESOURCEACTION VALUES(0,2736,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2737,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2738,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2739,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2740,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2741,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2742,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2743,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2744,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2745,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2746,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2747,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2748,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2749,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2750,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2751,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2752,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2753,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2754,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2755,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2756,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2757,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2758,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2759,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2760,'com_liferay_calendar_web_portlet_CalendarPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2761,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2762,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2763,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2764,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2765,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2766,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2767,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2768,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','PERMISSIONS',2) -INSERT INTO RESOURCEACTION VALUES(0,2769,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','PREFERENCES',4) -INSERT INTO RESOURCEACTION VALUES(0,2770,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','CONFIGURATION',8) -INSERT INTO RESOURCEACTION VALUES(0,2771,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','ACCESS_IN_CONTROL_PANEL',16) -INSERT INTO RESOURCEACTION VALUES(0,2772,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2773,'com_liferay_contacts_web_portlet_ContactsCenterPortlet','ADD_TO_PAGE',32) -INSERT INTO RESOURCEACTION VALUES(0,2774,'com_liferay_contacts_web_portlet_MembersPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2775,'com_liferay_contacts_web_portlet_MembersPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2776,'com_liferay_contacts_web_portlet_MembersPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2777,'com_liferay_contacts_web_portlet_MembersPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2778,'com_liferay_contacts_web_portlet_MembersPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2779,'com_liferay_contacts_web_portlet_MembersPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2780,'com_liferay_contacts_web_portlet_MyContactsPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2781,'com_liferay_contacts_web_portlet_MyContactsPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2782,'com_liferay_contacts_web_portlet_MyContactsPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2783,'com_liferay_contacts_web_portlet_MyContactsPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2784,'com_liferay_contacts_web_portlet_MyContactsPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2785,'com_liferay_contacts_web_portlet_MyContactsPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2786,'com_liferay_contacts_web_portlet_ProfilePortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2787,'com_liferay_contacts_web_portlet_ProfilePortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2788,'com_liferay_contacts_web_portlet_ProfilePortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2789,'com_liferay_contacts_web_portlet_ProfilePortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2790,'com_liferay_contacts_web_portlet_ProfilePortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2791,'com_liferay_contacts_web_portlet_ProfilePortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2792,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','VIEW',1) -INSERT INTO RESOURCEACTION VALUES(0,2793,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','ADD_TO_PAGE',2) -INSERT INTO RESOURCEACTION VALUES(0,2794,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','CONFIGURATION',4) -INSERT INTO RESOURCEACTION VALUES(0,2795,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','PERMISSIONS',8) -INSERT INTO RESOURCEACTION VALUES(0,2796,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','PREFERENCES',16) -INSERT INTO RESOURCEACTION VALUES(0,2797,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2798,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEACTION VALUES(0,2799,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet','ACCESS_IN_CONTROL_PANEL',32) -INSERT INTO RESOURCEPERMISSION VALUES(0,1,20099,'com.liferay.portal.kernel.model.Role',4,'20105',20105,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,2,20099,'com.liferay.portal.kernel.model.Role',4,'20106',20106,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,3,20099,'com.liferay.portal.kernel.model.Role',4,'20107',20107,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,4,20099,'com.liferay.portal.kernel.model.Role',4,'20108',20108,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,5,20099,'com.liferay.portal.kernel.model.Role',4,'20109',20109,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,6,20099,'com.liferay.portal.kernel.model.Role',4,'20110',20110,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,7,20099,'com.liferay.portal.kernel.model.Role',4,'20111',20111,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,8,20099,'com.liferay.portal.kernel.model.Role',4,'20112',20112,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,9,20099,'com.liferay.portal.kernel.model.Role',4,'20113',20113,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,10,20099,'com.liferay.portal.kernel.model.Role',4,'20114',20114,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,11,20099,'com.liferay.portal.kernel.model.Role',4,'20115',20115,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,12,20099,'com.liferay.portal.kernel.model.Role',4,'20105',20105,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,13,20099,'com.liferay.portal.kernel.model.Role',4,'20106',20106,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,14,20099,'com.liferay.portal.kernel.model.Role',4,'20107',20107,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,15,20099,'com.liferay.portal.kernel.model.Role',4,'20108',20108,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,16,20099,'com.liferay.portal.kernel.model.Role',4,'20109',20109,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,17,20099,'com.liferay.portal.kernel.model.Role',4,'20110',20110,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,18,20099,'com.liferay.portal.kernel.model.Role',4,'20111',20111,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,19,20099,'com.liferay.portal.kernel.model.Role',4,'20112',20112,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,20,20099,'com.liferay.portal.kernel.model.Role',4,'20113',20113,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,21,20099,'com.liferay.portal.kernel.model.Role',4,'20114',20114,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,22,20099,'com.liferay.portal.kernel.model.Role',4,'20115',20115,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,23,20099,'com.liferay.portal.kernel.model.Group',4,'20116',20116,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,24,20099,'com.liferay.portal.kernel.model.Layout',4,'20120',20120,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,25,20099,'com.liferay.portal.kernel.model.Layout',4,'20120',20120,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,26,20099,'com.liferay.portal.kernel.model.Layout',4,'20120',20120,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,27,20099,'com.liferay.portal.kernel.model.Group',4,'20123',20123,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,28,20099,'com.liferay.portal.kernel.model.Group',4,'20126',20126,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,29,20099,'com.liferay.portal.kernel.model.Layout',4,'20129',20129,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,30,20099,'com.liferay.portal.kernel.model.Layout',4,'20129',20129,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,31,20099,'com.liferay.portal.kernel.model.Layout',4,'20129',20129,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,32,20099,'com.liferay.portal.kernel.model.Group',4,'20132',20132,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,33,20099,'com.liferay.portal.kernel.model.Layout',2,'20132',20132,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,34,20099,'com.liferay.portal.kernel.model.Group',2,'20132',20132,20108,0,1280,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,35,20099,'com.liferay.portal.kernel.model.Group',4,'20135',20135,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,36,20099,'com.liferay.portal.kernel.model.PasswordPolicy',4,'20138',20138,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,37,20099,'com.liferay.portal.kernel.model.Group',4,'20142',20142,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,38,20099,'com.liferay.portal.kernel.model.User',4,'20139',20139,20107,20139,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,39,20099,'90',4,'90',90,20107,0,65534,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,40,20099,'com.liferay.portal.kernel.model.LayoutPrototype',4,'20146',20146,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,41,20099,'com.liferay.portal.kernel.model.Group',4,'20147',20147,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,42,20099,'com.liferay.portal.kernel.model.Layout',4,'20150',20150,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,43,20099,'com.liferay.portal.kernel.model.Layout',4,'20150',20150,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,44,20099,'com.liferay.portal.kernel.model.Layout',4,'20164',20164,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,45,20099,'com.liferay.portal.kernel.model.Layout',4,'20164',20164,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,46,20099,'com.liferay.portal.kernel.model.Layout',4,'20164',20164,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,101,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30403',30403,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,102,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30404',30404,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,103,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30405',30405,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,104,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30406',30406,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,105,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30407',30407,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,106,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30408',30408,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,107,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30409',30409,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,108,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30409',30409,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,109,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30410',30410,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,110,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30410',30410,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,111,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'30411',30411,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,201,20099,'com.liferay.portal.kernel.model.Role',4,'32114',32114,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,202,20099,'com.liferay.portal.kernel.model.Role',4,'32120',32120,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,203,20099,'com.liferay.portal.kernel.model.Role',4,'32123',32123,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,204,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'32133',32133,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,205,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'32134',32134,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,206,20099,'com.liferay.oauth2.provider.model.OAuth2Application',4,'1',1,20107,20103,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,207,20099,'com.liferay.document.library.kernel.model.DLFolder',4,'32137',32137,20107,20103,511,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,208,20099,'com.liferay.document.library.kernel.model.DLFolder',4,'32137',32137,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,209,20099,'com.liferay.document.library.kernel.model.DLFolder',4,'32140',32140,20107,20103,511,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,210,20099,'com.liferay.document.library.kernel.model.DLFolder',4,'32140',32140,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,211,20099,'com.liferay.document.library.kernel.model.DLFileEntry',4,'32141',32141,20107,20103,255,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,212,20099,'com.liferay.document.library.kernel.model.DLFileEntry',4,'32141',32141,20109,0,129,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,213,20099,'com.liferay.document.library.kernel.model.DLFileEntry',4,'32141',32141,20106,0,129,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,301,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32203',32203,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,302,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32203',32203,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,303,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32206',32206,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,304,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32206',32206,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,305,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32209',32209,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,306,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32209',32209,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,307,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32212',32212,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,308,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32212',32212,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,309,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32216',32216,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,310,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32216',32216,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,311,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32220',32220,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,312,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32220',32220,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,313,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32223',32223,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,314,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32223',32223,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,315,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32226',32226,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,316,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32226',32226,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,317,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32229',32229,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,318,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32229',32229,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,319,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32232',32232,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,320,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32232',32232,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,321,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32235',32235,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,322,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32235',32235,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,323,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32238',32238,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,324,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32238',32238,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,325,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32241',32241,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,326,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32241',32241,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,327,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32244',32244,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,328,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32244',32244,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,329,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32247',32247,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,330,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32247',32247,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,331,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32250',32250,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,332,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32250',32250,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,333,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32253',32253,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,334,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32253',32253,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,335,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32256',32256,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,336,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32256',32256,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,337,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32259',32259,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,338,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32259',32259,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,339,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32262',32262,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,340,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32262',32262,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,341,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32266',32266,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,342,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32266',32266,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,343,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32269',32269,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,344,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32269',32269,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,345,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32272',32272,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,346,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32272',32272,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,347,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32275',32275,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,348,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32275',32275,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,349,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32278',32278,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,350,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32278',32278,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,351,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32281',32281,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,352,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32281',32281,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,353,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32284',32284,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,354,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32284',32284,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,355,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32287',32287,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,356,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32287',32287,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,357,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32287',32287,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,358,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32290',32290,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,359,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32290',32290,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,360,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32290',32290,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,361,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32293',32293,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,362,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32293',32293,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,363,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32293',32293,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,364,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32297',32297,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,365,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32297',32297,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,366,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32297',32297,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,367,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32296',32296,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,368,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32296',32296,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,369,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32296',32296,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,370,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32302',32302,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,371,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32302',32302,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,372,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32302',32302,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,373,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32301',32301,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,374,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32301',32301,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,375,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32301',32301,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,376,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32308',32308,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,377,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32308',32308,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,378,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32308',32308,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,379,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32307',32307,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,380,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32307',32307,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,381,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32307',32307,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,382,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32314',32314,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,383,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32314',32314,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,384,20099,'com.liferay.document.library.kernel.model.DLFileEntryMetadata-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32314',32314,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,385,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32313',32313,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,386,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32313',32313,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,387,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'32313',32313,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,388,20099,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32319',32319,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,389,20099,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32319',32319,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,390,20099,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'32319',32319,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,401,20099,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',4,'32503',32503,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,402,20099,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',4,'32503',32503,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,403,20099,'com.liferay.dynamic.data.mapping.model.DDMStructure-com.liferay.journal.model.JournalArticle',4,'32503',32503,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,404,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',4,'32506',32506,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,405,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',4,'32506',32506,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,406,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate-com.liferay.journal.model.JournalArticle',4,'32506',32506,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,501,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32701',32701,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,502,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32701',32701,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,503,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32704',32704,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,504,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'32704',32704,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,601,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33203',33203,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,602,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33203',33203,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,603,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33203',33203,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,604,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33206',33206,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,605,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33206',33206,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,606,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33206',33206,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,607,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33209',33209,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,608,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33209',33209,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,609,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33209',33209,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,610,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33212',33212,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,611,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33212',33212,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,612,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33212',33212,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,613,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33215',33215,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,614,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33215',33215,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,615,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33215',33215,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,616,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33218',33218,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,617,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33218',33218,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,618,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet-com.liferay.dynamic.data.mapping.model.DDMStructure',4,'33218',33218,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,619,20099,'com.liferay.expando.kernel.model.ExpandoColumn',4,'33222',33222,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,620,20099,'com.liferay.expando.kernel.model.ExpandoColumn',4,'33223',33223,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,621,20099,'com.liferay.expando.kernel.model.ExpandoColumn',4,'33225',33225,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,622,20099,'com.liferay.expando.kernel.model.ExpandoColumn',4,'33226',33226,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,623,20099,'com.liferay.expando.kernel.model.ExpandoColumn',4,'33227',33227,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,624,20099,'com.liferay.expando.kernel.model.ExpandoColumn',4,'33228',33228,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,625,20099,'com.liferay.portal.kernel.model.Layout',4,'33229',33229,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,626,20099,'com.liferay.portal.kernel.model.Layout',4,'33229',33229,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,627,20099,'com.liferay.portal.kernel.model.Layout',4,'33229',33229,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,628,20099,'com.liferay.portal.kernel.model.Layout',4,'33232',33232,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,629,20099,'com.liferay.portal.kernel.model.Layout',4,'33232',33232,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,630,20099,'com.liferay.portal.kernel.model.Layout',2,'20123',20123,20109,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,631,20099,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',4,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,632,20099,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',4,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,633,20099,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',4,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,634,20099,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,635,20099,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,636,20099,'com_liferay_site_navigation_directory_web_portlet_SitesDirectoryPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,637,20099,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',4,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,638,20099,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',4,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,639,20099,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',4,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,640,20099,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',1,'20099',20099,20106,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,641,20099,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',1,'20099',20099,20108,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,642,20099,'com_liferay_site_navigation_site_map_web_portlet_SiteNavigationSiteMapPortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,643,20099,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',4,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,644,20099,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',4,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,645,20099,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',4,'com_liferay_site_browser_web_portlet_SiteBrowserPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,646,20099,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',4,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,647,20099,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',4,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,648,20099,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',4,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,649,20099,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,650,20099,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,651,20099,'com_liferay_hello_world_web_portlet_HelloWorldPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,652,20099,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',4,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,653,20099,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',4,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,654,20099,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',4,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,655,20099,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,656,20099,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,657,20099,'com_liferay_reading_time_web_portlet_ReadingTimePortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,658,20099,'com_liferay_user_associated_data_web_portlet_UserAssociatedData',4,'com_liferay_user_associated_data_web_portlet_UserAssociatedData',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,659,20099,'com_liferay_user_associated_data_web_portlet_UserAssociatedData',4,'com_liferay_user_associated_data_web_portlet_UserAssociatedData',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,660,20099,'com_liferay_user_associated_data_web_portlet_UserAssociatedData',4,'com_liferay_user_associated_data_web_portlet_UserAssociatedData',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,661,20099,'com_liferay_user_associated_data_web_portlet_UserAssociatedData',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,662,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet',4,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet',0,20107,0,125,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,663,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet',4,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,664,20099,'com.liferay.oauth2.provider',4,'com.liferay.oauth2.provider',0,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,665,20099,'com.liferay.oauth2.provider.model.OAuth2Application',4,'com.liferay.oauth2.provider.model.OAuth2Application',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,666,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet',4,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,667,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet',4,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2AuthorizePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,668,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet',4,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,669,20099,'com_liferay_oauth2_provider_web_internal_portlet_OAuth2ConnectedApplicationsPortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,670,20099,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',4,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,671,20099,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',4,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,672,20099,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',4,'com_liferay_portal_settings_web_portlet_PortalSettingsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,673,20099,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',4,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,674,20099,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',4,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,675,20099,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',4,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,676,20099,'com_liferay_license_manager_web_portlet_LicenseManagerPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,677,20099,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',4,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,678,20099,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',4,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,679,20099,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',4,'com_liferay_server_admin_web_portlet_ServerAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,680,20099,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',4,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,681,20099,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',4,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,682,20099,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',4,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,683,20099,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',1,'20099',20099,20106,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,684,20099,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',1,'20099',20099,20108,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,685,20099,'com_liferay_asset_categories_navigation_web_portlet_AssetCategoriesNavigationPortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,686,20099,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',4,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,687,20099,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',4,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,688,20099,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',4,'com_liferay_asset_display_web_portlet_AssetDisplayPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,689,20099,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',4,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,690,20099,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',4,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,691,20099,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',4,'com_liferay_asset_tags_compiler_web_portlet_AssetTagsCompilerPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,692,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,693,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,694,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,695,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,696,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,697,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsCloudPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,698,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,699,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,700,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',4,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,701,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',1,'20099',20099,20106,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,702,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',1,'20099',20099,20108,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,703,20099,'com_liferay_asset_tags_navigation_web_portlet_AssetTagsNavigationPortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,704,20099,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet',4,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,705,20099,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet',4,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,706,20099,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet',4,'com_liferay_asset_tags_selector_web_portlet_AssetTagsSelectorPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,707,20099,'com_liferay_asset_web_portlet_AssetPortlet',4,'com_liferay_asset_web_portlet_AssetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,708,20099,'com_liferay_asset_web_portlet_AssetPortlet',4,'com_liferay_asset_web_portlet_AssetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,709,20099,'com_liferay_asset_web_portlet_AssetPortlet',4,'com_liferay_asset_web_portlet_AssetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,710,20099,'com_liferay_comment_web_portlet_CommentPortlet',4,'com_liferay_comment_web_portlet_CommentPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,711,20099,'com_liferay_comment_web_portlet_CommentPortlet',4,'com_liferay_comment_web_portlet_CommentPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,712,20099,'com_liferay_comment_web_portlet_CommentPortlet',4,'com_liferay_comment_web_portlet_CommentPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,713,20099,'com_liferay_comment_web_portlet_CommentPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,714,20099,'com_liferay_comment_web_portlet_CommentPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,715,20099,'com_liferay_comment_web_portlet_CommentPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,716,20099,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',4,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,717,20099,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',4,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,718,20099,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',4,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,719,20099,'com.liferay.portal.kernel.model.LayoutPrototype',4,'com.liferay.portal.kernel.model.LayoutPrototype',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,720,20099,'com.liferay.portal.kernel.model.LayoutPrototype',4,'com.liferay.portal.kernel.model.LayoutPrototype',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,721,20099,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,722,20099,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,723,20099,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,724,20099,'com_liferay_layout_prototype_web_portlet_LayoutPrototypePortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,725,20099,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet',4,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,726,20099,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet',4,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,727,20099,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet',4,'com_liferay_layout_type_controller_content_internal_portlet_ContentPageEditorPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,728,20099,'com_liferay_exportimport_web_portlet_ChangesetPortlet',4,'com_liferay_exportimport_web_portlet_ChangesetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,729,20099,'com_liferay_exportimport_web_portlet_ChangesetPortlet',4,'com_liferay_exportimport_web_portlet_ChangesetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,730,20099,'com_liferay_exportimport_web_portlet_ChangesetPortlet',4,'com_liferay_exportimport_web_portlet_ChangesetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,731,20099,'com_liferay_exportimport_web_portlet_ChangesetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,732,20099,'com_liferay_exportimport_web_portlet_ChangesetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,733,20099,'com_liferay_iframe_web_portlet_IFramePortlet',4,'com_liferay_iframe_web_portlet_IFramePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,734,20099,'com_liferay_iframe_web_portlet_IFramePortlet',4,'com_liferay_iframe_web_portlet_IFramePortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,735,20099,'com_liferay_iframe_web_portlet_IFramePortlet',4,'com_liferay_iframe_web_portlet_IFramePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,736,20099,'com_liferay_iframe_web_portlet_IFramePortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,737,20099,'com_liferay_iframe_web_portlet_IFramePortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,738,20099,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',4,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,739,20099,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',4,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,740,20099,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',4,'com_liferay_portal_instances_web_portlet_PortalInstancesPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,741,20099,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',4,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,742,20099,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',4,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,743,20099,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',4,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,744,20099,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(1,745,20099,'com_liferay_portal_workflow_task_web_portlet_MyWorkflowTaskPortlet',1,'20099',20099,20109,0,34,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,746,20099,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',4,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,747,20099,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',4,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,748,20099,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',4,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,749,20099,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,750,20099,'com_liferay_users_admin_web_portlet_MyOrganizationsPortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,751,20099,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',4,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,752,20099,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',4,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',0,20107,0,125,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,753,20099,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',4,'com_liferay_users_admin_web_portlet_UsersAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,754,20099,'com.liferay.portal.kernel.model.User',4,'com.liferay.portal.kernel.model.User',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,755,20099,'com.liferay.portal.kernel.model.Organization',4,'com.liferay.portal.kernel.model.Organization',0,20107,0,2047,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,756,20099,'com_liferay_monitoring_web_portlet_MonitoringPortlet',4,'com_liferay_monitoring_web_portlet_MonitoringPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,757,20099,'com_liferay_monitoring_web_portlet_MonitoringPortlet',4,'com_liferay_monitoring_web_portlet_MonitoringPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,758,20099,'com_liferay_monitoring_web_portlet_MonitoringPortlet',4,'com_liferay_monitoring_web_portlet_MonitoringPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,759,20099,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',4,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,760,20099,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',4,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,761,20099,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',4,'com_liferay_portlet_configuration_sharing_web_portlet_PortletConfigurationSharingPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,762,20099,'com_liferay_rss_web_portlet_RSSPortlet',4,'com_liferay_rss_web_portlet_RSSPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,763,20099,'com_liferay_rss_web_portlet_RSSPortlet',4,'com_liferay_rss_web_portlet_RSSPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,764,20099,'com_liferay_rss_web_portlet_RSSPortlet',4,'com_liferay_rss_web_portlet_RSSPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,765,20099,'com_liferay_rss_web_portlet_RSSPortlet',1,'20099',20099,20108,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,766,20099,'com_liferay_rss_web_portlet_RSSPortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,767,20099,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',4,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,768,20099,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',4,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,769,20099,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',4,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,770,20099,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,771,20099,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,772,20099,'com_liferay_subscription_web_internal_portlet_UnsubscribePortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,773,20099,'com_liferay_polls_web_portlet_PollsDisplayPortlet',4,'com_liferay_polls_web_portlet_PollsDisplayPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,774,20099,'com_liferay_polls_web_portlet_PollsDisplayPortlet',4,'com_liferay_polls_web_portlet_PollsDisplayPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,775,20099,'com_liferay_polls_web_portlet_PollsDisplayPortlet',4,'com_liferay_polls_web_portlet_PollsDisplayPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,776,20099,'com.liferay.polls.model.PollsQuestion',4,'com.liferay.polls.model.PollsQuestion',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,777,20099,'com.liferay.polls.model.PollsQuestion',4,'com.liferay.polls.model.PollsQuestion',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,778,20099,'com.liferay.polls',4,'com.liferay.polls',0,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,779,20099,'com_liferay_polls_web_portlet_PollsDisplayPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,780,20099,'com_liferay_polls_web_portlet_PollsDisplayPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,781,20099,'com_liferay_polls_web_portlet_PollsPortlet',4,'com_liferay_polls_web_portlet_PollsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,782,20099,'com_liferay_polls_web_portlet_PollsPortlet',4,'com_liferay_polls_web_portlet_PollsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,783,20099,'com_liferay_polls_web_portlet_PollsPortlet',4,'com_liferay_polls_web_portlet_PollsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,784,20099,'com_liferay_polls_web_portlet_PollsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,785,20099,'com_liferay_polls_web_portlet_PollsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,786,20099,'com_liferay_polls_web_portlet_PollsPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,787,20099,'com.liferay.polls',2,'20132',20132,20108,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,788,20099,'com_liferay_login_web_portlet_FastLoginPortlet',4,'com_liferay_login_web_portlet_FastLoginPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,789,20099,'com_liferay_login_web_portlet_FastLoginPortlet',4,'com_liferay_login_web_portlet_FastLoginPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,790,20099,'com_liferay_login_web_portlet_FastLoginPortlet',4,'com_liferay_login_web_portlet_FastLoginPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,791,20099,'com_liferay_login_web_portlet_FastLoginPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,792,20099,'com_liferay_login_web_portlet_FastLoginPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,793,20099,'com_liferay_login_web_portlet_FastLoginPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,794,20099,'com_liferay_login_web_portlet_LoginPortlet',4,'com_liferay_login_web_portlet_LoginPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,795,20099,'com_liferay_login_web_portlet_LoginPortlet',4,'com_liferay_login_web_portlet_LoginPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,796,20099,'com_liferay_login_web_portlet_LoginPortlet',4,'com_liferay_login_web_portlet_LoginPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,797,20099,'com_liferay_login_web_portlet_LoginPortlet',1,'20099',20099,20106,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,798,20099,'com_liferay_login_web_portlet_LoginPortlet',1,'20099',20099,20108,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,799,20099,'com_liferay_login_web_portlet_LoginPortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,800,20099,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',4,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,801,20099,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',4,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,802,20099,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',4,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,803,20099,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,804,20099,'com_liferay_configuration_admin_web_portlet_SystemSettingsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,805,20099,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet',4,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,806,20099,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet',4,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,807,20099,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet',4,'com_liferay_portal_search_admin_web_portlet_SearchAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,808,20099,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',4,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,809,20099,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',4,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,810,20099,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',4,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,811,20099,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,812,20099,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,813,20099,'com_liferay_image_editor_web_portlet_ImageEditorPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,814,20099,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet',4,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,815,20099,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet',4,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet',0,20107,0,125,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,816,20099,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet',4,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,817,20099,'com.liferay.site.navigation.model.SiteNavigationMenuItem',4,'com.liferay.site.navigation.model.SiteNavigationMenuItem',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,818,20099,'com.liferay.site.navigation.model.SiteNavigationMenuItem',4,'com.liferay.site.navigation.model.SiteNavigationMenuItem',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,819,20099,'com.liferay.site.navigation.model.SiteNavigationMenu',4,'com.liferay.site.navigation.model.SiteNavigationMenu',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,820,20099,'com.liferay.site.navigation.model.SiteNavigationMenu',4,'com.liferay.site.navigation.model.SiteNavigationMenu',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,821,20099,'com.liferay.site.navigation',4,'com.liferay.site.navigation',0,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,822,20099,'com_liferay_site_navigation_admin_web_portlet_SiteNavigationAdminPortlet',2,'20132',20132,20108,0,125,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,823,20099,'com.liferay.site.navigation',2,'20132',20132,20108,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,824,20099,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',4,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,825,20099,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',4,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,826,20099,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',4,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,827,20099,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,828,20099,'com_liferay_portal_workflow_web_portlet_ControlPanelWorkflowPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,829,20099,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',4,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,830,20099,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',4,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,831,20099,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',4,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,832,20099,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,833,20099,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,834,20099,'com_liferay_portal_workflow_web_internal_portlet_SiteAdministrationWorkflowPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,835,20099,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',4,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,836,20099,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',4,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,837,20099,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',4,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,838,20099,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(1,839,20099,'com_liferay_portal_workflow_web_internal_portlet_UserWorkflowPortlet',1,'20099',20099,20109,0,34,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,840,20099,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet',4,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,841,20099,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet',4,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,842,20099,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet',4,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,843,20099,'com_liferay_gogo_shell_web_internal_portlet_GogoShellPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,844,20099,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',4,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,845,20099,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',4,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,846,20099,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',4,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,847,20099,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',1,'20099',20099,20106,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,848,20099,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',1,'20099',20099,20108,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,849,20099,'com_liferay_fragment_display_web_portlet_FragmentEntryDisplayPortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,850,20099,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet',4,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,851,20099,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet',4,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,852,20099,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet',4,'com_liferay_asset_categories_selector_web_portlet_AssetCategoriesSelectorPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,853,20099,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',4,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,854,20099,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',4,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,855,20099,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',4,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,856,20099,'com.liferay.asset.tags',4,'com.liferay.asset.tags',0,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,857,20099,'com_liferay_asset_tags_admin_web_portlet_AssetTagsAdminPortlet',2,'20132',20132,20108,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,858,20099,'com.liferay.asset.tags',2,'20132',20132,20108,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,859,20099,'com_liferay_expando_web_portlet_ExpandoPortlet',4,'com_liferay_expando_web_portlet_ExpandoPortlet',0,20107,0,125,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,860,20099,'com.liferay.expando.kernel.model.ExpandoColumn',4,'com.liferay.expando.kernel.model.ExpandoColumn',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,861,20099,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',4,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,862,20099,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',4,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,863,20099,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',4,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,864,20099,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,865,20099,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,866,20099,'com_liferay_nested_portlets_web_portlet_NestedPortletsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,867,20099,'com_liferay_mentions_web_portlet_MentionsPortlet',4,'com_liferay_mentions_web_portlet_MentionsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,868,20099,'com_liferay_mentions_web_portlet_MentionsPortlet',4,'com_liferay_mentions_web_portlet_MentionsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,869,20099,'com_liferay_mentions_web_portlet_MentionsPortlet',4,'com_liferay_mentions_web_portlet_MentionsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,870,20099,'com_liferay_mentions_web_portlet_MentionsPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,871,20099,'com_liferay_portal_search_web_portlet_SearchPortlet',4,'com_liferay_portal_search_web_portlet_SearchPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,872,20099,'com_liferay_portal_search_web_portlet_SearchPortlet',4,'com_liferay_portal_search_web_portlet_SearchPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,873,20099,'com_liferay_portal_search_web_portlet_SearchPortlet',4,'com_liferay_portal_search_web_portlet_SearchPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,874,20099,'com_liferay_portal_search_web_portlet_SearchPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,875,20099,'com_liferay_portal_search_web_portlet_SearchPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,876,20099,'com_liferay_portal_search_web_portlet_SearchPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,877,20099,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',4,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,878,20099,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',4,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,879,20099,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',4,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,880,20099,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,881,20099,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,882,20099,'com_liferay_portal_search_web_category_facet_portlet_CategoryFacetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,883,20099,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',4,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,884,20099,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',4,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,885,20099,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',4,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,886,20099,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,887,20099,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,888,20099,'com_liferay_portal_search_web_custom_facet_portlet_CustomFacetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,889,20099,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',4,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,890,20099,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',4,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,891,20099,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',4,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,892,20099,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,893,20099,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,894,20099,'com_liferay_portal_search_web_folder_facet_portlet_FolderFacetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,895,20099,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',4,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,896,20099,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',4,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,897,20099,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',4,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,898,20099,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,899,20099,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,900,20099,'com_liferay_portal_search_web_modified_facet_portlet_ModifiedFacetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,901,20099,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',4,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,902,20099,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',4,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,903,20099,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',4,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,904,20099,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,905,20099,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,906,20099,'com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,907,20099,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',4,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,908,20099,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',4,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,909,20099,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',4,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,910,20099,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,911,20099,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,912,20099,'com_liferay_portal_search_web_search_insights_portlet_SearchInsightsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,913,20099,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',4,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,914,20099,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',4,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,915,20099,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',4,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,916,20099,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,917,20099,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,918,20099,'com_liferay_portal_search_web_search_options_portlet_SearchOptionsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,919,20099,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',4,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,920,20099,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',4,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,921,20099,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',4,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,922,20099,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,923,20099,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,924,20099,'com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,925,20099,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',4,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,926,20099,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',4,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,927,20099,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',4,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,928,20099,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,929,20099,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,930,20099,'com_liferay_portal_search_web_site_facet_portlet_SiteFacetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,931,20099,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',4,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,932,20099,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',4,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,933,20099,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',4,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,934,20099,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,935,20099,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,936,20099,'com_liferay_portal_search_web_suggestions_portlet_SuggestionsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,937,20099,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',4,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,938,20099,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',4,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,939,20099,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',4,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,940,20099,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,941,20099,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,942,20099,'com_liferay_portal_search_web_tag_facet_portlet_TagFacetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,943,20099,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',4,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,944,20099,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',4,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,945,20099,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',4,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,946,20099,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,947,20099,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,948,20099,'com_liferay_portal_search_web_type_facet_portlet_TypeFacetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,949,20099,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',4,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,950,20099,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',4,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,951,20099,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',4,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,952,20099,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,953,20099,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,954,20099,'com_liferay_portal_search_web_user_facet_portlet_UserFacetPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,955,20099,'com_liferay_fragment_web_portlet_FragmentPortlet',4,'com_liferay_fragment_web_portlet_FragmentPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,956,20099,'com_liferay_fragment_web_portlet_FragmentPortlet',4,'com_liferay_fragment_web_portlet_FragmentPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,957,20099,'com_liferay_fragment_web_portlet_FragmentPortlet',4,'com_liferay_fragment_web_portlet_FragmentPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,958,20099,'com.liferay.fragment',4,'com.liferay.fragment',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,959,20099,'com.liferay.fragment',4,'com.liferay.fragment',0,20107,0,7,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,960,20099,'com.liferay.fragment',4,'com.liferay.fragment',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,961,20099,'com_liferay_fragment_web_portlet_FragmentPortlet',2,'20132',20132,20108,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,962,20099,'com.liferay.fragment',2,'20132',20132,20108,0,7,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,963,20099,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',4,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,964,20099,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',4,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,965,20099,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',4,'com_liferay_password_policies_admin_web_portlet_PasswordPoliciesAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,966,20099,'com.liferay.portal.kernel.model.PasswordPolicy',4,'com.liferay.portal.kernel.model.PasswordPolicy',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,967,20099,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',4,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,968,20099,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',4,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,969,20099,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',4,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,970,20099,'com.liferay.portal.kernel.model.Team',4,'com.liferay.portal.kernel.model.Team',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,971,20099,'com_liferay_site_teams_web_portlet_SiteTeamsPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,972,20099,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',4,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,973,20099,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',4,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,974,20099,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',4,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,975,20099,'com.liferay.portal.kernel.model.UserGroup',4,'com.liferay.portal.kernel.model.UserGroup',0,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,976,20099,'com_liferay_user_groups_admin_web_portlet_UserGroupsAdminPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,977,20099,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',4,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,978,20099,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',4,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,979,20099,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',4,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,980,20099,'com.liferay.portal.kernel.model.Group',4,'com.liferay.portal.kernel.model.Group',0,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,981,20099,'com_liferay_site_memberships_web_portlet_SiteMembershipsPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,982,20099,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',4,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,983,20099,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',4,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,984,20099,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',4,'com_liferay_roles_selector_web_portlet_RolesSelectorPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,985,20099,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',4,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,986,20099,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',4,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,987,20099,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',4,'com_liferay_roles_admin_web_portlet_RolesAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,988,20099,'com.liferay.portal.kernel.model.Role',4,'com.liferay.portal.kernel.model.Role',0,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,989,20099,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',4,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,990,20099,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',4,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,991,20099,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',4,'com_liferay_product_navigation_product_menu_web_portlet_ProductMenuPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,992,20099,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',4,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,993,20099,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',4,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,994,20099,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',4,'com_liferay_layout_set_prototype_web_portlet_LayoutSetPrototypePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,995,20099,'com.liferay.portal.kernel.model.LayoutSetPrototype',4,'com.liferay.portal.kernel.model.LayoutSetPrototype',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,996,20099,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',4,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,997,20099,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',4,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,998,20099,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',4,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,999,20099,'com_liferay_layout_set_prototype_web_portlet_SiteTemplateSettingsPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1000,20099,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',4,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1001,20099,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',4,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1002,20099,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',4,'com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1003,20099,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',4,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1004,20099,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',4,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1005,20099,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',4,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1006,20099,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1007,20099,'com_liferay_product_navigation_user_personal_bar_web_portlet_ProductNavigationUserPersonalBarPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1008,20099,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',4,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1009,20099,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',4,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1010,20099,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',1,'20099',20099,20108,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1011,20099,'com_liferay_site_my_sites_web_portlet_MySitesPortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1012,20099,'com_liferay_announcements_web_portlet_AlertsPortlet',4,'com_liferay_announcements_web_portlet_AlertsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1013,20099,'com_liferay_announcements_web_portlet_AlertsPortlet',4,'com_liferay_announcements_web_portlet_AlertsPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1014,20099,'com_liferay_announcements_web_portlet_AlertsPortlet',4,'com_liferay_announcements_web_portlet_AlertsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1015,20099,'com.liferay.announcements.kernel.model.AnnouncementsEntry',4,'com.liferay.announcements.kernel.model.AnnouncementsEntry',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1016,20099,'com.liferay.announcements.kernel.model.AnnouncementsEntry',4,'com.liferay.announcements.kernel.model.AnnouncementsEntry',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1017,20099,'com_liferay_announcements_web_portlet_AlertsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1018,20099,'com_liferay_announcements_web_portlet_AlertsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1019,20099,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet',4,'com_liferay_announcements_web_portlet_AnnouncementsAdminPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1020,20099,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',4,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1021,20099,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',4,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1022,20099,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',4,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1023,20099,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1024,20099,'com_liferay_announcements_web_portlet_AnnouncementsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1025,20099,'com_liferay_flags_web_portlet_FlagsPortlet',4,'com_liferay_flags_web_portlet_FlagsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1026,20099,'com_liferay_flags_web_portlet_FlagsPortlet',4,'com_liferay_flags_web_portlet_FlagsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1027,20099,'com_liferay_flags_web_portlet_FlagsPortlet',4,'com_liferay_flags_web_portlet_FlagsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1028,20099,'com_liferay_flags_web_portlet_FlagsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1029,20099,'com_liferay_flags_web_portlet_FlagsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1030,20099,'com_liferay_flags_web_portlet_FlagsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1031,20099,'com_liferay_flags_web_portlet_PageFlagsPortlet',4,'com_liferay_flags_web_portlet_PageFlagsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1032,20099,'com_liferay_flags_web_portlet_PageFlagsPortlet',4,'com_liferay_flags_web_portlet_PageFlagsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1033,20099,'com_liferay_flags_web_portlet_PageFlagsPortlet',4,'com_liferay_flags_web_portlet_PageFlagsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1034,20099,'com_liferay_flags_web_portlet_PageFlagsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1035,20099,'com_liferay_flags_web_portlet_PageFlagsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1036,20099,'com_liferay_flags_web_portlet_PageFlagsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1037,20099,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',4,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1038,20099,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',4,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1039,20099,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',4,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1040,20099,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1041,20099,'com_liferay_comment_page_comments_web_portlet_PageCommentsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1042,20099,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',4,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1043,20099,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',4,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1044,20099,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',4,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1045,20099,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1046,20099,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1047,20099,'com_liferay_blogs_recent_bloggers_web_portlet_RecentBloggersPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1048,20099,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',4,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1049,20099,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',4,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1050,20099,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',4,'com_liferay_item_selector_web_portlet_ItemSelectorPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1051,20099,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',4,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1052,20099,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',4,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1053,20099,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',4,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1054,20099,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1055,20099,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1056,20099,'com_liferay_social_activities_web_portlet_SocialActivitiesPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1057,20099,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',4,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1058,20099,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',4,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1059,20099,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',4,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1060,20099,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1061,20099,'com_liferay_ratings_page_ratings_web_portlet_PageRatingsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1062,20099,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',4,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1063,20099,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',4,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1064,20099,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',4,'com_liferay_plugins_admin_web_portlet_PluginsAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1065,20099,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',4,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1066,20099,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',4,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1067,20099,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',4,'com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1068,20099,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',4,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1069,20099,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',4,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1070,20099,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',4,'com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1071,20099,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',4,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1072,20099,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',4,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1073,20099,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',4,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1074,20099,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1075,20099,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1076,20099,'com_liferay_image_uploader_web_portlet_ImageUploaderPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1077,20099,'com_liferay_document_library_web_portlet_DLAdminPortlet',4,'com_liferay_document_library_web_portlet_DLAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1078,20099,'com_liferay_document_library_web_portlet_DLAdminPortlet',4,'com_liferay_document_library_web_portlet_DLAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1079,20099,'com_liferay_document_library_web_portlet_DLAdminPortlet',4,'com_liferay_document_library_web_portlet_DLAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1080,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'com.liferay.document.library.kernel.model.DLFileEntryType',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1081,20099,'com.liferay.document.library.kernel.model.DLFileEntryType',4,'com.liferay.document.library.kernel.model.DLFileEntryType',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1082,20099,'com.liferay.document.library.kernel.model.DLFileEntry',4,'com.liferay.document.library.kernel.model.DLFileEntry',0,20106,0,129,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1083,20099,'com.liferay.document.library.kernel.model.DLFileEntry',4,'com.liferay.document.library.kernel.model.DLFileEntry',0,20107,0,255,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1084,20099,'com.liferay.document.library.kernel.model.DLFileShortcut',4,'com.liferay.document.library.kernel.model.DLFileShortcut',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1085,20099,'com.liferay.document.library.kernel.model.DLFileShortcut',4,'com.liferay.document.library.kernel.model.DLFileShortcut',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1086,20099,'com.liferay.document.library',4,'com.liferay.document.library',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1087,20099,'com.liferay.document.library',4,'com.liferay.document.library',0,20107,0,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1088,20099,'com.liferay.document.library',4,'com.liferay.document.library',0,20114,0,465,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1089,20099,'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,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1090,20099,'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,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1091,20099,'com.liferay.document.library.kernel.model.DLFolder',4,'com.liferay.document.library.kernel.model.DLFolder',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1092,20099,'com.liferay.document.library.kernel.model.DLFolder',4,'com.liferay.document.library.kernel.model.DLFolder',0,20107,0,511,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1093,20099,'com_liferay_document_library_web_portlet_DLAdminPortlet',2,'20132',20132,20108,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1094,20099,'com.liferay.document.library',2,'20132',20132,20108,0,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1095,20099,'com_liferay_document_library_web_portlet_DLPortlet',4,'com_liferay_document_library_web_portlet_DLPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1096,20099,'com_liferay_document_library_web_portlet_DLPortlet',4,'com_liferay_document_library_web_portlet_DLPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1097,20099,'com_liferay_document_library_web_portlet_DLPortlet',4,'com_liferay_document_library_web_portlet_DLPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1098,20099,'com_liferay_document_library_web_portlet_DLPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1099,20099,'com_liferay_document_library_web_portlet_DLPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1100,20099,'com_liferay_document_library_web_portlet_DLPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1101,20099,'com_liferay_document_library_web_portlet_IGDisplayPortlet',4,'com_liferay_document_library_web_portlet_IGDisplayPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1102,20099,'com_liferay_document_library_web_portlet_IGDisplayPortlet',4,'com_liferay_document_library_web_portlet_IGDisplayPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1103,20099,'com_liferay_document_library_web_portlet_IGDisplayPortlet',4,'com_liferay_document_library_web_portlet_IGDisplayPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1104,20099,'com_liferay_document_library_web_portlet_IGDisplayPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1105,20099,'com_liferay_document_library_web_portlet_IGDisplayPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1106,20099,'com_liferay_document_library_web_portlet_IGDisplayPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1107,20099,'com_liferay_my_account_web_portlet_MyAccountPortlet',4,'com_liferay_my_account_web_portlet_MyAccountPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1108,20099,'com_liferay_my_account_web_portlet_MyAccountPortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1109,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1110,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1111,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1112,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1113,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1114,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1115,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationPageMenuPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1116,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1117,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1118,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',4,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1119,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1120,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1121,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1122,20099,'com_liferay_wiki_navigation_web_portlet_WikiNavigationTreeMenuPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1123,20099,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',4,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1124,20099,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',4,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1125,20099,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',4,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1126,20099,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance',4,'com.liferay.mobile.device.rules.model.MDRRuleGroupInstance',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1127,20099,'com.liferay.mobile.device.rules.model.MDRRuleGroup',4,'com.liferay.mobile.device.rules.model.MDRRuleGroup',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1128,20099,'com.liferay.mobile.device.rules',4,'com.liferay.mobile.device.rules',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1129,20099,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1130,20099,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1131,20099,'com_liferay_mobile_device_rules_web_portlet_MDRPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1132,20099,'com.liferay.mobile.device.rules',2,'20132',20132,20108,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1133,20099,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',4,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1134,20099,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',4,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1135,20099,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',4,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1136,20099,'com.liferay.marketplace',4,'com.liferay.marketplace',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1137,20099,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1138,20099,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1139,20099,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1140,20099,'com_liferay_marketplace_app_manager_web_portlet_MarketplaceAppManagerPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1141,20099,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',4,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1142,20099,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',4,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1143,20099,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',4,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1144,20099,'com.liferay.portal.security.service.access.policy',4,'com.liferay.portal.security.service.access.policy',0,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1145,20099,'com.liferay.portal.security.service.access.policy.model.SAPEntry',4,'com.liferay.portal.security.service.access.policy.model.SAPEntry',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1146,20099,'com_liferay_portal_security_service_access_policy_web_portlet_SAPPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1147,20099,'com_liferay_exportimport_web_portlet_ExportImportPortlet',4,'com_liferay_exportimport_web_portlet_ExportImportPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1148,20099,'com_liferay_exportimport_web_portlet_ExportImportPortlet',4,'com_liferay_exportimport_web_portlet_ExportImportPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1149,20099,'com_liferay_exportimport_web_portlet_ExportImportPortlet',4,'com_liferay_exportimport_web_portlet_ExportImportPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1150,20099,'com_liferay_exportimport_web_portlet_ExportPortlet',4,'com_liferay_exportimport_web_portlet_ExportPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1151,20099,'com_liferay_exportimport_web_portlet_ExportPortlet',4,'com_liferay_exportimport_web_portlet_ExportPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1152,20099,'com_liferay_exportimport_web_portlet_ExportPortlet',4,'com_liferay_exportimport_web_portlet_ExportPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1153,20099,'com_liferay_exportimport_web_portlet_ExportPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1154,20099,'com_liferay_exportimport_web_portlet_ImportPortlet',4,'com_liferay_exportimport_web_portlet_ImportPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1155,20099,'com_liferay_exportimport_web_portlet_ImportPortlet',4,'com_liferay_exportimport_web_portlet_ImportPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1156,20099,'com_liferay_exportimport_web_portlet_ImportPortlet',4,'com_liferay_exportimport_web_portlet_ImportPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1157,20099,'com_liferay_exportimport_web_portlet_ImportPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1158,20099,'com_liferay_trash_web_portlet_TrashPortlet',4,'com_liferay_trash_web_portlet_TrashPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1159,20099,'com_liferay_trash_web_portlet_TrashPortlet',4,'com_liferay_trash_web_portlet_TrashPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1160,20099,'com_liferay_trash_web_portlet_TrashPortlet',4,'com_liferay_trash_web_portlet_TrashPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1161,20099,'com_liferay_trash_web_portlet_TrashPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1162,20099,'com_liferay_trash_web_portlet_TrashPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1163,20099,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',4,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1164,20099,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',4,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1165,20099,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',4,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1166,20099,'com_liferay_staging_processes_web_portlet_StagingProcessesPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1167,20099,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',4,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1168,20099,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',4,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1169,20099,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',4,'com_liferay_staging_bar_web_portlet_StagingBarPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1170,20099,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',4,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1171,20099,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',4,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1172,20099,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',4,'com_liferay_site_admin_web_portlet_SiteAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1173,20099,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',4,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1174,20099,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',4,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1175,20099,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',4,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1176,20099,'com_liferay_site_admin_web_portlet_SiteSettingsPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1177,20099,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',4,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1178,20099,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',4,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1179,20099,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',4,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1180,20099,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1181,20099,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1182,20099,'com_liferay_dynamic_data_mapping_data_provider_web_portlet_DDMDataProviderPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1183,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1184,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1185,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1186,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1187,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1188,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1189,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormBrowserPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1190,20099,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',4,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1191,20099,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',4,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1192,20099,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',4,'com_liferay_product_navigation_control_menu_web_portlet_ProductNavigationControlMenuPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1193,20099,'com_liferay_wiki_web_portlet_WikiAdminPortlet',4,'com_liferay_wiki_web_portlet_WikiAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1194,20099,'com.liferay.wiki.model.WikiPage',4,'com.liferay.wiki.model.WikiPage',0,20106,0,129,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1195,20099,'com.liferay.wiki.model.WikiPage',4,'com.liferay.wiki.model.WikiPage',0,20107,0,255,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1196,20099,'com.liferay.wiki',4,'com.liferay.wiki',0,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1197,20099,'com.liferay.wiki.model.WikiNode',4,'com.liferay.wiki.model.WikiNode',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1198,20099,'com.liferay.wiki.model.WikiNode',4,'com.liferay.wiki.model.WikiNode',0,20107,0,255,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1199,20099,'com_liferay_wiki_web_portlet_WikiAdminPortlet',2,'20132',20132,20108,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1200,20099,'com.liferay.wiki',2,'20132',20132,20108,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1201,20099,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',4,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1202,20099,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',4,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1203,20099,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',4,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1204,20099,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1205,20099,'com_liferay_wiki_web_portlet_WikiDisplayPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1206,20099,'com_liferay_wiki_web_portlet_WikiPortlet',4,'com_liferay_wiki_web_portlet_WikiPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1207,20099,'com_liferay_wiki_web_portlet_WikiPortlet',4,'com_liferay_wiki_web_portlet_WikiPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1208,20099,'com_liferay_wiki_web_portlet_WikiPortlet',4,'com_liferay_wiki_web_portlet_WikiPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1209,20099,'com_liferay_wiki_web_portlet_WikiPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1210,20099,'com_liferay_wiki_web_portlet_WikiPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1211,20099,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry',4,'33329',33329,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1212,20099,'com.liferay.portal.kernel.model.LayoutPrototype',4,'33328',33328,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1213,20099,'com.liferay.portal.kernel.model.Group',4,'33330',33330,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1214,20099,'com.liferay.portal.kernel.model.Layout',4,'33333',33333,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1215,20099,'com.liferay.portal.kernel.model.Layout',4,'33333',33333,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1216,20099,'com.liferay.wiki',4,'33330',33330,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1217,20099,'com_liferay_message_boards_web_portlet_MBAdminPortlet',4,'com_liferay_message_boards_web_portlet_MBAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1218,20099,'com_liferay_message_boards_web_portlet_MBAdminPortlet',4,'com_liferay_message_boards_web_portlet_MBAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1219,20099,'com_liferay_message_boards_web_portlet_MBAdminPortlet',4,'com_liferay_message_boards_web_portlet_MBAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1220,20099,'com.liferay.message.boards.model.MBCategory',4,'com.liferay.message.boards.model.MBCategory',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1221,20099,'com.liferay.message.boards.model.MBCategory',4,'com.liferay.message.boards.model.MBCategory',0,20107,0,4095,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1222,20099,'com.liferay.message.boards.model.MBThread',4,'com.liferay.message.boards.model.MBThread',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1223,20099,'com.liferay.message.boards.model.MBThread',4,'com.liferay.message.boards.model.MBThread',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1224,20099,'com.liferay.message.boards.model.MBMessage',4,'com.liferay.message.boards.model.MBMessage',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1225,20099,'com.liferay.message.boards.model.MBMessage',4,'com.liferay.message.boards.model.MBMessage',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1226,20099,'com.liferay.message.boards',4,'com.liferay.message.boards',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1227,20099,'com.liferay.message.boards',4,'com.liferay.message.boards',0,20107,0,2047,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1228,20099,'com.liferay.message.boards',4,'com.liferay.message.boards',0,20114,0,421,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1229,20099,'com_liferay_message_boards_web_portlet_MBAdminPortlet',2,'20132',20132,20108,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1230,20099,'com.liferay.message.boards',2,'20132',20132,20108,0,2047,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1231,20099,'com_liferay_message_boards_web_portlet_MBPortlet',4,'com_liferay_message_boards_web_portlet_MBPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1232,20099,'com_liferay_message_boards_web_portlet_MBPortlet',4,'com_liferay_message_boards_web_portlet_MBPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1233,20099,'com_liferay_message_boards_web_portlet_MBPortlet',4,'com_liferay_message_boards_web_portlet_MBPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1234,20099,'com_liferay_message_boards_web_portlet_MBPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1235,20099,'com_liferay_message_boards_web_portlet_MBPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1236,20099,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',4,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1237,20099,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',4,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1238,20099,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',4,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1239,20099,'com.liferay.asset.categories',4,'com.liferay.asset.categories',0,20107,0,14,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1240,20099,'com.liferay.asset.kernel.model.AssetCategory',4,'com.liferay.asset.kernel.model.AssetCategory',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1241,20099,'com.liferay.asset.kernel.model.AssetCategory',4,'com.liferay.asset.kernel.model.AssetCategory',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1242,20099,'com.liferay.asset.kernel.model.AssetVocabulary',4,'com.liferay.asset.kernel.model.AssetVocabulary',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1243,20099,'com.liferay.asset.kernel.model.AssetVocabulary',4,'com.liferay.asset.kernel.model.AssetVocabulary',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1244,20099,'com_liferay_asset_categories_admin_web_portlet_AssetCategoriesAdminPortlet',2,'20132',20132,20108,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1245,20099,'com.liferay.asset.categories',2,'20132',20132,20108,0,14,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1246,20099,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',4,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1247,20099,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',4,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',0,20107,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1248,20099,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',4,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1249,20099,'com.liferay.blogs',4,'com.liferay.blogs',0,20107,0,14,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1250,20099,'com.liferay.blogs',4,'com.liferay.blogs',0,20114,0,8,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1251,20099,'com.liferay.blogs.model.BlogsEntry',4,'com.liferay.blogs.model.BlogsEntry',0,20106,0,65,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1252,20099,'com.liferay.blogs.model.BlogsEntry',4,'com.liferay.blogs.model.BlogsEntry',0,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1253,20099,'com_liferay_blogs_web_portlet_BlogsAdminPortlet',2,'20132',20132,20108,0,61,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1254,20099,'com.liferay.blogs',2,'20132',20132,20108,0,14,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1255,20099,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',4,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1256,20099,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',4,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1257,20099,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',4,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1258,20099,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1259,20099,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1260,20099,'com_liferay_blogs_web_portlet_BlogsAgreggatorPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1261,20099,'com_liferay_blogs_web_portlet_BlogsPortlet',4,'com_liferay_blogs_web_portlet_BlogsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1262,20099,'com_liferay_blogs_web_portlet_BlogsPortlet',4,'com_liferay_blogs_web_portlet_BlogsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1263,20099,'com_liferay_blogs_web_portlet_BlogsPortlet',4,'com_liferay_blogs_web_portlet_BlogsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1264,20099,'com_liferay_blogs_web_portlet_BlogsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1265,20099,'com_liferay_blogs_web_portlet_BlogsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1266,20099,'com_liferay_blogs_web_portlet_BlogsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1267,20099,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry',4,'33344',33344,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1268,20099,'com.liferay.portal.kernel.model.LayoutPrototype',4,'33343',33343,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1269,20099,'com.liferay.portal.kernel.model.Group',4,'33345',33345,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1270,20099,'com.liferay.portal.kernel.model.Layout',4,'33348',33348,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1271,20099,'com.liferay.portal.kernel.model.Layout',4,'33348',33348,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1272,20099,'com.liferay.blogs',4,'33345',33345,20107,0,14,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1273,20099,'com.liferay.blogs',4,'33345',33345,20114,0,8,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1274,20099,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',4,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1275,20099,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',4,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1276,20099,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',4,'com_liferay_asset_browser_web_portlet_AssetBrowserPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1277,20099,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',4,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1278,20099,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',4,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1279,20099,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',4,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1280,20099,'com.liferay.layout.page.template',4,'com.liferay.layout.page.template',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1281,20099,'com.liferay.layout.page.template',4,'com.liferay.layout.page.template',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1282,20099,'com.liferay.layout.page.template',4,'com.liferay.layout.page.template',0,20114,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1283,20099,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection',4,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1284,20099,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection',4,'com.liferay.layout.page.template.model.LayoutPageTemplateCollection',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1285,20099,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry',4,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1286,20099,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry',4,'com.liferay.layout.page.template.model.LayoutPageTemplateEntry',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1287,20099,'com.liferay.portal.kernel.model.LayoutSetBranch',4,'com.liferay.portal.kernel.model.LayoutSetBranch',0,20107,0,30,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1288,20099,'com.liferay.portal.kernel.model.Layout',4,'com.liferay.portal.kernel.model.Layout',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1289,20099,'com.liferay.portal.kernel.model.Layout',4,'com.liferay.portal.kernel.model.Layout',0,20107,0,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1290,20099,'com.liferay.portal.kernel.model.LayoutBranch',4,'com.liferay.portal.kernel.model.LayoutBranch',0,20107,0,14,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1291,20099,'com_liferay_layout_admin_web_portlet_GroupPagesPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1292,20099,'com.liferay.layout.page.template',2,'20132',20132,20108,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1293,20099,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',4,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1294,20099,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',4,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1295,20099,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',4,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1296,20099,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',1,'20099',20099,20106,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1297,20099,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',1,'20099',20099,20108,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1298,20099,'com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1299,20099,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',4,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1300,20099,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',4,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1301,20099,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',4,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1302,20099,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',1,'20099',20099,20106,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1303,20099,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',1,'20099',20099,20108,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1304,20099,'com_liferay_site_navigation_language_web_portlet_SiteNavigationLanguagePortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1305,20099,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',4,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1306,20099,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',4,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1307,20099,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',4,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1308,20099,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',1,'20099',20099,20106,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1309,20099,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',1,'20099',20099,20108,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1310,20099,'com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1311,20099,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1312,20099,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1313,20099,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1314,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'com.liferay.dynamic.data.mapping.model.DDMTemplate',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1315,20099,'com.liferay.dynamic.data.mapping.model.DDMTemplate',4,'com.liferay.dynamic.data.mapping.model.DDMTemplate',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1316,20099,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'com.liferay.dynamic.data.mapping.model.DDMStructure',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1317,20099,'com.liferay.dynamic.data.mapping.model.DDMStructure',4,'com.liferay.dynamic.data.mapping.model.DDMStructure',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1318,20099,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1319,20099,'com_liferay_dynamic_data_mapping_web_portlet_DDMPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1320,20099,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1321,20099,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1322,20099,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',4,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1323,20099,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1324,20099,'com_liferay_dynamic_data_mapping_web_portlet_PortletDisplayTemplatePortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1325,20099,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',4,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1326,20099,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',4,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1327,20099,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',4,'com_liferay_staging_configuration_web_portlet_StagingConfigurationPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1328,20099,'com_liferay_knowledge_base_web_portlet_AdminPortlet',4,'com_liferay_knowledge_base_web_portlet_AdminPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1329,20099,'com.liferay.knowledge.base.admin',4,'com.liferay.knowledge.base.admin',0,20107,0,4094,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1330,20099,'com.liferay.knowledge.base.admin',4,'com.liferay.knowledge.base.admin',0,20114,0,1024,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1331,20099,'com.liferay.knowledge.base.model.KBFolder',4,'com.liferay.knowledge.base.model.KBFolder',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1332,20099,'com.liferay.knowledge.base.model.KBFolder',4,'com.liferay.knowledge.base.model.KBFolder',0,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1333,20099,'com.liferay.knowledge.base.model.KBTemplate',4,'com.liferay.knowledge.base.model.KBTemplate',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1334,20099,'com.liferay.knowledge.base.model.KBTemplate',4,'com.liferay.knowledge.base.model.KBTemplate',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1335,20099,'com.liferay.knowledge.base.model.KBArticle',4,'com.liferay.knowledge.base.model.KBArticle',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1336,20099,'com.liferay.knowledge.base.model.KBArticle',4,'com.liferay.knowledge.base.model.KBArticle',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1337,20099,'com_liferay_knowledge_base_web_portlet_AdminPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1338,20099,'com_liferay_knowledge_base_web_portlet_AdminPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1339,20099,'com_liferay_knowledge_base_web_portlet_AdminPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1340,20099,'com_liferay_knowledge_base_web_portlet_AdminPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1341,20099,'com_liferay_knowledge_base_web_portlet_AdminPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1342,20099,'com.liferay.knowledge.base.admin',2,'20132',20132,20108,0,4094,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1343,20099,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',4,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1344,20099,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',4,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1345,20099,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',4,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1346,20099,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',1,'20099',20099,20105,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1347,20099,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',1,'20099',20099,20106,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1348,20099,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',1,'20099',20099,20108,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1349,20099,'com_liferay_knowledge_base_web_portlet_ArticlePortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1350,20099,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',4,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1351,20099,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',4,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1352,20099,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',4,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1353,20099,'com.liferay.knowledge.base.display',4,'com.liferay.knowledge.base.display',0,20107,0,126,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1354,20099,'com.liferay.knowledge.base.display',4,'com.liferay.knowledge.base.display',0,20114,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1355,20099,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1356,20099,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1357,20099,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1358,20099,'com_liferay_knowledge_base_web_portlet_DisplayPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1359,20099,'com_liferay_knowledge_base_web_portlet_SearchPortlet',4,'com_liferay_knowledge_base_web_portlet_SearchPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1360,20099,'com_liferay_knowledge_base_web_portlet_SearchPortlet',4,'com_liferay_knowledge_base_web_portlet_SearchPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1361,20099,'com_liferay_knowledge_base_web_portlet_SearchPortlet',4,'com_liferay_knowledge_base_web_portlet_SearchPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1362,20099,'com_liferay_knowledge_base_web_portlet_SearchPortlet',1,'20099',20099,20105,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1363,20099,'com_liferay_knowledge_base_web_portlet_SearchPortlet',1,'20099',20099,20106,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1364,20099,'com_liferay_knowledge_base_web_portlet_SearchPortlet',1,'20099',20099,20108,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1365,20099,'com_liferay_knowledge_base_web_portlet_SearchPortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1366,20099,'com_liferay_knowledge_base_web_portlet_SectionPortlet',4,'com_liferay_knowledge_base_web_portlet_SectionPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1367,20099,'com_liferay_knowledge_base_web_portlet_SectionPortlet',4,'com_liferay_knowledge_base_web_portlet_SectionPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1368,20099,'com_liferay_knowledge_base_web_portlet_SectionPortlet',4,'com_liferay_knowledge_base_web_portlet_SectionPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1369,20099,'com_liferay_knowledge_base_web_portlet_SectionPortlet',1,'20099',20099,20105,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1370,20099,'com_liferay_knowledge_base_web_portlet_SectionPortlet',1,'20099',20099,20106,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1371,20099,'com_liferay_knowledge_base_web_portlet_SectionPortlet',1,'20099',20099,20108,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1372,20099,'com_liferay_knowledge_base_web_portlet_SectionPortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1373,20099,'com_liferay_notifications_web_portlet_NotificationsPortlet',4,'com_liferay_notifications_web_portlet_NotificationsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1374,20099,'com_liferay_notifications_web_portlet_NotificationsPortlet',4,'com_liferay_notifications_web_portlet_NotificationsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1375,20099,'com_liferay_notifications_web_portlet_NotificationsPortlet',4,'com_liferay_notifications_web_portlet_NotificationsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1376,20099,'com_liferay_notifications_web_portlet_NotificationsPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1377,20099,'com_liferay_notifications_web_portlet_NotificationsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1378,20099,'com_liferay_notifications_web_portlet_NotificationsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(1,1379,20099,'com_liferay_notifications_web_portlet_NotificationsPortlet',1,'20099',20099,20109,0,34,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1380,20099,'com_liferay_journal_content_web_portlet_JournalContentPortlet',4,'com_liferay_journal_content_web_portlet_JournalContentPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1381,20099,'com_liferay_journal_content_web_portlet_JournalContentPortlet',4,'com_liferay_journal_content_web_portlet_JournalContentPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1382,20099,'com_liferay_journal_content_web_portlet_JournalContentPortlet',4,'com_liferay_journal_content_web_portlet_JournalContentPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1383,20099,'com_liferay_journal_content_web_portlet_JournalContentPortlet',1,'20099',20099,20106,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1384,20099,'com_liferay_journal_content_web_portlet_JournalContentPortlet',1,'20099',20099,20108,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1385,20099,'com_liferay_journal_content_web_portlet_JournalContentPortlet',1,'20099',20099,20109,0,16,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1386,20099,'com_liferay_journal_web_portlet_JournalPortlet',4,'com_liferay_journal_web_portlet_JournalPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1387,20099,'com_liferay_journal_web_portlet_JournalPortlet',4,'com_liferay_journal_web_portlet_JournalPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1388,20099,'com_liferay_journal_web_portlet_JournalPortlet',4,'com_liferay_journal_web_portlet_JournalPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1389,20099,'com.liferay.journal.model.JournalFeed',4,'com.liferay.journal.model.JournalFeed',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1390,20099,'com.liferay.journal.model.JournalFeed',4,'com.liferay.journal.model.JournalFeed',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1391,20099,'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,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1392,20099,'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,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1393,20099,'com.liferay.journal.model.JournalArticle',4,'com.liferay.journal.model.JournalArticle',0,20106,0,257,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1394,20099,'com.liferay.journal.model.JournalArticle',4,'com.liferay.journal.model.JournalArticle',0,20107,0,511,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1395,20099,'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,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1396,20099,'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,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1397,20099,'com.liferay.journal',4,'com.liferay.journal',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1398,20099,'com.liferay.journal',4,'com.liferay.journal',0,20107,0,511,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1399,20099,'com.liferay.journal',4,'com.liferay.journal',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1400,20099,'com.liferay.journal.model.JournalFolder',4,'com.liferay.journal.model.JournalFolder',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1401,20099,'com.liferay.journal.model.JournalFolder',4,'com.liferay.journal.model.JournalFolder',0,20107,0,255,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1402,20099,'com_liferay_journal_web_portlet_JournalPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1403,20099,'com_liferay_journal_web_portlet_JournalPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1404,20099,'com_liferay_journal_web_portlet_JournalPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1405,20099,'com.liferay.journal',2,'20132',20132,20108,0,511,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1406,20099,'com_liferay_adaptive_media_web_portlet_AMPortlet',4,'com_liferay_adaptive_media_web_portlet_AMPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1407,20099,'com_liferay_adaptive_media_web_portlet_AMPortlet',4,'com_liferay_adaptive_media_web_portlet_AMPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1408,20099,'com_liferay_adaptive_media_web_portlet_AMPortlet',4,'com_liferay_adaptive_media_web_portlet_AMPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1409,20099,'com_liferay_adaptive_media_web_portlet_AMPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1410,20099,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',4,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1411,20099,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',4,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',0,20107,0,127,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1412,20099,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',4,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',0,20114,0,33,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1413,20099,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',1,'20099',20099,20108,0,64,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1414,20099,'com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet',1,'20099',20099,20109,0,64,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1415,20099,'com.liferay.portal.kernel.model.LayoutSetPrototype',4,'33368',33368,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1416,20099,'com.liferay.portal.kernel.model.Group',4,'33369',33369,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1417,20099,'com.liferay.portal.kernel.model.Layout',4,'33372',33372,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1418,20099,'com.liferay.portal.kernel.model.Layout',4,'33372',33372,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1419,20099,'com.liferay.portal.kernel.model.Layout',4,'33372',33372,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1420,20099,'com.liferay.message.boards',4,'33369',33369,20107,0,2047,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1421,20099,'com.liferay.message.boards',4,'33369',33369,20114,0,421,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1422,20099,'com.liferay.message.boards',4,'33369',33369,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1423,20099,'com.liferay.polls',4,'33369',33369,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1424,20099,'com.liferay.portal.kernel.model.Layout',4,'33376',33376,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1425,20099,'com.liferay.portal.kernel.model.Layout',4,'33376',33376,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1426,20099,'com.liferay.portal.kernel.model.Layout',4,'33376',33376,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1427,20099,'com.liferay.wiki',4,'33369',33369,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1428,20099,'com.liferay.portal.kernel.model.LayoutSetPrototype',4,'33379',33379,20107,20103,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1429,20099,'com.liferay.portal.kernel.model.Group',4,'33380',33380,20107,0,33554431,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1430,20099,'com.liferay.portal.kernel.model.Layout',4,'33383',33383,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1431,20099,'com.liferay.portal.kernel.model.Layout',4,'33383',33383,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1432,20099,'com.liferay.portal.kernel.model.Layout',4,'33383',33383,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1433,20099,'com.liferay.portal.kernel.model.Layout',4,'33387',33387,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1434,20099,'com.liferay.portal.kernel.model.Layout',4,'33387',33387,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1435,20099,'com.liferay.portal.kernel.model.Layout',4,'33387',33387,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1436,20099,'com.liferay.document.library',4,'33380',33380,20107,0,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1437,20099,'com.liferay.document.library',4,'33380',33380,20114,0,465,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1438,20099,'com.liferay.document.library',4,'33380',33380,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1439,20099,'com.liferay.portal.kernel.model.Layout',4,'33391',33391,20107,20103,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1440,20099,'com.liferay.portal.kernel.model.Layout',4,'33391',33391,20114,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1441,20099,'com.liferay.portal.kernel.model.Layout',4,'33391',33391,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1442,20099,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1443,20099,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1444,20099,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1445,20099,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1446,20099,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1447,20099,'com_liferay_asset_publisher_web_portlet_HighestRatedAssetsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1448,20099,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1449,20099,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1450,20099,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1451,20099,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1452,20099,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1453,20099,'com_liferay_asset_publisher_web_portlet_MostViewedAssetsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1454,20099,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',4,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1455,20099,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',4,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1456,20099,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',4,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1457,20099,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1458,20099,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1459,20099,'com_liferay_asset_publisher_web_portlet_RecentContentPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1460,20099,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1461,20099,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1462,20099,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',4,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1463,20099,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1464,20099,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1465,20099,'com_liferay_asset_publisher_web_portlet_RelatedAssetsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1466,20099,'com_liferay_calendar_web_portlet_CalendarPortlet',4,'com_liferay_calendar_web_portlet_CalendarPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1467,20099,'com_liferay_calendar_web_portlet_CalendarPortlet',4,'com_liferay_calendar_web_portlet_CalendarPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1468,20099,'com_liferay_calendar_web_portlet_CalendarPortlet',4,'com_liferay_calendar_web_portlet_CalendarPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1469,20099,'com.liferay.calendar.model.CalendarResource',4,'com.liferay.calendar.model.CalendarResource',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1470,20099,'com.liferay.calendar.model.CalendarBooking',4,'com.liferay.calendar.model.CalendarBooking',0,20107,0,30,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1471,20099,'com.liferay.calendar',4,'com.liferay.calendar',0,20107,0,6,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1472,20099,'com.liferay.calendar.model.Calendar',4,'com.liferay.calendar.model.Calendar',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1473,20099,'com.liferay.calendar.model.Calendar',4,'com.liferay.calendar.model.Calendar',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1474,20099,'com_liferay_calendar_web_portlet_CalendarPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1475,20099,'com_liferay_calendar_web_portlet_CalendarPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1476,20099,'com_liferay_calendar_web_portlet_CalendarPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1477,20099,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',4,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1478,20099,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',4,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1479,20099,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',4,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1480,20099,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1481,20099,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1482,20099,'com_liferay_invitation_invite_members_web_portlet_InviteMembersPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1483,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1484,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1485,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1486,20099,'com.liferay.dynamic.data.lists',4,'com.liferay.dynamic.data.lists',0,20107,0,30,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1487,20099,'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,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1488,20099,'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,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1489,20099,'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,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1490,20099,'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,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1491,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet',4,'com.liferay.dynamic.data.lists.model.DDLRecordSet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1492,20099,'com.liferay.dynamic.data.lists.model.DDLRecordSet',4,'com.liferay.dynamic.data.lists.model.DDLRecordSet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1493,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1494,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1495,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLDisplayPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1496,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1497,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1498,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',4,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1499,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1500,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1501,20099,'com_liferay_dynamic_data_lists_web_portlet_DDLPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1502,20099,'com.liferay.dynamic.data.lists',2,'20132',20132,20108,0,30,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1503,20099,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',4,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1504,20099,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',4,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1505,20099,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',4,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1506,20099,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',1,'20099',20099,20105,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1507,20099,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',1,'20099',20099,20108,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1508,20099,'com_liferay_contacts_web_portlet_ContactsCenterPortlet',1,'20099',20099,20109,0,32,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1509,20099,'com_liferay_contacts_web_portlet_MembersPortlet',4,'com_liferay_contacts_web_portlet_MembersPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1510,20099,'com_liferay_contacts_web_portlet_MembersPortlet',4,'com_liferay_contacts_web_portlet_MembersPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1511,20099,'com_liferay_contacts_web_portlet_MembersPortlet',4,'com_liferay_contacts_web_portlet_MembersPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1512,20099,'com_liferay_contacts_web_portlet_MembersPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1513,20099,'com_liferay_contacts_web_portlet_MembersPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1514,20099,'com_liferay_contacts_web_portlet_MembersPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1515,20099,'com_liferay_contacts_web_portlet_MembersPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1516,20099,'com_liferay_contacts_web_portlet_MyContactsPortlet',4,'com_liferay_contacts_web_portlet_MyContactsPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1517,20099,'com_liferay_contacts_web_portlet_MyContactsPortlet',4,'com_liferay_contacts_web_portlet_MyContactsPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1518,20099,'com_liferay_contacts_web_portlet_MyContactsPortlet',4,'com_liferay_contacts_web_portlet_MyContactsPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1519,20099,'com_liferay_contacts_web_portlet_MyContactsPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1520,20099,'com_liferay_contacts_web_portlet_MyContactsPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1521,20099,'com_liferay_contacts_web_portlet_MyContactsPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1522,20099,'com_liferay_contacts_web_portlet_MyContactsPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1523,20099,'com_liferay_contacts_web_portlet_ProfilePortlet',4,'com_liferay_contacts_web_portlet_ProfilePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1524,20099,'com_liferay_contacts_web_portlet_ProfilePortlet',4,'com_liferay_contacts_web_portlet_ProfilePortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1525,20099,'com_liferay_contacts_web_portlet_ProfilePortlet',4,'com_liferay_contacts_web_portlet_ProfilePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1526,20099,'com_liferay_contacts_web_portlet_ProfilePortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1527,20099,'com_liferay_contacts_web_portlet_ProfilePortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1528,20099,'com_liferay_contacts_web_portlet_ProfilePortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1529,20099,'com_liferay_contacts_web_portlet_ProfilePortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1530,20099,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1531,20099,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1532,20099,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1533,20099,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1534,20099,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1535,20099,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1536,20099,'com_liferay_marketplace_store_web_portlet_MarketplacePurchasedPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1537,20099,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1538,20099,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1539,20099,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',4,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1540,20099,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',1,'20099',20099,20105,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1541,20099,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1542,20099,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1543,20099,'com_liferay_marketplace_store_web_portlet_MarketplaceStorePortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1544,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1545,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',0,20107,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1546,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1547,20099,'com.liferay.dynamic.data.mapping',4,'com.liferay.dynamic.data.mapping',0,20107,0,30,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1548,20099,'com.liferay.dynamic.data.mapping',4,'com.liferay.dynamic.data.mapping',0,20114,0,28,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1549,20099,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance',4,'com.liferay.dynamic.data.mapping.model.DDMDataProviderInstance',0,20107,0,15,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1550,20099,'com.liferay.dynamic.data.mapping.model.DDMFormInstance',4,'com.liferay.dynamic.data.mapping.model.DDMFormInstance',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1551,20099,'com.liferay.dynamic.data.mapping.model.DDMFormInstance',4,'com.liferay.dynamic.data.mapping.model.DDMFormInstance',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1552,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1553,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1554,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormAdminPortlet',2,'20132',20132,20108,0,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1555,20099,'com.liferay.dynamic.data.mapping',2,'20132',20132,20108,0,30,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1556,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',0,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1557,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',0,20107,0,31,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1558,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',4,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',0,20114,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1559,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',1,'20099',20099,20106,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1560,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',1,'20099',20099,20108,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1561,20099,'com_liferay_dynamic_data_mapping_form_web_portlet_DDMFormPortlet',1,'20099',20099,20109,0,2,'0') -INSERT INTO RESOURCEPERMISSION VALUES(0,1601,20099,'com.liferay.portal.kernel.model.Layout',4,'33601',33601,20107,20139,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1602,20099,'com.liferay.portal.kernel.model.Layout',4,'33604',33604,20107,20139,1023,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1603,20099,'com.liferay.portal.kernel.model.Layout',4,'33604',33604,20109,0,529,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1604,20099,'com.liferay.portal.kernel.model.Layout',4,'33604',33604,20106,0,1,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1605,20099,'com.liferay.oauth2.provider.model.OAuth2Application',4,'101',101,20107,20139,63,'1') -INSERT INTO RESOURCEPERMISSION VALUES(0,1701,20099,'com.liferay.oauth2.provider.model.OAuth2Application',4,'201',201,20107,20139,63,'1') -INSERT INTO ROLE_ VALUES(0,'7133d211-579b-5d3e-7779-68e7793634e4',20105,20099,20103,NULL,'2019-05-09 00:27:28.223000','2019-05-09 00:27:28.223000',20004,20105,'Administrator',NULL,'Administrators are super users who can do anything.',1,NULL) -INSERT INTO ROLE_ VALUES(0,'1a405b8f-8bda-4ce4-0638-4d04012c72ce',20106,20099,20103,NULL,'2019-05-09 00:27:28.233000','2019-05-09 00:27:28.233000',20004,20106,'Guest',NULL,'Unauthenticated users always have this role.',1,NULL) -INSERT INTO ROLE_ VALUES(0,'df7fef65-2de1-c249-185c-aa685e2c842c',20107,20099,20103,NULL,'2019-05-09 00:27:28.236000','2019-05-09 00:27:28.236000',20004,20107,'Owner',NULL,'This is an implied role with respect to the objects users create.',1,NULL) -INSERT INTO ROLE_ VALUES(0,'5d41243f-84e3-34ea-87b8-688fb36910fc',20108,20099,20103,NULL,'2019-05-09 00:27:28.242000','2019-05-09 00:27:28.242000',20004,20108,'Power User',NULL,'Power Users have their own personal site.',1,NULL) -INSERT INTO ROLE_ VALUES(0,'505b58a1-c20c-de9f-cb16-6405be4e90b1',20109,20099,20103,NULL,'2019-05-09 00:27:28.249000','2019-05-09 00:27:28.249000',20004,20109,'User',NULL,'Authenticated users should be assigned this role.',1,NULL) -INSERT INTO ROLE_ VALUES(0,'fcafd1d9-9abe-431d-3dbb-b85e114361af',20110,20099,20103,NULL,'2019-05-09 00:27:28.270000','2019-05-09 00:27:28.270000',20004,20110,'Organization Administrator',NULL,'Organization Administrators are super users of their organization but cannot make other users into Organization Administrators.',3,NULL) -INSERT INTO ROLE_ VALUES(0,'17f84d50-257d-a061-aa53-80a0e0a332b3',20111,20099,20103,NULL,'2019-05-09 00:27:28.274000','2019-05-09 00:27:28.274000',20004,20111,'Organization Owner',NULL,'Organization Owners are super users of their organization and can assign organization roles to users.',3,NULL) -INSERT INTO ROLE_ VALUES(0,'6272fb12-0392-5d3a-0d81-9b62ad2efa4e',20112,20099,20103,NULL,'2019-05-09 00:27:28.277000','2019-05-09 00:27:28.277000',20004,20112,'Organization User',NULL,'All users who belong to an organization have this role within that organization.',3,NULL) -INSERT INTO ROLE_ VALUES(0,'25017446-a3e1-8cc3-be41-af8a14e0dfbb',20113,20099,20103,NULL,'2019-05-09 00:27:28.281000','2019-05-09 00:27:28.281000',20004,20113,'Site Administrator',NULL,'Site Administrators are super users of their site but cannot make other users into Site Administrators.',2,NULL) -INSERT INTO ROLE_ VALUES(0,'349c2327-f1fe-34a3-084a-6c57412cf330',20114,20099,20103,NULL,'2019-05-09 00:27:28.284000','2019-05-09 00:27:28.284000',20004,20114,'Site Member',NULL,'All users who belong to a site have this role within that site.',2,NULL) -INSERT INTO ROLE_ VALUES(0,'77b0f194-e8f5-5f8a-0490-8fac1886a2e3',20115,20099,20103,NULL,'2019-05-09 00:27:28.287000','2019-05-09 00:27:28.287000',20004,20115,'Site Owner',NULL,'Site Owners are super users of their site and can assign site roles to users.',2,NULL) -INSERT INTO ROLE_ VALUES(0,'1a6952db-9b96-234b-2ae5-4995c9673aa5',32114,20099,20103,NULL,'2019-05-09 00:27:47.539000','2019-05-09 00:27:47.539000',20004,32114,'Organization Content Reviewer',NULL,'This is an autogenerated role from the workflow definition.',3,NULL) -INSERT INTO ROLE_ VALUES(0,'fa10a0ad-5eee-aada-9427-75d599eebc8d',32120,20099,20103,NULL,'2019-05-09 00:27:47.556000','2019-05-09 00:27:47.556000',20004,32120,'Site Content Reviewer',NULL,'This is an autogenerated role from the workflow definition.',2,NULL) -INSERT INTO ROLE_ VALUES(0,'54a59146-9cca-d11c-2c6f-c57a8870403a',32123,20099,20103,NULL,'2019-05-09 00:27:47.558000','2019-05-09 00:27:47.558000',20004,32123,'Portal Content Reviewer',NULL,'This is an autogenerated role from the workflow definition.',1,NULL) -INSERT INTO SERVICECOMPONENT VALUES(0,27509,'MB',1,1508406048120,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,27603,'SiteNavigation',1,1506004262924,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,27702,'Site',1,1490949819656,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,27801,'Screens',2,1454719907378,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,27902,'ReadingTime',1,1508406352137,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,28005,'OAuthTwo',1,1511982781730,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,28104,'Fragment',1,1505731263383,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,28204,'Wiki',2,1454719940880,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,28307,'Journal',3,1470642961397,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,28403,'Changeset',1,1525361743173,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,28605,'MDR',3,1454719897533,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,28702,'Asset',1,1511866736439,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,29101,'Flags',2,1454719855705,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,29203,'Marketplace',6,1459893726893,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,30202,'AMImageEntry',1,1485270630845,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,30402,'SAP',3,1454719911670,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,30503,'Layout',1,1506337823035,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,30602,'Preview',1,1512400763559,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,30705,'KB',15,1423136031621,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,30803,'Trash',1,1491488486875,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,30903,'Blogs',1,1467883579789,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,31102,'BackgroundTask',2,1454719807550,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,31201,'PortalInstances',1,1477512433639,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,31302,'DL',1,1506434629011,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,31502,'DLSync',1,1506613159990,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,31720,'Kaleo',10,1468446017884,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,31816,'DDM',2,1454719850972,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,31901,'ER',1,1528256740410,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,32004,'FURL',1,1475068021017,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,32102,'Lock',2,1454719810794,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,32402,'Audit',2,1343264257622,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,32502,'Subscription',1,1483356778593,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,32804,'Polls',2,1454719903688,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,32905,'Calendar',6,1467385007967,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,33002,'IM',1,1455550401806,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,33105,'DDL',1,1455828666350,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO SERVICECOMPONENT VALUES(0,33202,'Contacts',2,1343264272450,'\u000a\u000a\u000a\u0009\u000a\u0009\u000a\u0009\u000a') -INSERT INTO USER_ VALUES(0,'4c281ee6-23ce-4c51-b90b-cacc452691e5',NULL,20103,20099,'2019-05-09 00:27:28.170000','2019-05-09 00:27:28.170000','1',20104,'password','0','0',NULL,'5533ed38b5e33c076a804bb4bca644f9,09bca4d7604d69ec655f1e3fc8053f42,09bca4d7604d69ec655f1e3fc8053f42',NULL,NULL,0,'20103','default@liferay.com',0,NULL,0,NULL,0,'en_US','UTC','Welcome!',NULL,NULL,NULL,NULL,NULL,'2019-05-09 00:27:27.762000',NULL,NULL,NULL,NULL,0,'0',NULL,'1','0',0) -INSERT INTO USER_ VALUES(14,'4ef84411-749a-e617-6191-10e0c6a7147b',NULL,20139,20099,'2019-05-09 00:27:28.854000','2019-10-25 13:57:07.995000','0',20141,'AAAAoAAB9AB2R4rk8PIa6uUbxhoMcsKNe2xScBvPyY54g/18','1','0',NULL,'e5d86c6f3672e52795891c3597f20de0,751da756639bc033b572ba2e7849b589,f14e2fa1eb6a0fb38d901ff155143e95','what-is-your-father''s-middle-name','aa',0,'test','test@liferay.com',0,NULL,-1,NULL,0,'en_US','UTC','Welcome Test Test!',NULL,'Test',NULL,'Test',NULL,'2019-10-25 13:57:07.981000','172.18.0.1','2019-10-17 11:08:13.094000','172.18.0.1',NULL,0,'0',NULL,'0','1',0) -INSERT INTO USERS_GROUPS VALUES(20099,20126,20139) -INSERT INTO USERS_ROLES VALUES(20099,20105,20139) -INSERT INTO USERS_ROLES VALUES(20099,20106,20103) -INSERT INTO USERS_ROLES VALUES(20099,20108,20139) -INSERT INTO USERS_ROLES VALUES(20099,20109,20139) -INSERT INTO VIRTUALHOST VALUES(0,20102,20099,0,'localhost') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.09c17a18-66f1-476b-adc7-c83fad5de9dc',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000afelix.fileinstall.filename="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration-upsell.cfg"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration"\u000d\u000aservice.pid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.09c17a18-66f1-476b-adc7-c83fad5de9dc"\u000d\u000atype="up-sell"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.4a42880a-b160-4a71-a074-c38101ecaa19',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000afelix.fileinstall.filename="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration-accessories.cfg"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration"\u000d\u000aservice.pid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.4a42880a-b160-4a71-a074-c38101ecaa19"\u000d\u000atype="accessories"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.89e48e8c-0902-4ee3-999f-58d41eab1e13',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000afelix.fileinstall.filename="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration-related.cfg"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration"\u000d\u000aservice.pid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.89e48e8c-0902-4ee3-999f-58d41eab1e13"\u000d\u000atype="related"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.c0b999aa-4c77-47a2-991d-46487d783e73',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000afelix.fileinstall.filename="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration-spare.cfg"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration"\u000d\u000aservice.pid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.c0b999aa-4c77-47a2-991d-46487d783e73"\u000d\u000atype="spare"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.f1c06191-098a-49b5-90ad-30b064c7ef16',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000afelix.fileinstall.filename="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration-crosssell.cfg"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration"\u000d\u000aservice.pid="com.liferay.commerce.product.configuration.CPDefinitionLinkTypeConfiguration.f1c06191-098a-49b5-90ad-30b064c7ef16"\u000d\u000atype="cross-sell"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.document.library.document.conversion.internal.security.auth.verifier.image.request.module.configuration.ImageRequestAuthVerifierConfiguration.abba7b8a-f473-40ef-a4f8-f56c78bf981e',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000aenabled="true"\u000d\u000afelix.fileinstall.filename="com.liferay.document.library.document.conversion.internal.security.auth.verifier.image.request.module.configuration.ImageRequestAuthVerifierConfiguration-default.cfg"\u000d\u000ahostsAllowed="127.0.0.1,SERVER_IP"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.document.library.document.conversion.internal.security.auth.verifier.image.request.module.configuration.ImageRequestAuthVerifierConfiguration"\u000d\u000aservice.pid="com.liferay.document.library.document.conversion.internal.security.auth.verifier.image.request.module.configuration.ImageRequestAuthVerifierConfiguration.abba7b8a-f473-40ef-a4f8-f56c78bf981e"\u000d\u000aurlsExcludes="/image/user_male_portrait,/image/company_logo"\u000d\u000aurlsIncludes="/documents/*,/image/*,/c/wiki/get_page_attachment"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.oauth2.provider.rest.internal.spi.bearer.token.provider.configuration.DefaultBearerTokenProviderConfiguration',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000aaccess.token.expires.in=I"30"\u000d\u000aaccess.token.key.byte.size=I"32"\u000d\u000arefresh.token.expires.in=I"604800"\u000d\u000arefresh.token.key.byte.size=I"32"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.pid="com.liferay.oauth2.provider.rest.internal.spi.bearer.token.provider.configuration.DefaultBearerTokenProviderConfiguration"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.oauth2.provider.scope.internal.configuration.BundlePrefixHandlerFactoryConfiguration.8e4167f7-b1ac-4339-b3de-a586cb5c39e5',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000afelix.fileinstall.filename="com.liferay.oauth2.provider.scope.internal.configuration.BundlePrefixHandlerFactoryConfiguration-default.config"\u000d\u000ainclude.bundle.symbolic.name=B"false"\u000d\u000aosgi.jaxrs.name="Default"\u000d\u000aseparator="."\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.oauth2.provider.scope.internal.configuration.BundlePrefixHandlerFactoryConfiguration"\u000d\u000aservice.pid="com.liferay.oauth2.provider.scope.internal.configuration.BundlePrefixHandlerFactoryConfiguration.8e4167f7-b1ac-4339-b3de-a586cb5c39e5"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration.7cfcac41-57f4-45ab-8f43-535b49c70498',':org.apache.felix.configadmin.revision:=L"21"\u000d\u000afelix.fileinstall.filename="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration-default.config"\u000d\u000amapping=[ \\u000d\u000a "DELETE,PATCH,POST,PUT\=everything,everything.write", \\u000d\u000a "GET,HEAD,OPTIONS\=everything.read", \\u000d\u000a "everything.write\=everything,everything.write", \\u000d\u000a ]\u000d\u000aosgi.jaxrs.name="Default"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration"\u000d\u000aservice.pid="com.liferay.oauth2.provider.scope.internal.configuration.ConfigurableScopeMapperConfiguration.7cfcac41-57f4-45ab-8f43-535b49c70498"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.organizations.service.internal.configuration.OrganizationTypeConfiguration.311f0757-c37b-4c39-82f4-d994f22bcee4',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000achildrenTypes="organization"\u000d\u000acountryEnabled="true"\u000d\u000acountryRequired="false"\u000d\u000afelix.fileinstall.filename="com.liferay.organizations.service.internal.configuration.OrganizationTypeConfiguration-default.cfg"\u000d\u000aname="organization"\u000d\u000arootable="true"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.organizations.service.internal.configuration.OrganizationTypeConfiguration"\u000d\u000aservice.pid="com.liferay.organizations.service.internal.configuration.OrganizationTypeConfiguration.311f0757-c37b-4c39-82f4-d994f22bcee4"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.portal.security.auth.verifier.internal.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration.179ec2f0-0e3a-4ed6-8477-21c2e1ddeeda',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000aenabled="true"\u000d\u000afelix.fileinstall.filename="com.liferay.portal.security.auth.verifier.internal.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration-default.cfg"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.portal.security.auth.verifier.internal.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration"\u000d\u000aservice.pid="com.liferay.portal.security.auth.verifier.internal.basic.auth.header.module.configuration.BasicAuthHeaderAuthVerifierConfiguration.179ec2f0-0e3a-4ed6-8477-21c2e1ddeeda"\u000d\u000aurlsExcludes="/api/liferay*"\u000d\u000aurlsIncludes="/api/*,/xmlrpc*"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.portal.security.auth.verifier.internal.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration.b138cbfc-1c13-4d8e-9c19-c704a42e195d',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000aenabled="true"\u000d\u000afelix.fileinstall.filename="com.liferay.portal.security.auth.verifier.internal.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration-default.cfg"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.portal.security.auth.verifier.internal.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration"\u000d\u000aservice.pid="com.liferay.portal.security.auth.verifier.internal.portal.session.module.configuration.PortalSessionAuthVerifierConfiguration.b138cbfc-1c13-4d8e-9c19-c704a42e195d"\u000d\u000aurlsIncludes="/api/json*,/api/jsonws*,/c/portal/json_service*"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('com.liferay.portal.security.auth.verifier.internal.tunnel.module.configuration.TunnelAuthVerifierConfiguration.5741056c-519e-419c-804c-cae0cb95d59d',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000aenabled="true"\u000d\u000afelix.fileinstall.filename="com.liferay.portal.security.auth.verifier.internal.tunnel.module.configuration.TunnelAuthVerifierConfiguration-default.cfg"\u000d\u000ahostsAllowed="127.0.0.1,SERVER_IP"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.factoryPid="com.liferay.portal.security.auth.verifier.internal.tunnel.module.configuration.TunnelAuthVerifierConfiguration"\u000d\u000aservice.pid="com.liferay.portal.security.auth.verifier.internal.tunnel.module.configuration.TunnelAuthVerifierConfiguration.5741056c-519e-419c-804c-cae0cb95d59d"\u000d\u000aserviceAccessPolicyName="SYSTEM_USER_PASSWORD"\u000d\u000aurlsIncludes="/api/liferay/do"\u000d\u000a') -INSERT INTO CONFIGURATION_ VALUES('org.apache.aries.jax.rs.whiteboard.default',':org.apache.felix.configadmin.revision:=L"1"\u000d\u000adefault.application.base="/rest"\u000d\u000adefault.web="false"\u000d\u000afelix.fileinstall.filename="org.apache.aries.jax.rs.whiteboard.default.cfg"\u000d\u000aservice.bundleLocation="?"\u000d\u000aservice.pid="org.apache.aries.jax.rs.whiteboard.default"\u000d\u000a') -INSERT INTO OAUTH2APPLICATION VALUES(1,20099,20103,'20103','2019-05-09 00:27:49.333000','2019-05-09 00:27:49.982000',1,'AUTHORIZATION_CODE,REFRESH_TOKEN','id-ca91aeeb-91de-4ad9-c381-41ec40bc25',0,'secret-5ead81a4-d49d-3299-75ea-0b0b4ecf169',NULL,NULL,'https://analytics.liferay.com',32141,'Analytics Cloud',NULL,'https://analytics.liferay.com/oauth/receive') -INSERT INTO OAUTH2APPLICATION VALUES(201,20099,20139,'Test Test','2019-08-08 09:50:26.452000','2019-10-25 13:57:49.443000',201,'AUTHORIZATION_CODE,REFRESH_TOKEN','id-353ab09c-f117-f2d5-d3a3-85cfb89e6746',0,'secret-d31a82c8-3e73-1058-e38a-f9191f7c2014',NULL,'token_introspection','http://localhost:3000/',0,'Layman Node.js Client',NULL,'http://localhost:3000/client/authn/oauth2-liferay/callback\u000ahttp://localhost:3001/client/authn/oauth2-liferay/callback\u000ahttp://localhost/client/authn/oauth2-liferay/callback') -INSERT INTO OAUTH2APPLICATIONSCOPEALIASES VALUES(1,20099,20103,'20103','2019-05-09 00:27:49.345000',1,'analytics.read analytics.write',1283841621) -INSERT INTO OAUTH2APPLICATIONSCOPEALIASES VALUES(201,20099,20139,'Test Test','2019-08-08 09:54:56.449000',201,'liferay-json-web-services.everything.read.userprofile',1572887984) -INSERT INTO MARKETPLACE_APP VALUES('3b3ab3f4-6b78-82b7-ecab-655efbbd8875',29204,20099,0,NULL,'2019-05-09 00:27:39.698000','2019-05-09 00:27:39.698000',106176819,'Liferay CE Announcements','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502319','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('1c3fcf30-dc70-9ab3-365f-47b18476623e',29209,20099,0,NULL,'2019-05-09 00:27:39.737000','2019-05-09 00:27:39.737000',106189505,'Liferay CE Contacts','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503343','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('d2fc4a9d-6840-1733-2495-dcdb42e04e78',29214,20099,0,NULL,'2019-05-09 00:27:39.759000','2019-05-09 00:27:39.759000',106192036,'Liferay CE Site','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504914','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('0206b4ca-2651-178e-c32a-6537c95ebfca',29227,20099,0,NULL,'2019-05-09 00:27:39.811000','2019-05-09 00:27:39.811000',106186010,'Liferay CE Subscription','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507950','1.0.2','0') -INSERT INTO MARKETPLACE_APP VALUES('754b29e6-ff71-81c3-3079-6fd7ea8180f9',29231,20099,0,NULL,'2019-05-09 00:27:39.825000','2019-05-09 00:27:39.825000',106191590,'Liferay CE Asset','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502223','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('1cc29856-9146-eb03-5a6c-78b31a7b3843',29267,20099,0,NULL,'2019-05-09 00:27:39.940000','2019-05-09 00:27:39.940000',103226467,'Liferay CE Adaptive Media','The Adaptive Media app tailors media in your portal to the device consuming it. Since users often consume media on multiple devices that have different screen sizes and capabilities, you should make sure that your portal presents that media in a manner suitable for each device. For example, portal administrators can configure the Adaptive Media app to send high-res images to high-res devices, low-res images to low-res devices, and so on. This ensures that your users have the best possible experience when consuming media from your portal, regardless of the device they use.Note that at this time, the Adaptive Media app only works with images in Documents and Media, Blogs, and Web Content.Once installed, the Adaptive Media app appears in the Control Panel, under the Configuration menu.Please see the documentation for special installation instructions on Liferay Portal 7.0 CE GA5.In Liferay CE 7.1, this app is installed by default and updated through Liferay DXP Fix Packs and Liferay Portal CE GA releases. Using Liferay Marketplace to update the app on Liferay CE 7.1 will cause an error.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166500163','2.0.2','0') -INSERT INTO MARKETPLACE_APP VALUES('6e4c2453-e8cf-52da-307a-6f1ed28d082f',29296,20099,0,NULL,'2019-05-09 00:27:40.039000','2019-05-09 00:27:40.039000',109572023,'Liferay CE Plugin for OAuth 2.0','OAuth 2.0 is an industry-standard authorization protocol. Users can seamlessly share select credentials from another website to log into yours. It works by authorizing password-less access to portions of user-owned resources (such as an email address, a user profile picture, or something else from your account) and other permissioned resources.','Security','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505309','1.1.1','0') -INSERT INTO MARKETPLACE_APP VALUES('0fbbbe8f-4058-e1c0-026b-928c79c3b0c1',29308,20099,0,NULL,'2019-05-09 00:27:40.083000','2019-05-09 00:27:40.083000',106190669,'Liferay CE Portal Language','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505864','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('3f1c96ba-71ef-6005-1313-a1fa67d9f26a',29311,20099,0,NULL,'2019-05-09 00:27:40.095000','2019-05-09 00:27:40.095000',106189409,'Liferay CE Captcha','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503314','1.0.1','1') -INSERT INTO MARKETPLACE_APP VALUES('5ee5b903-900d-70ab-3a26-0df32eaacf62',29315,20099,0,NULL,'2019-05-09 00:27:40.108000','2019-05-09 00:27:40.108000',106191744,'Liferay CE IFrame','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503486','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('42bd3dce-c927-9cc6-c285-8d068cc49ac8',29317,20099,0,NULL,'2019-05-09 00:27:40.115000','2019-05-09 00:27:40.115000',109803166,'Liferay CE External Reference','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502596','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('379307e1-a580-653c-795d-1a4abe0bc9fd',29320,20099,0,NULL,'2019-05-09 00:27:40.125000','2019-05-09 00:27:40.125000',106191970,'Liferay CE Product Navigation','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507605','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('07c73315-6555-c5fe-5c79-016b143eed90',29337,20099,0,NULL,'2019-05-09 00:27:40.177000','2019-05-09 00:27:40.177000',106178299,'Liferay CE Flags','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503403','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('dfacdc85-fa68-e9e8-7c95-f513e4f0848e',29342,20099,0,NULL,'2019-05-09 00:27:40.194000','2019-05-09 00:27:40.194000',106191305,'Liferay CE User Associated Data','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505028','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('25f73730-e962-5f9a-4622-78bdc1ab5f67',29345,20099,0,NULL,'2019-05-09 00:27:40.205000','2019-05-09 00:27:40.205000',106191198,'Liferay CE Roles','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506493','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('fc706004-2305-4d5d-d6ad-5b7ab534cdab',29353,20099,0,NULL,'2019-05-09 00:27:40.231000','2019-05-09 00:27:40.231000',106190606,'Liferay CE Portal Configuration','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505804','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('44a51b8c-200c-f6ef-78f8-b318ccf0dc8c',29362,20099,0,NULL,'2019-05-09 00:27:40.260000','2019-05-09 00:27:40.260000',106189334,'Liferay CE Portal 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\u00e2\u0080\u0099re 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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507415','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('31513d58-654c-5b85-4595-2ed4555e5dc9',29377,20099,0,NULL,'2019-05-09 00:27:40.306000','2019-05-09 00:27:40.306000',74878779,'Liferay CE 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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507782','7.1.1','1') -INSERT INTO MARKETPLACE_APP VALUES('3f2c1167-9e34-2e49-6505-ee7f0a519b67',29443,20099,0,NULL,'2019-05-09 00:27:40.510000','2019-05-09 00:27:40.510000',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/166504289','10','1') -INSERT INTO MARKETPLACE_APP VALUES('1eaedf02-149b-bced-f619-d8068cba76b9',29448,20099,0,NULL,'2019-05-09 00:27:40.527000','2019-05-09 00:27:40.527000',106186172,'Liferay CE Dynamic Data Lists','Apps and Features: Calendar, Dynamic Data Lists, Dynamic Data Mapping, Forms, Polls, WorkflowAn increase in productivity means you''re saving time and effort; you\u00e2\u0080\u0099re 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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503374','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('8246b8c0-e8db-be25-c626-663e563b1331',29452,20099,0,NULL,'2019-05-09 00:27:40.540000','2019-05-09 00:27:40.540000',106191032,'Liferay CE Security Audit','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506145','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('c829a2e8-8ddb-d2d0-9b5c-2c85b6743fca',29461,20099,0,NULL,'2019-05-09 00:27:40.568000','2019-05-09 00:27:40.568000',106191368,'Liferay CE Users Admin','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166508023','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('ca89f2d3-c515-387a-a3c0-3a65c2d32350',29468,20099,0,NULL,'2019-05-09 00:27:40.591000','2019-05-09 00:27:40.591000',106191558,'Liferay CE Application List','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502188','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('74b1564c-993a-a468-4247-e0c10a96c5e8',29473,20099,0,NULL,'2019-05-09 00:27:40.607000','2019-05-09 00:27:40.607000',106192004,'Liferay CE RSS','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504829','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('6805015f-ca6c-73a9-b6d7-fa1909c1b6e0',29478,20099,0,NULL,'2019-05-09 00:27:40.623000','2019-05-09 00:27:40.623000',106234293,'Liferay CE Portal URL Builder','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506419','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('e416c2c2-c3e5-3b88-4973-f0e7ac622743',29481,20099,0,NULL,'2019-05-09 00:27:40.632000','2019-05-09 00:27:40.632000',110543843,'Liferay CE Invite Members','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502991','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('9acab3a5-bfca-6633-822f-4153766cb5f6',29485,20099,0,NULL,'2019-05-09 00:27:40.650000','2019-05-09 00:27:40.650000',106185978,'Liferay CE Social','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504957','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('5942dc47-fdff-d2cb-3c40-8608cb8efc89',29498,20099,0,NULL,'2019-05-09 00:27:40.692000','2019-05-09 00:27:40.692000',106190734,'Liferay CE Portal Mobile Device Detection','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505887','1.0.1','1') -INSERT INTO MARKETPLACE_APP VALUES('4c66105d-acc4-4ffa-2e3e-4e8ae0f7b833',29500,20099,0,NULL,'2019-05-09 00:27:40.699000','2019-05-09 00:27:40.699000',106191166,'Liferay CE Portal Template','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507350','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('d62291e1-960f-fd0a-a789-327683d3277a',29507,20099,0,NULL,'2019-05-09 00:27:40.724000','2019-05-09 00:27:40.724000',106191336,'Liferay CE User Groups Admin','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506526','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('28812cdb-269c-5686-bc82-e3c0ef1109d1',29514,20099,0,NULL,'2019-05-09 00:27:40.746000','2019-05-09 00:27:40.746000',106190318,'Liferay CE Organizations','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505353','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('491c933c-b649-2079-5f63-bf6de3bd32e3',29519,20099,0,NULL,'2019-05-09 00:27:40.762000','2019-05-09 00:27:40.762000',106190638,'Liferay CE Portal Instances','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505839','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('02eded2d-4ca1-ca98-926e-9fe51a64a330',29523,20099,0,NULL,'2019-05-09 00:27:40.775000','2019-05-09 00:27:40.775000',106190415,'Liferay CE Plugins Admin','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505726','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('a3ec4fcc-6b90-8722-98c9-2aac01c10741',29525,20099,0,NULL,'2019-05-09 00:27:40.782000','2019-05-09 00:27:40.782000',106185837,'Liferay CE Ratings','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507657','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('d792bed1-335f-af3a-be40-2b51de72f0eb',29530,20099,0,NULL,'2019-05-09 00:27:40.800000','2019-05-09 00:27:40.800000',106185595,'Liferay CE Item Selector','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503528','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('328990e3-c60e-95d5-bafb-1e45fe62c4b3',29540,20099,0,NULL,'2019-05-09 00:27:40.833000','2019-05-09 00:27:40.833000',106192139,'Liferay CE Trash','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505001','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('0d05fefa-25a2-44b5-16a9-f4e41f3192bb',29545,20099,0,NULL,'2019-05-09 00:27:40.849000','2019-05-09 00:27:40.849000',106191936,'Liferay CE Portlet Display Template','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507580','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('e8ce8199-99ea-2723-2463-90e28a37631b',29549,20099,0,NULL,'2019-05-09 00:27:40.864000','2019-05-09 00:27:40.864000',108268021,'Liferay CE Portal Validation','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504804','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('9423bcc3-7378-5b05-5dce-011a4a9e0247',29551,20099,0,NULL,'2019-05-09 00:27:40.871000','2019-05-09 00:27:40.871000',106189568,'Liferay CE Friendly URL','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503430','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('03236538-d9e0-7da4-3918-90b81adbdc5b',29554,20099,0,NULL,'2019-05-09 00:27:40.881000','2019-05-09 00:27:40.881000',106191775,'Liferay CE Journal','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503016','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('986d9428-181a-9926-d2e4-a7d69673985a',29573,20099,0,NULL,'2019-05-09 00:27:40.939000','2019-05-09 00:27:40.939000',106185628,'Liferay CE Mentions','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503125','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('40667581-a572-bb4e-d08d-bbad1fb2c782',29577,20099,0,NULL,'2019-05-09 00:27:40.953000','2019-05-09 00:27:40.953000',106192073,'Liferay CE Site Navigation','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507687','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('a4a8d6d2-7805-fb46-8c86-8c50e4b859d4',29596,20099,0,NULL,'2019-05-09 00:27:41.013000','2019-05-09 00:27:41.013000',106190513,'Liferay CE Portal Cache','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505772','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('835460b6-ef24-29a0-a1e8-19f232b1549d',29603,20099,0,NULL,'2019-05-09 00:27:41.037000','2019-05-09 00:27:41.037000',106189680,'Liferay CE Frontend Editor','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502669','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('09d4544d-1512-a5e2-f8b6-5ef1249b8f1a',29611,20099,0,NULL,'2019-05-09 00:27:41.062000','2019-05-09 00:27:41.062000',106233068,'Liferay CE Apio Architect','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502154','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('0b7f0f4a-a967-df62-3ece-a4f8f8f107a4',29618,20099,0,NULL,'2019-05-09 00:27:41.086000','2019-05-09 00:27:41.086000',108267923,'Liferay CE Analytics','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502297','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('8439491e-e779-bfb2-9499-9fef1fffb44f',29620,20099,0,NULL,'2019-05-09 00:27:41.094000','2019-05-09 00:27:41.094000',106186042,'Liferay CE Upload','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507999','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('c7855489-b370-cc5d-7e11-896550883f32',29623,20099,0,NULL,'2019-05-09 00:27:41.104000','2019-05-09 00:27:41.104000',106191624,'Liferay CE Export Import','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502561','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('8e79c09e-816f-86cb-439b-2e8bb4f0b064',29632,20099,0,NULL,'2019-05-09 00:27:41.134000','2019-05-09 00:27:41.134000',106190007,'Liferay CE Map','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503677','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('d0d690e7-ac2d-c7d6-f307-4fa25fac8386',29638,20099,0,NULL,'2019-05-09 00:27:41.153000','2019-05-09 00:27:41.153000',106189471,'Liferay CE Configuration Admin','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502447','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('87e190e4-8cc2-6f76-4067-4272a9d27369',29641,20099,0,NULL,'2019-05-09 00:27:41.165000','2019-05-09 00:27:41.165000',106189876,'Liferay CE Hello World','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502924','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('cfaedc48-cca3-6095-a0f3-a166e1c8d81f',29643,20099,0,NULL,'2019-05-09 00:27:41.172000','2019-05-09 00:27:41.172000',106189945,'Liferay CE License Manager','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503627','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('67513e58-d2b3-57fd-7d70-d4a78ac6d969',29645,20099,0,NULL,'2019-05-09 00:27:41.179000','2019-05-09 00:27:41.179000',106190351,'Liferay CE Password Policies Admin','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503706','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('167a7e12-15d6-3825-5b6f-69ba71cee9b3',29650,20099,0,NULL,'2019-05-09 00:27:41.196000','2019-05-09 00:27:41.196000',106190999,'Liferay CE Portal Security','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506231','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('cea9ea0f-4eec-dced-83ea-0039b1d1a37a',29663,20099,0,NULL,'2019-05-09 00:27:41.237000','2019-05-09 00:27:41.237000',106190773,'Liferay CE Portal OSGI Debug','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504035','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('3282ba75-663b-f52a-a8f9-7908adc62fe8',29668,20099,0,NULL,'2019-05-09 00:27:41.254000','2019-05-09 00:27:41.254000',106189714,'Liferay CE Frontend Image Editor','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502704','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('6a33e6ad-fb1b-deb9-d07b-1e98c58bc8b0',29679,20099,0,NULL,'2019-05-09 00:27:41.289000','2019-05-09 00:27:41.289000',106177263,'Liferay CE Document Library','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502472','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('f36202aa-21a5-e71e-052e-dba0ddc188f7',29699,20099,0,NULL,'2019-05-09 00:27:41.350000','2019-05-09 00:27:41.350000',108267989,'Liferay CE Portal Relationship','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504638','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('53cf0b46-f877-4472-c55c-783c7d29f015',29702,20099,0,NULL,'2019-05-09 00:27:41.364000','2019-05-09 00:27:41.364000',106005350,'Liferay CE Connector to Elasticsearch 6','Liferay CE Connector to Elasticsearch 6 to Elasticsearch 6 connects Liferay Portal or Liferay DXP to the Elasticsearch 6.1.x search engine. This client application is a drop-in replacement for the default Elasticsearch 2.x connector that ships with the Foundation app suite.In Liferay CE 7.1, this app is installed by default and updated through Liferay DXP Fix Packs and Liferay Portal CE GA releases. Using Liferay Marketplace to update the app on Liferay CE 7.1 will cause an error.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506363','2.0.2','0') -INSERT INTO MARKETPLACE_APP VALUES('43e155a7-7c23-7375-e6cf-afc68c27a96b',29707,20099,0,NULL,'2019-05-09 00:27:41.381000','2019-05-09 00:27:41.381000',106190807,'Liferay CE Portal Portlet Bridge','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504062','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('82c5e8d8-312a-e1ed-0172-afd0a2b01a8d',29710,20099,0,NULL,'2019-05-09 00:27:41.391000','2019-05-09 00:27:41.391000',106190246,'Liferay CE Mobile Device Rules','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503229','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('4c69633d-cd4a-d8a1-8bba-9e4b743be145',29714,20099,0,NULL,'2019-05-09 00:27:41.406000','2019-05-09 00:27:41.406000',106186206,'Liferay CE Dynamic Data Mapping','Apps and Features: Calendar, Dynamic Data Lists, Dynamic Data Mapping, Forms, Polls, WorkflowAn increase in productivity means you''re saving time and effort; you\u00e2\u0080\u0099re 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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166501129','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('65d8afa1-0ba9-9ef8-5027-bf538f178e91',29735,20099,0,NULL,'2019-05-09 00:27:41.476000','2019-05-09 00:27:41.476000',106185659,'Liferay CE Message Boards','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503173','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('0a741d3b-87c6-23ea-6af4-e58e3c8b392e',29744,20099,0,NULL,'2019-05-09 00:27:41.506000','2019-05-09 00:27:41.506000',106191660,'Liferay CE Fragment','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166501199','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('85adfd9d-bad5-0d0b-02ac-d9ab2679f7b5',29756,20099,0,NULL,'2019-05-09 00:27:41.541000','2019-05-09 00:27:41.541000',116743044,'Liferay CE Portal OData','Liferay CE Portal OData','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504013','1.0.1','1') -INSERT INTO MARKETPLACE_APP VALUES('4693779e-250e-7e12-b8ee-9bc97ef0d068',29759,20099,0,NULL,'2019-05-09 00:27:41.551000','2019-05-09 00:27:41.551000',106177196,'Liferay CE Comment','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166501085','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('654efe81-fa6d-825c-8d1d-28a793886c2e',29768,20099,0,NULL,'2019-05-09 00:27:41.581000','2019-05-09 00:27:41.581000',106190479,'Liferay CE Portal Background Task','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504611','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('bc731ee6-b6f5-dfb4-46c2-c692cecf04c3',29772,20099,0,NULL,'2019-05-09 00:27:41.593000','2019-05-09 00:27:41.593000',106189537,'Liferay CE Expando','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502532','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('4fc2ac94-db28-dc88-b8d1-59bbc8bf0c42',29775,20099,0,NULL,'2019-05-09 00:27:41.603000','2019-05-09 00:27:41.603000',31718422,'Liferay CE Notifications','Liferay''s Notifications app provides a convenient way for users to see notifications of important events on any page. It appears at the top of every page inside the user''s dockbar. Notifications also allow users to quickly respond through configurable action buttons.In Liferay CE 7.1, this app is installed by default and updated through Liferay DXP Fix Packs and Liferay Portal CE GA releases. Using Liferay Marketplace to update the app on Liferay CE 7.1 will cause an error.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505275','3.0.2','0') -INSERT INTO MARKETPLACE_APP VALUES('d05ad591-05a0-d9bf-d759-cc28fe5a984b',29778,20099,0,NULL,'2019-05-09 00:27:41.613000','2019-05-09 00:27:41.613000',54365664,'Liferay CE Screens Compatibility','This plugin is a portlet that exposes additional classes and methods that are not present in Liferay''s out-of-the-box API. These additional classes and methods allow Liferay Screens to do certain operations that are needed for the screenlets to work correctly.Please report issues with the Liferay Screens Compatibility Plugin by creating a ticket in https://issues.liferay.com/browse/LMW.In Liferay CE 7.1, this app is installed by default and updated through Liferay DXP Fix Packs and Liferay Portal CE GA releases. Using Liferay Marketplace to update the app on Liferay CE 7.1 will cause an error.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504856','4.0.2','0') -INSERT INTO MARKETPLACE_APP VALUES('04d2df5c-88ff-1fb1-a9e0-d9c4e1b78da9',29781,20099,0,NULL,'2019-05-09 00:27:41.623000','2019-05-09 00:27:41.623000',106191234,'Liferay CE Server','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504892','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('622d191f-cbab-ec46-cc0b-460b4632dbb2',29783,20099,0,NULL,'2019-05-09 00:27:41.630000','2019-05-09 00:27:41.630000',116742743,'Liferay CE Hypermedia REST APIs','The Liferay Hypermedia REST APIs app exposes a new breed of RESTful hypermedia APIs that interact with Liferay services. These APIs let developers consume Liferay services in a straightforward and flexible way. For example, developers can consume portal resources like sites, blogs, pages, and users via fully RESTful APIs that support several response formats like plain JSON, JSON-LD, or HAL. What''s more, these APIs are evolvable and can change over time with minimal risk to most clients that consume them.This app has no visual component in the portal. After installing it, you can begin accessing the APIs via the home URL http://[host]:[port]/o/api.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502813','1.0.0','0') -INSERT INTO MARKETPLACE_APP VALUES('c66f3d26-2dca-633f-2eb5-067ec14cd500',29828,20099,0,NULL,'2019-05-09 00:27:41.781000','2019-05-09 00:27:41.781000',106191134,'Liferay CE Portal Store','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507317','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('16c4383e-c843-8acb-b706-8cf0954445e9',29836,20099,0,NULL,'2019-05-09 00:27:41.807000','2019-05-09 00:27:41.807000',106191808,'Liferay CE Layout','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503566','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('412da52b-38a5-50c8-9efe-9b04b2f709bf',29858,20099,0,NULL,'2019-05-09 00:27:41.873000','2019-05-09 00:27:41.873000',106192107,'Liferay CE Staging','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507745','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('9a73a3cc-d75a-1630-1751-5ee1b422f631',29868,20099,0,NULL,'2019-05-09 00:27:41.904000','2019-05-09 00:27:41.904000',106177105,'Liferay CE Blogs','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502369','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('217c8492-aca8-6e8d-d792-ea2dc2810bdf',29880,20099,0,NULL,'2019-05-09 00:27:41.954000','2019-05-09 00:27:41.954000',118103353,'Liferay CE Bean Portlet','Bean Portlet provides CDI "bean portlets" capability. It lets you register portlets using annotations such as @PortletConfiguration and its @Inject annotation obtains dependencies via Contexts and Dependency Injection (CDI). Bean portlets are a feature of the Portlet 3.0 Specification as defined by JSR 362.The Bean Portlet modules install to LIFERAY_HOME/osgi/modules/static.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/118103357','1.0.0','1') -INSERT INTO MARKETPLACE_APP VALUES('665fcfae-288e-7c2b-46a0-0ad593a530bc',29883,20099,0,NULL,'2019-05-09 00:27:41.966000','2019-05-09 00:27:41.966000',106190383,'Liferay CE Petra','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505380','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('161a8abc-013f-1d15-8080-b6cc61cbbb16',29889,20099,0,NULL,'2019-05-09 00:27:41.985000','2019-05-09 00:27:41.985000',106189378,'Liferay CE Alloy','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502276','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('260993b1-a70e-9ce2-0c8f-8726b896db64',29891,20099,0,NULL,'2019-05-09 00:27:41.991000','2019-05-09 00:27:41.991000',125168167,'Liferay Portal CE Vulcan','Liferay CE Vulcan','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/125168171','1.0.0','1') -INSERT INTO MARKETPLACE_APP VALUES('d510fac2-6640-46a8-a6e2-973607cdaac7',29903,20099,0,NULL,'2019-05-09 00:27:42.029000','2019-05-09 00:27:42.029000',106190054,'Liferay CE Microsoft Translator','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503208','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('4a00cace-8e59-2fdd-66d1-698bbfe8b9b9',29905,20099,0,NULL,'2019-05-09 00:27:42.039000','2019-05-09 00:27:42.039000',106186238,'Liferay CE Polls','Apps and Features: Calendar, Dynamic Data Lists, Dynamic Data Mapping, Forms, Polls, WorkflowAn increase in productivity means you''re saving time and effort; you\u00e2\u0080\u0099re 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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166505747','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('e0fe02a7-cfc5-669c-42cd-8bee22bd22fb',29909,20099,0,NULL,'2019-05-09 00:27:42.051000','2019-05-09 00:27:42.051000',106190843,'Liferay CE Portal Remote','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504085','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('2ba5ec4b-591d-98a8-bfa0-be50114209b1',29926,20099,0,NULL,'2019-05-09 00:27:42.103000','2019-05-09 00:27:42.103000',106191103,'Liferay CE Portal Settings','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507275','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('329d1c74-f0b5-cf66-e8cf-454edd922331',29938,20099,0,NULL,'2019-05-09 00:27:42.140000','2019-05-09 00:27:42.140000',106189301,'Liferay CE Portal Rules Engine','Apps and Features: Calendar, Dynamic Data Lists, Dynamic Data Mapping, Forms, Polls, WorkflowAn increase in productivity means you''re saving time and effort; you\u00e2\u0080\u0099re 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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506311','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('55c04e7d-76b7-7272-7f81-4e0b9e722704',29941,20099,0,NULL,'2019-05-09 00:27:42.152000','2019-05-09 00:27:42.152000',110186324,'Liferay CE Portlet Dependency Factory','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506442','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('9fbd68f7-d6cc-1e32-a647-3621ba3611d2',29943,20099,0,NULL,'2019-05-09 00:27:42.159000','2019-05-09 00:27:42.159000',106191271,'Liferay CE Text Localizer','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507975','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('f2567e44-2651-21b6-087c-8968219862f0',29946,20099,0,NULL,'2019-05-09 00:27:42.169000','2019-05-09 00:27:42.169000',106190447,'Liferay CE Portal','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507462','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('ea9e826c-ddde-2774-d4a8-9f73d7b5a8f1',29973,20099,0,NULL,'2019-05-09 00:27:42.256000','2019-05-09 00:27:42.256000',106190702,'Liferay CE Portal Lock','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503990','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('70927c77-cbaa-a377-a957-e5735bb83e0b',29976,20099,0,NULL,'2019-05-09 00:27:42.269000','2019-05-09 00:27:42.269000',106190284,'Liferay CE Monitoring','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503254','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('0e5ca8b7-decb-5a84-80d7-35cf8979d7e3',29978,20099,0,NULL,'2019-05-09 00:27:42.279000','2019-05-09 00:27:42.279000',106189746,'Liferay CE Frontend JS','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166501242','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('8fb3a7f7-5f73-d334-088b-b5f6e38bcf73',29991,20099,0,NULL,'2019-05-09 00:27:42.322000','2019-05-09 00:27:42.322000',106190927,'Liferay CE Portal Scripting','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506334','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('9d3100c9-d507-4db6-c450-5d982b26c9ca',29997,20099,0,NULL,'2019-05-09 00:27:42.342000','2019-05-09 00:27:42.342000',15197613,'Liferay CE Knowledge Base','Liferay''s Knowledge Base app provides a means for creating and organizing articles within a site. The knowledge base is perfect for creating and organizing information more formally than in a wiki. For example, it can be used to organize and display professional product documentation. The knowledge base lets you import article source files written in Markdown, so you can work on them offline before publishing. Its integration with GitHub allows you to give users access to contribute fixes or improvements to articles. It''s easy to set up the knowledge base with a workflow that requires articles to be approved before they are published. Additionally, it allows administrators to create article templates. Templates can be used to ensure that certain kinds of articles possess a common structure and include certain kinds of information. Knowledge base articles can be categorized to make them easy to find. They can also be organized hierarchically to form complete books or guides. There are multiple portlets included in this app.This app will appear in your Application menu and Site Administration once installed.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503071','4.0.2','0') -INSERT INTO MARKETPLACE_APP VALUES('be004717-2ea7-bc30-6c3a-f3e3567127f8',30006,20099,0,NULL,'2019-05-09 00:27:42.375000','2019-05-09 00:27:42.375000',31070085,'Liferay CE Calendar','Liferay''s Calendar app allows users and organizations to create, track, share, and manage events. In addition, the Calendar app supports notifications, integration with Social Office, and staging. As a user, you can create as many calendars as you need. As an administrator, you are able to manage the scheduling of Calendar Resources such as rooms and projectors. All content from the old Calendar portlet is automatically imported into this new application.In Liferay CE 7.1, this app is installed by default and updated through Liferay DXP Fix Packs and Liferay Portal CE GA releases. Using Liferay Marketplace to update the app on Liferay CE 7.1 will cause an error.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166501046','3.0.2','0') -INSERT INTO MARKETPLACE_APP VALUES('dc3f5755-6bbd-4aa4-c230-af7093212b67',30010,20099,0,NULL,'2019-05-09 00:27:42.390000','2019-05-09 00:27:42.390000',106191464,'Liferay CE XStream','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506557','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('f6a48757-ca02-ae04-a117-79c33a05acfb',30012,20099,0,NULL,'2019-05-09 00:27:42.398000','2019-05-09 00:27:42.398000',109803263,'Liferay CE Meris','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503150','1.0.1','1') -INSERT INTO MARKETPLACE_APP VALUES('1c7e7c10-83ce-6e91-5378-2cfc665574ac',30014,20099,0,NULL,'2019-05-09 00:27:42.405000','2019-05-09 00:27:42.405000',106186073,'Liferay CE Wiki','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166508075','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('68aa2779-bafc-4cab-a8ec-208a378d2851',30028,20099,0,NULL,'2019-05-09 00:27:42.449000','2019-05-09 00:27:42.449000',106189640,'Liferay CE Frontend CSS','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502644','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('a37524ed-af3d-237a-b226-e5b5d201cb48',30032,20099,0,NULL,'2019-05-09 00:27:42.467000','2019-05-09 00:27:42.467000',106185872,'Liferay CE Reading Time','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506463','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('41947b0a-3ec7-03f2-f04f-4b24d6b7fd1a',30038,20099,0,NULL,'2019-05-09 00:27:42.489000','2019-05-09 00:27:42.489000',106189910,'Liferay CE Imageio Plugins','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502970','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('a80b130b-d36b-c156-1721-d1011ff3a9c5',30040,20099,0,NULL,'2019-05-09 00:27:42.500000','2019-05-09 00:27:42.500000',106191897,'Liferay CE Portlet Configuration','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166507533','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('bc829796-c6bd-f44a-0234-e71fc8430cab',30055,20099,0,NULL,'2019-05-09 00:27:42.547000','2019-05-09 00:27:42.547000',106189976,'Liferay CE Login','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503648','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('db6dbc66-27b6-c655-3b51-73504dfb34d6',30061,20099,0,NULL,'2019-05-09 00:27:42.571000','2019-05-09 00:27:42.571000',106190963,'Liferay CE Portal Search','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506097','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('72f7e73d-0cae-fc95-cc46-18abc1b11b74',30069,20099,0,NULL,'2019-05-09 00:27:42.600000','2019-05-09 00:27:42.600000',106189777,'Liferay CE Frontend TagLib','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502746','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('73cb8dd9-d0ed-596e-fdd4-6ae17e425d51',30078,20099,0,NULL,'2019-05-09 00:27:42.632000','2019-05-09 00:27:42.632000',109803218,'Liferay CE Gogo Shell','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503464','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('bf41568f-e9cb-f4b2-6713-b9715b472556',30080,20099,0,NULL,'2019-05-09 00:27:42.640000','2019-05-09 00:27:42.640000',108267954,'Liferay CE Changeset','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502422','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('71e02e7a-12bf-353c-87ef-83758caa510b',30083,20099,0,NULL,'2019-05-09 00:27:42.653000','2019-05-09 00:27:42.653000',106191431,'Liferay CE WebSocket','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166508054','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('3f60651d-d5d0-e6d9-adef-a4f8b4737b1c',30085,20099,0,NULL,'2019-05-09 00:27:42.662000','2019-05-09 00:27:42.662000',106191064,'Liferay CE Security SSO','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506180','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('fd504ef5-6e1b-c997-6dcc-ea69665afb6b',30102,20099,0,NULL,'2019-05-09 00:27:42.724000','2019-05-09 00:27:42.724000',106190877,'Liferay CE Portal Scheduler','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506070','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('d294c82b-a803-925e-0029-0b9ae3e2dffa',30106,20099,0,NULL,'2019-05-09 00:27:42.741000','2019-05-09 00:27:42.741000',106178368,'Liferay CE Image Uploader','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\u00e2\u0080\u0099s 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 CE bundle.','Communication','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166503507','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('fc66842f-4e17-1135-0919-2a1e7ceb6144',30108,20099,0,NULL,'2019-05-09 00:27:42.750000','2019-05-09 00:27:42.750000',106191700,'Liferay CE HTML Preview','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502945','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('39e8cd11-7f59-14e0-7a6b-1699d0b6aed0',30112,20099,0,NULL,'2019-05-09 00:27:42.767000','2019-05-09 00:27:42.767000',106186269,'Liferay CE Portal Reports Engine','Apps and Features: Calendar, Dynamic Data Lists, Dynamic Data Mapping, Forms, Polls, WorkflowAn increase in productivity means you''re saving time and effort; you\u00e2\u0080\u0099re 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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166506049','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('d983d94e-2ec5-c1e1-d4d2-3478aff5a893',30114,20099,0,NULL,'2019-05-09 00:27:42.776000','2019-05-09 00:27:42.776000',106189810,'Liferay CE Frontend Theme','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502782','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('62f11ba4-ac68-84da-1806-256ad1ec7bb8',30121,20099,0,NULL,'2019-05-09 00:27:42.802000','2019-05-09 00:27:42.802000',106189607,'Liferay CE Frontend Compatibility','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 CE bundle.','Utility','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166502623','1.0.2','1') -INSERT INTO MARKETPLACE_APP VALUES('6a125fe8-4574-a1e5-5e3a-b3b0e2b0865a',30123,20099,0,NULL,'2019-05-09 00:27:42.811000','2019-05-09 00:27:42.811000',106191839,'Liferay CE Nested Portlets','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 CE bundle.','Productivity','https://web.liferay.com/web/guest/marketplace/-/mp/asset/icon/166504317','1.0.2','1') -INSERT INTO MARKETPLACE_MODULE VALUES('e0c07e4e-5868-b353-3019-93984cdc5643',29205,20099,29204,'com.liferay.announcements.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6ae1b1cd-8818-f987-7319-01a29b4e909c',29206,20099,29204,'com.liferay.announcements.editor.configuration','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1839c720-4c1a-76fb-3ce0-8366417b5b02',29207,20099,29204,'com.liferay.announcements.uad','3.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a8bd53bb-ea03-244b-3302-ff3bb3b57c73',29208,20099,29204,'com.liferay.announcements.web','3.0.19','announcements-web') -INSERT INTO MARKETPLACE_MODULE VALUES('14cc0f91-658a-d258-b9eb-9244207a6901',29210,20099,29209,'com.liferay.contacts.api','3.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('14c44346-9e2e-900b-9949-379e0533c2c4',29211,20099,29209,'com.liferay.contacts.service','3.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c8614c34-ee46-f27b-a240-502a297d5ec6',29212,20099,29209,'com.liferay.contacts.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('885860c9-8c25-1076-f9ed-b6a32860f0a7',29213,20099,29209,'com.liferay.contacts.web','2.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('dbfcca23-7dfc-12b2-c947-68a8d185d9f0',29215,20099,29214,'com.liferay.site.admin.web','2.0.25','site-admin-web') -INSERT INTO MARKETPLACE_MODULE VALUES('581107ef-e83c-c3e8-1b62-787639ea45e8',29216,20099,29214,'com.liferay.site.api','3.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a5d7387d-1c8a-a162-4fdd-3bf469969a52',29217,20099,29214,'com.liferay.site.browser.web','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7fe9fa81-8548-6fc0-3af4-929033a81a00',29218,20099,29214,'com.liferay.site.impl','1.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b4506ad9-5c87-5b46-9203-bd3a0546ad55',29219,20099,29214,'com.liferay.site.item.selector.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9069f84b-5818-5816-b0ce-6c3f7fccc104',29220,20099,29214,'com.liferay.site.item.selector.web','3.0.4','site-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('04034171-01a4-38a0-3763-a487d1aaf76a',29221,20099,29214,'com.liferay.site.memberships.web','2.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('45d13afc-f5b3-77e9-3399-343b7401ed8e',29222,20099,29214,'com.liferay.site.my.sites.web','3.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f98c544b-1faa-04f2-2b16-8a9b05b00448',29223,20099,29214,'com.liferay.site.service','1.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3ed0e469-55ec-1a0a-7107-7d3cca76bf3c',29224,20099,29214,'com.liferay.site.taglib','1.0.3','site-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('ca228883-f1c9-0a01-9f43-8e57de50f937',29225,20099,29214,'com.liferay.site.teams.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7a6a7a04-b773-7b64-648e-4706370df9a3',29226,20099,29214,'com.liferay.site.teams.web','2.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('12746521-9164-23e9-c8ac-985d845ff02f',29228,20099,29227,'com.liferay.subscription.api','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ad07cb95-2bec-953c-26a8-7e674cdddafa',29229,20099,29227,'com.liferay.subscription.service','1.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('843720b2-1de7-470f-b077-c23ac85cb206',29230,20099,29227,'com.liferay.subscription.web','1.0.9','subscription-web') -INSERT INTO MARKETPLACE_MODULE VALUES('53cc8b19-30d7-5077-7f0f-3fa7f3305f2e',29232,20099,29231,'com.liferay.asset.api','1.1.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('684763d3-89d2-f31f-aadc-40e481e4b35e',29233,20099,29231,'com.liferay.asset.browser.web','2.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9fca7615-b42c-bf88-f1dc-ce605efe2cdd',29234,20099,29231,'com.liferay.asset.categories.admin.web','2.0.19',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f5c06a30-3c6b-a478-ff58-80a2d5b1fe65',29235,20099,29231,'com.liferay.asset.categories.navigation.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9cc9c70f-50de-1dcc-68b4-02a4dc8ba68e',29236,20099,29231,'com.liferay.asset.categories.navigation.web','3.0.13','asset-categories-navigation-web') -INSERT INTO MARKETPLACE_MODULE VALUES('e0ae8678-4568-860e-2e97-555aeb8ea44d',29237,20099,29231,'com.liferay.asset.categories.selector.web','1.0.7','asset-categories-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('ed2e2726-384d-d886-84c1-a4fa365b78dd',29238,20099,29231,'com.liferay.asset.categories.service','2.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('31b00a17-4372-6e07-9674-19183abb6998',29239,20099,29231,'com.liferay.asset.category.property.api','1.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('753fa8c3-15b9-886f-e95b-29e79d8dd062',29240,20099,29231,'com.liferay.asset.category.property.service','1.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d708aa28-50e4-9582-d4fa-c33d481a7e24',29241,20099,29231,'com.liferay.asset.display.api','1.2.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('92a0daaf-357b-0b4d-2906-abe3a162be06',29242,20099,29231,'com.liferay.asset.display.impl','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8e234fa7-abb5-1cfe-996c-b96b0258a48d',29243,20099,29231,'com.liferay.asset.display.page.api','2.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('49a23073-3331-7593-c17f-8fe391f5e8d6',29244,20099,29231,'com.liferay.asset.display.page.item.selector.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('14a4e787-7725-a4fe-fec8-9744bdd0788a',29245,20099,29231,'com.liferay.asset.display.page.item.selector.web','1.0.6','asset-display-page-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('8804cd98-9393-d224-ea8e-6571ac00e1ee',29246,20099,29231,'com.liferay.asset.display.page.service','1.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3c99546c-d23b-f088-27ec-54e8674f6db4',29247,20099,29231,'com.liferay.asset.display.web','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('05cb1133-64be-3eb3-451f-fe4cd2491b8d',29248,20099,29231,'com.liferay.asset.entry.query.processor.custom.user.attributes','3.0.3','asset-entry-query-processor-custom-user-attributes') -INSERT INTO MARKETPLACE_MODULE VALUES('2e7015da-558b-7a81-9659-fd3156a93817',29249,20099,29231,'com.liferay.asset.entry.rel.api','1.1.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('95fa9970-3b9d-043e-1e2a-394cb5a84d15',29250,20099,29231,'com.liferay.asset.entry.rel.service','1.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('94983e6c-7f04-25e1-3c0a-4701eb2c9b66',29251,20099,29231,'com.liferay.asset.link.service','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('89171838-76d7-fc10-c54a-71c8bfef28d1',29252,20099,29231,'com.liferay.asset.publisher.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fca8aae0-3136-b4e1-7bee-42aa88efebc0',29253,20099,29231,'com.liferay.asset.publisher.layout.prototype','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('88df65d6-13e6-6d25-da9b-6ceb13fc62ed',29254,20099,29231,'com.liferay.asset.publisher.web','2.0.54','asset-publisher-web') -INSERT INTO MARKETPLACE_MODULE VALUES('86dc889e-9db9-fab9-ab8c-51acd0948fc0',29255,20099,29231,'com.liferay.asset.service','2.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f12a65a7-5a33-ea94-c67d-842dfa076a35',29256,20099,29231,'com.liferay.asset.tag.stats.api','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('70aec7ba-c8df-eb99-4f98-00f740bc5e38',29257,20099,29231,'com.liferay.asset.tag.stats.service','1.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0702bd5e-ec9d-f652-1f65-e6e0cc92998b',29258,20099,29231,'com.liferay.asset.taglib','3.0.18','asset-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('60c9e452-1bb6-4285-d90b-99753312d095',29259,20099,29231,'com.liferay.asset.tags.admin.web','2.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c17a1118-7a0b-d4f2-51a1-be2da54da817',29260,20099,29231,'com.liferay.asset.tags.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0f15bc5b-d40e-056a-72e6-33268a46bd32',29261,20099,29231,'com.liferay.asset.tags.compiler.web','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c03058f7-8dde-dfd4-6fa2-8c043294e01f',29262,20099,29231,'com.liferay.asset.tags.navigation.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e061882e-8adb-916f-da0a-ee19bc57344b',29263,20099,29231,'com.liferay.asset.tags.navigation.web','4.0.8','asset-tags-navigation-web') -INSERT INTO MARKETPLACE_MODULE VALUES('76401141-9c2f-c319-ce1f-eeb350314daf',29264,20099,29231,'com.liferay.asset.tags.selector.web','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('df350686-37c1-3e46-75b0-89bef3a39743',29265,20099,29231,'com.liferay.asset.tags.service','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('cdb07550-f276-b279-3acc-eae8c0a97e95',29266,20099,29231,'com.liferay.asset.web','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('83f21d44-efd4-3ac1-e35e-5b3e0e2e6b95',29268,20099,29267,'com.liferay.adaptive.media.api','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4d43946f-32ed-784e-6383-ebb554e1fd39',29269,20099,29267,'com.liferay.adaptive.media.blogs.editor.configuration','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('68b88b1d-14a8-88ff-7ba3-333e6db9f533',29270,20099,29267,'com.liferay.adaptive.media.blogs.item.selector.web','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('93086ca5-fa79-1984-62aa-c66ddb9fd11f',29271,20099,29267,'com.liferay.adaptive.media.blogs.web','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9fd8a65d-9bd5-3383-cd88-9f97e7e676e9',29272,20099,29267,'com.liferay.adaptive.media.blogs.web.fragment','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4d45b9b0-48c7-b519-0383-6721ed3d7bfa',29273,20099,29267,'com.liferay.adaptive.media.content.transformer.api','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1bb5e161-f68c-d726-7986-88988719c920',29274,20099,29267,'com.liferay.adaptive.media.content.transformer.impl','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7367f26e-d042-b4f4-c3d8-1bb309e73511',29275,20099,29267,'com.liferay.adaptive.media.demo.data.creator.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b18fb2eb-b1ea-2308-1e6c-41c1387a1116',29276,20099,29267,'com.liferay.adaptive.media.demo.data.creator.impl','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4f6e831f-264e-1719-5deb-69934c119e96',29277,20099,29267,'com.liferay.adaptive.media.document.library','2.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('784c870b-3225-f11f-f710-620d0bf56930',29278,20099,29267,'com.liferay.adaptive.media.document.library.item.selector.web','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c086e25d-064e-c415-4da0-2bb7cbda8847',29279,20099,29267,'com.liferay.adaptive.media.document.library.thumbnails','2.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('202df355-f611-d42a-7eaa-b2836ec287cd',29280,20099,29267,'com.liferay.adaptive.media.document.library.web','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4e823a5f-6773-e90c-f8ce-42f4aaed7043',29281,20099,29267,'com.liferay.adaptive.media.image.api','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('54bccb32-0865-9e59-53c1-f381fb207e58',29282,20099,29267,'com.liferay.adaptive.media.image.content.transformer','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c62dfb51-7845-5a03-5023-db2ee39dfae4',29283,20099,29267,'com.liferay.adaptive.media.image.content.transformer.backwards.compatibility','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8bc4e1fa-b8f1-db7f-fa20-7b68fd8432ed',29284,20099,29267,'com.liferay.adaptive.media.image.impl','2.0.25',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e90ad6ee-3d2a-034d-1385-9e8c0fc6c33a',29285,20099,29267,'com.liferay.adaptive.media.image.item.selector.api','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f8a70c9a-dfa7-351e-55b1-4aa117ef2e47',29286,20099,29267,'com.liferay.adaptive.media.image.item.selector.impl','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5e98e8f3-7951-ffef-4d0c-fd9521dbf6d5',29287,20099,29267,'com.liferay.adaptive.media.image.js.web','2.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('29f1bec7-6ecd-f54a-8c5a-48e6c29df3d1',29288,20099,29267,'com.liferay.adaptive.media.image.service','2.0.18',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2ce0cadd-fc3a-24e3-e85e-f8dd5ecc3dd8',29289,20099,29267,'com.liferay.adaptive.media.image.taglib','2.0.1','adaptive-media-image-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('f3b6aebb-2bd3-be4e-e457-ccea89e66296',29290,20099,29267,'com.liferay.adaptive.media.image.web','2.0.5','adaptive-media-image-web') -INSERT INTO MARKETPLACE_MODULE VALUES('c1288c81-45b3-612e-9f62-4c6f207130db',29291,20099,29267,'com.liferay.adaptive.media.item.selector.upload.web','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('63232ad6-0cf0-8188-3d75-3417e2cb3bc5',29292,20099,29267,'com.liferay.adaptive.media.journal.editor.configuration','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('55a135ca-23a4-9210-904a-a204fb8800c4',29293,20099,29267,'com.liferay.adaptive.media.journal.web','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e895e52a-3dc6-e7ce-e3d3-e1b80364967c',29294,20099,29267,'com.liferay.adaptive.media.upload','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f0576ef1-1018-52f8-1256-989fb66bef58',29295,20099,29267,'com.liferay.adaptive.media.web','2.0.20','adaptive-media-web') -INSERT INTO MARKETPLACE_MODULE VALUES('14b4e87f-ff48-9ac0-af49-c54111096dbc',29297,20099,29296,'com.liferay.oauth2.provider.api','1.2.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('caca6fe4-defb-bff6-4cb9-6dda664a8769',29298,20099,29296,'com.liferay.oauth2.provider.jsonws','1.0.23',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8411e8d7-4434-2156-4e49-68db6a4b3b6e',29299,20099,29296,'com.liferay.oauth2.provider.rest','1.0.42',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c78bf1e8-fb5a-798c-ed4a-0dd9de1484b2',29300,20099,29296,'com.liferay.oauth2.provider.rest.spi','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3f0f6aea-d20b-7745-b035-d85bfc64394d',29301,20099,29296,'com.liferay.oauth2.provider.scope.api','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('49621842-e00f-f89c-a1b3-4ec01ea1aa3c',29302,20099,29296,'com.liferay.oauth2.provider.scope.impl','1.0.42',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d07e13ba-9c4e-8c34-971b-090101bbe553',29303,20099,29296,'com.liferay.oauth2.provider.scope.liferay.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('cd9539dc-487e-9e13-2433-117e85e1844e',29304,20099,29296,'com.liferay.oauth2.provider.scope.spi','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ecf05a3d-00dd-2112-e72d-a22168ed1077',29305,20099,29296,'com.liferay.oauth2.provider.service','1.0.25',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8c21e289-3cfc-4f13-a1f9-163abef99939',29306,20099,29296,'com.liferay.oauth2.provider.shortcut','1.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6a58fd97-016e-6201-695e-512005d21c82',29307,20099,29296,'com.liferay.oauth2.provider.web','1.0.40','oauth2-provider-web') -INSERT INTO MARKETPLACE_MODULE VALUES('6939c202-70dc-a784-8779-19cfa4e5e1f1',29309,20099,29308,'com.liferay.portal.language.extender','3.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d63ed66e-d0c4-8afd-5f21-90c9e1d6af6d',29310,20099,29308,'com.liferay.portal.language.servlet.filter','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0f9f90e1-2b7c-3829-1ee2-ca6c6cf5c895',29312,20099,29311,'com.liferay.captcha.api','2.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bde2abda-977c-5907-20fd-21626b5f6853',29313,20099,29311,'com.liferay.captcha.impl','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f1eaf50b-2230-7334-6854-7c975ccf3ded',29314,20099,29311,'com.liferay.captcha.taglib','2.0.2','captcha-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('f39f8bde-c1e9-4073-f4f8-34d732260a14',29316,20099,29315,'com.liferay.iframe.web','2.0.12','iframe-web') -INSERT INTO MARKETPLACE_MODULE VALUES('1c219851-e0e0-6bec-3fae-c0f6f4419c4a',29318,20099,29317,'com.liferay.external.reference.api','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a11cfb65-8df5-3e86-8a03-0c0af18faaf1',29319,20099,29317,'com.liferay.external.reference.service','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('795a3b4d-30f4-b0fa-2891-256b4f25d300',29321,20099,29320,'com.liferay.product.navigation.control.menu.api','4.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('125ced16-9ad7-bcef-01c8-4866a5fce2f1',29322,20099,29320,'com.liferay.product.navigation.control.menu.impl','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a06476b2-afe7-b946-aa3f-9421a4fd19af',29323,20099,29320,'com.liferay.product.navigation.control.menu.theme.contributor','3.0.2','product-navigation-control-menu-theme-contributor') -INSERT INTO MARKETPLACE_MODULE VALUES('59549bf5-d101-03f4-74fb-4e92912b39d4',29324,20099,29320,'com.liferay.product.navigation.control.menu.web','3.0.14','product-navigation-control-menu-web') -INSERT INTO MARKETPLACE_MODULE VALUES('7ec15e14-ca6d-7076-02ff-285ce9e29693',29325,20099,29320,'com.liferay.product.navigation.control.panel','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4834623b-f36b-96d3-cb05-ea597e6f6eca',29326,20099,29320,'com.liferay.product.navigation.product.menu.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('235e9aa4-341e-c40a-0654-c1dace7b1d46',29327,20099,29320,'com.liferay.product.navigation.product.menu.theme.contributor','3.0.5','product-navigation-product-menu-theme-contributor') -INSERT INTO MARKETPLACE_MODULE VALUES('a3f47dd1-35e7-c9b3-640b-5decc7197226',29328,20099,29320,'com.liferay.product.navigation.product.menu.web','3.0.8','product-navigation-product-menu-web') -INSERT INTO MARKETPLACE_MODULE VALUES('9e708887-1ab0-3850-6f67-9040b1f053c5',29329,20099,29320,'com.liferay.product.navigation.simulation.api','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b5554c82-ddf3-ec58-c533-925091356ead',29330,20099,29320,'com.liferay.product.navigation.simulation.device','3.0.6','product-navigation-simulation-device') -INSERT INTO MARKETPLACE_MODULE VALUES('712c4e1a-1874-ab47-6bd6-2d1126e5fe13',29331,20099,29320,'com.liferay.product.navigation.simulation.theme.contributor','3.0.1','product-navigation-simulation-theme-contributor') -INSERT INTO MARKETPLACE_MODULE VALUES('5efb1845-46b2-e693-866b-5e3dd4d39b1e',29332,20099,29320,'com.liferay.product.navigation.simulation.web','4.0.8','product-navigation-simulation-web') -INSERT INTO MARKETPLACE_MODULE VALUES('31f30335-4d5b-08e5-aa4c-665f398c0128',29333,20099,29320,'com.liferay.product.navigation.site.administration','3.0.10','product-navigation-site-administration') -INSERT INTO MARKETPLACE_MODULE VALUES('69ec39a9-57a3-dbfc-f65a-817873514c93',29334,20099,29320,'com.liferay.product.navigation.taglib','3.0.2','product-navigation-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('f842198b-c4c8-7252-db83-d1728c3e69e1',29335,20099,29320,'com.liferay.product.navigation.user','3.0.2','product-navigation-user') -INSERT INTO MARKETPLACE_MODULE VALUES('8bddb54d-42d9-afff-11ca-ce46b28b8a97',29336,20099,29320,'com.liferay.product.navigation.user.personal.bar.web','3.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4a1bb731-b82a-aec1-9acc-e11c36184939',29338,20099,29337,'com.liferay.flags.api','3.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3668a0cf-2e79-c47d-2b2d-479aaaf03bb0',29339,20099,29337,'com.liferay.flags.service','3.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f6f4f6c2-d137-c141-6fa5-560e8c2fc143',29340,20099,29337,'com.liferay.flags.taglib','3.0.9','flags-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('f3fa2fa0-2a2d-c55f-7f18-41b6184de9cd',29341,20099,29337,'com.liferay.flags.web','3.0.7','flags-web') -INSERT INTO MARKETPLACE_MODULE VALUES('41730a09-65fa-454d-bffe-9dfb2f8ccfab',29343,20099,29342,'com.liferay.user.associated.data.api','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('773a86df-c851-38ee-2d21-30bc85d16523',29344,20099,29342,'com.liferay.user.associated.data.web','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('85c886da-6349-08f5-857b-0a3e53ce3230',29346,20099,29345,'com.liferay.roles.admin.api','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2ae6231b-d6f9-a114-f1bc-50daecba768f',29347,20099,29345,'com.liferay.roles.admin.impl','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('967a113d-e619-3e78-d943-1a36f62daa82',29348,20099,29345,'com.liferay.roles.admin.web','2.0.36',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('97f855b1-4092-b219-477a-a28a0874f5db',29349,20099,29345,'com.liferay.roles.item.selector.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a3fc1a89-bb22-03aa-2e62-80939230413f',29350,20099,29345,'com.liferay.roles.item.selector.web','1.0.1','roles-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('2804281c-afa0-86f0-448b-e39ece40e097',29351,20099,29345,'com.liferay.roles.selector.web','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fd0d0fca-cc79-ac03-de0e-ad79d12cb29e',29352,20099,29345,'com.liferay.roles.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c983b159-283c-6ff0-2555-b2b430ffea6a',29354,20099,29353,'com.liferay.portal.configuration.cluster','4.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('48b37a5d-924e-c6e7-b1f1-86f5a591d443',29355,20099,29353,'com.liferay.portal.configuration.extender','4.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ea2f7528-1f0c-8766-1e7c-897d87a4d04d',29356,20099,29353,'com.liferay.portal.configuration.metatype.definitions.annotations','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('66d989bd-7d22-7de3-601c-a7ee1538776b',29357,20099,29353,'com.liferay.portal.configuration.metatype.definitions.equinox','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bdf1965e-98fa-df0c-6d2c-ec3dede1e92d',29358,20099,29353,'com.liferay.portal.configuration.module.configuration','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('534670f9-d91c-336f-7945-233fbf040626',29359,20099,29353,'com.liferay.portal.configuration.settings','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('329a395f-afa6-0729-d259-16cf856cc76b',29360,20099,29353,'com.liferay.portal.configuration.upgrade.api','1.1.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f966181b-2ae5-ffb4-88a6-0f0cf87cf1a8',29361,20099,29353,'com.liferay.portal.configuration.upgrade.impl','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1dbb3ba5-ad66-e23b-073d-880803066f5d',29363,20099,29362,'com.liferay.portal.workflow.api','1.2.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('28eda643-bf71-e970-b9ab-043506f3ebaf',29364,20099,29362,'com.liferay.portal.workflow.kaleo.api','3.3.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('faf50268-c1be-a9e1-0e48-d1e95419d8de',29365,20099,29362,'com.liferay.portal.workflow.kaleo.definition.api','3.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2a6a0478-d887-d23d-800b-5afb107629b8',29366,20099,29362,'com.liferay.portal.workflow.kaleo.definition.impl','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('23bf6b76-7578-d30f-7d70-2b9acfc4037e',29367,20099,29362,'com.liferay.portal.workflow.kaleo.runtime.api','3.1.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bff65b0e-2386-e0e0-c088-debbe16ab233',29368,20099,29362,'com.liferay.portal.workflow.kaleo.runtime.form.impl','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('86eaee35-54ee-4dcb-fe4d-9609d7c7c81f',29369,20099,29362,'com.liferay.portal.workflow.kaleo.runtime.impl','3.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('061f506f-5a4a-274f-23e1-95d321c60389',29370,20099,29362,'com.liferay.portal.workflow.kaleo.runtime.integration.impl','2.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('25b4727b-ecb2-abb2-37e2-588012e65d32',29371,20099,29362,'com.liferay.portal.workflow.kaleo.runtime.scripting.impl','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('15bbc9b7-6940-ec58-3ff8-749eb1db720a',29372,20099,29362,'com.liferay.portal.workflow.kaleo.service','3.0.31',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0678a961-f768-7943-d31d-fac09e229503',29373,20099,29362,'com.liferay.portal.workflow.lang','3.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('72e170b0-e149-bf1e-2ae1-d45f9e5c42fe',29374,20099,29362,'com.liferay.portal.workflow.task.web','2.0.14','portal-workflow-task-web') -INSERT INTO MARKETPLACE_MODULE VALUES('eb6bb46c-a593-6ee4-7037-7095fd5430f8',29375,20099,29362,'com.liferay.portal.workflow.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('241a55e5-1a79-7e25-e58d-7d7bf32022ae',29376,20099,29362,'com.liferay.portal.workflow.web','1.0.28','portal-workflow-web') -INSERT INTO MARKETPLACE_MODULE VALUES('0a79aed6-6d3f-7fd0-dd4b-0e5ea1896751',29378,20099,29377,'com.liferay.osgi.felix.file.install.configuration.cleaner','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c66b11b8-eb34-7fac-36b0-d0b2a801f15e',29379,20099,29377,'com.liferay.osgi.util','4.1.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('44b77319-4974-49ba-877f-6b8e6ac4acca',29380,20099,29377,'com.liferay.portal.bundle.blacklist.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('cd3ed8df-14e8-a17b-a346-eb865d7012c5',29381,20099,29377,'com.liferay.portal.bundle.blacklist.impl','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3fd9bd16-e035-365e-0a9c-656d06bc3d4d',29382,20099,29377,'com.liferay.portal.classloader.tracker','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7a01ad31-8a57-8924-d2c6-ab2f41c500a9',29383,20099,29377,'com.liferay.portal.component.blacklist.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('200db898-820c-d592-ce60-0c11b8be75d3',29384,20099,29377,'com.liferay.portal.component.blacklist.impl','2.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('563bc435-59fe-94f0-eb92-fec1f38cd496',29385,20099,29377,'com.liferay.portal.configuration.metatype.api','1.1.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d2f6b6cf-0fb9-2519-763a-6656dd1ebee3',29386,20099,29377,'com.liferay.portal.configuration.persistence.api','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('cee742de-8aff-d206-0cac-05176f25fcac',29387,20099,29377,'com.liferay.portal.configuration.persistence.impl','1.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('05593ef9-b2b9-6cf0-361d-c3c1e769d76a',29388,20099,29377,'com.liferay.portal.log4j.extender','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('72d74764-5532-3602-7c3a-ccd9739c4973',29389,20099,29377,'com.liferay.portal.lpkg.deployer.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2f675e8b-1926-0d83-97a0-95a8887ac243',29390,20099,29377,'com.liferay.portal.lpkg.deployer.impl','1.0.24',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8477576a-b13b-a439-390b-0702350d665e',29391,20099,29377,'com.liferay.portal.osgi.web.portlet.tracker','3.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4f60b905-26cb-9d5f-7ce6-f697cbf7a8f4',29392,20099,29377,'com.liferay.portal.osgi.web.servlet.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('aeccc1ed-a1b0-1e30-ff9a-6003a5fe5eee',29393,20099,29377,'com.liferay.portal.osgi.web.servlet.context.helper.api','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('204af6cf-a605-407a-93c8-0f5a7986805c',29394,20099,29377,'com.liferay.portal.osgi.web.servlet.context.helper.impl','1.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('45b04efa-219e-7d3d-8204-616ecaba30fc',29395,20099,29377,'com.liferay.portal.osgi.web.servlet.el.api.fragment','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c6c0f85c-341e-3ce9-fd83-731ab5d79ede',29396,20099,29377,'com.liferay.portal.osgi.web.servlet.jsp.api.fragment','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4ebdef7e-6280-3232-9a8d-c47128327df0',29397,20099,29377,'com.liferay.portal.osgi.web.servlet.jsp.compiler','3.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b3b1edd4-fb94-c46e-72c3-fcc1331713f8',29398,20099,29377,'com.liferay.portal.osgi.web.wab.extender','3.0.27',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6b01ac09-c958-c733-056f-279623190af0',29399,20099,29377,'com.liferay.portal.osgi.web.wab.generator.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('27c2812c-cc04-3c92-1e66-12662f409b6d',29400,20099,29377,'com.liferay.portal.osgi.web.wab.generator.impl','1.0.30',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8c5e52db-2f08-31e9-4fc9-e9a193e5b3ac',29401,20099,29377,'com.liferay.portal.osgi.web.wab.reference.support','2.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('19e4e4f3-ea2f-b618-df8a-7faba8869ea9',29402,20099,29377,'com.liferay.portal.osgi.web.wab.spring.bridge.api','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('dd6a6c76-2849-0345-b1ab-41c90860fcc2',29403,20099,29377,'com.liferay.portal.profile.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b7bc02c8-7826-16bd-c9ee-03d7f7623da0',29404,20099,29377,'com.liferay.portal.profile.impl','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d03c6ea0-287a-6175-3a4a-dedb138f3180',29405,20099,29377,'com.liferay.portal.social.activity.extender','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('313bf93e-6673-672b-d8b6-f479a52b1c35',29406,20099,29377,'com.liferay.portal.target.platform.indexer.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8feb171b-5890-ebca-fcf6-68f2c770bd6c',29407,20099,29377,'com.liferay.portal.target.platform.indexer.impl','1.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('50b66834-46b7-c80a-7c38-a0e5e7e8789e',29408,20099,29377,'org.apache.geronimo.specs.geronimo-annotation_1.3_spec;singleton=true','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('659426f1-165b-5480-b79a-01850e2dae7a',29409,20099,29377,'org.apache.geronimo.specs.geronimo-atinject_1.0_spec','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3f91e100-080f-a8ff-8dab-f9c15bac0286',29410,20099,29377,'org.apache.geronimo.specs.geronimo-interceptor_1.2_spec','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('107f037f-f8ae-40cf-4e43-83414f6ddba9',29411,20099,29377,'org.apache.geronimo.specs.geronimo-jcdi_2.0_spec','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('af115539-bc1e-6e96-6677-e90fc43db36a',29412,20099,29377,'com.sun.el.javax.el','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f3b85315-f581-2fac-a708-3517a1a134a3',29413,20099,29377,'javax.servlet.jsp-api','2.3.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fbca9550-9b30-ccc1-7b83-cf2d7787ff71',29414,20099,29377,'javax.servlet.jsp.jstl','1.2.3.LIFERAY-PATCHED-2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ad7863c2-ccef-209c-3cd1-f404d5e1073d',29415,20099,29377,'javax.servlet.jsp.jstl-api','1.2.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1474f887-0f73-f9d2-cfa4-52a5b4a6d364',29416,20099,29377,'jboss-classfilewriter','1.2.3.Final',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('89e00dd0-c18a-0026-3296-35b7e8932790',29417,20099,29377,'org.apache.aries.cdi.extender','1.0.1.201902132117',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('abafc8a4-2a49-e582-681b-9fe5b0a1845c',29418,20099,29377,'org.apache.aries.cdi.extension.el.jsp','1.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a73273e0-babd-d3a8-f44a-dbe8442dd882',29419,20099,29377,'org.apache.aries.cdi.extension.http','1.0.1.201902132117',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1c164b8d-e82f-7edc-dfc0-e024ee168875',29420,20099,29377,'org.apache.aries.cdi.extra','1.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4fb4d246-b98c-8092-fa31-8cd253abec96',29421,20099,29377,'org.apache.aries.spifly.dynamic.framework.extension','1.2.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9ea38a2a-e6b2-fc3a-1282-1132af1a5ad0',29422,20099,29377,'org.apache.commons.fileupload','1.3.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c0be3726-9846-e8b2-c753-af798ad56c8b',29423,20099,29377,'org.apache.commons.io','2.2.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c03dd07a-2f30-f11e-8e90-a33c6672a458',29424,20099,29377,'org.apache.felix.configadmin','1.9.8.LIFERAY-PATCHED-1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('300d2eb6-401e-b9e5-bc4e-360800b62686',29425,20099,29377,'org.apache.felix.dependencymanager','3.2.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5931089e-1bef-f67f-163a-d9c90ca1a898',29426,20099,29377,'org.apache.felix.dependencymanager.shell','3.2.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9d576037-351c-f2ba-a267-52492ab6eab2',29427,20099,29377,'org.apache.felix.eventadmin','1.5.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('44f176cd-a539-12dc-a74c-33087f443e0e',29428,20099,29377,'org.apache.felix.fileinstall','3.6.4.LIFERAY-PATCHED-1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('764cb792-fe6b-1e5b-562e-6f0e1556a8a8',29429,20099,29377,'org.apache.felix.gogo.command','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('715527eb-04ec-734b-8dcb-7507538ad6c3',29430,20099,29377,'org.apache.felix.gogo.runtime','1.1.0.LIFERAY-PATCHED-2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('01616cc3-55c5-8188-f464-cb6ffa7c7291',29431,20099,29377,'org.apache.felix.gogo.shell','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('08a965c8-5070-23ba-4af4-00459e324f82',29432,20099,29377,'org.apache.felix.scr','2.1.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9de5ce32-7c54-d653-a1b0-a5579fbb4825',29433,20099,29377,'org.eclipse.equinox.console','1.3.100.v20180827-1235',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('da1ef6d8-18c6-df44-b6df-19f26ead4229',29434,20099,29377,'org.eclipse.equinox.http.servlet','1.2.2.v20190228-1648',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('10dc53c2-3e30-e0a7-8d79-71ad7c1abdca',29435,20099,29377,'org.eclipse.equinox.metatype','1.4.200.v20150715-1528',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('db8afdfc-5821-cace-51e0-7093d2a4a7d9',29436,20099,29377,'org.jboss.logging.jboss-logging','3.3.2.Final',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('918bd880-cabd-b98a-189f-4bc1efb6f5d7',29437,20099,29377,'org.jboss.weld.osgi-bundle','3.0.5.Final',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5cb34b7e-2c53-9915-225f-18e86a795c8b',29438,20099,29377,'org.osgi.service.cdi','1.0.0.201810101357',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8bf00928-044e-eeba-9943-961b0aab4cf7',29439,20099,29377,'org.osgi.service.http','3.5.0.LIFERAY-PATCHED-2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c6bf6d26-30d0-1547-0ec8-064c3b569167',29440,20099,29377,'org.osgi.service.metatype','1.3.0.201505202024',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9ae84972-753d-8915-ef62-47a86e1617d8',29441,20099,29377,'org.osgi.util.function','1.1.0.201802012106',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3e0cb1e0-edd4-c378-7207-a785b00d0b1b',29442,20099,29377,'org.osgi.util.promise','1.1.0.201802012106',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c8dfd069-70d8-1c3c-3303-86c7ab9a927b',29444,20099,29443,'com.liferay.marketplace.api','5.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8b220084-4314-c684-a3b7-cbbd298f21cb',29445,20099,29443,'com.liferay.marketplace.app.manager.web','2.0.20','marketplace-app-manager-web') -INSERT INTO MARKETPLACE_MODULE VALUES('85fdad75-a844-dba8-766d-0d830269473b',29446,20099,29443,'com.liferay.marketplace.service','4.0.19',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1cbbb53f-aa70-2026-b8c6-f91671c7b867',29447,20099,29443,'com.liferay.marketplace.store.web','4.0.7','marketplace-store-web') -INSERT INTO MARKETPLACE_MODULE VALUES('ce1ed0b9-3ebd-bb62-1c11-da7fb8db3756',29449,20099,29448,'com.liferay.dynamic.data.lists.api','3.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5df4fd05-4d66-cb95-f8b6-95477dd908df',29450,20099,29448,'com.liferay.dynamic.data.lists.service','2.0.31',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4bb43c2b-e63b-450c-2273-cca785817a6e',29451,20099,29448,'com.liferay.dynamic.data.lists.web','3.0.28','dynamic-data-lists-web') -INSERT INTO MARKETPLACE_MODULE VALUES('4f748978-749b-0cf3-f43a-2f4519c5a293',29453,20099,29452,'com.liferay.portal.security.audit.api','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('226c43ca-8d3e-d5fd-a284-722f552f6386',29454,20099,29452,'com.liferay.portal.security.audit.event.generators.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('038c7461-4cee-0d64-cd51-5d59c9ae48b4',29455,20099,29452,'com.liferay.portal.security.audit.event.generators.user.management','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9b14d57f-3e60-8668-df4e-c222f7f26252',29456,20099,29452,'com.liferay.portal.security.audit.impl','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3e8dbd59-e8e6-7173-c04c-9c7974558f01',29457,20099,29452,'com.liferay.portal.security.audit.router','3.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ddb11de5-bccb-556d-f620-9b484304de5e',29458,20099,29452,'com.liferay.portal.security.audit.storage.api','3.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('18aec784-9967-eabd-9b63-c2b272b75959',29459,20099,29452,'com.liferay.portal.security.audit.storage.service','3.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('48abb627-9135-8c32-79ea-88b75b3e4953',29460,20099,29452,'com.liferay.portal.security.audit.wiring','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a6d67aac-c59f-7ad8-2106-f146653ecfbb',29462,20099,29461,'com.liferay.users.admin.api','3.0.18',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('110be462-bb74-5a9d-3997-c8e884bb3c31',29463,20099,29461,'com.liferay.users.admin.impl','2.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4b3485d4-1ee6-d52e-92dc-f3ad21b65291',29464,20099,29461,'com.liferay.users.admin.item.selector.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c04a7872-0b0f-d0c5-bd68-4fba4b0dcfbe',29465,20099,29461,'com.liferay.users.admin.item.selector.web','1.0.1','users-admin-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('721c52ae-8ca2-216c-b07e-e62e16969afc',29466,20099,29461,'com.liferay.users.admin.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2b580179-f95e-314d-1bd7-848d3ff9e4e2',29467,20099,29461,'com.liferay.users.admin.web','3.0.50','users-admin-web') -INSERT INTO MARKETPLACE_MODULE VALUES('7f96111c-2c1d-affb-5c0b-2dc722107dd3',29469,20099,29468,'com.liferay.application.list.api','3.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e022de50-e3ef-739a-c7bb-1bb10a47f9bf',29470,20099,29468,'com.liferay.application.list.my.account.permissions','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2b38dd60-5c2c-cc14-4e72-798dede21443',29471,20099,29468,'com.liferay.application.list.taglib','3.0.5','application-list-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('28b3add7-362b-3577-437a-39836b4b785e',29472,20099,29468,'com.liferay.application.list.user.personal.site.permissions','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('345e697a-55a0-8725-9f9f-a3da747edaa0',29474,20099,29473,'com.liferay.rss.api','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b79e60cb-f65e-ec00-ba03-c38778ad0beb',29475,20099,29473,'com.liferay.rss.impl','1.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c3837096-db73-c3ce-cba3-3989003feea2',29476,20099,29473,'com.liferay.rss.taglib','1.0.3','rss-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('1af670bc-e4b1-0884-91cf-fb03728d5322',29477,20099,29473,'com.liferay.rss.web','4.0.18','rss-web') -INSERT INTO MARKETPLACE_MODULE VALUES('6e1b9400-25de-fcfe-6c9d-185e4f1a47be',29479,20099,29478,'com.liferay.portal.url.builder.api','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('913da13e-63d6-c6e6-41b8-ec0b2a8380fe',29480,20099,29478,'com.liferay.portal.url.builder.impl','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2ea6e9c2-f8fd-9d8a-c2b7-62cba2db980d',29482,20099,29481,'com.liferay.invitation.invite.members.api','3.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('31d50020-3448-8dba-284c-401bfeaaf63c',29483,20099,29481,'com.liferay.invitation.invite.members.service','4.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('330f03c7-51f3-79f4-671d-26020aea5dfb',29484,20099,29481,'com.liferay.invitation.invite.members.web','2.0.12','invitation-invite-members-web') -INSERT INTO MARKETPLACE_MODULE VALUES('407c3069-cd3c-7f15-facb-154510f7595b',29486,20099,29485,'com.liferay.social.activities.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('607b95ce-5d8f-50b7-ea5e-daa3e8c70177',29487,20099,29485,'com.liferay.social.activities.taglib','1.0.3','social-activities-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('857d846d-105a-98c6-2c4f-d49082122e8a',29488,20099,29485,'com.liferay.social.activities.web','3.0.8','social-activities-web') -INSERT INTO MARKETPLACE_MODULE VALUES('87ebcf4f-e478-fe3c-ab9a-0c4bd32e3baa',29489,20099,29485,'com.liferay.social.activity.api','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0a284fa4-4bbe-eb36-ec40-fe2e55beb358',29490,20099,29485,'com.liferay.social.bookmark.facebook','1.0.5','social-bookmark-facebook') -INSERT INTO MARKETPLACE_MODULE VALUES('bd24024b-8228-f2e9-b947-ea657afdb3f2',29491,20099,29485,'com.liferay.social.bookmark.linkedin','1.0.5','social-bookmark-linkedin') -INSERT INTO MARKETPLACE_MODULE VALUES('9f92873e-3bce-34d2-112d-725728e8a9e9',29492,20099,29485,'com.liferay.social.bookmark.plusone','1.0.6','social-bookmark-plusone') -INSERT INTO MARKETPLACE_MODULE VALUES('7ba91aa4-fd31-6241-04f0-754a59b96982',29493,20099,29485,'com.liferay.social.bookmark.twitter','1.0.5','social-bookmark-twitter') -INSERT INTO MARKETPLACE_MODULE VALUES('dd17241d-118a-c12d-cbe5-564f0b0f795f',29494,20099,29485,'com.liferay.social.bookmarks.analytics','1.0.2','social-bookmarks-analytics') -INSERT INTO MARKETPLACE_MODULE VALUES('c1c49a76-353c-b977-9ee6-f7bbdeac2a68',29495,20099,29485,'com.liferay.social.bookmarks.api','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('69dde419-992d-3592-5db2-505f8a7c2c3d',29496,20099,29485,'com.liferay.social.bookmarks.taglib','1.0.7','social-bookmarks-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('ef35c95c-e5f7-c157-689a-8738b7c9dfd0',29497,20099,29485,'com.liferay.social.user.statistics.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8a75a12b-431c-6d66-814a-9f5ec5a5da7f',29499,20099,29498,'com.liferay.portal.mobile.device.recognition.impl','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e37b9a01-6c30-d9e8-dcfa-ec8b1ef24fe5',29501,20099,29500,'com.liferay.portal.template.freemarker','4.0.18',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5ad8a76d-425e-88ce-99b7-771df4097eb0',29502,20099,29500,'com.liferay.portal.template.soy.api','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c68fc7e2-1d62-2934-5a99-e509c855c557',29503,20099,29500,'com.liferay.portal.template.soy.context.contributor','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('58edde1e-880f-f629-6ba5-3040dd24fe3b',29504,20099,29500,'com.liferay.portal.template.soy.impl','1.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9ce939f7-22b4-52d3-48af-5151ab0e0952',29505,20099,29500,'com.liferay.portal.template.velocity','3.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4734b1bb-0df3-36d4-c2d6-28d6d75c84e0',29506,20099,29500,'com.liferay.portal.template.xsl','3.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('309280b6-edf3-fc8f-49a4-d6223c090266',29508,20099,29507,'com.liferay.user.groups.admin.api','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9d64274d-f76f-6e19-17e5-50d60ca0696e',29509,20099,29507,'com.liferay.user.groups.admin.impl','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('faf7e4b3-c4bc-28d6-4c83-d64568ee629a',29510,20099,29507,'com.liferay.user.groups.admin.item.selector.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6c7b84b3-b4a5-7eae-7a86-d1825e90b773',29511,20099,29507,'com.liferay.user.groups.admin.item.selector.web','1.0.1','user-groups-admin-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('9dc56fdb-3207-d32c-bfff-27dff1f4e96b',29512,20099,29507,'com.liferay.user.groups.admin.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('281d402f-9f51-024c-ad46-b0dcd71ab69b',29513,20099,29507,'com.liferay.user.groups.admin.web','2.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('06fcc35a-84f6-0ff4-f161-9e3b53356e68',29515,20099,29514,'com.liferay.organizations.api','1.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ed936382-c24d-a256-68e4-aec049eebc08',29516,20099,29514,'com.liferay.organizations.item.selector.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('625022e8-13e9-720b-152d-03a232dcfe88',29517,20099,29514,'com.liferay.organizations.item.selector.web','1.0.1','organizations-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('09033461-31de-dbaa-fad9-7bf12d6d807f',29518,20099,29514,'com.liferay.organizations.service','1.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2aa6f619-9da1-f927-3ed5-e5fb8e483e8b',29520,20099,29519,'com.liferay.portal.instances.api','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3004cf43-3db7-c437-c3d6-eead3d679aa8',29521,20099,29519,'com.liferay.portal.instances.service','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d962d43e-9c20-1bc3-a482-f7b402ce0edc',29522,20099,29519,'com.liferay.portal.instances.web','2.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('93611160-4620-c2ab-d42f-123bd9d7feaa',29524,20099,29523,'com.liferay.plugins.admin.web','2.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2087d5b7-2e3c-c4de-2e4b-102e82a77a28',29526,20099,29525,'com.liferay.ratings.analytics','1.0.2','ratings-analytics') -INSERT INTO MARKETPLACE_MODULE VALUES('f9092763-e3b9-567c-ce75-db7219ac0343',29527,20099,29525,'com.liferay.ratings.api','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6c23b914-fc18-9631-f75f-5625e57af540',29528,20099,29525,'com.liferay.ratings.page.ratings.web','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8b035ae9-8cc2-e2e5-b204-91bf01db8235',29529,20099,29525,'com.liferay.ratings.service','2.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7807ee0d-b4f2-afb3-f32f-9ef010ec5d5e',29531,20099,29530,'com.liferay.item.selector.api','3.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6c2cc78a-ce54-f351-c368-0db701ad11d3',29532,20099,29530,'com.liferay.item.selector.criteria.api','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f350342e-4a86-79d6-f267-551c4f23ae74',29533,20099,29530,'com.liferay.item.selector.criteria.impl','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('feecf936-5d8e-70c8-5b68-57dadb72cf78',29534,20099,29530,'com.liferay.item.selector.editor.configuration','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('415cb8fc-a3c2-a633-862f-4bea760d007d',29535,20099,29530,'com.liferay.item.selector.impl','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ab63adf4-1c58-d8b2-b399-71fd6141792f',29536,20099,29530,'com.liferay.item.selector.taglib','2.0.12','item-selector-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('8c38ebbc-f97a-53f3-dec2-aa929fa49a6d',29537,20099,29530,'com.liferay.item.selector.upload.web','3.0.0','item-selector-upload-web') -INSERT INTO MARKETPLACE_MODULE VALUES('99b43689-1c9e-1038-57b9-e8a9f3b8b08e',29538,20099,29530,'com.liferay.item.selector.url.web','3.0.1','item-selector-url-web') -INSERT INTO MARKETPLACE_MODULE VALUES('aa21c9a5-5f76-0366-8433-584e0b039d5b',29539,20099,29530,'com.liferay.item.selector.web','4.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5312ee8d-2b25-b749-8c3f-5f8f57c9bc06',29541,20099,29540,'com.liferay.trash.api','1.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a70a3f24-a566-df25-95ee-842d2e3f35d2',29542,20099,29540,'com.liferay.trash.service','2.0.15',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e23ace7c-db00-d165-a36f-846bf2b9b88f',29543,20099,29540,'com.liferay.trash.taglib','3.0.3','trash-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('a8ee55bd-5d89-ebbd-86ac-95a9d984b089',29544,20099,29540,'com.liferay.trash.web','2.0.13','trash-web') -INSERT INTO MARKETPLACE_MODULE VALUES('80529765-f6cc-239b-5890-15a71f1157eb',29546,20099,29545,'com.liferay.portlet.display.template.api','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ee48bfb2-f0bf-ae82-2533-3930141d12c8',29547,20099,29545,'com.liferay.portlet.display.template.impl','1.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d8a8f267-c6b8-29e9-02f8-e8993592c37e',29548,20099,29545,'com.liferay.portlet.display.template.web','3.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f9d3cae3-a9ff-a66f-a901-b7fb9f211068',29550,20099,29549,'com.liferay.portal.validation.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('28d6766f-550e-4168-d5e2-4dba6b4eed43',29552,20099,29551,'com.liferay.friendly.url.api','1.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('050e791e-558a-5e97-77ea-652c361b587b',29553,20099,29551,'com.liferay.friendly.url.service','1.0.25',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('49152af9-ae30-f937-26b3-2942c72add4c',29555,20099,29554,'com.liferay.journal.api','3.5.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('926dbf89-86e2-329f-35ad-f37dea5f0cbd',29556,20099,29554,'com.liferay.journal.content.asset.addon.entry.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a461e7c6-97bc-1b9a-8929-69f4a2770703',29557,20099,29554,'com.liferay.journal.editor.configuration','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1adb09b0-3a72-d074-c27d-9a87fec9d588',29558,20099,29554,'com.liferay.journal.item.selector.api','2.1.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('cad1d757-d6af-7bdb-7e61-b1cda9ebcdb5',29559,20099,29554,'com.liferay.journal.lang','3.0.25',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9084a477-d999-1c6b-44ae-06b657723f50',29560,20099,29554,'com.liferay.journal.ratings.definition','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c904bf09-2607-79d7-ca80-feab8bc82947',29561,20099,29554,'com.liferay.journal.service','4.0.68',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1d5816b0-827c-df27-1e6d-4722034777e9',29562,20099,29554,'com.liferay.journal.content.asset.addon.entry.comments','2.0.1','journal-content-asset-addon-entry-comments') -INSERT INTO MARKETPLACE_MODULE VALUES('a2ff6573-f06c-6b53-8f2e-f7c6dc4d7379',29563,20099,29554,'com.liferay.journal.content.asset.addon.entry.conversions','3.0.3','journal-content-asset-addon-entry-conversions') -INSERT INTO MARKETPLACE_MODULE VALUES('4a5f7085-db86-068a-faf8-aa20f7dba961',29564,20099,29554,'com.liferay.journal.content.asset.addon.entry.locales','2.0.1','journal-content-asset-addon-entry-locales') -INSERT INTO MARKETPLACE_MODULE VALUES('e1612905-5ab4-c7d3-e5c2-7ad1542c208f',29565,20099,29554,'com.liferay.journal.content.asset.addon.entry.print','3.0.0','journal-content-asset-addon-entry-print') -INSERT INTO MARKETPLACE_MODULE VALUES('502509b3-c107-39d8-e1a3-296049d16aab',29566,20099,29554,'com.liferay.journal.content.asset.addon.entry.ratings','3.0.1','journal-content-asset-addon-entry-ratings') -INSERT INTO MARKETPLACE_MODULE VALUES('9184eb3f-09e5-22c2-3a24-5edd98b3c4d9',29567,20099,29554,'com.liferay.journal.content.asset.addon.entry.related.assets','3.0.1','journal-content-asset-addon-entry-related-assets') -INSERT INTO MARKETPLACE_MODULE VALUES('3e3d1dd3-4072-a72b-32ab-c98f0a1677b1',29568,20099,29554,'com.liferay.journal.content.web','3.0.28','journal-content-web') -INSERT INTO MARKETPLACE_MODULE VALUES('f955f859-c7bb-d1d4-04e2-201e34469349',29569,20099,29554,'com.liferay.journal.item.selector.web','2.0.3','journal-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('4b063051-2751-5bb0-1f4d-3f3c3d9f60cb',29570,20099,29554,'com.liferay.journal.taglib','2.0.3','journal-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('5c88de25-a03e-033d-8be0-9570bc2167a4',29571,20099,29554,'com.liferay.journal.terms.of.use','3.0.2','journal-terms-of-use') -INSERT INTO MARKETPLACE_MODULE VALUES('296b3a49-7cc9-d7ce-0a17-4d73c1292965',29572,20099,29554,'com.liferay.journal.web','2.0.53','journal-web') -INSERT INTO MARKETPLACE_MODULE VALUES('579696a2-9d57-05b1-4012-4f65e4ca3349',29574,20099,29573,'com.liferay.mentions.api','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ce3acf9a-98a9-c68c-d8e1-74a0b913c4c6',29575,20099,29573,'com.liferay.mentions.service','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5c46e2f7-2ff5-102f-6374-8cc8df0e2f6d',29576,20099,29573,'com.liferay.mentions.web','3.0.9','mentions-web') -INSERT INTO MARKETPLACE_MODULE VALUES('6eb19015-5b6f-9d24-ebd6-6fda02286ba6',29578,20099,29577,'com.liferay.site.navigation.admin.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('cb68231c-a25d-a50e-ed54-43bc67576945',29579,20099,29577,'com.liferay.site.navigation.admin.web','1.0.23','site-navigation-admin-web') -INSERT INTO MARKETPLACE_MODULE VALUES('9de0dd96-6ead-8d61-7ffd-c74a6fdf28ab',29580,20099,29577,'com.liferay.site.navigation.api','2.4.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6693e255-f911-39ca-6dc7-2f67f1f8e507',29581,20099,29577,'com.liferay.site.navigation.breadcrumb.web','4.0.8','site-navigation-breadcrumb-web') -INSERT INTO MARKETPLACE_MODULE VALUES('2ae297a5-e91b-a1d6-0d12-bb70dd2ca314',29582,20099,29577,'com.liferay.site.navigation.directory.web','3.0.3','site-navigation-directory-web') -INSERT INTO MARKETPLACE_MODULE VALUES('781028c3-a7e7-582b-69e2-f3af35b4cabe',29583,20099,29577,'com.liferay.site.navigation.item.selector.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3a59ce04-2c5c-604c-688a-9c9db4c4285c',29584,20099,29577,'com.liferay.site.navigation.item.selector.web','1.0.6','site-navigation-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('f02143ec-ae0a-4de4-4861-94ad74e3bb61',29585,20099,29577,'com.liferay.site.navigation.lang','1.0.20',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1f5eda3f-fb64-48b7-02cd-3a73b12ebb3d',29586,20099,29577,'com.liferay.site.navigation.language.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fb5da657-59b6-a570-1170-610cd599b968',29587,20099,29577,'com.liferay.site.navigation.language.web','4.0.6','site-navigation-language-web') -INSERT INTO MARKETPLACE_MODULE VALUES('be1cb127-5b98-c6f2-6c64-784414b31b4c',29588,20099,29577,'com.liferay.site.navigation.menu.item.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6d1f12a0-b81c-cea2-da36-74ab86a5cd1d',29589,20099,29577,'com.liferay.site.navigation.menu.item.layout','1.0.17','site-navigation-menu-item-layout') -INSERT INTO MARKETPLACE_MODULE VALUES('ab012b9a-6802-a6fd-25e1-7e5cd39741d6',29590,20099,29577,'com.liferay.site.navigation.menu.item.node','1.0.3','site-navigation-menu-item-node') -INSERT INTO MARKETPLACE_MODULE VALUES('59bd477a-d8bf-725a-ca5c-00ca448900f3',29591,20099,29577,'com.liferay.site.navigation.menu.item.url','1.0.2','site-navigation-menu-item-url') -INSERT INTO MARKETPLACE_MODULE VALUES('51382a1f-2fa8-129e-fd85-042f8fd60d25',29592,20099,29577,'com.liferay.site.navigation.menu.web','3.0.21','site-navigation-menu-web') -INSERT INTO MARKETPLACE_MODULE VALUES('4ad4dfed-8cb9-0279-cc5b-e9e3a553b298',29593,20099,29577,'com.liferay.site.navigation.service','1.0.30',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d79a3c00-ced1-eb09-1423-1c5113585ac6',29594,20099,29577,'com.liferay.site.navigation.site.map.web','3.0.6','site-navigation-site-map-web') -INSERT INTO MARKETPLACE_MODULE VALUES('17dd11b7-1fcc-8f29-da4a-4005798b9697',29595,20099,29577,'com.liferay.site.navigation.taglib','3.0.10','site-navigation-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('4c86b038-8f6b-0390-d18d-e6a5bbeb0570',29597,20099,29596,'com.liferay.portal.cache.api','1.1.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7bc14758-d572-4f44-3bc0-25a249653e1b',29598,20099,29596,'com.liferay.portal.cache.ehcache.impl','1.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0c4fdbba-8394-bede-8438-5c99994bfa3a',29599,20099,29596,'com.liferay.portal.cache.ehcache.provider','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2237aae8-65d0-41a3-ba6b-a14cbb741a94',29600,20099,29596,'com.liferay.portal.cache.ehcache.spi','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('804beb87-aa04-94a4-6ac9-6ec323f93a4d',29601,20099,29596,'com.liferay.portal.cache.impl','1.0.15',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('10abd87d-019d-b27d-2d76-63bc43714f74',29602,20099,29596,'com.liferay.portal.cache.multiple','2.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3065d23e-6b0a-d0e6-63c2-810c0099ab7e',29604,20099,29603,'com.liferay.frontend.editor.alloyeditor.web','2.0.26','frontend-editor-alloyeditor-web') -INSERT INTO MARKETPLACE_MODULE VALUES('2451bceb-a102-f2a3-91a4-8f3a88b01d3b',29605,20099,29603,'com.liferay.frontend.editor.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('48db04ea-7879-6a13-a5a4-770e4ef83850',29606,20099,29603,'com.liferay.frontend.editor.ckeditor.web','2.0.25','frontend-editor-ckeditor-web') -INSERT INTO MARKETPLACE_MODULE VALUES('c17a943b-c97d-dc75-e080-8c99f9ed0a90',29607,20099,29603,'com.liferay.frontend.editor.lang','3.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('41abc921-2a17-7b3c-fd9a-5cd5c4b499ea',29608,20099,29603,'com.liferay.frontend.editor.simple.web','2.0.5','frontend-editor-simple-web') -INSERT INTO MARKETPLACE_MODULE VALUES('907bf25a-7f3a-fb95-5e93-2c71204cfc62',29609,20099,29603,'com.liferay.frontend.editor.taglib','1.0.3','frontend-editor-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('a56a34dc-9c29-401c-51f3-f3fd16fd20a3',29610,20099,29603,'com.liferay.frontend.editor.tinymce.web','2.0.10','frontend-editor-tinymce-web') -INSERT INTO MARKETPLACE_MODULE VALUES('44a1f796-8629-735f-eb27-d1d56efde9bb',29612,20099,29611,'com.liferay.apio.architect.api','1.10.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2b0838ef-ae55-8702-e15d-3737840322ac',29613,20099,29611,'com.liferay.apio.architect.exception.mapper.impl','1.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e30ae8b5-97bf-423e-059e-f7e620041c6d',29614,20099,29611,'com.liferay.apio.architect.impl','1.0.24',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('dc2222ee-ec96-1e2e-bd57-84bd208c8218',29615,20099,29611,'com.liferay.apio.architect.uri.mapper.impl','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0b3194f4-23ee-2e65-e720-dcaf809a7348',29616,20099,29611,'io.vavr','0.9.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0939edc0-0013-75c8-d059-8e787585bd63',29617,20099,29611,'io.vavr.match','0.9.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('44fa2347-03c2-976e-6a69-e505c6807ec1',29619,20099,29618,'com.liferay.analytics.web','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('92697884-3d1f-083a-fdfb-39700cdae20d',29621,20099,29620,'com.liferay.upload.api','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e6177120-1257-d3e7-4a31-bca3bec47672',29622,20099,29620,'com.liferay.upload.web','2.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c2a0609d-b6cd-c6a8-8493-3249fe7bf933',29624,20099,29623,'com.liferay.exportimport.api','3.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e1a8fd15-ebce-2aac-ac52-9d7098d7e959',29625,20099,29623,'com.liferay.exportimport.changeset.api','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('dfa6ad2e-2c81-015f-317c-7421f307cd35',29626,20099,29623,'com.liferay.exportimport.changeset.service','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ec5c4d02-7543-3f42-4dda-01cf130e0910',29627,20099,29623,'com.liferay.exportimport.changeset.taglib','1.0.13','export-import-changeset-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('b6ac5da9-c953-18a4-f300-0e1488426482',29628,20099,29623,'com.liferay.exportimport.changeset.web','1.0.17','exportimport-changeset-web') -INSERT INTO MARKETPLACE_MODULE VALUES('11dc4f14-1e87-c68e-0f40-64fce1787014',29629,20099,29623,'com.liferay.exportimport.resources.importer','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a8e07e77-0a7e-364d-3efb-d705c5847f54',29630,20099,29623,'com.liferay.exportimport.service','5.0.58',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f4870a2d-08ae-d336-20f9-a82e2f1d0b7d',29631,20099,29623,'com.liferay.exportimport.web','2.0.33','exportimport-web') -INSERT INTO MARKETPLACE_MODULE VALUES('19b9d6d0-e481-3da3-f42b-2e5a80e0598f',29633,20099,29632,'com.liferay.map.api','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f027a4fe-ae15-90fb-d338-feea5c265c43',29634,20099,29632,'com.liferay.map.common','3.0.3','map-common') -INSERT INTO MARKETPLACE_MODULE VALUES('ce4d8629-44b1-b12f-63a9-372a4a30dc0d',29635,20099,29632,'com.liferay.map.google.maps','2.0.12','map-google-maps') -INSERT INTO MARKETPLACE_MODULE VALUES('d0964a0b-88fc-4b7a-7ac8-d93d03933498',29636,20099,29632,'com.liferay.map.openstreetmap','3.0.8','map-openstreetmap') -INSERT INTO MARKETPLACE_MODULE VALUES('ef57ebf7-b7be-2415-acfc-66ef9a807ff2',29637,20099,29632,'com.liferay.map.taglib','2.0.5','map-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('b341cfb3-a82b-6fc9-296e-eb46ccc1a492',29639,20099,29638,'com.liferay.configuration.admin.api','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3cbf2e88-09f0-d9ef-556d-f282744050fa',29640,20099,29638,'com.liferay.configuration.admin.web','2.0.39',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c8fa9bf7-3d75-148e-9fe5-d5d3847518f2',29642,20099,29641,'com.liferay.hello.world.web','3.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5f951303-fec9-f2d1-b66c-f4159debd48a',29644,20099,29643,'com.liferay.license.manager.web','3.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('dfff7bb9-7179-8ef9-141c-890307ef3d2d',29646,20099,29645,'com.liferay.password.policies.admin.api','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e9626007-12a9-5293-0ed3-9d1c7061739b',29647,20099,29645,'com.liferay.password.policies.admin.impl','2.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d399dbef-6ccd-41b0-527e-f6b2b100773b',29648,20099,29645,'com.liferay.password.policies.admin.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5a8b261c-54c8-3252-a591-c67453e785a7',29649,20099,29645,'com.liferay.password.policies.admin.web','2.0.18',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('735b48f3-e04c-4850-2993-a4884dde9677',29651,20099,29650,'com.liferay.portal.security.antisamy','3.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c352136f-34e5-5389-a2a7-6f280d443331',29652,20099,29650,'com.liferay.portal.security.auth.verifier','3.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('51b4293d-99f2-a43b-80df-cafef305a904',29653,20099,29650,'com.liferay.portal.security.auto.login','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6ada69fa-0580-de34-4bbb-4d65753a63b5',29654,20099,29650,'com.liferay.portal.security.exportimport.api','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('77b086f5-e6db-e87a-b256-16e3344e1ab1',29655,20099,29650,'com.liferay.portal.security.ldap.api','1.2.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bfb8cdec-bf2d-9370-8e42-17d48875e503',29656,20099,29650,'com.liferay.portal.security.ldap.impl','1.0.30',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6e1d7857-4ed0-d927-32db-a419f9a96046',29657,20099,29650,'com.liferay.portal.security.permission.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9b87c607-3707-808c-170a-a0eaf119f67c',29658,20099,29650,'com.liferay.portal.security.permission.impl','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('395800f5-d2ce-1573-29dc-1e929b6598a7',29659,20099,29650,'com.liferay.portal.security.service.access.policy.api','3.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bd115753-60a9-2f7d-01bf-b68cfeaa964c',29660,20099,29650,'com.liferay.portal.security.service.access.policy.service','3.0.15',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e4d08664-37f5-80b9-10ec-7a2a79c04494',29661,20099,29650,'com.liferay.portal.security.service.access.policy.web','2.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fe9ce861-aa95-243e-f9c6-cb069187bdc8',29662,20099,29650,'com.liferay.portal.security.service.access.quota.api','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('40f01af1-e9bc-def8-670a-fc3e7e0cf76a',29664,20099,29663,'com.liferay.portal.osgi.debug.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fc9276b6-81a6-02a7-41a1-8ff66c7007ab',29665,20099,29663,'com.liferay.portal.osgi.debug.declarative.service','2.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3a0df375-c1f2-4323-5d07-4519349de1b3',29666,20099,29663,'com.liferay.portal.osgi.debug.impl','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b2b14da5-abab-80f9-4614-5576f4bde287',29667,20099,29663,'com.liferay.portal.osgi.debug.spring.extender','2.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8e1a0e40-3809-5a08-638e-ff65fb1ce05d',29669,20099,29668,'com.liferay.frontend.image.editor.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b1234622-be0c-2a32-f86d-1861460854c9',29670,20099,29668,'com.liferay.frontend.image.editor.capability.brightness','2.0.5','frontend-image-editor-capability-brightness') -INSERT INTO MARKETPLACE_MODULE VALUES('0395f844-4236-5ac5-0a67-27a9be065fd1',29671,20099,29668,'com.liferay.frontend.image.editor.capability.contrast','2.0.5','frontend-image-editor-capability-contrast') -INSERT INTO MARKETPLACE_MODULE VALUES('4213d27e-b9fb-4908-e1bd-527feab40e31',29672,20099,29668,'com.liferay.frontend.image.editor.capability.crop','2.0.3','frontend-image-editor-capability-crop') -INSERT INTO MARKETPLACE_MODULE VALUES('6ed90a91-6b50-08bd-1a7a-0f4f9c48d69e',29673,20099,29668,'com.liferay.frontend.image.editor.capability.effects','2.0.4','frontend-image-editor-capability-effects') -INSERT INTO MARKETPLACE_MODULE VALUES('97dc2c48-ed91-d449-1a6f-65a33bce5a64',29674,20099,29668,'com.liferay.frontend.image.editor.capability.resize','2.0.2','frontend-image-editor-capability-resize') -INSERT INTO MARKETPLACE_MODULE VALUES('1de6b995-6647-99e6-708e-9464d4b63103',29675,20099,29668,'com.liferay.frontend.image.editor.capability.rotate','2.0.2','frontend-image-editor-capability-rotate') -INSERT INTO MARKETPLACE_MODULE VALUES('145456b4-8c0b-977f-67cc-f868b0df45b8',29676,20099,29668,'com.liferay.frontend.image.editor.capability.saturation','2.0.5','frontend-image-editor-capability-saturation') -INSERT INTO MARKETPLACE_MODULE VALUES('a499dd8d-fe2a-5a8e-d24b-5652826973fc',29677,20099,29668,'com.liferay.frontend.image.editor.integration.document.library','2.0.10','frontend-image-editor-integration-document-library') -INSERT INTO MARKETPLACE_MODULE VALUES('f91de53d-0de3-3395-20d6-438f679d4ff8',29678,20099,29668,'com.liferay.frontend.image.editor.web','2.0.14','frontend-image-editor-web') -INSERT INTO MARKETPLACE_MODULE VALUES('7ffb8450-5040-e06f-91ae-85904a8f6983',29680,20099,29679,'com.liferay.document.library.analytics','2.0.3','document-library-analytics') -INSERT INTO MARKETPLACE_MODULE VALUES('b1372df4-e585-ea3d-4c18-273171d66d89',29681,20099,29679,'com.liferay.document.library.api','4.1.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ba437f0e-3391-6139-27a7-80b9fbfd0ea3',29682,20099,29679,'com.liferay.document.library.content.api','1.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('940e01ff-dacb-ccba-c27b-85c85a0d50a0',29683,20099,29679,'com.liferay.document.library.content.service','1.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1dd2ed14-69d2-4e9a-d78e-629293fa131c',29684,20099,29679,'com.liferay.document.library.document.conversion','1.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2f08761f-5eb0-510f-dc1d-d1cd75ef32ef',29685,20099,29679,'com.liferay.document.library.file.rank.api','1.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a5434b42-72e6-d51e-4cda-5f0f15c6d6f7',29686,20099,29679,'com.liferay.document.library.file.rank.service','1.0.18',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d16afa51-07d9-e570-affb-4ed99ce1e815',29687,20099,29679,'com.liferay.document.library.item.selector.web','2.0.7','document-library-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('9213d938-d82f-7273-2a5c-df30f0274732',29688,20099,29679,'com.liferay.document.library.layout.set.prototype','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3134815c-2079-4920-b36e-d0c22c52db4a',29689,20099,29679,'com.liferay.document.library.repository.authorization.api','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d28bb218-0f89-fc48-bdf8-e048dd64bfbc',29690,20099,29679,'com.liferay.document.library.repository.cmis.api','2.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('12a2f0d6-ce99-fcd0-2b10-8b93c8d96fbd',29691,20099,29679,'com.liferay.document.library.repository.cmis.impl','3.0.20',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fc57057a-b3d9-c81d-1214-2a9d9716ebef',29692,20099,29679,'com.liferay.document.library.repository.external.api','2.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8ecaadbd-6714-bc7d-d0cc-ac52648679da',29693,20099,29679,'com.liferay.document.library.repository.search','4.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c4de432a-6382-aeac-4448-73f159fb4765',29694,20099,29679,'com.liferay.document.library.service','3.0.36',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c53852bb-2f48-1edf-93b9-8310a75ffd32',29695,20099,29679,'com.liferay.document.library.sync.api','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0f9892e0-f1d0-62e9-7c53-a5609a75594d',29696,20099,29679,'com.liferay.document.library.sync.service','1.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2c720a42-9602-e81d-b99d-71ce9d5f7fae',29697,20099,29679,'com.liferay.document.library.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d10b2a48-a695-7407-0059-094d56ff91c0',29698,20099,29679,'com.liferay.document.library.web','3.0.50','document-library-web') -INSERT INTO MARKETPLACE_MODULE VALUES('9c202c2f-4e6e-c0b1-f2ff-90bb99ba80e1',29700,20099,29699,'com.liferay.portal.relationship.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c38c6afa-8a0a-7f40-f4c8-4229e80f720b',29701,20099,29699,'com.liferay.portal.relationship.impl','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('70d4d933-433e-c0a2-d694-21a28fc8cd67',29703,20099,29702,'woodstox-core-asl','4.4.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('454abe53-adb2-c496-959d-551a8dd569db',29704,20099,29702,'com.liferay.portal.search.elasticsearch6.api','2.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('15061332-b597-33fd-d2a8-d1d7707bc481',29705,20099,29702,'com.liferay.portal.search.elasticsearch6.impl','2.0.42',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('75b87ae9-455e-cdb2-0890-3e51618d88be',29706,20099,29702,'stax2-api','3.1.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0687742a-1c8a-7b12-e50d-17d4f122fb9f',29708,20099,29707,'com.liferay.portal.portlet.bridge.soy.api','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ffb55992-41e8-26ff-a9c4-67abd4d41d9f',29709,20099,29707,'com.liferay.portal.portlet.bridge.soy.impl','1.0.11','portal-portlet-bridge-soy') -INSERT INTO MARKETPLACE_MODULE VALUES('f6206f9d-adfe-7105-1f83-f88aba490c40',29711,20099,29710,'com.liferay.mobile.device.rules.api','3.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0f304a19-2683-a83e-35b5-a3a2f67aa3c2',29712,20099,29710,'com.liferay.mobile.device.rules.service','2.0.19',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2d9a23a6-1ddb-462f-558d-4e9db6b80d8c',29713,20099,29710,'com.liferay.mobile.device.rules.web','2.0.17','mobile-device-rules-web') -INSERT INTO MARKETPLACE_MODULE VALUES('17538d4f-9e72-b1fa-8118-53c6e0695b13',29715,20099,29714,'com.liferay.dynamic.data.mapping.api','4.8.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3a997687-9539-b979-06b1-80da4dee66ce',29716,20099,29714,'com.liferay.dynamic.data.mapping.data.provider.impl','2.0.20','dynamic-data-mapping-data-provider-impl') -INSERT INTO MARKETPLACE_MODULE VALUES('ba0b0774-181c-94a1-ba1c-4b5e46c3618f',29717,20099,29714,'com.liferay.dynamic.data.mapping.data.provider.instance','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8c147937-b006-c31c-af52-db6078893620',29718,20099,29714,'com.liferay.dynamic.data.mapping.data.provider.web','2.0.16','dynamic-data-mapping-data-provider-web') -INSERT INTO MARKETPLACE_MODULE VALUES('f33630f8-956c-3318-7465-91429bc31c9f',29719,20099,29714,'com.liferay.dynamic.data.mapping.expression','3.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6fa322ff-a974-4237-1969-e335083c60d3',29720,20099,29714,'com.liferay.dynamic.data.mapping.form.analytics','2.0.4','dynamic-data-mapping-form-analytics') -INSERT INTO MARKETPLACE_MODULE VALUES('d70357ba-28aa-db3e-0210-9831d801248a',29721,20099,29714,'com.liferay.dynamic.data.mapping.form.builder','1.0.45','dynamic-data-mapping-form-builder') -INSERT INTO MARKETPLACE_MODULE VALUES('33705f50-b1b7-40f3-99da-edb850cbd581',29722,20099,29714,'com.liferay.dynamic.data.mapping.form.evaluator.impl','1.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('98c94062-6320-445d-72fe-7073062717e1',29723,20099,29714,'com.liferay.dynamic.data.mapping.form.field.type','3.0.33','dynamic-data-mapping-form-field-type') -INSERT INTO MARKETPLACE_MODULE VALUES('d885fd36-56c4-b7f9-a510-0ec1773a5cc4',29724,20099,29714,'com.liferay.dynamic.data.mapping.form.renderer','3.0.32','dynamic-data-mapping-form-renderer') -INSERT INTO MARKETPLACE_MODULE VALUES('6b36d1bf-e582-e21d-b6e4-4bd5f2184f2c',29725,20099,29714,'com.liferay.dynamic.data.mapping.form.taglib','1.0.10','dynamic-data-mapping-form-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('478e8ef6-73a1-db9d-6cc5-5c462ee6722f',29726,20099,29714,'com.liferay.dynamic.data.mapping.form.values.factory','3.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6c444c65-bc3e-b1df-bf2d-1c4c7c4b04eb',29727,20099,29714,'com.liferay.dynamic.data.mapping.form.values.query','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d75d5986-5103-27f8-ded8-20999ee6e72a',29728,20099,29714,'com.liferay.dynamic.data.mapping.form.web','1.0.59','dynamic-data-mapping-form-web') -INSERT INTO MARKETPLACE_MODULE VALUES('aede4c24-9df8-0344-5be6-4a1b805b7ddd',29729,20099,29714,'com.liferay.dynamic.data.mapping.io','3.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fd2dacb9-c32b-8f2f-59f5-06fe25237e41',29730,20099,29714,'com.liferay.dynamic.data.mapping.lang','3.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('778ad161-85cd-09ba-78d4-8f99c1a7af30',29731,20099,29714,'com.liferay.dynamic.data.mapping.service','3.0.63','dynamic-data-mapping-data-service') -INSERT INTO MARKETPLACE_MODULE VALUES('40abbe95-fd99-7e75-70a2-3fc1b5efaef9',29732,20099,29714,'com.liferay.dynamic.data.mapping.taglib','3.4.4','dynamic-data-mapping-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('bb0a0739-b789-67b7-528a-1615c235420f',29733,20099,29714,'com.liferay.dynamic.data.mapping.validator','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2701b640-3e8a-1cfb-33ec-bcaf66c215ad',29734,20099,29714,'com.liferay.dynamic.data.mapping.web','2.0.47','dynamic-data-mapping-web') -INSERT INTO MARKETPLACE_MODULE VALUES('ed3d66b6-273b-78e0-e8bc-8e6d04de17f9',29736,20099,29735,'com.liferay.message.boards.api','4.3.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d64b8ab1-f0f3-e7bc-0b64-ac7f4dec6c38',29737,20099,29735,'com.liferay.message.boards.comment','3.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('14ba3982-a29c-ca86-e8ec-88d8785e8c10',29738,20099,29735,'com.liferay.message.boards.editor.configuration','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('89e25026-6f3c-7f9b-a0e5-8e96d64baf4d',29739,20099,29735,'com.liferay.message.boards.layout.set.prototype','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3a56c1bc-d4db-0222-65f9-6a80a4d5543f',29740,20099,29735,'com.liferay.message.boards.parser.bbcode','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b2fbb888-2d0c-3ec3-b15a-70c119b39b6c',29741,20099,29735,'com.liferay.message.boards.service','2.0.44',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4e35b223-6cc6-0e8b-1f46-a02c1d4bc654',29742,20099,29735,'com.liferay.message.boards.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4f0000da-d711-4f03-6c05-ab5bb13d9a46',29743,20099,29735,'com.liferay.message.boards.web','2.0.44','message-boards-web') -INSERT INTO MARKETPLACE_MODULE VALUES('263cb44a-b204-a7fc-7b4f-66b70e824b06',29745,20099,29744,'com.liferay.fragment.api','1.1.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('957fae36-f066-ff0e-4394-3d21e3d6c4b2',29746,20099,29744,'com.liferay.fragment.display.web','1.0.10','fragment-display-web') -INSERT INTO MARKETPLACE_MODULE VALUES('6d852fad-4fc6-236b-3145-f305967c4357',29747,20099,29744,'com.liferay.fragment.entry.processor.editable','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ecdc35d6-a0ef-3b48-7b7d-59de044c88a9',29748,20099,29744,'com.liferay.fragment.entry.processor.nullable','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2e494634-73af-d850-de8b-d51d5a9c21b5',29749,20099,29744,'com.liferay.fragment.entry.processor.portlet','1.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3c21b7fe-45d1-5608-d59a-6d0990880c45',29750,20099,29744,'com.liferay.fragment.impl','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bdd172e8-08c2-4024-e91f-78a9c7fa46ad',29751,20099,29744,'com.liferay.fragment.item.selector.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c0eb0615-e1b5-871a-c24b-711096dcee03',29752,20099,29744,'com.liferay.fragment.item.selector.web','1.0.8','fragment-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('e82aafb8-ce12-a348-562b-193375e9ddac',29753,20099,29744,'com.liferay.fragment.service','1.0.23',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('90630b01-b688-e5fb-4bed-9d1c41945fbb',29754,20099,29744,'com.liferay.fragment.taglib','1.0.2','fragment-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('4ab6713e-ff9b-acc8-65ff-9c25a07afa8a',29755,20099,29744,'com.liferay.fragment.web','1.0.46','fragment-web') -INSERT INTO MARKETPLACE_MODULE VALUES('76951457-e20b-c6e5-3214-c271067d2cc7',29757,20099,29756,'com.liferay.portal.odata.api','1.10.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b3e81104-c113-572d-6435-e1e5594976d3',29758,20099,29756,'com.liferay.portal.odata.impl','1.0.23',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5dc08b0d-ae80-221a-80a5-736c3b529a14',29760,20099,29759,'com.liferay.comment.analytics','1.0.1','comment-analytics') -INSERT INTO MARKETPLACE_MODULE VALUES('a0023312-338c-0af6-e30f-0112127499b0',29761,20099,29759,'com.liferay.comment.api','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('72df531d-c6fb-1505-6955-5faa5e3b790e',29762,20099,29759,'com.liferay.comment.editor.configuration','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e0b0dc23-a1b6-431d-73a1-fc3e51a11e55',29763,20099,29759,'com.liferay.comment.page.comments.web','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('080962bc-97d5-d6a5-cb94-6a3a2b091135',29764,20099,29759,'com.liferay.comment.ratings.definition','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8012c7b1-9e77-3d33-4e8f-13f509aaf76f',29765,20099,29759,'com.liferay.comment.sanitizer','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e52f91a4-80d9-c77b-adea-071453d064bc',29766,20099,29759,'com.liferay.comment.taglib','1.0.11','comment-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('01e87fe5-9748-7ad9-ad01-4c8cef7d54c3',29767,20099,29759,'com.liferay.comment.web','3.0.15','comment-web') -INSERT INTO MARKETPLACE_MODULE VALUES('ef112d58-6328-0d7b-8314-accd9f8dc471',29769,20099,29768,'com.liferay.portal.background.task.api','3.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b6b4fe8a-a020-ffe5-50b3-1d867cd3e4f4',29770,20099,29768,'com.liferay.portal.background.task.service','4.0.22',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a8401f80-b000-069c-c046-fb56160219cd',29771,20099,29768,'com.liferay.portal.background.task.web','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('07789a41-84dc-9187-28f5-b4bbf81af1a8',29773,20099,29772,'com.liferay.expando.taglib','2.0.4','expando-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('0a9d4b5b-7d1f-3a59-a379-fe7f2af8891a',29774,20099,29772,'com.liferay.expando.web','2.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5df852ce-f728-75b5-9880-25a74d2362c9',29776,20099,29775,'com.liferay.notifications.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('64bd2562-bc91-2066-26ef-5b883025b0e4',29777,20099,29775,'com.liferay.notifications.web','2.0.13','notifications-web') -INSERT INTO MARKETPLACE_MODULE VALUES('a5b75010-0a74-7ea7-8b8e-0cbb2b1783fd',29779,20099,29778,'com.liferay.screens.api','4.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('16c9e198-5656-7a28-2306-95f4e844f3e5',29780,20099,29778,'com.liferay.screens.service','2.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ed20ce2d-6b1d-d300-46f8-d41597adbf1b',29782,20099,29781,'com.liferay.server.admin.web','2.0.20',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f798f41b-ceaf-7166-123a-cf82fd1e67c0',29784,20099,29783,'com.liferay.address.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('655ea314-39d4-ed1f-93d1-5204c74749ab',29785,20099,29783,'com.liferay.address.apio.impl','1.0.15',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1f08c293-e0fc-a853-7639-7221efc2b622',29786,20099,29783,'com.liferay.aggregate.rating.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('985d6c76-7078-4626-e7bb-2a70074ef882',29787,20099,29783,'com.liferay.aggregate.rating.apio.impl','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('70bf12d4-90de-0d75-21ae-a270443e09e5',29788,20099,29783,'com.liferay.blog.apio.api','1.1.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9bdf8ed1-218d-78ab-10e3-3e8d49a6d566',29789,20099,29783,'com.liferay.blog.apio.impl','1.0.24',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('169fda8e-51a8-80ff-5f43-32f6d1da967c',29790,20099,29783,'com.liferay.category.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('11dd3436-3265-2f41-de97-a00783471f3a',29791,20099,29783,'com.liferay.category.apio.impl','1.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('18339796-7a23-977f-c308-765839913c40',29792,20099,29783,'com.liferay.comment.apio.api','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('543d8d30-237d-390c-4c00-39ce05ab7180',29793,20099,29783,'com.liferay.comment.apio.impl','1.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('120e38c2-8b47-0682-7316-b547def8dd2b',29794,20099,29783,'com.liferay.content.space.apio.api','1.2.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d0bd8a77-dbcb-ebdf-4123-92477c3e0ae3',29795,20099,29783,'com.liferay.content.space.apio.impl','1.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('82f7091f-91c3-7c0b-3376-7e90471a171e',29796,20099,29783,'com.liferay.email.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0d8904e6-bb23-dbca-3db1-c4de17b10f85',29797,20099,29783,'com.liferay.email.apio.impl','1.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1543e44f-218b-0c02-abc2-5b95687d0098',29798,20099,29783,'com.liferay.folder.apio.api','1.1.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('197e8c65-f680-1909-971f-534c2273574b',29799,20099,29783,'com.liferay.folder.apio.impl','1.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('be2d9ef1-197c-9164-2908-870d2fbcd6e9',29800,20099,29783,'com.liferay.forms.apio.api','1.1.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0a17db05-3e78-2199-6f00-1d7f07fd0b2c',29801,20099,29783,'com.liferay.forms.apio.impl','1.0.28',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('08fee54e-c36a-8669-aa95-04d3785dce7a',29802,20099,29783,'com.liferay.keyword.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('efc9419c-d157-5745-3a2a-ab8e70135625',29803,20099,29783,'com.liferay.keyword.apio.impl','1.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c8ebbf9f-ae01-c53a-db94-39dfc306a5e6',29804,20099,29783,'com.liferay.media.object.apio.api','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('96d81967-af13-b9b2-33e9-d413d958c405',29805,20099,29783,'com.liferay.media.object.apio.impl','1.0.18',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8e8dc6af-b0b0-8cb9-b93b-b3941282764d',29806,20099,29783,'com.liferay.organization.apio.api','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7cbc5623-94f6-648f-1711-1cbc786a15b2',29807,20099,29783,'com.liferay.organization.apio.impl','1.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('471093e6-d7df-6c20-51c2-fea45e4ddcc4',29808,20099,29783,'com.liferay.person.apio.api','1.1.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1b15777b-9f87-c39c-ba9f-52d049d41203',29809,20099,29783,'com.liferay.person.apio.impl','1.0.18',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7351cdd1-6140-b0ad-9d37-5489b7838697',29810,20099,29783,'com.liferay.phone.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e3dc9a2a-45f0-1dbd-45a4-791cf05aa24c',29811,20099,29783,'com.liferay.phone.apio.impl','1.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8db80c57-3ecc-76d5-0e5a-05ad554059ae',29812,20099,29783,'com.liferay.portal.apio.api','1.2.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('cfbb9acc-00e9-f6f7-4c00-564433b350b5',29813,20099,29783,'com.liferay.portal.apio.impl','1.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0ae563f4-17ee-60ff-651e-0c7a4352b703',29814,20099,29783,'com.liferay.role.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3b639cdf-b2ec-e221-67ac-b52f01fce57a',29815,20099,29783,'com.liferay.role.apio.impl','1.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8cfa8f3a-17f4-9a14-bc7a-7a6d04552161',29816,20099,29783,'com.liferay.site.apio.api','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0a1e1988-6b2f-64e6-d07d-42ae6f9ded28',29817,20099,29783,'com.liferay.site.apio.impl','1.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2db6fcfa-6f5d-462d-3401-5ca6e69bbe70',29818,20099,29783,'com.liferay.structure.apio.api','1.3.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('632345c6-5ae0-918c-b0d7-6fc024f66d18',29819,20099,29783,'com.liferay.structure.apio.impl','1.0.19',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2a45da79-cd41-2a98-2aad-72abd28879b1',29820,20099,29783,'com.liferay.structured.content.apio.api','1.9.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('34ab0cf0-3ffd-6ca2-3e9e-93c3d36ec2c6',29821,20099,29783,'com.liferay.structured.content.apio.impl','1.0.45',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c5f93068-3428-85bf-7c1d-85f83101f3d0',29822,20099,29783,'com.liferay.vocabulary.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('664e78ea-f8a9-b4b9-6d6b-0f51dfb845e7',29823,20099,29783,'com.liferay.vocabulary.apio.impl','1.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('817eae5a-24ed-c45d-3361-b77c1495f5ae',29824,20099,29783,'com.liferay.web.url.apio.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0b1b9a47-9627-5d5a-045b-bf8b1c2df1c9',29825,20099,29783,'com.liferay.web.url.apio.impl','1.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('310b10d3-3a69-f0ba-5318-7550c8ae0012',29826,20099,29783,'com.liferay.workflow.apio.api','1.2.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ed833af1-428d-d89d-ffbb-cdaafd4912dd',29827,20099,29783,'com.liferay.workflow.apio.impl','1.0.23',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4f9c44f3-0283-ff45-711d-c7d6b73a5014',29829,20099,29828,'com.liferay.portal.store.cmis','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('01c1c370-be9b-2b8c-188d-96df3a63fc6c',29830,20099,29828,'com.liferay.portal.store.db','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b588e5ef-d9bc-8a5d-2de4-e1dfdad737f5',29831,20099,29828,'com.liferay.portal.store.file.system','3.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e717f1e8-d7bf-30f8-c4cb-2f606eacc9b0',29832,20099,29828,'com.liferay.portal.store.ignore.duplicates.wrapper','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5fd2d2b8-6219-7ed1-a298-19b3785f81c8',29833,20099,29828,'com.liferay.portal.store.jcr','3.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fd34d0c6-fcc2-41ee-b78a-a033c458c148',29834,20099,29828,'com.liferay.portal.store.s3','3.0.30',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6e850552-8a9b-17d1-4c78-6d06ae940cd9',29835,20099,29828,'com.liferay.portal.store.safe.file.name.wrapper','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fcd4b74f-2708-1dad-0926-0f44ef69ea23',29837,20099,29836,'com.liferay.layout.admin.api','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9e196562-df02-bb69-2dbb-5adb08ac4d6d',29838,20099,29836,'com.liferay.layout.admin.web','2.0.75','layout-admin-web') -INSERT INTO MARKETPLACE_MODULE VALUES('ba7f322d-c767-3979-fddd-9db4d5ddb883',29839,20099,29836,'com.liferay.layout.api','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2f566f37-b5fe-be8e-2303-fcbcd3a6f2ed',29840,20099,29836,'com.liferay.layout.impl','3.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5895f54f-fc68-5e7a-d111-d6d97da414fb',29841,20099,29836,'com.liferay.layout.item.selector.api','2.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('caa9c3a8-fd7f-7734-903f-cedf675bc79d',29842,20099,29836,'com.liferay.layout.item.selector.web','2.0.3','layout-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('9e602f5a-bf61-46e5-ae78-812e7c7d684d',29843,20099,29836,'com.liferay.layout.page.template.api','1.5.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('200221c2-9b0f-89e1-3ec8-469643e30935',29844,20099,29836,'com.liferay.layout.page.template.service','1.0.28',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('dea47b7b-12b1-952a-74e6-29ac17f1ec1a',29845,20099,29836,'com.liferay.layout.prototype.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0956d512-c7b8-c64a-bdf4-a9fcd8cc649c',29846,20099,29836,'com.liferay.layout.prototype.impl','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('360c0748-154c-07a7-f6e0-1e6b9c4d9341',29847,20099,29836,'com.liferay.layout.set.prototype.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('35fc7232-12fc-6b29-4717-64d994d7ae65',29848,20099,29836,'com.liferay.layout.set.prototype.impl','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9779f580-f738-c346-b466-0e4bc0eb31ce',29849,20099,29836,'com.liferay.layout.set.prototype.web','2.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6f084012-965d-a0b7-0a35-362d3752ebdf',29850,20099,29836,'com.liferay.layout.taglib','3.1.1','layout-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('c5f02ed6-1093-50d0-459a-dcddfef02203',29851,20099,29836,'com.liferay.layout.type.controller.asset.display','1.0.9','layout-type-controller-asset-display') -INSERT INTO MARKETPLACE_MODULE VALUES('738886dc-d87c-f85d-0529-790ad46092d4',29852,20099,29836,'com.liferay.layout.type.controller.content','1.0.12','layout-type-controller-content') -INSERT INTO MARKETPLACE_MODULE VALUES('cb251c93-c291-214a-a6eb-12ac764d34a3',29853,20099,29836,'com.liferay.layout.type.controller.control.panel','3.0.0','layout-type-controller-control-panel') -INSERT INTO MARKETPLACE_MODULE VALUES('7f12388c-ceea-04dc-aecf-44546b74c6d6',29854,20099,29836,'com.liferay.layout.type.controller.full.page.application','3.0.1','layout-type-controller-full-page-application') -INSERT INTO MARKETPLACE_MODULE VALUES('1e6329dc-1993-5599-20a7-0eb76aba3a18',29855,20099,29836,'com.liferay.layout.type.controller.link.to.page','1.0.5','layout-type-controller-link-to-page') -INSERT INTO MARKETPLACE_MODULE VALUES('14780f2e-5b1a-8ce0-fee6-f75e11d53781',29856,20099,29836,'com.liferay.layout.type.controller.node','3.0.2','layout-type-controller-node') -INSERT INTO MARKETPLACE_MODULE VALUES('3211ff1a-21a0-a282-cae0-5a1462244102',29857,20099,29836,'com.liferay.layout.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c3a3d217-35f9-8041-943e-f54f1dcf6210',29859,20099,29858,'com.liferay.staging.api','3.1.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('866b8a66-316a-ff04-8c68-9f62df384c36',29860,20099,29858,'com.liferay.staging.bar.web','2.0.18','staging-bar-web') -INSERT INTO MARKETPLACE_MODULE VALUES('fde973b8-be35-a66f-203b-5731ae06958c',29861,20099,29858,'com.liferay.staging.configuration.web','2.0.13',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6e77996d-1aaf-65bc-f2ee-0319ab3549e3',29862,20099,29858,'com.liferay.staging.impl','1.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('65dfd8a9-72bb-6c6c-84d4-c0f133a977bb',29863,20099,29858,'com.liferay.staging.lang','3.0.21',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a95af8ce-2f5e-00f8-eab8-8408a6a3544c',29864,20099,29858,'com.liferay.staging.portlet.data.handler','4.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('239eed94-f243-b738-35a6-1cb8c06c8101',29865,20099,29858,'com.liferay.staging.processes.web','2.0.23','staging-processes-web') -INSERT INTO MARKETPLACE_MODULE VALUES('620a7375-21d7-e55c-1e4e-e4cd453d383b',29866,20099,29858,'com.liferay.staging.security','3.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0aa01574-3d38-e5f0-1047-3c6b9175eb9a',29867,20099,29858,'com.liferay.staging.taglib','4.1.6','staging-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('75019974-1b0d-ff99-3a03-1f8e64158f70',29869,20099,29868,'com.liferay.blogs.api','4.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c7e7087d-8a4c-20a2-ad41-31c6942506d4',29870,20099,29868,'com.liferay.blogs.editor.configuration','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4bf53c07-550a-0967-524c-58749f138e94',29871,20099,29868,'com.liferay.blogs.item.selector.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1710fbf3-c0d9-c614-70c5-85e30c3d9c4e',29872,20099,29868,'com.liferay.blogs.item.selector.web','3.0.2','blogs-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('f7dd8bf6-f20b-d423-e6e4-592ad779bfe4',29873,20099,29868,'com.liferay.blogs.layout.prototype','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ccb106c8-ab6b-d5a6-1b6d-c3602b3358b3',29874,20099,29868,'com.liferay.blogs.reading.time','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('098cef3a-b9a4-c04e-e205-be116752e397',29875,20099,29868,'com.liferay.blogs.recent.bloggers.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('17e66806-3a8d-730f-e3d9-6578804719d3',29876,20099,29868,'com.liferay.blogs.recent.bloggers.web','3.0.9','blogs-recent-bloggers-web') -INSERT INTO MARKETPLACE_MODULE VALUES('4b328b48-bc34-cb54-0eaa-3176bbf1140d',29877,20099,29868,'com.liferay.blogs.service','2.0.35',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1425467d-ce6e-5963-3198-51930303a5eb',29878,20099,29868,'com.liferay.blogs.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2ac7ac72-fc5f-ea3c-3424-40b2882613fd',29879,20099,29868,'com.liferay.blogs.web','3.0.44','blogs-web') -INSERT INTO MARKETPLACE_MODULE VALUES('516eff28-3130-241f-1a42-44fffd401607',29881,20099,29880,'com.liferay.bean.portlet.api','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('071cfa95-e25d-0842-4d7c-8701dd8aa002',29882,20099,29880,'com.liferay.bean.portlet.cdi.extension','1.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('23fc6ec3-318c-2cc7-c40c-11cc0c52dd74',29884,20099,29883,'com.liferay.petra.doulos','4.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0c232fcc-b055-c89a-52f4-a0f5d6aa0c90',29885,20099,29883,'com.liferay.petra.io.delta','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('85b940ac-326c-b80e-590c-57625df74850',29886,20099,29883,'com.liferay.petra.json.web.service.client','13.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7430e6eb-b9ad-992f-c72b-f07a244a2e19',29887,20099,29883,'com.liferay.petra.mail.template','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f05e1c2d-e878-9b37-da4d-50603e2a4d20',29888,20099,29883,'com.liferay.petra.model.adapter','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('76895071-0f6a-c97a-d740-38c8f5d95fa9',29890,20099,29889,'com.liferay.alloy.mvc','3.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9886906c-c38a-8d22-f88e-6a10ccc63276',29892,20099,29891,'com.fasterxml.jackson.core.jackson-annotations','2.9.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6fb887c0-fee4-6842-2cb7-9862dd2708c3',29893,20099,29891,'com.fasterxml.jackson.core.jackson-core','2.9.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3c4d11b5-8b22-4d4d-c4f3-c051cff389ce',29894,20099,29891,'com.fasterxml.jackson.core.jackson-databind','2.9.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ae84ff15-bfd5-984f-722c-64a26409a6e9',29895,20099,29891,'com.fasterxml.jackson.dataformat.jackson-dataformat-xml','2.9.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d88c97c3-200c-5d23-d500-6080dbd44849',29896,20099,29891,'com.fasterxml.jackson.jaxrs.jackson-jaxrs-base','2.9.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('81d265db-3b55-f88b-b106-c8e46b714d71',29897,20099,29891,'com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider','2.9.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('21f17a2a-fd69-4e98-cee2-d5c6889cf8a9',29898,20099,29891,'com.fasterxml.jackson.module.jackson-module-jaxb-annotations','2.9.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a302bef9-87d4-28c6-b744-58cf7e3e109a',29899,20099,29891,'com.liferay.portal.vulcan.api','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f32ef336-cde4-072b-c06b-8fd344d94d7b',29900,20099,29891,'com.liferay.portal.vulcan.impl','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('50942198-8079-e7c4-635c-5f7be5f737f5',29901,20099,29891,'io.swagger.core.v3.swagger-annotations','2.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c5610eab-8f8d-151a-c341-c1ba04101dec',29902,20099,29891,'javax.validation.api','2.0.1.Final',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6e81f3ac-f896-4d2b-8845-8eab86033f46',29904,20099,29903,'com.liferay.microsoft.translator','2.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('68b8b845-92bd-acff-45e3-7f4c6222c2c4',29906,20099,29905,'com.liferay.polls.api','5.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0605cc01-a953-2f8d-f356-c0aba5a1d9fd',29907,20099,29905,'com.liferay.polls.service','4.0.23',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a9645779-c3f8-6fc3-acca-3c7516888d4d',29908,20099,29905,'com.liferay.polls.web','3.0.13','polls-web') -INSERT INTO MARKETPLACE_MODULE VALUES('11766a24-88dc-225b-947a-aee3b62ee926',29910,20099,29909,'com.liferay.portal.remote.axis.extender','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a6c9bef9-51ef-9361-e379-5d13eb51b3d0',29911,20099,29909,'com.liferay.portal.remote.cxf.common','4.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('637086ca-0dfd-4395-d7db-ba472b4b2353',29912,20099,29909,'com.liferay.portal.remote.http.tunnel.extender','3.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0566d742-04af-577f-681f-650612badfb8',29913,20099,29909,'com.liferay.portal.remote.http.whiteboard.debug','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('15ef7f84-16bc-ce45-de84-bb321d2439cf',29914,20099,29909,'com.liferay.portal.remote.jaxrs.whiteboard','2.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3ca3dcda-8d7b-29b9-4a75-3524074aa2c3',29915,20099,29909,'com.liferay.portal.remote.jaxrs.whiteboard.debug','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('51e27402-99e2-3b9d-1ebb-a7dfcd2f92e4',29916,20099,29909,'com.liferay.portal.remote.jaxrs.whiteboard.jaxb.json','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a2983a4a-e4de-5d42-68a5-867d0e23d469',29917,20099,29909,'com.liferay.portal.remote.json.web.service.extender','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('76c80f71-579d-c15e-0b18-4552d74dcde0',29918,20099,29909,'com.liferay.portal.remote.rest.extender','3.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ff154694-661b-1d1c-f1d1-c03477261cbb',29919,20099,29909,'com.liferay.portal.remote.soap.extender.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b8421d1c-22cc-e114-359b-f94e68b9f33f',29920,20099,29909,'com.liferay.portal.remote.soap.extender.impl','2.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('002170be-c646-27b5-5ab4-e72911911d65',29921,20099,29909,'org.apache.geronimo.specs.geronimo-jaxrs_2.1_spec;singleton=true','1.1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0e5c7d3a-9b2a-3544-8293-9750197696bc',29922,20099,29909,'javax.json-api','1.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e0235225-fccf-e157-af50-ae7b31352e1c',29923,20099,29909,'org.apache.aries.jax.rs.jaxb.json.cxf-jettison','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0d35180f-ac65-2ce9-81e3-41b2c2c7e753',29924,20099,29909,'org.apache.aries.jax.rs.whiteboard','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ee4833bb-de7f-bf5e-8a0b-159e843b511e',29925,20099,29909,'org.osgi.service.jaxrs','1.0.0.201802012106',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8914038d-cd64-1a31-85d9-7f56c93dc6e1',29927,20099,29926,'com.liferay.portal.settings.api','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b2a55f2d-ff08-65f9-b87f-877c4febfc08',29928,20099,29926,'com.liferay.portal.settings.authentication.cas.web','2.0.5','portal-settings-authentication-cas-web') -INSERT INTO MARKETPLACE_MODULE VALUES('863ab939-7bcc-a1d6-0175-28177d06c334',29929,20099,29926,'com.liferay.portal.settings.authentication.facebook.connect.web','2.0.3','portal-settings-authentication-facebook-connect-web') -INSERT INTO MARKETPLACE_MODULE VALUES('e37dc673-40d7-ef51-e79b-5c528bdd8bd8',29930,20099,29926,'com.liferay.portal.settings.authentication.google.web','2.0.3','portal-settings-authentication-google-web') -INSERT INTO MARKETPLACE_MODULE VALUES('c0f8cba7-2db5-2fcd-eecb-9bb346fe4b08',29931,20099,29926,'com.liferay.portal.settings.authentication.ldap.web','2.0.14','portal-settings-authentication-ldap-web') -INSERT INTO MARKETPLACE_MODULE VALUES('40833e69-6b39-3ed5-749e-12987a55369c',29932,20099,29926,'com.liferay.portal.settings.authentication.ntlm.web','2.0.3','portal-settings-authentication-ntlm-web') -INSERT INTO MARKETPLACE_MODULE VALUES('2b925d41-fd47-c304-fd55-d636c189f90f',29933,20099,29926,'com.liferay.portal.settings.authentication.openid.connect.web','3.0.2','portal-settings-authentication-openid-connect-web') -INSERT INTO MARKETPLACE_MODULE VALUES('387d7452-6108-ba53-08a2-37dda9eededd',29934,20099,29926,'com.liferay.portal.settings.authentication.openid.web','2.0.3','portal-settings-authentication-openid-web') -INSERT INTO MARKETPLACE_MODULE VALUES('283c9e96-257f-7fea-09be-aa70b00c1920',29935,20099,29926,'com.liferay.portal.settings.authentication.opensso.web','2.0.5','portal-settings-authentication-opensso-web') -INSERT INTO MARKETPLACE_MODULE VALUES('fafcc3c0-eadd-bb18-f3dc-57ec6eee0ea3',29936,20099,29926,'com.liferay.portal.settings.lang','2.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('02ad37f9-12b9-50f6-c39d-555dcaad782e',29937,20099,29926,'com.liferay.portal.settings.web','2.0.16','portal-settings-web') -INSERT INTO MARKETPLACE_MODULE VALUES('e39b93b0-21ac-7278-240f-070633cb00ad',29939,20099,29938,'com.liferay.portal.rules.engine.api','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5810802f-7936-bbdc-6ffb-92763ab7f56d',29940,20099,29938,'com.liferay.portal.rules.engine.wiring','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('803b7f54-8017-53cf-1165-3f3568e80adc',29942,20099,29941,'com.liferay.portlet.dependency.factory.impl','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2f97479a-c38e-8cab-3236-8d3725181e7a',29944,20099,29943,'com.liferay.text.localizer.address.api','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('153a0955-8a49-18d8-7547-4c5fe0a81137',29945,20099,29943,'com.liferay.text.localizer.taglib','1.0.5','text-localizer-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('5431d37a-d579-225a-491e-8bd86a24d7c3',29947,20099,29946,'com.liferay.portal.cluster.multiple','2.0.24',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6475e378-0a9e-c89c-793b-4703c11e7842',29948,20099,29946,'com.liferay.portal.compound.session.id','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f50634c0-facd-1a2a-9e54-5eee342b98dd',29949,20099,29946,'com.liferay.portal.custom.jsp.bag.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6d02b3a4-c997-4fef-7b96-6830d3a2264f',29950,20099,29946,'com.liferay.portal.dao.orm.custom.sql.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a44919bb-002c-26d9-2be8-95a6dee4e06e',29951,20099,29946,'com.liferay.portal.dao.orm.custom.sql.impl','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bfbaa1d4-b3c3-8b63-d448-087eded20861',29952,20099,29946,'com.liferay.portal.executor','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('86b841b7-8c62-82a7-e569-f2d05ca2daa5',29953,20099,29946,'com.liferay.portal.inactive.request.handler','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fdf7cc7d-69bd-613a-58e4-382915eb1974',29954,20099,29946,'com.liferay.portal.init.servlet.filter','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7a7c8f8b-1dcc-a40c-5fe0-0bdeeff3f240',29955,20099,29946,'com.liferay.portal.instance.lifecycle.api','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e0c25460-286b-14dd-5d6c-b5f4d8aede56',29956,20099,29946,'com.liferay.portal.instance.lifecycle.impl','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b1683eb4-f354-2f6e-50a5-59443b44190e',29957,20099,29946,'com.liferay.portal.jmx','5.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('da9a74bd-3e73-94c7-7fd2-ba67b2a691c7',29958,20099,29946,'com.liferay.portal.jmx.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fe9601e9-de5a-7395-c444-3443db092eb4',29959,20099,29946,'com.liferay.portal.license.deployer','2.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('19b2741f-3264-b2ef-ade6-cd5db191bc9e',29960,20099,29946,'com.liferay.portal.messaging','5.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9960e1f0-b23d-f97a-d6d1-e6d741bc103c',29961,20099,29946,'com.liferay.portal.monitoring','6.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4be54073-a1d3-8f17-8853-ca62a049f4cd',29962,20099,29946,'com.liferay.portal.output.stream.container','4.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('360c64e1-d593-526c-ed6a-05cf0cef4ac0',29963,20099,29946,'com.liferay.portal.output.stream.container.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('18209ec1-b353-fa60-f53f-cf9b003a49d5',29964,20099,29946,'com.liferay.portal.pop.notifications','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d0da4ac8-85ad-be6a-e487-09938b4b28ff',29965,20099,29946,'com.liferay.portal.spring.extender.api','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('893237b5-98da-8932-c0ff-368bb3873316',29966,20099,29946,'com.liferay.portal.spring.extender.impl','1.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('29a033f5-bd94-7500-4d08-d6aa2266a760',29967,20099,29946,'com.liferay.portal.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('35b96830-fa00-91e4-68c2-596167591137',29968,20099,29946,'com.liferay.portal.upgrade.api','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3e01415d-bd6d-85e0-5f8b-916e7da1fff3',29969,20099,29946,'com.liferay.portal.upgrade.impl','2.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1bf51a14-ee60-f51e-ea56-9be60408632f',29970,20099,29946,'com.liferay.portal.upload','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5cbbe934-5771-4558-ff9b-c9bc27587aef',29971,20099,29946,'com.liferay.portal.verify.extender','4.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1b728aca-e24c-d605-e44e-319349a5e5cd',29972,20099,29946,'com.liferay.portal.weblogic.support','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2ebafd59-11bb-76fe-409e-1a2cb4b047e3',29974,20099,29973,'com.liferay.portal.lock.api','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5934765a-a09f-fc21-5d07-fc5b3ac445a3',29975,20099,29973,'com.liferay.portal.lock.service','3.0.14',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0d53dec5-d9f6-4835-bfc5-cd719fcdadb3',29977,20099,29976,'com.liferay.monitoring.web','2.0.9','monitoring-web') -INSERT INTO MARKETPLACE_MODULE VALUES('fe1955f0-fce9-dee8-17ab-356377c711a2',29979,20099,29978,'com.liferay.frontend.js.aui.web','2.0.43',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('da086145-65fd-1fe0-f2f3-64a07848c79f',29980,20099,29978,'com.liferay.frontend.js.bundle.config.extender','2.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4be69f39-a243-e5f4-b340-166559936bfd',29981,20099,29978,'com.liferay.frontend.js.loader.modules.extender','3.0.21',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2bf25342-b452-b5f8-f53a-c56dd6cfc056',29982,20099,29978,'com.liferay.frontend.js.loader.modules.extender.api','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('1f2b5497-fbd6-c7e8-677c-dea99c703c07',29983,20099,29978,'com.liferay.frontend.js.lodash.web','1.0.5','frontend-js-lodash-web') -INSERT INTO MARKETPLACE_MODULE VALUES('216aa117-ddc1-368c-9b37-19af97fb8355',29984,20099,29978,'com.liferay.frontend.js.metal.web','2.0.6','frontend-js-metal-web') -INSERT INTO MARKETPLACE_MODULE VALUES('b75faaf5-8a69-4f5a-f0a3-a1627020c898',29985,20099,29978,'com.liferay.frontend.js.minifier','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7f3e29f0-a20d-1142-2924-3594613434a4',29986,20099,29978,'com.liferay.frontend.js.node.shims','2.0.1','frontend-js-node-shims') -INSERT INTO MARKETPLACE_MODULE VALUES('4b1b65bc-9968-4631-f6f3-cbde7fe24ea3',29987,20099,29978,'com.liferay.frontend.js.polyfill.babel.web','2.0.1','frontend-js-polyfill-babel-web') -INSERT INTO MARKETPLACE_MODULE VALUES('d73d64a4-77f8-664f-175e-1b522b103aa1',29988,20099,29978,'com.liferay.frontend.js.spa.web','2.0.20','frontend-js-spa-web') -INSERT INTO MARKETPLACE_MODULE VALUES('42db2b18-f51a-a100-f872-e2e191043010',29989,20099,29978,'com.liferay.frontend.js.top.head.extender','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('518050b4-6ca4-ff6b-c15f-7a1c4bb06ca1',29990,20099,29978,'com.liferay.frontend.js.web','2.0.42','frontend-js-web') -INSERT INTO MARKETPLACE_MODULE VALUES('e48a19f0-5c15-a4d9-a729-2ebf57f05cf0',29992,20099,29991,'com.liferay.portal.scripting.api','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('51a4ed71-be35-0332-ae3f-12982b843e4f',29993,20099,29991,'com.liferay.portal.scripting.executor','4.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e7c4bb77-b0eb-2ade-a06d-84db015130a0',29994,20099,29991,'com.liferay.portal.scripting.groovy','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('efd19f90-a90d-f69e-4be3-4ced89108c24',29995,20099,29991,'com.liferay.portal.scripting.groovy.context.api','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2a0b7741-1c38-f511-213b-a12ca813efbc',29996,20099,29991,'com.liferay.portal.scripting.impl','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('042d587c-bb51-9f9d-77ed-d96fb7b56c8f',29998,20099,29997,'com.liferay.knowledge.base.api','5.1.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a3cae6eb-4cec-cbb1-8ccb-c75babb7b580',29999,20099,29997,'com.liferay.knowledge.base.editor.configuration','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b7f53940-4600-2d9d-47ff-79a7300d0308',30000,20099,29997,'com.liferay.knowledge.base.item.selector.api','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7b40be89-cb5c-bc42-5281-44e2690379b8',30001,20099,29997,'com.liferay.knowledge.base.item.selector.web','2.0.6','knowledge-base-item-selector-web') -INSERT INTO MARKETPLACE_MODULE VALUES('8eae01db-d132-a280-6dfe-4a69f65aad5d',30002,20099,29997,'com.liferay.knowledge.base.markdown.converter.api','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('20b1d9a0-0126-df1e-a763-7db75030a1b3',30003,20099,29997,'com.liferay.knowledge.base.markdown.converter.impl','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a6d4709d-5bc3-554b-44c4-b2e8c7122a62',30004,20099,29997,'com.liferay.knowledge.base.service','2.0.35',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('8c7be2ee-753e-ccec-2b6f-c3a9e2c3dc99',30005,20099,29997,'com.liferay.knowledge.base.web','2.0.38','knowledge-base-web') -INSERT INTO MARKETPLACE_MODULE VALUES('38ed477a-7cea-dd09-3bbc-c6f7f011811e',30007,20099,30006,'com.liferay.calendar.api','3.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0013a468-1ee5-6cd5-3293-cd8ef9c20234',30008,20099,30006,'com.liferay.calendar.service','3.0.33',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('32459e4a-73c1-7d4a-ca03-d8fc632dd508',30009,20099,30006,'com.liferay.calendar.web','2.0.32','calendar-web') -INSERT INTO MARKETPLACE_MODULE VALUES('1d3a7474-f208-9311-dcd0-9e08f96960c2',30011,20099,30010,'com.liferay.xstream.configurator.api','3.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e76428b0-cd72-c8ad-9f25-3811c8ef3612',30013,20099,30012,'com.liferay.meris.api','1.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5e3e3b93-34a6-a704-e6c3-3f28a2e7b898',30015,20099,30014,'com.liferay.wiki.api','3.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('03bf1764-40c1-1277-0a14-54a6f5a0e0f6',30016,20099,30014,'com.liferay.wiki.editor.configuration','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ff76e638-99de-2c04-fd5c-ebbc7d481e25',30017,20099,30014,'com.liferay.wiki.editor.link.browse.web','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ba43a96e-3351-783b-5fb2-31f2d5e12eaf',30018,20099,30014,'com.liferay.wiki.engine.creole','3.0.10','wiki-engine-creole') -INSERT INTO MARKETPLACE_MODULE VALUES('577e8a38-e1c1-16a9-78f2-1bcce0f11997',30019,20099,30014,'com.liferay.wiki.engine.html','3.0.0','wiki-engine-html') -INSERT INTO MARKETPLACE_MODULE VALUES('5b48c47b-c429-fc61-6613-423f543c29c2',30020,20099,30014,'com.liferay.wiki.engine.input.editor.common','4.0.4','wiki-engine-input-editor-common') -INSERT INTO MARKETPLACE_MODULE VALUES('9402fadd-4071-9def-dabd-a6b11d0979b5',30021,20099,30014,'com.liferay.wiki.engine.lang','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('59f691a4-acff-3d6a-14d4-34b9b61dea84',30022,20099,30014,'com.liferay.wiki.engine.text','3.0.1','wiki-engine-text') -INSERT INTO MARKETPLACE_MODULE VALUES('c02b5df8-612b-7a4a-0c1e-d71ea9391f5a',30023,20099,30014,'com.liferay.wiki.layout.prototype','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('54ba47a2-389f-41cf-2706-ee845e524f55',30024,20099,30014,'com.liferay.wiki.navigation.web','3.0.6','wiki-navigation-web') -INSERT INTO MARKETPLACE_MODULE VALUES('7c7c0308-8ad9-a12c-37f3-5140e342290e',30025,20099,30014,'com.liferay.wiki.service','2.0.35',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('75550cfa-6855-32a5-6694-54d1477b1bc4',30026,20099,30014,'com.liferay.wiki.uad','3.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('2ccb2383-d29e-4bda-4ce1-40a357cb09da',30027,20099,30014,'com.liferay.wiki.web','4.0.43','wiki-web') -INSERT INTO MARKETPLACE_MODULE VALUES('b5f914e0-d657-c1a6-c9f0-b8cf1cde1509',30029,20099,30028,'com.liferay.frontend.css.common','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('866cbeb5-b8d7-7bc3-e54c-a7185b032746',30030,20099,30028,'com.liferay.frontend.css.rtl.servlet','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('833f5a2f-490f-6926-56bb-78c38e8e75fb',30031,20099,30028,'com.liferay.frontend.css.web','2.0.12','frontend-css-web') -INSERT INTO MARKETPLACE_MODULE VALUES('ff99f402-a771-f9ef-6cda-9c66f4cdcc9d',30033,20099,30032,'com.liferay.reading.time.api','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('39a4dc64-88b8-bef0-4364-60aa15785e32',30034,20099,30032,'com.liferay.reading.time.editor.plugin','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e7d6c057-51d1-bd3a-c543-3756c0ddb9d6',30035,20099,30032,'com.liferay.reading.time.service','1.0.17',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4116125c-c6be-11e8-8033-478548a78233',30036,20099,30032,'com.liferay.reading.time.taglib','1.0.4','reading-time-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('29ab5275-7f39-0fe0-da75-5c1286271ab2',30037,20099,30032,'com.liferay.reading.time.web','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('5541019a-cb95-4e05-cb4d-c2c5b0045e36',30039,20099,30038,'com.liferay.imageio.plugins','2.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6ea7d7a9-ef69-e11c-cbb7-7e5261953113',30041,20099,30040,'com.liferay.portlet.configuration.css.web','3.0.25','portlet-configuration-css-web') -INSERT INTO MARKETPLACE_MODULE VALUES('833ec36f-2b4c-bb12-17c1-2dcd224b7eb7',30042,20099,30040,'com.liferay.portlet.configuration.icon.close','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('dfadc92f-626d-9dc1-a949-0174ad29b862',30043,20099,30040,'com.liferay.portlet.configuration.icon.edit','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bd5b5fd8-9a17-3e96-ceef-5aa905399d65',30044,20099,30040,'com.liferay.portlet.configuration.icon.edit.defaults','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d89d8efc-1a0b-6a97-95af-e8489fa8a02b',30045,20099,30040,'com.liferay.portlet.configuration.icon.edit.guest','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('36f826fe-7a76-ae01-9e25-ba302f0be7f7',30046,20099,30040,'com.liferay.portlet.configuration.icon.help','3.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('992425aa-794e-e107-ae73-b2846eafb507',30047,20099,30040,'com.liferay.portlet.configuration.icon.locator.impl','1.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('54fcbd4d-0920-fa96-b70c-b6826f41a5d3',30048,20099,30040,'com.liferay.portlet.configuration.icon.maximize','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d006f7ec-91b3-ab85-43d0-c27bc5651d02',30049,20099,30040,'com.liferay.portlet.configuration.icon.minimize','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('39696232-a013-8c17-4706-21631a886ad0',30050,20099,30040,'com.liferay.portlet.configuration.icon.print','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('78283a58-a6f0-e651-ccc4-67306b7fda31',30051,20099,30040,'com.liferay.portlet.configuration.icon.refresh','3.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e6cc2230-eba7-1c18-4f76-f3fd1158ee78',30052,20099,30040,'com.liferay.portlet.configuration.sharing.web','3.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('cdf02cf4-7298-6a0e-430e-44a46afde807',30053,20099,30040,'com.liferay.portlet.configuration.toolbar.contributor.locator.impl','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('ac513ca8-5476-867d-9f56-ef84cae7b104',30054,20099,30040,'com.liferay.portlet.configuration.web','2.0.34',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('afb33943-cbf4-c372-727b-fe061dd582a0',30056,20099,30055,'com.liferay.login.authentication.facebook.connect.web','3.0.2','login-authentication-facebook-connect-web') -INSERT INTO MARKETPLACE_MODULE VALUES('be12f0fd-a795-b06b-3e48-161fb2c5a7b9',30057,20099,30055,'com.liferay.login.authentication.google.web','3.0.3','login-authentication-google-web') -INSERT INTO MARKETPLACE_MODULE VALUES('c43f848e-ab09-71e1-4516-d2cb944ed553',30058,20099,30055,'com.liferay.login.authentication.openid.connect.web','3.0.3','login-authentication-openid-connect-web') -INSERT INTO MARKETPLACE_MODULE VALUES('2d4d71d4-5a87-8b7e-9370-ec059392f1a0',30059,20099,30055,'com.liferay.login.authentication.openid.web','3.0.5','login-authentication-openid-web') -INSERT INTO MARKETPLACE_MODULE VALUES('c64f57c2-b787-12dd-379e-db985a26da6a',30060,20099,30055,'com.liferay.login.web','3.0.26','login-web') -INSERT INTO MARKETPLACE_MODULE VALUES('48b1d3c2-4106-097f-a8c2-852efb992d9c',30062,20099,30061,'com.liferay.portal.search','5.0.26',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('d5dce53a-d732-09c0-d176-bc92cc726935',30063,20099,30061,'com.liferay.portal.search.admin.web','1.0.6','portal-search-admin-web') -INSERT INTO MARKETPLACE_MODULE VALUES('37df9b96-5a27-b891-59ee-3f52c598d400',30064,20099,30061,'com.liferay.portal.search.api','2.1.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fe345ec4-14a8-7b84-f750-955992e944e2',30065,20099,30061,'com.liferay.portal.search.engine.adapter.api','2.2.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3a806dbb-d46b-7ab2-2585-1e87447477c1',30066,20099,30061,'com.liferay.portal.search.spi','2.1.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b59bc3f6-9613-b0a5-8642-e88790fd5c6f',30067,20099,30061,'com.liferay.portal.search.web','3.0.49','portal-search-web') -INSERT INTO MARKETPLACE_MODULE VALUES('097f82c3-6853-3f20-8371-a475a5f67b74',30068,20099,30061,'com.liferay.portal.search.web.api','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('759e78d2-7569-256e-ba36-0298bb6cbe0d',30070,20099,30069,'com.liferay.frontend.taglib','3.2.2','frontend-taglib') -INSERT INTO MARKETPLACE_MODULE VALUES('b3e1fe73-9569-83ef-05e5-769212edc690',30071,20099,30069,'com.liferay.frontend.taglib.chart','1.0.15','frontend-taglib-chart') -INSERT INTO MARKETPLACE_MODULE VALUES('94326d18-08fe-c1d0-5f22-1a629a60a346',30072,20099,30069,'com.liferay.frontend.taglib.clay','1.4.0','frontend-taglib-clay') -INSERT INTO MARKETPLACE_MODULE VALUES('c374a049-f493-5abd-6552-7cf8041cd2ed',30073,20099,30069,'com.liferay.frontend.taglib.dynamic.section','1.0.5','frontend-taglib-dynamic-section') -INSERT INTO MARKETPLACE_MODULE VALUES('b54dd412-b285-9ad5-8e7a-22d991f21f6f',30074,20099,30069,'com.liferay.frontend.taglib.form.navigator','2.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('57fda9ef-4372-54ef-fd95-ca1118ac9767',30075,20099,30069,'com.liferay.frontend.taglib.soy','2.1.3','frontend-taglib-soy') -INSERT INTO MARKETPLACE_MODULE VALUES('9c6c57ea-c94c-093b-86e4-fe69ad799c8b',30076,20099,30069,'com.liferay.frontend.taglib.util','1.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('9a8212eb-1d1b-1352-abbe-5d831187b102',30077,20099,30069,'com.liferay.frontend.taglib.util.freemarker.contributor','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7c427539-e1d0-b4ed-2bab-b489ce4b7662',30079,20099,30078,'com.liferay.gogo.shell.web','2.0.21',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a4036381-0711-bf68-0de5-140706c2708c',30081,20099,30080,'com.liferay.changeset.api','1.2.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('b98a7250-1582-59ad-f90c-24ecc03f1fc4',30082,20099,30080,'com.liferay.changeset.service','1.0.12',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('4ca1471c-641e-d76a-2ed1-ab7bdc66ebb4',30084,20099,30083,'com.liferay.websocket.whiteboard','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('717ed5cd-f896-1c75-1d0e-8046ed9fce8f',30086,20099,30085,'com.liferay.portal.security.sso.cas.api','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('27e260f5-cba7-6b28-1be2-5929c613728a',30087,20099,30085,'com.liferay.portal.security.sso.cas.impl','1.0.11',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('f4f164b5-bf08-e107-f13c-ea8beea3ebb3',30088,20099,30085,'com.liferay.portal.security.sso.facebook.connect.api','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('0c054444-52da-6f55-b306-763cfda94711',30089,20099,30085,'com.liferay.portal.security.sso.facebook.connect.impl','1.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('7a3e6239-6cd3-1962-47bc-64c782fc03ed',30090,20099,30085,'com.liferay.portal.security.sso.google.api','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('327c9939-e303-5545-7b03-578d2740af0e',30091,20099,30085,'com.liferay.portal.security.sso.google.impl','1.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('03cfabf4-9ba5-a390-9f56-63cbe19c22da',30092,20099,30085,'com.liferay.portal.security.sso.ntlm.api','2.0.3',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a5976101-634a-0bb2-028a-1b2a848638eb',30093,20099,30085,'com.liferay.portal.security.sso.ntlm.impl','1.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('25b14b2f-1624-d271-3ffe-496bfe706ffa',30094,20099,30085,'com.liferay.portal.security.sso.openid.api','2.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('90b658ce-35e0-1528-b0a4-cfae99a0ee14',30095,20099,30085,'com.liferay.portal.security.sso.openid.connect.api','4.0.1',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('e90daeec-221a-8b2d-fc6a-68d1fd84b485',30096,20099,30085,'com.liferay.portal.security.sso.openid.connect.impl','3.0.4',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('79a5cb1d-c00f-e2e8-247f-fb13fcefce95',30097,20099,30085,'com.liferay.portal.security.sso.openid.impl','1.0.7',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('c9b80ac8-1461-0b60-afca-d5290f05d38d',30098,20099,30085,'com.liferay.portal.security.sso.opensso.api','2.1.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('6c0ac4e5-52cc-1318-4c89-71f75a2cbfac',30099,20099,30085,'com.liferay.portal.security.sso.opensso.impl','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('df81f90a-d82a-f14d-61e1-fe5396db7f96',30100,20099,30085,'com.liferay.portal.security.sso.token.api','2.0.0',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('10fd026e-919b-cbda-828a-1e40b157d489',30101,20099,30085,'com.liferay.portal.security.sso.token.impl','2.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a525fafe-9ff1-cba8-e6d6-8ba3c54b0897',30103,20099,30102,'com.liferay.portal.scheduler','5.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('db755872-1c9a-d0d2-58f0-f708372897b9',30104,20099,30102,'com.liferay.portal.scheduler.multiple','2.0.10',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a4690a80-2ffc-cfe7-5c63-12689048ab5f',30105,20099,30102,'com.liferay.portal.scheduler.quartz','4.0.9',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('14e0e126-4ff5-7786-fd42-8ca94f9cf24e',30107,20099,30106,'com.liferay.image.uploader.web','2.0.6',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('971dbe94-d828-6ac1-a2f2-aed66048c1cc',30109,20099,30108,'com.liferay.html.preview.api','1.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('3c528b20-a00d-c791-12d6-bc9165bca2e9',30110,20099,30108,'com.liferay.html.preview.processor.image','1.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('94029f04-62fd-3fd5-15b4-347589ac9875',30111,20099,30108,'com.liferay.html.preview.service','1.0.8',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('bcc9ddb6-43ba-2855-9476-ed16dcd6e0dd',30113,20099,30112,'com.liferay.portal.reports.engine.api','4.0.2',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('a73f3a95-a406-55b3-e153-65f3dc09014f',30115,20099,30114,'com.liferay.frontend.theme.contributor.extender','3.0.5',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('fb9113ab-cdca-81ad-40e1-3af9039530f0',30116,20099,30114,'com.liferay.frontend.theme.favicon.servlet','2.0.0','frontend-theme-favicon-servlet') -INSERT INTO MARKETPLACE_MODULE VALUES('cc6aebc4-422f-056f-e3b9-2ad8b9fe11b9',30117,20099,30114,'com.liferay.frontend.theme.styled','3.0.16',NULL) -INSERT INTO MARKETPLACE_MODULE VALUES('94f91534-8dc9-686c-bd1a-12477c13ee0e',30118,20099,30114,'com.liferay.frontend.theme.unstyled','3.0.22','frontend-theme-unstyled') -INSERT INTO MARKETPLACE_MODULE VALUES('cb6e2e05-39d8-627e-f4b0-7cc0c97230ce',30119,20099,30114,'admin-theme',NULL,'admin-theme') -INSERT INTO MARKETPLACE_MODULE VALUES('72c3dc99-c59e-2752-64bc-cadc3487ad27',30120,20099,30114,'classic-theme',NULL,'classic-theme') -INSERT INTO MARKETPLACE_MODULE VALUES('e542bddb-cebc-54bf-529b-2fc19cf16c13',30122,20099,30121,'com.liferay.frontend.compatibility.ie','2.0.5','frontend-compatibility-ie') -INSERT INTO MARKETPLACE_MODULE VALUES('1bd0d9f7-e607-51fd-da47-6803ae9a10ff',30124,20099,30123,'com.liferay.nested.portlets.web','3.0.9','nested-portlets-web') -INSERT INTO SAPENTRY VALUES('d87e09fc-b8e7-df9a-2af8-0155e6a34bfd',30403,20099,20103,NULL,'2019-05-09 00:27:43.293000','2019-05-09 00:27:43.293000','*','0','1','OAUTH2_everything','tekeydy itseksesiimpersonate you\u6a21\u62df\u60a8suplantar a su usuario\u05dc\u05d4\u05ea\u05d7\u05d6\u05d5\u05ea \u05db\u05d0\u05d9\u05dc\u05d5 \u05d6\u05d4 \u05d0\u05ea\u05d4personificar voc\u00ea\u4ee3\u7406\u30ed\u30b0\u30a4\u30f3usurper votre identit\u00e9suplanteu-voszich uitgeven voor uaz \u00f6n megszem\u00e9lyes\u00edt\u00e9sesich als Sie ausgeben') -INSERT INTO SAPENTRY VALUES('74622902-d7f5-3f84-8c70-9ef40ac6e800',30404,20099,20103,NULL,'2019-05-09 00:27:43.307000','2019-05-09 00:27:43.307000','#fetch*\u000a#get*\u000a#has*\u000a#is*\u000a#search*','0','1','OAUTH2_everything.read','lue tiedot puolestasiread data on your behalf\u4ee3\u8868\u60a8\u8bfb\u53d6\u6570\u636eleer datos en su nombre\u05e7\u05e8\u05d0 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d1\u05e9\u05de\u05daler dados em seu nome\u30c7\u30fc\u30bf\u8aad\u307f\u8fbc\u307f\u3092\u8a31\u53eflire les donn\u00e9es de votre partllegiu dades en el vostre nomgegevens lezen in uw naamadatok olvas\u00e1sa az \u00f6n nev\u00e9benDaten in Ihrem Namen lesen') -INSERT INTO SAPENTRY VALUES('16458a12-faa3-7e97-34a9-1223c36347ef',30405,20099,20103,NULL,'2019-05-09 00:27:43.312000','2019-05-09 00:27:43.312000','com.liferay.document.library.kernel.service.DLAppService#get*\u000acom.liferay.portal.kernel.service.ImageService#get*','0','1','OAUTH2_everything.read.documents.download','lataa asiakirjat ja kuvatdownload documents and images\u4e0b\u8f7d\u6587\u6863\u548c\u56fe\u50cfdescargar documentos e im\u00e1genes\u05d4\u05d5\u05e8\u05d3 \u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d5\u05ea\u05de\u05d5\u05e0\u05d5\u05eatransferir documentos e imagens\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3084\u753b\u50cf\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9t\u00e9l\u00e9charger des documents et des imagesdescarrega documents i imatgesdocumenten en afbeeldingen downloadendokumentumok \u00e9s k\u00e9pek let\u00f6lt\u00e9seDokumente und Bilder herunterladen') -INSERT INTO SAPENTRY VALUES('95f8e020-b52a-6f3b-6e14-4abfec4e66b5',30406,20099,20103,NULL,'2019-05-09 00:27:43.317000','2019-05-09 00:27:43.317000','com.liferay.portal.kernel.service.UserService#getCurrentUser','0','1','OAUTH2_everything.read.userprofile','lue henkil\u00f6kohtaiset k\u00e4ytt\u00e4j\u00e4tietosiread your personal user data\u8bfb\u53d6\u60a8\u7684\u4e2a\u4eba\u7528\u6237\u6570\u636eleer sus datos de usuario personales\u05e7\u05e8\u05d0 \u05d0\u05ea \u05e0\u05ea\u05d5\u05e0\u05d9 \u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05d4\u05d0\u05d9\u05e9\u05d9\u05d9\u05dd \u05e9\u05dc\u05daler seus dados pessoais de usu\u00e1rio\u500b\u4eba\u30e6\u30fc\u30b6\u30fc\u30c7\u30fc\u30bf\u3092\u8aad\u307f\u53d6\u308a\u3092\u8a31\u53eflire vos donn\u00e9es utilisateur personnellesllegiu les vostres dades personals d''usuariuw persoonlijke gebruikersgegevens lezenszem\u00e9lyes felhaszn\u00e1l\u00f3i adatai olvas\u00e1salesen Sie Ihre pers\u00f6nlichen Benutzerdaten') -INSERT INTO SAPENTRY VALUES('1ab86284-27d1-0ea9-9f2c-e9ebf7caca19',30407,20099,20103,NULL,'2019-05-09 00:27:43.322000','2019-05-09 00:27:43.322000','#add*\u000a#create*\u000a#delete*\u000a#update*','0','1','OAUTH2_everything.write','luo/p\u00e4ivit\u00e4/poista tietoja omasta puolestasicreate/update/delete data on your behalf\u4ee3\u8868\u60a8\u521b\u5efa/\u66f4\u65b0/\u5220\u9664\u6570\u636ecrear, actualizar y eliminar datos en su nombre\u05e6\u05d5\u05e8/\u05e2\u05d3\u05db\u05d5\u05df/\u05de\u05d7\u05e7 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d1\u05e9\u05de\u05dacriar/atualizar/excluir dados em seu nome\u30c7\u30fc\u30bf\u306e\u4f5c\u6210/\u66f4\u65b0/\u524a\u9664\u3092\u8a31\u53efcr\u00e9er/mettre \u00e0 jour/supprimer les donn\u00e9es en votre nomcreeu/actualitzeu/suprimiu dades en el vostre nomgegevens maken/bijwerken/verwijderen in uw naamadatok l\u00e9trehoz\u00e1sa/friss\u00edt\u00e9se/t\u00f6rl\u00e9se az \u00f6n nev\u00e9benDaten in Ihrem Namen erstellen/aktualisieren/l\u00f6schen') -INSERT INTO SAPENTRY VALUES('0340f011-f37e-7ff0-bedb-ae296a91d858',30408,20099,20103,NULL,'2019-05-09 00:27:43.351000','2019-05-09 00:27:43.351000','com.liferay.calendar.service.CalendarBookingService#search\u000acom.liferay.calendar.service.CalendarBookingService#searchCount','1','1','CALENDAR_DEFAULT','Julkinen K\u00e4ytt\u00f6oikeus Kalenterihaun RajapintaanPublic Access to the Calendar Search API\u516c\u5171\u8bbf\u95ee\u65e5\u5386\u641c\u7d22APIAcceso p\u00fablico al API de b\u00fasqueda en calendarios\u05d2\u05d9\u05e9\u05d4 \u05e6\u05d9\u05d1\u05d5\u05e8\u05d9\u05ea \u05d0\u05dc API \u05d7\u05d9\u05e4\u05d5\u05e9 \u05d1\u05dc\u05d5\u05d7 \u05e9\u05e0\u05d4IAcesso p\u00fablico para o API de busca do calend\u00e1rio\u30ab\u30ec\u30f3\u30c0\u30fc\u691c\u7d22API\u3092\u4e00\u822c\u516c\u958bAcc\u00e8s public \u00e0 l''API de recherche de calendrierAcc\u00e9s p\u00fablic a l''API de cerca de calendariPublieke toegang tot de zoek-API voor de kalenderNyilv\u00e1nos hozz\u00e1f\u00e9r\u00e9s a Napt\u00e1ri keres\u00e9s API-hoz\u00d6ffentlicher Zugriff auf Such-API des Kalenders') -INSERT INTO SAPENTRY VALUES('130f310b-814f-02fd-dc70-bba978d3c7a4',30409,20099,20103,NULL,'2019-05-09 00:27:43.378000','2019-05-09 00:27:43.378000','com.liferay.portal.kernel.service.CountryService#getCountries\u000acom.liferay.portal.kernel.service.RegionService#getRegions','1','1','SYSTEM_DEFAULT','System Service Access Policy Applied on Every Request') -INSERT INTO SAPENTRY VALUES('bb9b8978-5b73-7695-31c5-93fcec37adcc',30410,20099,20103,NULL,'2019-05-09 00:27:43.385000','2019-05-09 00:27:43.385000','*','0','1','SYSTEM_USER_PASSWORD','System Service Access Policy for Requests Authenticated Using User Password') -INSERT INTO SAPENTRY VALUES('404b4ad0-72cc-5e9e-b03c-9e865f6d4581',30411,20099,20103,NULL,'2019-05-09 00:27:43.400000','2019-05-09 00:27:43.400000','com.liferay.asset.kernel.service.AssetEntryService#incrementViewCounter','1','1','ASSET_ENTRY_DEFAULT','ASSET_ENTRY_DEFAULT') -INSERT INTO SAPENTRY VALUES('7247a0b3-77f4-90e5-7531-67dbebd0b654',32133,20099,20103,NULL,'2019-05-09 00:27:49.267000','2019-05-09 00:27:49.267000','com.liferay.portal.kernel.service.ContactService#getContact\u000acom.liferay.portal.kernel.service.GroupService#getGroup\u000acom.liferay.portal.kernel.service.GroupService#getGroups\u000acom.liferay.portal.kernel.service.GroupService#getGroupsCount\u000acom.liferay.portal.kernel.service.GroupService#getGtGroups\u000acom.liferay.portal.kernel.service.OrganizationService#fetchOrganization\u000acom.liferay.portal.kernel.service.OrganizationService#getGtOrganizations\u000acom.liferay.portal.kernel.service.OrganizationService#getOrganization\u000acom.liferay.portal.kernel.service.OrganizationService#getOrganizations\u000acom.liferay.portal.kernel.service.OrganizationService#getOrganizationsCount\u000acom.liferay.portal.kernel.service.OrganizationService#getUserOrganizations\u000acom.liferay.portal.kernel.service.PortalService#getBuildNumber\u000acom.liferay.portal.kernel.service.UserGroupService#fetchUserGroup\u000acom.liferay.portal.kernel.service.UserGroupService#getGtUserGroups\u000acom.liferay.portal.kernel.service.UserGroupService#getUserGroup\u000acom.liferay.portal.kernel.service.UserGroupService#getUserGroups\u000acom.liferay.portal.kernel.service.UserGroupService#getUserGroupsCount\u000acom.liferay.portal.kernel.service.UserGroupService#getUserUserGroups\u000acom.liferay.portal.kernel.service.UserService#getCompanyUsers\u000acom.liferay.portal.kernel.service.UserService#getCompanyUsersCount\u000acom.liferay.portal.kernel.service.UserService#getCurrentUser\u000acom.liferay.portal.kernel.service.UserService#getGtCompanyUsers\u000acom.liferay.portal.kernel.service.UserService#getGtOrganizationUsers\u000acom.liferay.portal.kernel.service.UserService#getGtUserGroupUsers\u000acom.liferay.portal.kernel.service.UserService#getOrganizationUsers\u000acom.liferay.portal.kernel.service.UserService#getOrganizationUsersCount\u000acom.liferay.portal.kernel.service.UserService#getOrganizationsAndUserGroupsUsersCount\u000acom.liferay.portal.kernel.service.UserService#getUserById\u000acom.liferay.portal.kernel.service.UserService#getUserGroupUsers\u000acom.liferay.portal.security.audit.storage.service.AuditEventService#getAuditEvents','0','1','OAUTH2_analytics.read','read analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalfread analytics data on your behalf') -INSERT INTO SAPENTRY VALUES('0e8b0f01-d7d9-8496-fa11-65d032a12513',32134,20099,20103,NULL,'2019-05-09 00:27:49.280000','2019-05-09 00:27:49.280000','com.liferay.portal.kernel.service.CompanyService#updatePreferences','0','1','OAUTH2_analytics.write','create/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalfcreate/update/delete preferences on your behalf') -INSERT INTO LAYOUTPAGETEMPLATEENTRY VALUES('6b953806-0e9a-fa2e-b4be-49d843a9fa8a',33329,20135,20099,20103,NULL,'2019-05-09 00:28:07.049000','2019-05-09 00:28:07.049000',0,0,0,'Wiki',2,0,'0',33328,NULL,0,20103,'20103','2019-05-09 00:28:07.049000') -INSERT INTO LAYOUTPAGETEMPLATEENTRY VALUES('9330f25b-667d-8b67-0628-680bd764347d',33344,20135,20099,20103,NULL,'2019-05-09 00:28:07.612000','2019-05-09 00:28:07.612000',0,0,0,'Blog',2,0,'0',33343,NULL,0,20103,'20103','2019-05-09 00:28:07.612000') -INSERT INTO KALEOACTION VALUES(32106,0,20099,20103,NULL,'2019-05-09 00:27:47.510000','2019-05-09 00:27:47.510000','com.liferay.portal.workflow.kaleo.model.KaleoNode',32105,32104,'approved','approve',NULL,'onEntry','\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009import com.liferay.portal.kernel.workflow.WorkflowStatusManagerUtil;\u000a\u0009\u0009\u0009\u0009\u0009\u0009import com.liferay.portal.kernel.workflow.WorkflowConstants;\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009WorkflowStatusManagerUtil.updateStatus(WorkflowConstants.getLabelStatus("approved"), workflowContext);\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009','groovy',NULL,0) -INSERT INTO KALEOACTION VALUES(32125,0,20099,20103,NULL,'2019-05-09 00:27:47.563000','2019-05-09 00:27:47.563000','com.liferay.portal.workflow.kaleo.model.KaleoNode',32124,32104,'update','reject',NULL,'onAssignment','\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009import com.liferay.portal.kernel.workflow.WorkflowStatusManagerUtil;\u000a\u0009\u0009\u0009\u0009\u0009\u0009import com.liferay.portal.kernel.workflow.WorkflowConstants;\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009WorkflowStatusManagerUtil.updateStatus(WorkflowConstants.getLabelStatus("denied"), workflowContext);\u000a\u0009\u0009\u0009\u0009\u0009\u0009WorkflowStatusManagerUtil.updateStatus(WorkflowConstants.getLabelStatus("pending"), workflowContext);\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009','groovy',NULL,0) -INSERT INTO KALEODEFINITION VALUES(32103,0,20099,20103,NULL,'2019-05-09 00:27:47.478000','2019-05-09 00:27:47.574000','Single Approver','Single Approver','A single approver can approve a workflow content.','\u000a\u000a\u000a\u0009Single Approver\u000a\u0009A single approver can approve a workflow content.\u000a\u00091\u000a\u0009\u000a\u0009\u0009created\u000a\u0009\u0009 \u000a\u0009\u0009true\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009review\u000a\u0009\u0009\u0009\u0009review\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u0009\u000a\u0009\u0009update\u000a\u0009\u0009 \u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009reject\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009groovy\u000a\u0009\u0009\u0009\u0009onAssignment\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009Creator Modification Notification\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009freemarker\u000a\u0009\u0009\u0009\u0009email\u000a\u0009\u0009\u0009\u0009user-notification\u000a\u0009\u0009\u0009\u0009onAssignment\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009resubmit\u000a\u0009\u0009\u0009\u0009review\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u0009\u000a\u0009\u0009review\u000a\u0009\u0009 \u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009Review Notification\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009freemarker\u000a\u0009\u0009\u0009\u0009email\u000a\u0009\u0009\u0009\u0009user-notification\u000a\u0009\u0009\u0009\u0009onAssignment\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009Review Completion Notification\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009freemarker\u000a\u0009\u0009\u0009\u0009email\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009onExit\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009organization\u000a\u0009\u0009\u0009\u0009\u0009Organization Administrator\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009organization\u000a\u0009\u0009\u0009\u0009\u0009Organization Content Reviewer\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009organization\u000a\u0009\u0009\u0009\u0009\u0009Organization Owner\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009regular\u000a\u0009\u0009\u0009\u0009\u0009Administrator\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009regular\u000a\u0009\u0009\u0009\u0009\u0009Portal Content Reviewer\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009site\u000a\u0009\u0009\u0009\u0009\u0009Site Administrator\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009site\u000a\u0009\u0009\u0009\u0009\u0009Site Content Reviewer\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009site\u000a\u0009\u0009\u0009\u0009\u0009Site Owner\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009approve\u000a\u0009\u0009\u0009\u0009approved\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009reject\u000a\u0009\u0009\u0009\u0009update\u000a\u0009\u0009\u0009\u0009false\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u0009\u000a\u0009\u0009approved\u000a\u0009\u0009 \u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009approve\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009groovy\u000a\u0009\u0009\u0009\u0009onEntry\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a',1,'1') -INSERT INTO KALEODEFINITIONVERSION VALUES(32104,0,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:47.494000','2019-05-09 00:27:47.494000','2019-05-09 00:27:47.574000','Single Approver','Single Approver','A single approver can approve a workflow content.','\u000a\u000a\u000a\u0009Single Approver\u000a\u0009A single approver can approve a workflow content.\u000a\u00091\u000a\u0009\u000a\u0009\u0009created\u000a\u0009\u0009 \u000a\u0009\u0009true\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009review\u000a\u0009\u0009\u0009\u0009review\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u0009\u000a\u0009\u0009update\u000a\u0009\u0009 \u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009reject\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009groovy\u000a\u0009\u0009\u0009\u0009onAssignment\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009Creator Modification Notification\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009freemarker\u000a\u0009\u0009\u0009\u0009email\u000a\u0009\u0009\u0009\u0009user-notification\u000a\u0009\u0009\u0009\u0009onAssignment\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009resubmit\u000a\u0009\u0009\u0009\u0009review\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u0009\u000a\u0009\u0009review\u000a\u0009\u0009 \u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009Review Notification\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009freemarker\u000a\u0009\u0009\u0009\u0009email\u000a\u0009\u0009\u0009\u0009user-notification\u000a\u0009\u0009\u0009\u0009onAssignment\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009Review Completion Notification\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009freemarker\u000a\u0009\u0009\u0009\u0009email\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009onExit\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009organization\u000a\u0009\u0009\u0009\u0009\u0009Organization Administrator\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009organization\u000a\u0009\u0009\u0009\u0009\u0009Organization Content Reviewer\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009organization\u000a\u0009\u0009\u0009\u0009\u0009Organization Owner\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009regular\u000a\u0009\u0009\u0009\u0009\u0009Administrator\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009regular\u000a\u0009\u0009\u0009\u0009\u0009Portal Content Reviewer\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009site\u000a\u0009\u0009\u0009\u0009\u0009Site Administrator\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009site\u000a\u0009\u0009\u0009\u0009\u0009Site Content Reviewer\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009site\u000a\u0009\u0009\u0009\u0009\u0009Site Owner\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009approve\u000a\u0009\u0009\u0009\u0009approved\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009reject\u000a\u0009\u0009\u0009\u0009update\u000a\u0009\u0009\u0009\u0009false\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u0009\u000a\u0009\u0009approved\u000a\u0009\u0009 \u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009approve\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009groovy\u000a\u0009\u0009\u0009\u0009onEntry\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a','1.0',32107,0) -INSERT INTO KALEONODE VALUES(32105,0,20099,20103,NULL,'2019-05-09 00:27:47.503000','2019-05-09 00:27:47.503000',32104,'approved','{"xy":[380,51]}',NULL,'STATE','0','1') -INSERT INTO KALEONODE VALUES(32107,0,20099,20103,NULL,'2019-05-09 00:27:47.515000','2019-05-09 00:27:47.515000',32104,'created','{"xy":[36,51]}',NULL,'STATE','1','0') -INSERT INTO KALEONODE VALUES(32108,0,20099,20103,NULL,'2019-05-09 00:27:47.515000','2019-05-09 00:27:47.515000',32104,'review','{"xy":[168,36]}',NULL,'TASK','0','0') -INSERT INTO KALEONODE VALUES(32124,0,20099,20103,NULL,'2019-05-09 00:27:47.562000','2019-05-09 00:27:47.562000',32104,'update','{"transitions":{"resubmit":{"bendpoints":[[303,140]]}},"xy":[328,199]}',NULL,'TASK','0','0') -INSERT INTO KALEONOTIFICATION VALUES(32109,0,20099,20103,NULL,'2019-05-09 00:27:47.517000','2019-05-09 00:27:47.517000','com.liferay.portal.workflow.kaleo.model.KaleoNode',32108,32104,'review','Review Notification',NULL,'onAssignment','${userName} sent you a ${entryType} for review in the workflow.','freemarker','email,user-notification') -INSERT INTO KALEONOTIFICATION VALUES(32110,0,20099,20103,NULL,'2019-05-09 00:27:47.521000','2019-05-09 00:27:47.521000','com.liferay.portal.workflow.kaleo.model.KaleoNode',32108,32104,'review','Review Completion Notification',NULL,'onExit','Your submission was reviewed<#if taskComments?has_content> and the reviewer applied the following ${taskComments}.','freemarker','email') -INSERT INTO KALEONOTIFICATION VALUES(32126,0,20099,20103,NULL,'2019-05-09 00:27:47.563000','2019-05-09 00:27:47.563000','com.liferay.portal.workflow.kaleo.model.KaleoNode',32124,32104,'update','Creator Modification Notification',NULL,'onAssignment','Your submission was rejected by ${userName}, please modify and resubmit.','freemarker','email,user-notification') -INSERT INTO KALEONOTIFICATIONRECIPIENT VALUES(32111,0,20099,20103,NULL,'2019-05-09 00:27:47.522000','2019-05-09 00:27:47.522000',32104,32110,'com.liferay.portal.kernel.model.User',0,0,'',NULL,NULL,NULL,'to') -INSERT INTO KALEOTASK VALUES(32112,0,20099,20103,NULL,'2019-05-09 00:27:47.529000','2019-05-09 00:27:47.529000',32104,32108,'review',NULL) -INSERT INTO KALEOTASK VALUES(32127,0,20099,20103,NULL,'2019-05-09 00:27:47.563000','2019-05-09 00:27:47.563000',32104,32124,'update',NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32113,0,20099,20103,NULL,'2019-05-09 00:27:47.535000','2019-05-09 00:27:47.535000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32112,32104,0,'com.liferay.portal.kernel.model.Role',32114,NULL,'',NULL,NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32115,0,20099,20103,NULL,'2019-05-09 00:27:47.553000','2019-05-09 00:27:47.553000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32112,32104,0,'com.liferay.portal.kernel.model.Role',20105,NULL,'',NULL,NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32116,0,20099,20103,NULL,'2019-05-09 00:27:47.553000','2019-05-09 00:27:47.553000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32112,32104,0,'com.liferay.portal.kernel.model.Role',20110,NULL,'',NULL,NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32117,0,20099,20103,NULL,'2019-05-09 00:27:47.553000','2019-05-09 00:27:47.553000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32112,32104,0,'com.liferay.portal.kernel.model.Role',20111,NULL,'',NULL,NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32118,0,20099,20103,NULL,'2019-05-09 00:27:47.554000','2019-05-09 00:27:47.554000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32112,32104,0,'com.liferay.portal.kernel.model.Role',20113,NULL,'',NULL,NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32119,0,20099,20103,NULL,'2019-05-09 00:27:47.554000','2019-05-09 00:27:47.554000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32112,32104,0,'com.liferay.portal.kernel.model.Role',32120,NULL,'',NULL,NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32121,0,20099,20103,NULL,'2019-05-09 00:27:47.556000','2019-05-09 00:27:47.556000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32112,32104,0,'com.liferay.portal.kernel.model.Role',20115,NULL,'',NULL,NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32122,0,20099,20103,NULL,'2019-05-09 00:27:47.557000','2019-05-09 00:27:47.557000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32112,32104,0,'com.liferay.portal.kernel.model.Role',32123,NULL,'',NULL,NULL) -INSERT INTO KALEOTASKASSIGNMENT VALUES(32128,0,20099,20103,NULL,'2019-05-09 00:27:47.563000','2019-05-09 00:27:47.563000','com.liferay.portal.workflow.kaleo.model.KaleoTask',32127,32104,0,'com.liferay.portal.kernel.model.User',0,NULL,'',NULL,NULL) -INSERT INTO KALEOTRANSITION VALUES(32129,0,20099,20103,NULL,'2019-05-09 00:27:47.565000','2019-05-09 00:27:47.565000',32104,32107,'review',NULL,32107,'created',32108,'review','1') -INSERT INTO KALEOTRANSITION VALUES(32130,0,20099,20103,NULL,'2019-05-09 00:27:47.572000','2019-05-09 00:27:47.572000',32104,32108,'approve',NULL,32108,'review',32105,'approved','1') -INSERT INTO KALEOTRANSITION VALUES(32131,0,20099,20103,NULL,'2019-05-09 00:27:47.572000','2019-05-09 00:27:47.572000',32104,32108,'reject',NULL,32108,'review',32124,'update','0') -INSERT INTO KALEOTRANSITION VALUES(32132,0,20099,20103,NULL,'2019-05-09 00:27:47.573000','2019-05-09 00:27:47.573000',32104,32124,'resubmit',NULL,32124,'update',32108,'review','1') -INSERT INTO DDMSTRUCTURE VALUES('6aef73e6-8ba8-10d3-2029-fbd689589a0e',32287,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.672000','2019-05-09 00:27:52.672000',0,20021,'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"],"successPage":{"body":{},"title":{},"enabled":false},"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) -INSERT INTO DDMSTRUCTURE VALUES('a1cc2644-3c23-69fa-74cb-c4cdfbfb112e',32290,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.725000','2019-05-09 00:27:52.725000',0,20021,'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"],"successPage":{"body":{},"title":{},"enabled":false},"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) -INSERT INTO DDMSTRUCTURE VALUES('4d77cabb-fcc2-5bbd-f858-d9a818d90ae2',32293,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.746000','2019-05-09 00:27:52.746000',0,20021,'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"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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) -INSERT INTO DDMSTRUCTURE VALUES('04d0e3c3-ecf4-a2a7-8f5d-e441fef28784',32297,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.781000','2019-05-09 00:27:52.781000',0,20021,'AUTO_8417A772-8874-8D87-4C00-EA69D8C9A7DE','1.0','SopimusContract\u5408\u540cContratos\u05d7\u05d5\u05d6\u05d9\u05ddContrato\u5951\u7d04ContratsContractesContractenSzerz\u0151d\u00e9sVertrag','SopimusContract\u5408\u540cContratos\u05d7\u05d5\u05d6\u05d9\u05ddContrato\u5951\u7d04ContratsContractesContractenSzerz\u0151d\u00e9sVertrag','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Effective Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"ddm_date20127","localizable":true,"tip":{"en_US":""}},{"dataType":"string","predefinedValue":{"en_US":""},"multiple":false,"readOnly":false,"label":{"en_US":"Status"},"type":"select","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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":""},"multiple":false,"readOnly":false,"label":{"en_US":"Contract Type"},"type":"select","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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":""},"readOnly":false,"label":{"en_US":"Deal Name"},"type":"text","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","repeatable":false,"name":"text2087","localizable":true,"tip":{"en_US":""}},{"dataType":"string","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Legal Reviewer"},"type":"text","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","repeatable":false,"name":"text17700","localizable":true,"tip":{"en_US":""}}]}','json',1,NULL) -INSERT INTO DDMSTRUCTURE VALUES('d8e59966-2100-ebf3-a8db-9f40b645c85f',32302,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.828000','2019-05-09 00:27:52.828000',0,20021,'AUTO_9B580594-8930-D58E-C34A-1A976EC4C384','1.0','MarkkinointimainospalkkiMarketing Banner\u8425\u9500\u6807\u8bedBanner comercial\u05d1\u05d0\u05e0\u05e8 \u05e9\u05d9\u05d5\u05d5\u05e7\u05d9Banner de Marketing\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u30d0\u30ca\u30fcBanni\u00e8re commercialeB\u00e0ner de m\u00e0rquetingMarketingbannerH\u00edrdet\u00e9si cs\u00edkMarketingbanner','MarkkinointimainospalkkiMarketing Banner\u8425\u9500\u6807\u8bedBanner comercial\u05d1\u05d0\u05e0\u05e8 \u05e9\u05d9\u05d5\u05d5\u05e7\u05d9Banner de Marketing\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u30d0\u30ca\u30fcBanni\u00e8re commercialeB\u00e0ner de m\u00e0rquetingMarketingbannerH\u00edrdet\u00e9si cs\u00edkMarketingbanner','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"string","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Needs Legal Review"},"type":"radio","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"text","repeatable":false,"name":"textarea2873","localizable":true,"tip":{"en_US":""}}]}','json',1,NULL) -INSERT INTO DDMSTRUCTURE VALUES('2fb554be-2b90-5aeb-7561-e195c7ed4add',32308,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.851000','2019-05-09 00:27:52.851000',0,20021,'AUTO_E0311BBD-00B5-6259-00CB-807730DA187D','1.0','Online koulutusOnline Training\u5728\u7ebf\u57f9\u8badFormaci\u00f3n en l\u00ednea\u05d4\u05db\u05e9\u05e8\u05d4 \u05de\u05e7\u05d5\u05d5\u05e0\u05eaTreinamento Online\u30aa\u30f3\u30e9\u30a4\u30f3\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0Formation en ligneFromaci\u00f3 en l\u00edniaOnline trainingOnline tanfolyamOnline-Training','Online koulutusOnline Training\u5728\u7ebf\u57f9\u8badFormaci\u00f3n en l\u00ednea\u05d4\u05db\u05e9\u05e8\u05d4 \u05de\u05e7\u05d5\u05d5\u05e0\u05eaTreinamento Online\u30aa\u30f3\u30e9\u30a4\u30f3\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0Formation en ligneFromaci\u00f3 en l\u00edniaOnline trainingOnline tanfolyamOnline-Training','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"string","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Lesson Title"},"type":"text","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","repeatable":false,"name":"text2979","localizable":true,"tip":{"en_US":""}}]}','json',1,NULL) -INSERT INTO DDMSTRUCTURE VALUES('f7d63892-b3bf-b828-a3e9-6d15a6e9f7a3',32314,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.875000','2019-05-09 00:27:52.875000',0,20021,'AUTO_2BAA59AD-E80B-336C-1542-AE997379D16C','1.0','Myynti esitysSales Presentation\u9500\u552e\u62a5\u544aPresentaci\u00f3n de ventas\u05de\u05e6\u05d2\u05ea \u05de\u05db\u05d9\u05e8\u05d5\u05eaApresenta\u00e7\u00e3o de Vendas\u30bb\u30fc\u30eb\u30b9\u30d7\u30ec\u30bc\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3Pr\u00e9sentation des ventesPresentaci\u00f3 de vendesVerkooppresentatieKeresked\u0151i el\u0151ad\u00e1sVertriebspr\u00e4sentation','Myynti esitysSales Presentation\u9500\u552e\u62a5\u544aPresentaci\u00f3n de ventas\u05de\u05e6\u05d2\u05ea \u05de\u05db\u05d9\u05e8\u05d5\u05eaApresenta\u00e7\u00e3o de Vendas\u30bb\u30fc\u30eb\u30b9\u30d7\u30ec\u30bc\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3Pr\u00e9sentation des ventesPresentaci\u00f3 de vendesVerkooppresentatieKeresked\u0151i el\u0151ad\u00e1sVertriebspr\u00e4sentation','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"string","predefinedValue":{"en_US":""},"multiple":false,"readOnly":false,"label":{"en_US":"Product"},"type":"select","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","repeatable":false,"name":"text1993","localizable":true,"tip":{"en_US":""}}]}','json',1,NULL) -INSERT INTO DDMSTRUCTURE VALUES('28f199ce-d324-a259-0298-efc3dca9a267',32319,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:53.027000','2019-10-25 13:56:46.001000',0,32144,'TIKARAWMETADATA','1.0','TIKARAWMETADATA','TIKARAWMETADATA','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"ClimateForcast_PROGRAM_ID","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MULTIPART_SUBTYPE","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MULTIPART_SUBTYPE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MULTIPART_BOUNDARY","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MULTIPART_BOUNDARY"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_FROM_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_FROM_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_FROM_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_FROM_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_EMAIL"},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.Office.OBJECT_COUNT"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_MESSAGE_CLASS","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_MESSAGE_CLASS"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_SENT_BY_SERVER_TYPE","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_SENT_BY_SERVER_TYPE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_FROM_REPRESENTING_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_FROM_REPRESENTING_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_FROM_REPRESENTING_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_FROM_REPRESENTING_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"OfficeOpenXMLCore_NAMESPACE_URI","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.TIFF.ORIGINAL_DATE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"TIFF_EXIF_PAGE_COUNT","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.TIFF.EXIF_PAGE_COUNT"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"TikaMetadataKeys_RESOURCE_NAME_KEY","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.XMPDM.VIDEO_PIXEL_ASPECT_RATIO"},"type":"text","required":false,"showLabel":true}]}','json',0,NULL) -INSERT INTO DDMSTRUCTURE VALUES('9ea1a0ab-64f9-7337-c44b-2cab41d9589e',32503,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:56.192000','2019-05-09 00:27:56.192000',0,28301,'BASIC-WEB-CONTENT','1.0','Tavallinen web-sis\u00e4lt\u00f6Basic Web Content\u57fa\u672c Web \u5185\u5bb9Contenido web b\u00e1sico\u05ea\u05d5\u05db\u05df \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8\u05d9 \u05d1\u05e1\u05d9\u05e1\u05d9Conte\u00fado Web b\u00e1sico\u57fa\u672cWeb\u30b3\u30f3\u30c6\u30f3\u30c4Contenu web de baseContigut web b\u00e0sicBasiswebcontentAlapvet\u0151 webtartalomEinfacher Webcontent','Tavallinen web-sis\u00e4lt\u00f6Basic Web Content\u57fa\u672c Web \u5185\u5bb9Contenido web b\u00e1sico\u05ea\u05d5\u05db\u05df \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8\u05d9 \u05d1\u05e1\u05d9\u05e1\u05d9Conte\u00fado Web b\u00e1sico\u57fa\u672cWeb\u30b3\u30f3\u30c6\u30f3\u30c4Contenu web de baseContigut web b\u00e0sicBasiswebcontentAlapvet\u0151 webtartalomEinfacher Webcontent','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"fieldNamespace":"ddm","indexType":"text","dataType":"html","predefinedValue":{},"name":"content","localizable":true,"tip":{},"label":{"en_US":"content"},"type":"ddm-text-html","showLabel":true}]}','json',0,NULL) -INSERT INTO DDMSTRUCTURE VALUES('74a6bc27-0665-f4fc-0ff7-682170dc8961',33203,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:58.788000','2019-05-09 00:27:58.788000',0,33101,'CONTACTS','1.0','ContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContacts','ContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContacts','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"company","localizable":true,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{}},{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"imUserName","localizable":true,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"Phone (Office)"},"type":"text","required":false,"showLabel":true}]}','json',0,NULL) -INSERT INTO DDMSTRUCTURE VALUES('d0cfc65f-666e-596d-359b-7f6386a3ac53',33206,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:58.807000','2019-05-09 00:27:58.807000',0,33101,'EVENTS','1.0','EventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEvents','EventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEvents','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"document-library","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Attachment"},"type":"ddm-documentlibrary","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","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) -INSERT INTO DDMSTRUCTURE VALUES('7c02107c-b052-cbea-d0d8-8d186a1f747c',33209,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:58.819000','2019-05-09 00:27:58.819000',0,33101,'INVENTORY','1.0','InventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventory','InventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventory','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"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,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"quantity","localizable":true,"tip":{"en_US":""}}]}','json',0,NULL) -INSERT INTO DDMSTRUCTURE VALUES('ed9f435a-7181-2a7f-58eb-094f7c55d5af',33212,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:58.832000','2019-05-09 00:27:58.832000',0,33101,'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"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"assignedTo","localizable":true,"readOnly":false,"tip":{},"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,"fieldNamespace":"ddm","indexType":"keyword","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,"tip":{},"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,"tip":{},"label":{"en_US":"Description"},"type":"textarea","required":false,"showLabel":true},{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Due Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"dueDate","localizable":true,"tip":{}},{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"issueId","localizable":true,"readOnly":false,"tip":{},"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,"tip":{}},{"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,"tip":{}},{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"title","localizable":true,"readOnly":false,"tip":{},"label":{"en_US":"Title"},"type":"text","required":false,"showLabel":true}]}','json',0,NULL) -INSERT INTO DDMSTRUCTURE VALUES('fab588a7-61ac-c557-67cd-82a50167471c',33215,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:58.845000','2019-05-09 00:27:58.845000',0,33101,'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"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"document-library","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Attachment"},"type":"ddm-documentlibrary","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"Meeting Duration"},"type":"text","required":false,"showLabel":true},{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Meeting Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"meetingDate","localizable":true,"tip":{}},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"minutes","localizable":true,"readOnly":false,"tip":{},"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,"tip":{},"label":{"en_US":"Title"},"type":"text","required":false,"showLabel":true}]}','json',0,NULL) -INSERT INTO DDMSTRUCTURE VALUES('3277a87a-99d6-3af4-4cd6-15cae41d84d9',33218,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:58.858000','2019-05-09 00:27:58.858000',0,33101,'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"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"assignedTo","localizable":true,"readOnly":false,"tip":{},"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,"fieldNamespace":"ddm","indexType":"keyword","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,"tip":{},"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,"tip":{},"label":{"en_US":"Description"},"type":"textarea","required":false,"showLabel":true},{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"End Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"endDate","localizable":true,"tip":{}},{"dataType":"integer","predefinedValue":{"en_US":"0"},"readOnly":false,"label":{"en_US":"% Complete"},"type":"ddm-integer","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,"tip":{}},{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Start Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"startDate","localizable":true,"tip":{}},{"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,"tip":{}},{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"title","localizable":true,"readOnly":false,"tip":{},"label":{"en_US":"Title"},"type":"text","required":false,"showLabel":true}]}','json',0,NULL) -INSERT INTO DDMSTRUCTURELAYOUT VALUES('9835fb34-abb1-e39d-96f0-8c46df0861e3',32289,20135,20099,20103,NULL,'2019-05-09 00:27:52.701000','2019-05-09 00:27:52.701000',32288,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('d7eb8eb5-7277-c4ed-4b75-23accb1c18e0',32292,20135,20099,20103,NULL,'2019-05-09 00:27:52.732000','2019-05-09 00:27:52.732000',32291,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('35f9cae5-2d05-2ef1-9aa4-299633daaa59',32295,20135,20099,20103,NULL,'2019-05-09 00:27:52.753000','2019-05-09 00:27:52.753000',32294,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('9f8235d6-5d9a-4bd3-3f60-7ee6f34033c9',32299,20135,20099,20103,NULL,'2019-05-09 00:27:52.790000','2019-05-09 00:27:52.790000',32298,'{"pages":[{"rows":[{"columns":[{"size":12,"fieldNames":["ddm_date18949"]}]},{"columns":[{"size":12,"fieldNames":["ddm_date20127"]}]},{"columns":[{"size":12,"fieldNames":["select4893"]}]},{"columns":[{"size":12,"fieldNames":["select10264"]}]},{"columns":[{"size":12,"fieldNames":["text2087"]}]},{"columns":[{"size":12,"fieldNames":["text14822"]}]},{"columns":[{"size":12,"fieldNames":["text17700"]}]}],"title":{"en_US":""}}],"paginationMode":"single-page","defaultLanguageId":"en_US"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('03319f59-2230-8887-1218-fea50bdd662b',32304,20135,20099,20103,NULL,'2019-05-09 00:27:52.833000','2019-05-09 00:27:52.833000',32303,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('44a8b8f3-e243-d61d-1721-49473881c8cd',32310,20135,20099,20103,NULL,'2019-05-09 00:27:52.855000','2019-05-09 00:27:52.855000',32309,'{"pages":[{"rows":[{"columns":[{"size":12,"fieldNames":["text2082"]}]},{"columns":[{"size":12,"fieldNames":["text2979"]}]}],"title":{"en_US":""}}],"paginationMode":"single-page","defaultLanguageId":"en_US"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('10245d2d-8ca4-8be0-4b5c-344bf6b235d1',32316,20135,20099,20103,NULL,'2019-05-09 00:27:52.882000','2019-05-09 00:27:52.882000',32315,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('57ba8f90-df1b-d8c3-7889-e121526dac49',32321,20135,20099,20103,NULL,'2019-05-09 00:27:53.115000','2019-05-09 00:27:53.115000',32320,'{"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":["Message_MULTIPART_SUBTYPE"]}]},{"columns":[{"size":12,"fieldNames":["Message_MULTIPART_BOUNDARY"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_FROM_NAME"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_FROM_EMAIL"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_TO_NAME"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_TO_DISPLAY_NAME"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_TO_EMAIL"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_CC_NAME"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_CC_DISPLAY_NAME"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_CC_EMAIL"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_BCC_NAME"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_BCC_DISPLAY_NAME"]}]},{"columns":[{"size":12,"fieldNames":["Message_MESSAGE_BCC_EMAIL"]}]},{"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":["Office_MAPI_MESSAGE_CLASS"]}]},{"columns":[{"size":12,"fieldNames":["Office_MAPI_SENT_BY_SERVER_TYPE"]}]},{"columns":[{"size":12,"fieldNames":["Office_MAPI_FROM_REPRESENTING_NAME"]}]},{"columns":[{"size":12,"fieldNames":["Office_MAPI_FROM_REPRESENTING_EMAIL"]}]},{"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":["TIFF_EXIF_PAGE_COUNT"]}]},{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('5d047d99-ead5-9882-131a-29c6e8054385',32505,20135,20099,20103,NULL,'2019-05-09 00:27:56.210000','2019-05-09 00:27:56.210000',32504,'{"pages":[{"rows":[{"columns":[{"size":12,"fieldNames":["content"]}]}],"title":{"en_US":"Basic Web Content"}}],"paginationMode":"","defaultLanguageId":"en_US"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('c25b4f47-87e8-49b2-4926-c81cc8becd9b',33205,20135,20099,20103,NULL,'2019-05-09 00:27:58.798000','2019-05-09 00:27:58.798000',33204,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('e9c6520f-5c4d-02d0-cb80-7f216fcc5a29',33208,20135,20099,20103,NULL,'2019-05-09 00:27:58.811000','2019-05-09 00:27:58.811000',33207,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('3bc7e1af-2f6b-d5f2-599e-162ef7696a4d',33211,20135,20099,20103,NULL,'2019-05-09 00:27:58.822000','2019-05-09 00:27:58.822000',33210,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('210849e7-c5f2-dcb8-cfc6-99aab0b0f27a',33214,20135,20099,20103,NULL,'2019-05-09 00:27:58.837000','2019-05-09 00:27:58.837000',33213,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('30491047-654a-8932-260a-f66bba11110b',33217,20135,20099,20103,NULL,'2019-05-09 00:27:58.849000','2019-05-09 00:27:58.849000',33216,'{"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"}') -INSERT INTO DDMSTRUCTURELAYOUT VALUES('c231d373-060a-2fab-8c38-4ba448eb5bf7',33220,20135,20099,20103,NULL,'2019-05-09 00:27:58.863000','2019-05-09 00:27:58.863000',33219,'{"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"}') -INSERT INTO DDMSTRUCTURELINK VALUES(32300,20099,20022,32296,32297) -INSERT INTO DDMSTRUCTURELINK VALUES(32305,20099,20022,32301,32290) -INSERT INTO DDMSTRUCTURELINK VALUES(32306,20099,20022,32301,32302) -INSERT INTO DDMSTRUCTURELINK VALUES(32311,20099,20022,32307,32308) -INSERT INTO DDMSTRUCTURELINK VALUES(32312,20099,20022,32307,32287) -INSERT INTO DDMSTRUCTURELINK VALUES(32317,20099,20022,32313,32293) -INSERT INTO DDMSTRUCTURELINK VALUES(32318,20099,20022,32313,32314) -INSERT INTO DDMSTRUCTUREVERSION VALUES(32288,20135,20099,20103,NULL,'2019-05-09 00:27:52.672000',32287,'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"],"successPage":{"body":{},"title":{},"enabled":false},"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,20103,NULL,'2019-05-09 00:27:52.672000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(32291,20135,20099,20103,NULL,'2019-05-09 00:27:52.725000',32290,'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"],"successPage":{"body":{},"title":{},"enabled":false},"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,20103,NULL,'2019-05-09 00:27:52.725000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(32294,20135,20099,20103,NULL,'2019-05-09 00:27:52.746000',32293,'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"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,20103,NULL,'2019-05-09 00:27:52.746000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(32298,20135,20099,20103,NULL,'2019-05-09 00:27:52.781000',32297,'1.0',0,'SopimusContract\u5408\u540cContratos\u05d7\u05d5\u05d6\u05d9\u05ddContrato\u5951\u7d04ContratsContractesContractenSzerz\u0151d\u00e9sVertrag','SopimusContract\u5408\u540cContratos\u05d7\u05d5\u05d6\u05d9\u05ddContrato\u5951\u7d04ContratsContractesContractenSzerz\u0151d\u00e9sVertrag','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Effective Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"ddm_date20127","localizable":true,"tip":{"en_US":""}},{"dataType":"string","predefinedValue":{"en_US":""},"multiple":false,"readOnly":false,"label":{"en_US":"Status"},"type":"select","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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":""},"multiple":false,"readOnly":false,"label":{"en_US":"Contract Type"},"type":"select","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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":""},"readOnly":false,"label":{"en_US":"Deal Name"},"type":"text","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","repeatable":false,"name":"text2087","localizable":true,"tip":{"en_US":""}},{"dataType":"string","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Legal Reviewer"},"type":"text","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","repeatable":false,"name":"text17700","localizable":true,"tip":{"en_US":""}}]}','json',1,0,20103,NULL,'2019-05-09 00:27:52.781000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(32303,20135,20099,20103,NULL,'2019-05-09 00:27:52.828000',32302,'1.0',0,'MarkkinointimainospalkkiMarketing Banner\u8425\u9500\u6807\u8bedBanner comercial\u05d1\u05d0\u05e0\u05e8 \u05e9\u05d9\u05d5\u05d5\u05e7\u05d9Banner de Marketing\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u30d0\u30ca\u30fcBanni\u00e8re commercialeB\u00e0ner de m\u00e0rquetingMarketingbannerH\u00edrdet\u00e9si cs\u00edkMarketingbanner','MarkkinointimainospalkkiMarketing Banner\u8425\u9500\u6807\u8bedBanner comercial\u05d1\u05d0\u05e0\u05e8 \u05e9\u05d9\u05d5\u05d5\u05e7\u05d9Banner de Marketing\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u30d0\u30ca\u30fcBanni\u00e8re commercialeB\u00e0ner de m\u00e0rquetingMarketingbannerH\u00edrdet\u00e9si cs\u00edkMarketingbanner','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"string","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Needs Legal Review"},"type":"radio","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"text","repeatable":false,"name":"textarea2873","localizable":true,"tip":{"en_US":""}}]}','json',1,0,20103,NULL,'2019-05-09 00:27:52.828000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(32309,20135,20099,20103,NULL,'2019-05-09 00:27:52.851000',32308,'1.0',0,'Online koulutusOnline Training\u5728\u7ebf\u57f9\u8badFormaci\u00f3n en l\u00ednea\u05d4\u05db\u05e9\u05e8\u05d4 \u05de\u05e7\u05d5\u05d5\u05e0\u05eaTreinamento Online\u30aa\u30f3\u30e9\u30a4\u30f3\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0Formation en ligneFromaci\u00f3 en l\u00edniaOnline trainingOnline tanfolyamOnline-Training','Online koulutusOnline Training\u5728\u7ebf\u57f9\u8badFormaci\u00f3n en l\u00ednea\u05d4\u05db\u05e9\u05e8\u05d4 \u05de\u05e7\u05d5\u05d5\u05e0\u05eaTreinamento Online\u30aa\u30f3\u30e9\u30a4\u30f3\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0Formation en ligneFromaci\u00f3 en l\u00edniaOnline trainingOnline tanfolyamOnline-Training','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"string","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Lesson Title"},"type":"text","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","repeatable":false,"name":"text2979","localizable":true,"tip":{"en_US":""}}]}','json',1,0,20103,NULL,'2019-05-09 00:27:52.851000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(32315,20135,20099,20103,NULL,'2019-05-09 00:27:52.875000',32314,'1.0',0,'Myynti esitysSales Presentation\u9500\u552e\u62a5\u544aPresentaci\u00f3n de ventas\u05de\u05e6\u05d2\u05ea \u05de\u05db\u05d9\u05e8\u05d5\u05eaApresenta\u00e7\u00e3o de Vendas\u30bb\u30fc\u30eb\u30b9\u30d7\u30ec\u30bc\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3Pr\u00e9sentation des ventesPresentaci\u00f3 de vendesVerkooppresentatieKeresked\u0151i el\u0151ad\u00e1sVertriebspr\u00e4sentation','Myynti esitysSales Presentation\u9500\u552e\u62a5\u544aPresentaci\u00f3n de ventas\u05de\u05e6\u05d2\u05ea \u05de\u05db\u05d9\u05e8\u05d5\u05eaApresenta\u00e7\u00e3o de Vendas\u30bb\u30fc\u30eb\u30b9\u30d7\u30ec\u30bc\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3Pr\u00e9sentation des ventesPresentaci\u00f3 de vendesVerkooppresentatieKeresked\u0151i el\u0151ad\u00e1sVertriebspr\u00e4sentation','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"string","predefinedValue":{"en_US":""},"multiple":false,"readOnly":false,"label":{"en_US":"Product"},"type":"select","required":false,"showLabel":true,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","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,"fieldNamespace":"","indexType":"keyword","repeatable":false,"name":"text1993","localizable":true,"tip":{"en_US":""}}]}','json',1,0,20103,NULL,'2019-05-09 00:27:52.875000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(32320,20135,20099,20103,NULL,'2019-05-09 00:27:53.027000',32319,'1.0',0,'TIKARAWMETADATA','TIKARAWMETADATA','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"ClimateForcast_PROGRAM_ID","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MULTIPART_SUBTYPE","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MULTIPART_SUBTYPE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MULTIPART_BOUNDARY","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MULTIPART_BOUNDARY"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_FROM_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_FROM_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_FROM_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_FROM_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_TO_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_TO_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_CC_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_CC_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_DISPLAY_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_DISPLAY_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Message_MESSAGE_BCC_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Message.MESSAGE_BCC_EMAIL"},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.Office.OBJECT_COUNT"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_MESSAGE_CLASS","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_MESSAGE_CLASS"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_SENT_BY_SERVER_TYPE","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_SENT_BY_SERVER_TYPE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_FROM_REPRESENTING_NAME","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_FROM_REPRESENTING_NAME"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"Office_MAPI_FROM_REPRESENTING_EMAIL","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.Office.MAPI_FROM_REPRESENTING_EMAIL"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"OfficeOpenXMLCore_NAMESPACE_URI","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.TIFF.ORIGINAL_DATE"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"TIFF_EXIF_PAGE_COUNT","localizable":false,"readOnly":false,"tip":{},"label":{"en_US":"metadata.TIFF.EXIF_PAGE_COUNT"},"type":"text","required":false,"showLabel":true},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"TikaMetadataKeys_RESOURCE_NAME_KEY","localizable":false,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"metadata.XMPDM.VIDEO_PIXEL_ASPECT_RATIO"},"type":"text","required":false,"showLabel":true}]}','json',0,0,20103,NULL,'2019-05-09 00:27:53.027000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(32504,20135,20099,20103,NULL,'2019-05-09 00:27:56.192000',32503,'1.0',0,'Tavallinen web-sis\u00e4lt\u00f6Basic Web Content\u57fa\u672c Web \u5185\u5bb9Contenido web b\u00e1sico\u05ea\u05d5\u05db\u05df \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8\u05d9 \u05d1\u05e1\u05d9\u05e1\u05d9Conte\u00fado Web b\u00e1sico\u57fa\u672cWeb\u30b3\u30f3\u30c6\u30f3\u30c4Contenu web de baseContigut web b\u00e0sicBasiswebcontentAlapvet\u0151 webtartalomEinfacher Webcontent','Tavallinen web-sis\u00e4lt\u00f6Basic Web Content\u57fa\u672c Web \u5185\u5bb9Contenido web b\u00e1sico\u05ea\u05d5\u05db\u05df \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8\u05d9 \u05d1\u05e1\u05d9\u05e1\u05d9Conte\u00fado Web b\u00e1sico\u57fa\u672cWeb\u30b3\u30f3\u30c6\u30f3\u30c4Contenu web de baseContigut web b\u00e0sicBasiswebcontentAlapvet\u0151 webtartalomEinfacher Webcontent','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"fieldNamespace":"ddm","indexType":"text","dataType":"html","predefinedValue":{},"name":"content","localizable":true,"tip":{},"label":{"en_US":"content"},"type":"ddm-text-html","showLabel":true}]}','json',0,0,20103,NULL,'2019-05-09 00:27:56.192000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(33204,20135,20099,20103,NULL,'2019-05-09 00:27:58.788000',33203,'1.0',0,'ContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContacts','ContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContactsContacts','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"company","localizable":true,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{}},{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"imUserName","localizable":true,"readOnly":false,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"Phone (Office)"},"type":"text","required":false,"showLabel":true}]}','json',0,0,20103,NULL,'2019-05-09 00:27:58.788000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(33207,20135,20099,20103,NULL,'2019-05-09 00:27:58.807000',33206,'1.0',0,'EventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEvents','EventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEventsEvents','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"document-library","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Attachment"},"type":"ddm-documentlibrary","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","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,20103,NULL,'2019-05-09 00:27:58.807000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(33210,20135,20099,20103,NULL,'2019-05-09 00:27:58.819000',33209,'1.0',0,'InventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventory','InventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventoryInventory','{"availableLanguageIds":["en_US"],"successPage":{"body":{},"title":{},"enabled":false},"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,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","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,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"quantity","localizable":true,"tip":{"en_US":""}}]}','json',0,0,20103,NULL,'2019-05-09 00:27:58.819000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(33213,20135,20099,20103,NULL,'2019-05-09 00:27:58.832000',33212,'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"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"assignedTo","localizable":true,"readOnly":false,"tip":{},"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,"fieldNamespace":"ddm","indexType":"keyword","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,"tip":{},"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,"tip":{},"label":{"en_US":"Description"},"type":"textarea","required":false,"showLabel":true},{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Due Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"dueDate","localizable":true,"tip":{}},{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"issueId","localizable":true,"readOnly":false,"tip":{},"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,"tip":{}},{"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,"tip":{}},{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"title","localizable":true,"readOnly":false,"tip":{},"label":{"en_US":"Title"},"type":"text","required":false,"showLabel":true}]}','json',0,0,20103,NULL,'2019-05-09 00:27:58.832000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(33216,20135,20099,20103,NULL,'2019-05-09 00:27:58.845000',33215,'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"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"dataType":"document-library","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Attachment"},"type":"ddm-documentlibrary","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,"tip":{},"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,"tip":{},"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,"tip":{},"label":{"en_US":"Meeting Duration"},"type":"text","required":false,"showLabel":true},{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Meeting Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"meetingDate","localizable":true,"tip":{}},{"indexType":"text","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"minutes","localizable":true,"readOnly":false,"tip":{},"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,"tip":{},"label":{"en_US":"Title"},"type":"text","required":false,"showLabel":true}]}','json',0,0,20103,NULL,'2019-05-09 00:27:58.845000') -INSERT INTO DDMSTRUCTUREVERSION VALUES(33219,20135,20099,20103,NULL,'2019-05-09 00:27:58.858000',33218,'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"],"successPage":{"body":{},"title":{},"enabled":false},"defaultLanguageId":"en_US","fields":[{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"assignedTo","localizable":true,"readOnly":false,"tip":{},"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,"fieldNamespace":"ddm","indexType":"keyword","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,"tip":{},"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,"tip":{},"label":{"en_US":"Description"},"type":"textarea","required":false,"showLabel":true},{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"End Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"endDate","localizable":true,"tip":{}},{"dataType":"integer","predefinedValue":{"en_US":"0"},"readOnly":false,"label":{"en_US":"% Complete"},"type":"ddm-integer","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","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,"tip":{}},{"dataType":"date","predefinedValue":{"en_US":""},"readOnly":false,"label":{"en_US":"Start Date"},"type":"ddm-date","required":false,"showLabel":true,"fieldNamespace":"ddm","indexType":"keyword","repeatable":false,"name":"startDate","localizable":true,"tip":{}},{"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,"tip":{}},{"indexType":"keyword","repeatable":false,"dataType":"string","predefinedValue":{"en_US":""},"name":"title","localizable":true,"readOnly":false,"tip":{},"label":{"en_US":"Title"},"type":"text","required":false,"showLabel":true}]}','json',0,0,20103,NULL,'2019-05-09 00:27:58.858000') -INSERT INTO DDMTEMPLATE VALUES('95511c57-2e41-8f1e-0ddc-e88ca5fba79a',32203,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.339000','2019-05-09 00:27:52.339000',32201,0,32202,'BREADCRUMB-ARROWS-FTL','1.0','NuoletArrows\u7bad\u5934Flechas\u05d7\u05e6\u05d9\u05ddSetas\u77e2\u5370Fl\u00e8chesFletxesPijlenNyilakPfeile','N\u00e4ytt\u00e4\u00e4 murupolun, jossa jokainen navigointielementti n\u00e4kyy nuolena otsikkoineen ja linkkin\u00e4.Displays a breadcrumb in which every navigation element is represented by an arrow with its title and link.\u663e\u793a\u4e00\u4e2a\u9762\u5305\u5c51\u5bfc\u822a\uff0c\u5176\u4e2d\u6bcf\u4e00\u4e2a\u5bfc\u822a\u5143\u7d20\u90fd\u7531\u7bad\u5934\u53ca\u5176\u6807\u9898\u548c\u94fe\u63a5\u8868\u793a\u3002Muestra una ruta de navegaci\u00f3n donde cada elemento de navegaci\u00f3n se representa mediante una flecha con su t\u00edtulo y enlace.\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05e4\u05d9\u05e8\u05d5\u05e8\u05d9 \u05d4\u05dc\u05d7\u05dd \u05d1\u05d4\u05dd \u05db\u05dc \u05d0\u05dc\u05de\u05e0\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05d9\u05d5\u05e6\u05d2 \u05e2\u05dc-\u05d9\u05d3\u05d9 \u05d7\u05e5 \u05e2\u05dd \u05d4\u05db\u05d5\u05ea\u05e8\u05ea \u05d5\u05d4\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e9\u05dc\u05d5.Exibe um caminho de navega\u00e7\u00e3o onde cada elemento de navega\u00e7\u00e3o \u00e9 representado por uma seta com seu t\u00edtulo e link.\u3059\u3079\u3066\u306e\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u8981\u7d20\u304c\u77e2\u5370\u3068\u30bf\u30a4\u30c8\u30eb\u3001\u30ea\u30f3\u30af\u3067\u8868\u793a\u3055\u308c\u308b\u3088\u3046\u306b\u3001\u30d1\u30f3\u304f\u305a\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un fil d''Ariane dans lequel chaque \u00e9l\u00e9ment de navigation est repr\u00e9sent\u00e9 par une fl\u00e8che avec son propre titre et son propre lien.Mostra una ruta de navegaci\u00f3 en qu\u00e8 cada element de navegaci\u00f3 es representa amb una fletxa amb el seu t\u00edtol i enlla\u00e7.Geeft een broodkruimel weer waarin elk navigatie-element voorgesteld wordt door een pijl met een titel en link.Megjelen\u00edt egy \u00fark\u00f6vet\u0151t, amelyen minden navig\u00e1ci\u00f3s elemet egy ny\u00edl k\u00e9pvisel c\u00edmmel \u00e9s hivatkoz\u00e1ssal tartalmaz.Zeigt eine Breadcrumbnavigation an, bei der jedes Navigationselement durch einen Pfeil mit seinem Titel und einem Link dargestellt wird.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009<@liferay_util["html-top"]>\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u0009\u000a','0','0',32204,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('3a31e441-6c5b-26c4-3393-6a3bd9c67c74',32206,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.378000','2019-05-09 00:27:52.378000',32201,0,32202,'BREADCRUMB-HORIZONTAL-FTL','1.0','VaakasuuntainenHorizontal\u6c34\u5e73Horizontal\u05d0\u05d5\u05e4\u05e7\u05d9Horizontal\u6c34\u5e73\u65b9\u5411Horizontal(e)HoritzontalHorizontaalV\u00edzszintesHorizontal','N\u00e4ytt\u00e4\u00e4 murupolun vaakasuoraan.Displays a breadcrumb horizontally.\u6c34\u5e73\u663e\u793a\u9762\u5305\u5c51\u5bfc\u822a\u3002Muestra una ruta de navegaci\u00f3n horizontalmente.\u05de\u05e6\u05d9\u05d2 \u05e4\u05d9\u05e8\u05d5\u05e8\u05d9 \u05dc\u05d7\u05dd \u05d0\u05d5\u05e4\u05e7\u05d9\u05ea.Exibe um caminho de navega\u00e7\u00e3o horizontalmente.\u30d1\u30f3\u304f\u305a\u30ea\u30b9\u30c8\u3092\u3092\u6c34\u5e73\u65b9\u5411\u306b\u8868\u793a\u3057\u307e\u3059Affiche un fil d''Ariane de mani\u00e8re horizontale.Mostra una ruta de navegaci\u00f3 horitzontalment.Geeft een broodkruimel horizontaal weer.Megjelen\u00edt egy \u00fatk\u00f6vet\u0151jelet v\u00edzszintesen.Zeigt eine Breadcrumbnavigation horizontal an.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009\u000a','0','0',32207,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('dcdd702d-0916-6ba5-304c-91a9a400283d',32209,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.385000','2019-05-09 00:27:52.385000',32201,0,32202,'BREADCRUMB-VERTICAL-FTL','1.0','PystysuoraVertical\u5782\u76f4Vertical\u05d0\u05e0\u05db\u05d9Vertical\u5782\u76f4\u65b9\u5411VerticalVerticalVerticaalF\u00fcgg\u0151legesVertikal','N\u00e4ytt\u00e4\u00e4 murupolun pystysuoraan.Displays a breadcrumb vertically.\u5782\u76f4\u663e\u793a\u9762\u5305\u5c51\u5bfc\u822a\u3002Muestra una ruta de navegaci\u00f3n verticalmente.\u05de\u05e6\u05d9\u05d2 \u05e4\u05d9\u05e8\u05d5\u05e8\u05d9 \u05dc\u05d7\u05dd \u05d0\u05e0\u05db\u05d9\u05ea.Exibe um caminho de navega\u00e7\u00e3o verticalmente.\u30d1\u30f3\u304f\u305a\u30ea\u30b9\u30c8\u3092\u3092\u5782\u76f4\u65b9\u5411\u306b\u8868\u793a\u3057\u307e\u3059Affiche un fil d''Ariane vertical.Mostra una ruta de navegaci\u00f3 verticalment.Geeft een broodkruimel verticaal weer.Megjelen\u00edt egy \u00fatk\u00f6vet\u0151jelet f\u00fcgg\u0151legesen.Zeigt eine Breadcrumbnavigation vertikal an.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009\u000a','0','0',32210,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('1ae24929-1143-e44b-d20e-f00cca0dabd0',32212,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.396000','2019-05-09 00:27:52.396000',28202,0,32202,'WIKI-SOCIAL-FTL','1.0','SosiaalinenSocial\u793e\u4ea4Social\u05d7\u05d1\u05e8\u05ea\u05d9Social\u30bd\u30fc\u30b7\u30e3\u30ebSocialSocialSociaalK\u00f6z\u00f6ss\u00e9giSocial','N\u00e4ytt\u00e4\u00e4 sosiaaliset kirjanmerkit ja arvostelut wikisivuilla ja niiden alisivuilla.Displays social bookmarks and ratings for wiki pages and their child pages.\u663e\u793a\u793e\u4ea4\u4e66\u7b7e\u548c\u7ef4\u57fa\u9875\u7684\u8bc4\u5206\u548c\u5b83\u4eec\u7684\u5b50\u9875\u3002Muestra los marcadores sociales y las clasificaciones para p\u00e1ginas wiki y sus p\u00e1ginas secundarias.\u05de\u05e6\u05d9\u05d2 \u05e1\u05d9\u05de\u05e0\u05d9\u05d5\u05ea \u05d7\u05d1\u05e8\u05ea\u05d9\u05d5\u05ea \u05d5\u05d3\u05d9\u05e8\u05d5\u05d2\u05d9\u05dd \u05e2\u05d1\u05d5\u05e8 \u05d3\u05e4\u05d9 \u05d5\u05d5\u05d9\u05e7\u05d9 \u05d5\u05d4\u05d3\u05e4\u05d9\u05dd \u05d4\u05d1\u05e0\u05d9\u05dd \u05e9\u05dc\u05d4\u05dd.Exibe marcadores sociais e avalia\u00e7\u00f5es para p\u00e1ginas da wiki e suas p\u00e1ginas filhas.Wiki\u30da\u30fc\u30b8\u3068\u305d\u306e\u30b5\u30d6\u30da\u30fc\u30b8\u7528\u306e\u30bd\u30fc\u30b7\u30e3\u30eb\u30d6\u30c3\u30af\u30de\u30fc\u30af\u3068\u8a55\u4fa1\u3092\u8868\u793a\u3059\u308bAffiche les signets sociaux and les notations pour page wiki et leur pages enfants.Mostra adreces d''inter\u00e8s socials i classificacions per a planes del wiki.Geeft sociale favorieten en waarderingen van wikipagina''s en onderliggende wikipagina''s weer.Megjelen\u00edti a k\u00f6z\u00f6ss\u00e9gi k\u00f6nyvjelz\u0151ket \u00e9s \u00e9rt\u00e9kel\u00e9seket a wiki oldalak \u00e9s gyermek oldalaik r\u00e9sz\u00e9re.Darstellung f\u00fcr Social Bookmarks und Bewertungen von Wikiseiten und deren Unterseiten.','display',NULL,'ftl','<#assign\u000a\u0009wikiPageClassName = "com.liferay.wiki.model.WikiPage"\u000a\u000a\u0009assetRenderer = assetEntry.getAssetRenderer()\u000a/>\u000a\u000a
\u000a\u0009

${entry.getTitle()}

\u000a
\u000a\u000a
\u000a\u0009<@getEditIcon />\u000a\u000a\u0009<@getPageDetailsIcon />\u000a\u000a\u0009<@getPrintIcon />\u000a
\u000a\u000a
\u000a\u0009
\u000a\u0009\u0009${assetEntry.getViewCount()} <@liferay.language key="views" /> |\u000a\u000a\u0009\u0009<@liferay.language key="last-modified" /> ${dateUtil.getDate(entry.getModifiedDate(), "dd MMM yyyy - HH:mm:ss", locale)}\u000a\u000a\u0009\u0009<@liferay.language key="by" /> ${htmlUtil.escape(portalUtil.getUserName(entry.getUserId(), entry.getUserName()))}\u000a\u0009
\u000a\u000a\u0009
\u000a\u0009\u0009<@liferay_social_bookmarks["bookmarks"]\u000a\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009displayStyle="normal"\u000a\u0009\u0009\u0009target="_blank"\u000a\u0009\u0009\u0009title=entry.getTitle()\u000a\u0009\u0009\u0009url=viewURL\u000a\u0009\u0009/>\u000a\u000a\u0009\u0009${formattedContent}\u000a\u0009
\u000a\u000a\u0009
\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@getAddChildPageIcon />\u000a\u000a\u0009\u0009\u0009<@getAttatchmentsIcon />\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009
\u000a\u000a\u0009<@getRatings\u000a\u0009\u0009cssClass="page-ratings"\u000a\u0009\u0009entry=entry\u000a\u0009/>\u000a\u000a\u0009<@getRelatedAssets />\u000a
\u000a\u000a
\u000a\u0009
\u000a\u0009\u0009<#assign viewCategorizedPagesURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${viewCategorizedPagesURL.setParameter("mvcRenderCommandName", "/wiki/view_categorized_pages")}\u000a\u0009\u0009${viewCategorizedPagesURL.setParameter("nodeId", entry.getNodeId()?string)}\u000a\u000a\u0009\u0009<@liferay_ui["asset-categories-summary"]\u000a\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009portletURL=viewCategorizedPagesURL\u000a\u0009\u0009/>\u000a\u0009
\u000a\u000a\u0009
\u000a\u0009\u0009<#assign viewTaggedPagesURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${viewTaggedPagesURL.setParameter("mvcRenderCommandName", "/wiki/view_tagged_pages")}\u000a\u0009\u0009${viewTaggedPagesURL.setParameter("nodeId", entry.getNodeId()?string)}\u000a\u000a\u0009\u0009<@liferay_ui["asset-tags-summary"]\u000a\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009portletURL=viewTaggedPagesURL\u000a\u0009\u0009/>\u000a\u0009
\u000a
\u000a\u000a<#assign childPages = entry.getChildPages() />\u000a\u000a<#if (childPages?has_content)>\u000a\u0009
\u000a\u0009\u0009

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

\u000a\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009<#list childPages as childPage>\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009<#assign viewPageURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009${viewPageURL.setParameter("mvcRenderCommandName", "/wiki/view")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#assign childNode = childPage.getNode() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009${viewPageURL.setParameter("nodeName", childNode.getName())}\u000a\u0009\u0009\u0009\u0009\u0009${viewPageURL.setParameter("title", childPage.getTitle())}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009<@liferay.language key="page" />\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009<@liferay.language key="last-modified" />\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009<@liferay.language key="ratings" />\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009${childPage.getTitle()}\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009${dateUtil.getDate(childPage.getModifiedDate(),"dd MMM yyyy - HH:mm:ss", locale)} <@liferay.language key="by" /> ${htmlUtil.escape(portalUtil.getUserName(childPage.getUserId(), childPage.getUserName()))}\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009<@getRatings\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009cssClass="child-ratings"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009entry=childPage\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009
\u000a\u000a\u000a<@getDiscussion />\u000a\u000a<#macro getAddChildPageIcon>\u000a\u0009<#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\u000a\u0009\u0009<#assign addPageURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${addPageURL.setParameter("mvcRenderCommandName", "/wiki/edit_page")}\u000a\u0009\u0009${addPageURL.setParameter("redirect", currentURL)}\u000a\u0009\u0009${addPageURL.setParameter("nodeId", entry.getNodeId()?string)}\u000a\u0009\u0009${addPageURL.setParameter("title", "")}\u000a\u0009\u0009${addPageURL.setParameter("editTitle", "1")}\u000a\u0009\u0009${addPageURL.setParameter("parentTitle", entry.getTitle())}\u000a\u000a\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009iconCssClass="icon-plus"\u000a\u0009\u0009\u0009label=true\u000a\u0009\u0009\u0009message="add-child-page"\u000a\u0009\u0009\u0009url=addPageURL?string\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getAttatchmentsIcon>\u000a\u0009<#assign viewPageAttachmentsURL = renderResponse.createRenderURL() />\u000a\u000a\u0009${viewPageAttachmentsURL.setParameter("mvcRenderCommandName", "/wiki/view_page_attachments") }\u000a\u000a\u0009<@liferay_ui["icon"]\u000a\u0009\u0009iconCssClass="icon-paperclip"\u000a\u0009\u0009label=true\u000a\u0009\u0009message=''${entry.getAttachmentsFileEntriesCount() + languageUtil.get(locale, "attachments")}''\u000a\u0009\u0009url=viewPageAttachmentsURL?string\u000a\u0009/>\u000a\u000a\u000a<#macro getDiscussion>\u000a\u0009<#if validator.isNotNull(assetRenderer.getDiscussionPath()) && wikiPortletInstanceConfiguration.enableComments()>\u000a\u0009\u0009
\u000a\u000a\u0009\u0009<#assign discussionURL = renderResponse.createActionURL() />\u000a\u000a\u0009\u0009${discussionURL.setParameter("javax.portlet.action", "/wiki/" + assetRenderer.getDiscussionPath())}\u000a\u000a\u0009\u0009<@liferay_comment["discussion"]\u000a\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009formAction=discussionURL?string\u000a\u0009\u0009\u0009formName="fm2"\u000a\u0009\u0009\u0009ratingsEnabled=wikiPortletInstanceConfiguration.enableCommentRatings()\u000a\u0009\u0009\u0009redirect=currentURL\u000a\u0009\u0009\u0009subject=assetRenderer.getTitle(locale)\u000a\u0009\u0009\u0009userId=assetRenderer.getUserId()\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getEditIcon>\u000a\u0009<#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\u000a\u0009\u0009<#assign editPageURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${editPageURL.setParameter("mvcRenderCommandName", "/wiki/edit_page")}\u000a\u0009\u0009${editPageURL.setParameter("redirect", currentURL)}\u000a\u0009\u0009${editPageURL.setParameter("nodeId", entry.getNodeId()?string)}\u000a\u0009\u0009${editPageURL.setParameter("title", entry.getTitle())}\u000a\u000a\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009iconCssClass="icon-edit"\u000a\u0009\u0009\u0009message=entry.getTitle()\u000a\u0009\u0009\u0009url=editPageURL?string\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getPageDetailsIcon>\u000a\u0009<#assign viewPageDetailsURL = renderResponse.createRenderURL() />\u000a\u000a\u0009${viewPageDetailsURL.setParameter("mvcRenderCommandName", "/wiki/view_page_details")}\u000a\u0009${viewPageDetailsURL.setParameter("redirect", currentURL)}\u000a\u000a\u0009<@liferay_ui["icon"]\u000a\u0009\u0009iconCssClass="icon-file-alt"\u000a\u0009\u0009message="details"\u000a\u0009\u0009url=viewPageDetailsURL?string\u000a\u0009/>\u000a\u000a\u000a<#macro getPrintIcon>\u000a\u0009<#assign printURL = renderResponse.createRenderURL() />\u000a\u000a\u0009${printURL.setParameter("viewMode", "print")}\u000a\u0009${printURL.setWindowState("pop_up")}\u000a\u000a\u0009<#assign\u000a\u0009\u0009title = languageUtil.format(locale, "print-x-x", ["hide-accessible", htmlUtil.escape(assetRenderer.getTitle(locale))], false)\u000a\u0009\u0009taglibPrintURL = "javascript:Liferay.Util.openWindow({dialog: {width: 960}, id:''" + renderResponse.getNamespace() + "printAsset'', title: ''" + title + "'', uri: ''" + htmlUtil.escapeURL(printURL.toString()) + "''});"\u000a\u0009/>\u000a\u000a\u0009<@liferay_ui["icon"]\u000a\u0009\u0009iconCssClass="icon-print"\u000a\u0009\u0009message="print"\u000a\u0009\u0009url=taglibPrintURL\u000a\u0009/>\u000a\u000a\u000a<#macro getRatings\u000a\u0009cssClass\u000a\u0009entry\u000a>\u000a\u0009<#if wikiPortletInstanceConfiguration.enablePageRatings()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay_ui["ratings"]\u000a\u0009\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009
\u000a\u0009\u000a\u000a\u000a<#macro getRelatedAssets>\u000a\u0009<#if assetEntry?? && wikiPortletInstanceConfiguration.enableRelatedAssets()>\u000a\u0009\u0009<@liferay_ui["asset-links"] assetEntryId=assetEntry.getEntryId() />\u000a\u0009\u000a','0','0',32213,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('17a9409f-2017-7f5e-0a23-4f34a422f7cd',32216,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.408000','2019-05-09 00:27:52.408000',32215,0,32202,'RSS-NAVIGATION-FTL','1.0','NavigointiNavigation\u5bfc\u822aNavegaci\u00f3n\u05e0\u05d9\u05d5\u05d5\u05d8Navega\u00e7\u00e3o\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3NavigationNavegaci\u00f3NavigatieNavig\u00e1ci\u00f3Navigation','N\u00e4ytt\u00e4\u00e4 RSS-sy\u00f6tteet navigaatiopalkissa vasemmassa paneelissa. Klikkaamalla sy\u00f6tett\u00e4 n\u00e4ytet\u00e4\u00e4n sy\u00f6tteen arvot oikeassa paneelissa.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.\u5728\u5de6\u4fa7\u9762\u677f\u4e0a\u663e\u793aRSS\u6e90\u7684\u5bfc\u822a\u680f\u3002\u5728\u53f3\u4fa7\u9762\u677f\u4e0a\u70b9\u51fbFeed\u663e\u793a\u63d0\u8981\u6761\u76ee\u7684\u5217\u8868\u3002Muestra las fuentes RSS como una barra de navegaci\u00f3n del panel izquierdo. Al hacer clic en una fuente se muestra una lista de entradas de la fuente en el panel derecho.\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d4\u05d6\u05e0\u05d5\u05ea \u05d4-RSS \u05db\u05e1\u05e8\u05d2\u05dc \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d1\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d4\u05e9\u05de\u05d0\u05dc\u05d9\u05ea. \u05dc\u05d7\u05d9\u05e6\u05d4 \u05e2\u05dc \u05d4\u05d6\u05e0\u05d4 \u05de\u05e6\u05d9\u05d2\u05d4 \u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc \u05e8\u05e9\u05d5\u05de\u05d5\u05ea \u05d4\u05d6\u05e0\u05d4 \u05d1\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d4\u05d9\u05de\u05e0\u05d9\u05ea.Exibe os feeds RSS como uma barra de navega\u00e7\u00e3o no painel esquerdo. Clicar em um feed exibe uma lista de entradas de feed no painel direito.RSS\u30d5\u30a3\u30fc\u30c9\u3092\u5de6\u306e\u30d1\u30cd\u30eb\u306b\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30d0\u30fc\u3068\u3057\u3066\u8868\u793a\u3057\u307e\u3059\u3002\u30d5\u30a3\u30fc\u30c9\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u53f3\u30d1\u30cd\u30eb\u306b\u30d5\u30a3\u30fc\u30c9\u306e\u5185\u5bb9\u304c\u30ea\u30b9\u30c8\u8868\u793a\u3055\u308c\u307e\u3059Affiche les flux RSS en tant que barre de navigation dans le panneau gauche. Cliquer sur un flux affiche une liste d''entr\u00e9es de flux sur le panneau droit.Mostra els canals RSS com una barra de navegaci\u00f3 en el tauler esquerra. Al fer un clic en un canal es mostraran la llista d''entrades en el tauler dret.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\u00edti az RSS h\u00edrcsatorn\u00e1kat navig\u00e1ci\u00f3s oszlopk\u00e9nt a bal oldalon. Egy h\u00edrcsatorn\u00e1ra kattintva megjelen\u00edti a h\u00edrcsatorna bejegyz\u00e9sek list\u00e1j\u00e1t a jobb oldalon.Stellt die RSS-Feeds als Navigationsleiste im linken Bereich dar. Nach Anklicken eines Feeds werden die entsprechenden Feedeintr\u00e4ge im rechten Bereich dargestellt.','display',NULL,'ftl','<#assign rssPortletInstanceConfiguration = rssDisplayContext.getRSSPortletInstanceConfiguration() />\u000a\u000a\u000a\u000a<#if entries?has_content>\u000a\u0009<#assign dateFormat = "dd MMM yyyy - HH:mm:ss" />\u000a\u000a\u0009
\u000a\u0009\u0009
\u000a\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009<#list entries as curEntry>\u000a\u0009\u0009\u0009\u0009\u0009<#assign rssFeedEntries = curEntry.getRSSFeedEntries(themeDisplay) />\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if rssFeedEntries??>\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#list rssFeedEntries as rssFeedEntry>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if (rssFeedEntry_index > entriesPerFeed?number)>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#break>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#assign syndEntry = rssFeedEntry.getSyndEntry() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_aui["a"] href="${htmlUtil.escapeJSLink(rssFeedEntry.getSyndEntryLink())}">${htmlUtil.escape(syndEntry.getTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if rssPortletInstanceConfiguration.showFeedTitle() && syndEntry.getAuthor()??>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if syndEntry.getPublishedDate()??>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009iconCssClass="icon-calendar"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009label=true\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009message="${dateUtil.getDate(syndEntry.getPublishedDate(), dateFormat, locale)}"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${rssFeedEntry.getSanitizedContent()}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009
\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui["script"] use="aui-base,aui-tabview">\u000a\u0009\u0009new A.TabView(\u000a\u0009\u0009\u0009{\u000a\u0009\u0009\u0009\u0009srcNode: ''#<@portlet.namespace />feedsTab'',\u000a\u0009\u0009\u0009\u0009stacked: true,\u000a\u0009\u0009\u0009\u0009type: ''pills''\u000a\u0009\u0009\u0009}\u000a\u0009\u0009).render();\u000a\u0009\u000a','0','0',32217,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('2c40370e-0b56-a00b-5117-697a23909b9b',32220,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.427000','2019-05-09 00:27:52.427000',32219,0,32202,'DOCUMENTLIBRARY-CAROUSEL-FTL','1.0','KaruselliCarouselCarouselCarrusel\u05e7\u05e8\u05d5\u05e1\u05dc\u05d4Carrossel\u30ab\u30eb\u30fc\u30bb\u30ebCarrouselCarrusselCarrouselK\u00f6rhintaKarussel','N\u00e4ytt\u00e4\u00e4 kuvat karusellissa.Displays images in a carousel.\u628a\u56fe\u7247\u663e\u793a\u5728\u8f6c\u76d8\u4e2d\u3002Muestra im\u00e1genes en un carrusel.\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d4\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d1\u05e7\u05e8\u05d5\u05e1\u05dc\u05d4.Exibe imagens num carrossel.\u30ab\u30eb\u30fc\u30bb\u30eb\u5185\u306b\u753b\u50cf\u3092\u8868\u793aAffiche les images dans un carrousel.Mostra imatges en format carrusel.Geeft afbeeldingen weer in een carrousel.Megjelen\u00edti a k\u00e9peket k\u00f6rhintaszer\u0171en.Darstellung von Bildern in einem Karussell.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009\u000a\u000a\u0009
\u000a\u0009\u0009<#assign imageMimeTypes = propsUtil.getArray("dl.file.entry.preview.image.mime.types") />\u000a\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009<#if imageMimeTypes?seq_contains(entry.getMimeType())>\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="aui-carousel">\u000a\u0009\u0009var carousel = new A.Carousel(\u000a\u0009\u0009\u0009{\u000a\u0009\u0009\u0009\u0009after: {\u000a\u0009\u0009\u0009\u0009\u0009responsive: function(event) {\u000a\u0009\u0009\u0009\u0009\u0009\u0009event.stopImmediatePropagation();\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009var boundingBox = event.currentTarget.get(''boundingBox'');\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009boundingBox.all(''.image-viewer-base-image-list, .image-viewer-base-image'').setStyles(\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009{\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009height: ''auto'',\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009maxHeight: event.height,\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009maxWidth: event.width,\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009width: ''auto''\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009\u0009\u0009\u0009);\u000a\u0009\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009\u0009},\u000a\u000a\u0009\u0009\u0009\u0009contentBox: ''#<@portlet.namespace />carousel'',\u000a\u0009\u0009\u0009\u0009height: 250,\u000a\u0009\u0009\u0009\u0009intervalTime: 2,\u000a\u0009\u0009\u0009\u0009width: 700\u000a\u0009\u0009\u0009}\u000a\u0009\u0009).render();\u000a\u0009\u000a','0','0',32221,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('7756daa0-8b7b-f0c9-5ae7-77a573f98603',32223,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.439000','2019-05-09 00:27:52.439000',20178,0,32202,'LIST-MENU-FTL','1.0','LuettelovalikkoList Menu\u5217\u8868\u83dc\u5355Men\u00fa de lista\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e8\u05e9\u05d9\u05de\u05d5\u05eaMenu de lista\u30ea\u30b9\u30c8 \u30e1\u30cb\u30e5\u30fcMenu de ListeMen\u00fa de llistaLijstmenuLista men\u00fcListenmen\u00fc','N\u00e4ytt\u00e4\u00e4 navigointivalikon luettelolla.Displays a navigation menu with a list.\u663e\u793a\u5e26\u6709\u5217\u8868\u7684\u5bfc\u822a\u83dc\u5355\u3002Muestra un men\u00fa de navegaci\u00f3n con una lista.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e8\u05e9\u05d9\u05de\u05d4.Exibe um menu de navega\u00e7\u00e3o com uma lista.\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u30ea\u30b9\u30c8\u3067\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation avec une liste.Mostra un men\u00fa de navegaci\u00f3 amb una llista.Geeft een navigatiemenu weer met een lijst.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct egy list\u00e1val.Zeigt ein Navigationsmen\u00fc mit einer Liste.','display',NULL,'ftl','<#include "${templatesPath}/NAVIGATION-MACRO-FTL" />\u000a\u000a<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign includeAllChildNavItems = false />\u000a\u000a\u0009<#if stringUtil.equals(includedLayouts, "all")>\u000a\u0009\u0009<#assign includeAllChildNavItems = true />\u000a\u0009\u000a\u000a\u0009
" class="list-menu">\u000a\u0009\u0009<@buildNavigation\u000a\u0009\u0009\u0009branchNavItems=branchNavItems\u000a\u0009\u0009\u0009cssClass="layouts"\u000a\u0009\u0009\u0009displayDepth=displayDepth\u000a\u0009\u0009\u0009includeAllChildNavItems=includeAllChildNavItems\u000a\u0009\u0009\u0009navItemLevel=1\u000a\u0009\u0009\u0009navItems=entries\u000a\u0009\u0009/>\u000a\u0009
\u000a','0','0',32224,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('59bc40aa-2f54-375e-f050-3781e4b4acdc',32226,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.447000','2019-05-09 00:27:52.447000',20178,0,32202,'NAV-PILLS-FTL','1.0','Pills VaakasuuntaPills HorizontalPills HorizontalGlobos horizontales\u05d2\u05dc\u05d5\u05dc\u05d5\u05ea \u05d0\u05d5\u05e4\u05e7\u05d9Pills Horizontal\u6c34\u5e73\u65b9\u5411\u306e\u30d4\u30eb\u5f62\u5f0fPilules horizontalesC\u00e0psules horitzontalsHorizontale pillenV\u00edzszintes tablett\u00e1kPills horizontal','N\u00e4ytt\u00e4\u00e4 navigointivalikon navigointikohteet pillerein\u00e4.Displays a navigation menu with navigation items shown as pills.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u836f\u4e38\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n que se muestran como globos.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05d2\u05dc\u05d5\u05dc\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o exibidos como pills.\u30d4\u30eb\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation dont les \u00e9l\u00e9ments sont affich\u00e9s sous la forme de pilules.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 que es mostren com a c\u00e0psules.Geeft een navigatiemenu weer met navigatie-items in de vorm van pillen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct tablett\u00e1kk\u00e9nt megjelen\u00edtett navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit Navigationselementen als Pills an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-pills navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32227,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('e63b21fb-d9bb-875d-88f3-159a067a8729',32229,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.461000','2019-05-09 00:27:52.461000',20178,0,32202,'NAV-PILLS-JUSTIFIED-FTL','1.0','Pills TasattuPills Justified\u4e24\u7aef\u5bf9\u9f50\u836f\u4e38Globos justificados\u05d2\u05dc\u05d5\u05dc\u05d5\u05ea \u05de\u05d5\u05e6\u05de\u05d3\u05d5\u05eaPills justificados\u7b49\u5e45\u30d4\u30eb\u5f62\u5f0fPilules justifi\u00e9esC\u00e0psules justificadesUitgevulde pillenSorkiz\u00e1rt tablett\u00e1kPills justiert','N\u00e4ytt\u00e4\u00e4 navigointivalikon tasatut navigointikohteet pillerein\u00e4.Displays a navigation menu with justified navigation items shown as pills.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u4e24\u7aef\u5bf9\u9f50\u7684\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u836f\u4e38\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n justificados que se muestran como globos.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05d5\u05e6\u05de\u05d3\u05d9\u05dd \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05d2\u05dc\u05d5\u05dc\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o justificados exibidos como pills.\u7b49\u5e45\u306e\u30d4\u30eb\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation dont les \u00e9l\u00e9ments justifi\u00e9s sont affich\u00e9s sous la forme de pilules.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 justificats que es mostren com a c\u00e0psules.Geeft een navigatiemenu weer met uitgevulde navigatie-items in de vorm van pillen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct tablett\u00e1kk\u00e9nt megjelen\u00edtett sorkiz\u00e1rt navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit justierten Navigationselementen als Pills an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-justified nav-pills navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32230,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('a7c92e75-45cf-e1a9-b90c-fd8a55fdb401',32232,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.468000','2019-05-09 00:27:52.468000',20178,0,32202,'NAV-PILLS-STACKED-FTL','1.0','Pills PinottuPills Stacked\u5806\u53e0\u836f\u4e38Globos apilados\u05d2\u05dc\u05d5\u05dc\u05d5\u05ea \u05de\u05d5\u05e2\u05e8\u05de\u05d5\u05eaPills empilhados\u7e26\u7a4d\u307f\u30d4\u30eb\u5f62\u5f0fPilules empil\u00e9esC\u00e0psules apiladesGestapelde pillenFeltornyozott tablett\u00e1kPills gestapelt','N\u00e4ytt\u00e4\u00e4 navigointivalikon pinoitut navigointikohteet pillerein\u00e4.Displays a navigation menu with stacked navigation items shown as pills.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u5806\u53e0\u7684\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u836f\u4e38\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n apilados que se muestran como globos.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05d5\u05e2\u05e8\u05de\u05d9\u05dd \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05d2\u05dc\u05d5\u05dc\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o empilhados exibidos como pills.\u7e26\u65b9\u5411\u306b\u4e26\u3079\u305f\u30d4\u30eb\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation dont les \u00e9l\u00e9ments empil\u00e9s sont affich\u00e9s sous la forme de pilules.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 apilats que es mostren com a c\u00e0psules.Geeft een navigatiemenu weer met gestapelde navigatie-items in de vorm van pillen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct tablett\u00e1kk\u00e9nt megjelen\u00edtett feltornyozott navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit gestapelten Navigationselementen als Pills an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-pills nav-stacked navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32233,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('cea2abc0-85b2-f35d-f921-1df7812414f3',32235,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.476000','2019-05-09 00:27:52.476000',20178,0,32202,'NAV-TABS-FTL','1.0','V\u00e4lilehdetTabs\u9009\u9879\u5361Pesta\u00f1as\u05dc\u05e9\u05d5\u05e0\u05d9\u05d5\u05eaGuias\u30bf\u30d6OngletsPestanyesTabbladenLapokReiter','N\u00e4ytt\u00e4\u00e4 navigointivalikon navigointikohteet v\u00e4lilehtin\u00e4.Displays a navigation menu with navigation items shown as tabs.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u9009\u9879\u5361\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n que se muestran como pesta\u00f1as.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05dc\u05e9\u05d5\u05e0\u05d9\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o exibidos como abas.\u30bf\u30d6\u5f62\u5f0f\u3067\u4e26\u3079\u305f\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u3092\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation dont les \u00e9l\u00e9ments sont affich\u00e9s sous la forme d''onglets.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 que es mostren com a pestanyes.Geeft een navigatiemenu weer met navigatie-items in de vorm van tabbladen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct f\u00fclekk\u00e9nt megjelen\u00edtett navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit Navigationselementen als Reiter an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-tabs navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32236,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('1889aa55-21ae-473a-691c-e55741079ed7',32238,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.483000','2019-05-09 00:27:52.483000',20178,0,32202,'NAV-TABS-JUSTIFIED-FTL','1.0','V\u00e4lilehdet TasattuTabs Justified\u9009\u9879\u5361\u4e24\u7aef\u5bf9\u9f50Pesta\u00f1as justificadas\u05dc\u05e9\u05d5\u05e0\u05d9\u05d5\u05ea \u05de\u05d5\u05e6\u05de\u05d3\u05d5\u05eaGuias justificadas\u7b49\u5e45\u30d4\u30eb\u5f62\u5f0fOnglets justifi\u00e9sPestanyes justificadesUitgevulde tabbladenSorkiz\u00e1rt lapokReiter justiert','N\u00e4ytt\u00e4\u00e4 navigointivalikon navigointikohteet esitettyn\u00e4 v\u00e4lilehtin\u00e4.Displays a navigation menu with justified navigation items shown as tabs.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u4e24\u7aef\u5bf9\u9f50\u7684\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u9009\u9879\u5361\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n justificados que se muestran como pesta\u00f1as.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05d5\u05e6\u05de\u05d3\u05d9\u05dd \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05dc\u05e9\u05d5\u05e0\u05d9\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o justificados exibidos como guias.\u7b49\u5e45\u30bf\u30d6\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation dont les \u00e9l\u00e9ments justifi\u00e9s sont affich\u00e9s sous la forme d''onglets.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 justificats que es mostren com a pestanyes.Geeft een navigatiemenu weer met uitgevulde navigatie-items in de vorm van tabbladen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct f\u00fclekk\u00e9nt megjelen\u00edtett sorkiz\u00e1rt navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit justierten Navigationselementen als Reiter an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-justified nav-tabs navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32239,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('23a9b72e-e26b-8c99-a736-0e91fe99d32e',32241,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.505000','2019-05-09 00:27:52.505000',20178,0,32202,'NAVBAR-BLANK-FTL','1.0','Palkki minimityylill\u00e4Bar minimally styled\u5bfc\u822a\u680f\u6700\u5c0f\u5316\u6837\u5f0fBarra con estilo m\u00ednimo\u05e1\u05e8\u05d2\u05dc \u05d1\u05e2\u05d9\u05e6\u05d5\u05d1 \u05de\u05d9\u05e0\u05d9\u05de\u05dc\u05d9\u05e1\u05d8\u05d9Barra minimamente estilizada\u6700\u5c0f\u30d0\u30fc\u5f62\u5f0fBarre minimalisteBarra amb estil m\u00ednimMinimalistische balkMinim\u00e1lis st\u00edlus\u00fa oszlopMinimalistische Leiste','N\u00e4ytt\u00e4\u00e4 navigointivalikon minimalistisesti tyylitellyll\u00e4 navigointipalkilla.Displays a navigation menu with a minimally styled navigation bar.\u663e\u793a\u5e26\u6709\u6700\u5c0f\u5316\u6837\u5f0f\u5bfc\u822a\u680f\u7684\u5bfc\u822a\u83dc\u5355\u3002Muestra un men\u00fa de navegaci\u00f3n con una barra de navegaci\u00f3n con un estilo m\u00ednimo.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e1\u05e8\u05d2\u05dc \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d1\u05e1\u05d2\u05e0\u05d5\u05df \u05de\u05d9\u05e0\u05d9\u05de\u05dc\u05d9\u05e1\u05d8\u05d9.Exibe um menu de navega\u00e7\u00e3o com uma barra de navega\u00e7\u00e3o minimamente estilizada.\u6700\u5c0f\u30b9\u30bf\u30a4\u30eb\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation avec une barre de navigation minimaliste.Mostra un men\u00fa de navegaci\u00f3 amb una barra de navegaci\u00f3 amb un estil m\u00ednim.Geeft een navigatiemenu weer met een minimalistische navigatiebalk.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct egy minimalista st\u00edlus\u00fa navig\u00e1ci\u00f3s s\u00e1vval.Zeigt ein Navigationsmen\u00fc mit einer minimalistischen Navigationsleiste an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="navbar-blank navbar-nav navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_aui.icon\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009image="angle-down"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32242,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('f4978e12-e35c-3c37-03f3-9b5d7523cfb6',32244,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.513000','2019-05-09 00:27:52.513000',20178,0,32202,'NAVBAR-BLANK-JUSTIFIED-FTL','1.0','Palkki minimitasaustyylill\u00e4Bar minimally justified styled\u5bfc\u822a\u680f\u6700\u5c0f\u5316\u4e24\u7aef\u5bf9\u9f50\u6837\u5f0fBarra con estilo justificado m\u00ednimo\u05e1\u05e8\u05d2\u05dc \u05de\u05e2\u05d5\u05e6\u05d1 \u05de\u05d5\u05e6\u05de\u05d3 \u05e7\u05dc\u05d5\u05eaBarra minimamente justificada estilizada\u6700\u5c0f\u7b49\u5e45\u30d0\u30fc\u5f62\u5f0fBarre minimaliste et justifi\u00e9eBarra amb justificaci\u00f3 i estil m\u00ednimsUitgevulde minimalistische balkMinim\u00e1lisan sorkiz\u00e1rt st\u00edlus\u00fa oszlopMinimalistische justierte Leiste','N\u00e4ytt\u00e4\u00e4 navigointivalikon minimalistisesti tasatusti tyylitellyll\u00e4 navigointipalkilla.Displays a navigation menu with a minimally justified styled navigation bar.\u663e\u793a\u5e26\u6709\u6700\u5c0f\u5316\u4e24\u7aef\u5bf9\u9f50\u6837\u5f0f\u5bfc\u822a\u680f\u7684\u5bfc\u822a\u83dc\u5355\u3002Muestra un men\u00fa de navegaci\u00f3n con una barra de navegaci\u00f3n con un estilo justificado m\u00ednimamente.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e1\u05e8\u05d2\u05dc \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05e2\u05d5\u05e6\u05d1 \u05de\u05d5\u05e6\u05de\u05d3 \u05e7\u05dc\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com uma barra de navega\u00e7\u00e3o minimamente justificada estilizada.\u6700\u5c0f\u30b9\u30bf\u30a4\u30eb\u306e\u7b49\u5e45\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation avec une barre de navigation justifi\u00e9e et minimaliste.Mostra un men\u00fa de navegaci\u00f3 amb una barra de navegaci\u00f3 amb una justificaci\u00f3 i un estil m\u00ednims.Geeft een navigatiemenu weer met een uitgevulde minimalistische navigatiebalk.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct egy minim\u00e1lisan sorkiz\u00e1rt st\u00edlus\u00fa navig\u00e1ci\u00f3s s\u00e1vval.Zeigt ein Navigationsmen\u00fc mit einer minimalistischen justierten Navigationsleiste an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-justified navbar-blank navbar-nav navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32245,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('65f4ca09-2cd4-6844-e6a8-16975458e5cd',32247,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.519000','2019-05-09 00:27:52.519000',20178,0,32202,'NAVBAR-DEFAULT-FTL','1.0','Palkki oletustyylill\u00e4Bar default styled\u5bfc\u822a\u680f\u9ed8\u8ba4\u6837\u5f0fBarra con estilo predeterminado\u05d1\u05e8 \u05d1\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dcBarra estilizada padr\u00e3o\u898f\u5b9a\u30b9\u30bf\u30a4\u30eb\u306e\u30d0\u30fcBarre par d\u00e9fautBarra amb estil per defecteStandaardbalkAlap\u00e9rtelmezett st\u00edlus\u00fa oszlopStandard-Leiste','N\u00e4ytt\u00e4\u00e4 navigointivalikon oletustyylisell\u00e4 navigointipalkilla.Displays a navigation menu with a default styled navigation bar.\u663e\u793a\u5e26\u6709\u9ed8\u8ba4\u6837\u5f0f\u5bfc\u822a\u680f\u7684\u5bfc\u822a\u83dc\u5355\u3002Muestra un men\u00fa de navegaci\u00f3n con una barra de navegaci\u00f3n con un estilo predeterminado.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e1\u05e8\u05d2\u05dc \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d1\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc.Exibe um menu de navega\u00e7\u00e3o com uma barra de navega\u00e7\u00e3o padr\u00e3o estilizada.\u30c7\u30d5\u30a9\u30eb\u30c8\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation avec une barre de navigation par d\u00e9faut.Mostra un men\u00fa de navegaci\u00f3 amb una barra de navegaci\u00f3 amb un estil predeterminat.Geeft een navigatiemenu weer met een standaard navigatiebalk.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct egy alap\u00e9rtelmezett st\u00edlus\u00fa navig\u00e1ci\u00f3s s\u00e1vval.Zeigt ein Navigationsmen\u00fc mit einer Standard-Navigationsleiste an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav navbar-nav navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32248,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('6812fccb-b928-3eda-95ba-c0eae61a5a06',32250,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.527000','2019-05-09 00:27:52.527000',20178,0,32202,'NAVIGATION-MACRO-FTL','1.0','Navigoinnin yleiset makrotNavigation common macros\u5bfc\u822a\u5e38\u7528\u5b8fMacros comunes de navegaci\u00f3n\u05e4\u05e7\u05d5\u05d3\u05d5\u05ea \u05de\u05e7\u05e8\u05d5 \u05e0\u05e4\u05d5\u05e6\u05d5\u05ea \u05dc\u05e0\u05d9\u05d5\u05d5\u05d8Macros de navega\u00e7\u00e3o comuns\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u306e\u4e00\u822c\u7684\u306a\u30de\u30af\u30edMacros de navigation ordinairesMacros comunes de navegaci\u00f3Algemene navigatiemacro''sNavig\u00e1ci\u00f3 k\u00f6z\u00f6s makr\u00f3iNavigation h\u00e4ufige Makros','Sis\u00e4lt\u00e4\u00e4 yleiset navigointivalikkomallien makrot.Contains common macros for navigation menu templates.\u5305\u542b\u5bfc\u822a\u83dc\u5355\u6a21\u677f\u7684\u5e38\u7528\u5b8f\u3002Contiene macros comunes para plantillas del men\u00fa de navegaci\u00f3n.\u05de\u05db\u05d9\u05dc \u05e4\u05e7\u05d5\u05d3\u05d5\u05ea \u05de\u05e7\u05e8\u05d5 \u05e0\u05e4\u05d5\u05e6\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05ea\u05d1\u05e0\u05d9\u05d5\u05ea \u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e0\u05d9\u05d5\u05d5\u05d8.Cont\u00e9m macros comuns para o modelo do menu de navega\u00e7\u00e3o.\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u7528\u306e\u30de\u30af\u30ed\u3092\u542b\u307f\u307e\u3059Contient les macros ordinaires pour les mod\u00e8les de menu de navigation.Cont\u00e9 macros comunes per a les plantilles del men\u00fa de navegaci\u00f3.Bevat algemene macro''s voor navigatiemenusjablonen.A navig\u00e1ci\u00f3s men\u00fc sablonok k\u00f6z\u00f6s makr\u00f3it tartalmazza.Enth\u00e4lt h\u00e4ufige Makros f\u00fcr Navigationsmen\u00fcvorlagen.','macro',NULL,'ftl','<#macro buildNavigation\u000a\u0009branchNavItems\u000a\u0009cssClass\u000a\u0009displayDepth\u000a\u0009includeAllChildNavItems\u000a\u0009navItemLevel\u000a\u0009navItems\u000a>\u000a\u0009<#if navItems?has_content && ((displayDepth == 0) || (navItemLevel <= displayDepth))>\u000a\u0009\u0009
    \u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item"\u000a\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009<#if includeAllChildNavItems || navItem.isInNavigation(branchNavItems)>\u000a\u0009\u0009\u0009\u0009\u0009<#assign nav_item_css_class = "${nav_item_css_class} open" />\u000a\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009${navItem.getName()}\u000a\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009${navItem.getName()}\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if includeAllChildNavItems || navItem.isInNavigation(branchNavItems)>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<@buildNavigation\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009branchNavItems=branchNavItems\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009cssClass=cssClass\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009displayDepth=displayDepth\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009includeAllChildNavItems=includeAllChildNavItems\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009navItemLevel=(navItemLevel + 1)\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009navItems=navItem.getChildren()\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009\u000a','0','0',32251,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('854402e4-2328-a510-f4c3-3e9c2270c2fa',32253,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.534000','2019-05-09 00:27:52.534000',20178,0,32202,'SPLIT-BUTTON-DROPDOWNS-FTL','1.0','Jakopainikkeen PudotusvalikotSplit Button Dropdowns\u62c6\u5206\u6309\u94ae\u4e0b\u62c9\u83dc\u5355Desplegables de bot\u00f3n de expansi\u00f3n\u05ea\u05d9\u05d1\u05d5\u05ea \u05d1\u05d7\u05d9\u05e8\u05d4 \u05e2\u05dd \u05dc\u05d7\u05e6\u05df \u05e4\u05d9\u05e6\u05d5\u05dcDividir menus suspensos de bot\u00e3o\u30b9\u30d7\u30ea\u30c3\u30c8\u30dc\u30bf\u30f3\u306e\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3Partager les boutons du menu d\u00e9roulantDesplegables de bot\u00f3 de divisi\u00f3Rolmenu met uitgesplitste knoppenOsztott gomb leg\u00f6rd\u00fcl\u0151 elemeiDropdown mit geteilten Schaltfl\u00e4chen','N\u00e4ytt\u00e4\u00e4 pudotusnavigointivalikon juurivalikon kohdat esitettyn\u00e4 painikkeina.Displays a dropdown navigation menu with root menu items shown as buttons.\u663e\u793a\u4e0b\u62c9\u5f0f\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u6839\u83dc\u5355\u9879\u663e\u793a\u4e3a\u6309\u94ae\u3002Muestra un men\u00fa de navegaci\u00f3n desplegable con elementos de men\u00fa ra\u00edz que se muestran como botones.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e0\u05e4\u05ea\u05d7 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e9\u05d5\u05e8\u05e9 \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05db\u05e4\u05ea\u05d5\u05e8\u05d9\u05dd.Exibe um menu de navega\u00e7\u00e3o suspenso com itens do menu raiz mostrados como bot\u00f5es.\u30dc\u30bf\u30f3\u5f62\u5f0f\u306e\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 \u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation d\u00e9roulant dont les \u00e9l\u00e9ments sont affich\u00e9s sous la forme de boutons.Mostra un men\u00fa de navegaci\u00f3 desplegable els elements de men\u00fa arrel que es mostren com a botons.Geeft een rolmenu voor navigatie weer met rootmenu-items in de vorm van knoppen.Megjelen\u00edt egy leny\u00edl\u00f3 navig\u00e1ci\u00f3s men\u00fct, amelyben a gy\u00f6k\u00e9rszint\u0171 men\u00fcpontok gombokk\u00e9nt jelennek meg.Zeigt ein Dropdown-Navigationsmen\u00fc mit Root-Men\u00fcelementen als Schaltfl\u00e4chen an.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32254,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('bd138004-0dc6-cb64-7103-c649f267f9d1',32256,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.542000','2019-05-09 00:27:52.542000',20013,0,32202,'ASSET-CATEGORIES-NAVIGATION-MULTI-COLUMN-LAYOUT-FTL','1.0','Usean sarakkeen asetteluMulti Column Layout\u591a\u5217\u5e03\u5c40Dise\u00f1o con varias columnas\u05ea\u05e6\u05d5\u05e8\u05d4 \u05de\u05e8\u05d5\u05d1\u05ea \u05e2\u05de\u05d5\u05d3\u05d5\u05eaLayout em M\u00faltiplas Colunas\u8907\u6570\u30ab\u30e9\u30e0\u30ec\u30a4\u30a2\u30a6\u30c8Mise en page multi-colonnePlana multi-columnaLay-out met meerdere kolommenT\u00f6bb oszlopos elrendez\u00e9sMulti-Spalten-Layout','N\u00e4ytt\u00e4\u00e4 sarakkeen jokaiselle sanastolle. Jokainen sarake sis\u00e4lt\u00e4\u00e4 sanaston nimen, miss\u00e4 sanaston yl\u00e4tason luokitukset on listattu.Displays a column for each vocabulary. Each column includes the name of a vocabulary with the vocabulary''s top level categories listed underneath.\u663e\u793a\u4e00\u5217\u4e2d\u7684\u6bcf\u4e2a\u8bcd\u6c47\uff0c\u6bcf\u5217\u5305\u62ec\u9876\u7ea7\u7c7b\u522b\u4e4b\u4e0b\u7684\u8bcd\u6c47\u540d\u5b57\u3002Despliega una columna para cada vocabulario. Cada columna incluye el nombre de un vocabulario con las categor\u00edas de mayor nivel del vocabulario listadas debajo.\u05de\u05e6\u05d9\u05d2 \u05e2\u05de\u05d5\u05d3\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05db\u05dc \u05d0\u05d5\u05e6\u05e8 \u05de\u05d9\u05dc\u05d9\u05dd. \u05db\u05dc \u05e2\u05de\u05d5\u05d3\u05d4 \u05de\u05db\u05d9\u05dc\u05d4 \u05d0\u05ea \u05d4\u05e9\u05dd \u05e9\u05dc \u05d0\u05d5\u05e6\u05e8 \u05de\u05d9\u05dc\u05d9\u05dd \u05d5\u05de\u05ea\u05d7\u05ea\u05d9\u05d5 \u05d4\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea \u05d1\u05e8\u05de\u05ea \u05d4\u05e2\u05dc.Exibe uma coluna para cada vocabul\u00e1rio. Cada coluna inclui o nome do vocabul\u00e1rio com as categorias de n\u00edvel mais alto listadas abaixo dele.\u5404\u30dc\u30ad\u30e3\u30d6\u30e9\u30ea\u7528\u306b\u5217\u3092\u8868\u793a\u3059\u308b\u3002\u5404\u5217\u306f\u4ee5\u4e0b\u306b\u30ea\u30b9\u30c8\u306b\u306a\u3063\u3066\u3044\u308b\u3001\u6700\u4e0a\u4f4d\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u7528\u8a9e\u540d\u3092\u542b\u3093\u3067\u3044\u307e\u3059Affiche une colonne pour chaque vocabulaire. Chaque colonne inclut le nom d''un vocabulaire avec les cat\u00e9gories du niveau racine list\u00e9es en dessous.Visualitza una columna per a cada vocabulari. Cada columna inclou el nom del vocabulari amb la categoria de nivell m\u00e9s alta a sota.Toon een kolom voor ieder woordenboek. Iedere kolom bevat de naam van een woordenboek met de hoofd categorie\u00ebn eronder.Megjelen\u00edt egy oszlopot minden sz\u00f3t\u00e1r sz\u00e1m\u00e1ra. Minden oszlop tartalmazza a sz\u00f3t\u00e1r nev\u00e9t, alatta a sz\u00f3t\u00e1r fels\u0151 szint\u0171 kateg\u00f3ri\u00e1ival.Stellt eine Spalte f\u00fcr jedes Vokabular dar. Jede Spalte enth\u00e4lt den Namen eines Vokabulars mit der obersten Kategorienebene darunter.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009<@liferay_aui.row>\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009<@liferay_aui.col width=25>\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009

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

\u000a\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009<#assign categories = entry.getCategories() />\u000a\u000a\u0009\u0009\u0009\u0009<@displayCategories categories=categories />\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u000a<#macro displayCategories\u000a\u0009categories\u000a>\u000a\u0009<#if categories?has_content>\u000a\u0009\u0009
    \u000a\u0009\u0009\u0009<#list categories as category>\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u0009\u0009<#assign categoryURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009${categoryURL.setParameter("resetCur", "true")}\u000a\u0009\u0009\u0009\u0009\u0009${categoryURL.setParameter("categoryId", category.getCategoryId()?string)}\u000a\u000a\u0009\u0009\u0009\u0009\u0009${category.getName()}\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if serviceLocator??>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009assetCategoryService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetCategoryService")\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009childCategories = assetCategoryService.getChildCategories(category.getCategoryId())\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<@displayCategories categories=childCategories />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009\u000a','0','0',32257,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('7ad6cbc7-ab83-ca2f-d655-116de06ba4ae',32259,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.549000','2019-05-09 00:27:52.549000',20044,0,32202,'SITE-MAP-MULTI-COLUMN-LAYOUT-FTL','1.0','Usean sarakkeen asetteluMulti Column Layout\u591a\u5217\u5e03\u5c40Dise\u00f1o con varias columnas\u05ea\u05e6\u05d5\u05e8\u05d4 \u05de\u05e8\u05d5\u05d1\u05ea \u05e2\u05de\u05d5\u05d3\u05d5\u05eaLayout em M\u00faltiplas Colunas\u8907\u6570\u30ab\u30e9\u30e0\u30ec\u30a4\u30a2\u30a6\u30c8Mise en page multi-colonnePlana multi-columnaLay-out met meerdere kolommenT\u00f6bb oszlopos elrendez\u00e9sMulti-Spalten-Layout','N\u00e4ytt\u00e4\u00e4 sarakkeen jokaiselle yl\u00e4tason sivulle. Jokainen sarake sis\u00e4lt\u00e4\u00e4 yl\u00e4tason sivun nimen ja sivun v\u00e4litt\u00f6m\u00e4t alasivut lueteltuna alapuolella.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.\u4e3a\u6bcf\u4e2a\u9876\u7ea7\u9875\u9762\u663e\u793a\u4e00\u5217\u3002\u6bcf\u4e00\u5217\u90fd\u5305\u542b\u9876\u7ea7\u9875\u9762\u7684\u540d\u79f0\u4ee5\u53ca\u9875\u9762\u4e0b\u6240\u5217\u7684\u76f4\u63a5\u5b50\u7ea7\u3002Muestra una columna por cada p\u00e1gina de nivel superior. En cada columna, se incluye el nombre de una p\u00e1gina de nivel superior con el elemento secundario inmediato de la p\u00e1gina en una lista de la parte inferior.\u05de\u05e6\u05d9\u05d2 \u05e2\u05de\u05d5\u05d3\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05db\u05dc \u05e2\u05de\u05d5\u05d3 \u05d1\u05e8\u05de\u05d4 \u05d4\u05e2\u05dc\u05d9\u05d5\u05e0\u05d4. \u05db\u05dc \u05e2\u05de\u05d5\u05d3\u05d4 \u05db\u05d5\u05dc\u05dc\u05ea \u05d0\u05ea \u05d4\u05e9\u05dd \u05e9\u05dc \u05d3\u05e3 \u05d1\u05e8\u05de\u05d4 \u05d4\u05e2\u05dc\u05d9\u05d5\u05e0\u05d4 \u05e2\u05dd \u05d4\u05e6\u05d0\u05e6\u05d0\u05d9\u05dd \u05d4\u05de\u05d9\u05d3\u05d9\u05d9\u05dd \u05e9\u05dc \u05d4\u05e2\u05de\u05d5\u05d3 \u05de\u05e4\u05d5\u05e8\u05d8\u05d9\u05dd \u05de\u05ea\u05d7\u05ea.Exibe uma coluna para cada p\u00e1gina de n\u00edvel superior. Cada coluna inclui o nome de uma p\u00e1gina de n\u00edvel superior com os filhos imediatos da p\u00e1gina listados abaixo.\u6700\u4e0a\u4f4d\u306e\u30da\u30fc\u30b8\u3054\u3068\u306b\u5217\u3092\u8868\u793a\u3057\u307e\u3059\u3002\u5404\u5217\u306b\u306f\u3001\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u306e\u30da\u30fc\u30b8\u306e\u540d\u524d\u3068\u3001\u76f4\u4e0b\u306e\u30b5\u30d6\u30da\u30fc\u30b8\u306e\u30da\u30fc\u30b8\u540d\u3092\u542b\u307f\u307e\u3059\u3002Affiche une colonne pour chaque page de niveau sup\u00e9rieur. Chaque colonne comprend le nom d''une page de niveau sup\u00e9rieur avec les enfants imm\u00e9diats indiqu\u00e9s en-dessous.Mostra una columna per cada p\u00e0gina de nivell superior. A cada columna, s''hi inclou el nom d''una p\u00e0gina de nivell superior amb el fill immediat de la p\u00e0gina en una llista a la part inferior.Geeft een kolom weer voor elke pagina op het hoogste niveau. Elke kolom bevat de naam van een bovenliggende pagina met alle directe onderliggende pagina''s eronder.Megjelen\u00edt egy oszlopot minden fels\u0151 szint\u0171 oldalhoz. Mindegyik oszlop tartalmazza a legfels\u0151 szint\u0171 oldal nev\u00e9t, alatta az oldal k\u00f6zvetlen ut\u00f3dj\u00e1val.Zeigt eine Spalte f\u00fcr jede Seite der obersten Ebene. Jede Spalte enth\u00e4lt den Namen einer Seite der obersten Ebene, darunter werden die direkten Unterseiten aufgelistet.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009<@liferay_aui.row>\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009<#if layoutPermission.containsWithoutViewableGroup(permissionChecker, entry, "VIEW")>\u000a\u0009\u0009\u0009\u0009<@liferay_aui.col width=25>\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009

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

\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009<@displayPages\u000a\u0009\u0009\u0009\u0009\u0009\u0009depth=1\u000a\u0009\u0009\u0009\u0009\u0009\u0009pages=entry.getChildren(permissionChecker)\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u000a<#macro displayPages\u000a\u0009depth\u000a\u0009pages\u000a>\u000a\u0009<#if pages?has_content && ((depth < displayDepth?number) || (displayDepth?number == 0))>\u000a\u0009\u0009
    \u000a\u0009\u0009\u0009<#list pages as page>\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if pageType.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009href="${portalUtil.getLayoutURL(page, themeDisplay)}"\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009>${page.getName(locale)}\u000a\u000a\u0009\u0009\u0009\u0009\u0009<@displayPages\u000a\u0009\u0009\u0009\u0009\u0009\u0009depth=depth + 1\u000a\u0009\u0009\u0009\u0009\u0009\u0009pages=page.getChildren(permissionChecker)\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009\u000a','0','0',32260,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('e59cf80a-284b-e311-da75-6f4d7de37d17',32262,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.559000','2019-05-09 00:27:52.559000',20017,0,32202,'ASSET-TAGS-NAVIGATION-COLOR-BY-POPULARITY-FTL','1.0','V\u00e4ri suosion mukaanColor by Popularity\u53d7\u6b22\u8fce\u7684\u989c\u8272Color por popularidad\u05e6\u05d1\u05e2 \u05d1\u05d4\u05ea\u05d0\u05dd \u05dc\u05e4\u05d5\u05e4\u05d5\u05dc\u05e8\u05d9\u05d5\u05eaColorir por Popularidade\u983b\u51fa\u5ea6\u306b\u3088\u308a\u8272\u5206\u3051\u3059\u308bCouleur par popularit\u00e9Color per popularitatKleur op populariteitSz\u00edn n\u00e9pszer\u0171s\u00e9g alapj\u00e1nNach Popularit\u00e4t f\u00e4rben','N\u00e4ytt\u00e4\u00e4 sis\u00e4lt\u00f6tageja, mitk\u00e4 on v\u00e4ritetty suosion mukaan: punainen (korkea), keltainen (keskiverto) ja virhe\u00e4 (alhainen)Displays asset tags colored by popularity: red (high), yellow (medium), and green (low).\u663e\u793a\u8d44\u6e90\u6807\u7b7e\u989c\u8272\u7b49\u7ea7\uff1a \u7ea2\u8272 (\u9ad8), \u9ec4\u8272 (\u4e2d), \u7eff\u8272 (\u4f4e).Muestra las etiquetas de contenido coloreadas seg\u00fan su popularidad : rojo (alta), amarilla (media) y verde (baja).\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05ea\u05d2\u05d9 \u05d4\u05e0\u05db\u05e1\u05d9\u05dd \u05e2\u05dc \u05e4\u05d9 \u05de\u05d9\u05d3\u05ea \u05d4\u05e4\u05d5\u05e4\u05d5\u05dc\u05e8\u05d9\u05d5\u05ea \u05e9\u05dc\u05d4\u05dd: \u05d0\u05d3\u05d5\u05dd (\u05d2\u05d1\u05d5\u05d4\u05d4), \u05e6\u05d4\u05d5\u05d1 (\u05d1\u05d9\u05e0\u05d5\u05e0\u05d9\u05ea) \u05d5\u05d9\u05e8\u05d5\u05e7 (\u05e0\u05de\u05d5\u05db\u05d4).Exibe marcadores coloridos por popularidade: vermelho (alta), amarelo (m\u00e9dia) e verde (baixa).\u30a2\u30bb\u30c3\u30c8\u30bf\u30b0\u3092\u4eba\u6c17\u9806\u306b\u8868\u793a\u3059\u308b:\u8d64(\u9ad8\u3044)\u3001\u9ec4\u8272\uff08\u666e\u901a)\u3001\u7dd1\uff08\u4f4e\u3044\uff09Affiche les \u00e9tiquettes d''asset colori\u00e9es par popularit\u00e9: rouge (\u00e9lev\u00e9), jaune (moyen), et vert (bas).Mostra les etiquetes per colors segons popularitat: vermell (alta), groga (mitjana) i verda (baixa).Toon content labels volgens populariteit: rood (hoog), geel (midden) en groen (laag).Megjelen\u00edti a tartalom c\u00edmk\u00e9ket n\u00e9pszer\u0171s\u00e9g szerint sz\u00ednezve: v\u00f6r\u00f6s (magas), s\u00e1rga (k\u00f6zepes), \u00e9s z\u00f6ld (alacsony).Schlagw\u00f6rter nach Popularit\u00e4t f\u00e4rben: Rot (hoch), gelb (mittel), gr\u00fcn (niedrig).','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009
    \u000a\u0009\u0009<#assign\u000a\u0009\u0009\u0009scopeGroupId = getterUtil.getLong(scopeGroupId, themeDisplay.getScopeGroupId())\u000a\u0009\u0009\u0009classNameId = getterUtil.getLong(classNameId, 0)\u000a\u000a\u0009\u0009\u0009maxCount = 1\u000a\u0009\u0009\u0009minCount = 1\u000a\u0009\u0009/>\u000a\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009maxCount = liferay.max(maxCount, entry.getAssetCount())\u000a\u0009\u0009\u0009\u0009minCount = liferay.min(minCount, entry.getAssetCount())\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#assign multiplier = 1 />\u000a\u000a\u0009\u0009<#if maxCount != minCount>\u000a\u0009\u0009\u0009<#assign multiplier = 3 / (maxCount - minCount) />\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u0009<#assign popularity = (maxCount - (maxCount - (entry.getAssetCount() - minCount))) * multiplier />\u000a\u000a\u0009\u0009\u0009\u0009<#if popularity < 1>\u000a\u0009\u0009\u0009\u0009\u0009<#assign color = "green" />\u000a\u0009\u0009\u0009\u0009<#elseif (popularity >= 1) && (popularity < 2)>\u000a\u0009\u0009\u0009\u0009\u0009<#assign color = "orange" />\u000a\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009<#assign color = "red" />\u000a\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009<#assign tagURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009${tagURL.setParameter("resetCur", "true")}\u000a\u0009\u0009\u0009\u0009${tagURL.setParameter("tag", entry.getName())}\u000a\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009${entry.getName()}\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if entry.getAssetCount()?? && getterUtil.getBoolean(showAssetCount)>\u000a\u0009\u0009\u0009\u0009\u0009\u0009(${entry.getAssetCount()})\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009
  • \u000a\u0009\u0009\u000a\u0009
\u000a\u000a\u0009
\u000a','0','0',32263,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('7fc83ac0-7c9c-3d2a-28ee-f0e100dc6cc8',32266,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.569000','2019-05-09 00:27:52.569000',32265,0,32202,'LANGUAGE-ICON-FTL','1.0','KuvakeIcon\u56fe\u6807Icono\u05e1\u05de\u05dc\u00cdcone\u30a2\u30a4\u30b3\u30f3Ic\u00f4neIconaPictogramIkonSymbol','N\u00e4ytt\u00e4 kuhunkin kieleen liittyv\u00e4n lippukuvakkeen.Displays the icon of the flag associated with each language.\u663e\u793a\u4e0e\u6bcf\u79cd\u8bed\u8a00\u5173\u8054\u7684\u56fd\u65d7\u7684\u56fe\u6807\u3002Muestra el icono de la bandera asociada con cada idioma.\u05de\u05e6\u05d9\u05d2\u05d4 \u05d4\u05e1\u05de\u05dc \u05e9\u05dc \u05d4\u05d3\u05d2\u05dc \u05d4\u05de\u05e9\u05d5\u05d9\u05da \u05dc\u05db\u05dc \u05e9\u05e4\u05d4.Exibe o \u00edcone do marcador associado com cada idioma.\u5404\u8a00\u8a9e\u306b\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30d5\u30e9\u30b0\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u8868\u793a\u3057\u307e\u3059Affiche l''ic\u00f4ne de chaque option associ\u00e9 \u00e0 chaque langue.Mostra la icona de la bandera associada a cada idioma.Geeft het pictogram weer van de vlag die bij elke taal hoort.Megjelen\u00edti az egyes nyelvekhez t\u00e1rs\u00edtott z\u00e1szl\u00f3t tartalmaz\u00f3 ikont.Zeigt das Symbol der Flagge f\u00fcr jede Sprache an.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009<#list entries as entry>\u000a\u0009\u0009<#if entry.isSelected()>\u000a\u0009\u0009\u0009<#assign cssClass = "current-language" />\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#if !entry.isDisabled()>\u000a\u0009\u0009\u0009<@liferay_aui["icon"]\u000a\u0009\u0009\u0009\u0009cssClass=cssClass\u000a\u0009\u0009\u0009\u0009image=entry.getW3cLanguageId()?lower_case\u000a\u0009\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009\u0009message=entry.getLongDisplayName()\u000a\u0009\u0009\u0009\u0009url=entry.getURL()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u0009\u000a','0','0',32267,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('41436db6-9e6a-1ad7-71a8-c1c6a45e9f6d',32269,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.576000','2019-05-09 00:27:52.576000',32265,0,32202,'LANGUAGE-ICON-MENU-FTL','1.0','KuvakevalikkoIcon Menu\u56fe\u6807\u83dc\u5355Men\u00fa de icono\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05de\u05dc\u05d9\u05ddMenu de \u00edcones\u30a2\u30a4\u30b3\u30f3 \u30e1\u30cb\u30e5\u30fcMenu d''ic\u00f4nesMen\u00fa d''iconesPictogrammenuIkon men\u00fcSymbolmen\u00fc','N\u00e4ytt\u00e4\u00e4 valittuihin kieliin liittyv\u00e4n kuvakevalikon.Displays an icon menu with the selected languages.\u663e\u793a\u5e26\u6709\u9009\u5b9a\u8bed\u8a00\u7684\u56fe\u6807\u83dc\u5355\u3002Muestra un men\u00fa de icono con los idiomas seleccionados.\u05d4\u05e6\u05d2\u05ea \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05de\u05dc\u05d9\u05dd \u05e2\u05dd \u05d4\u05e9\u05e4\u05d5\u05ea \u05e9\u05e0\u05d1\u05d7\u05e8\u05d5.Exibe um menu de \u00edcone com os idiomas selecionados.\u9078\u629e\u3057\u305f\u8a00\u8a9e\u306e\u30a2\u30a4\u30b3\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu d''ic\u00f4nes avec les langues s\u00e9lectionn\u00e9es.Mostra una icona de men\u00fa amb els idiomes seleccionats.Geeft een pictogrammenu weer met de geselecteerde talen.Megjelen\u00edt egy ikonmen\u00fct a kiv\u00e1lasztott nyelvekkel.Zeigt ein Symbolmen\u00fc mit den ausgew\u00e4hlten Sprachen.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009<#assign normalizedDefaultLanguageId = stringUtil.toLowerCase(stringUtil.replace(languageId, "_", "-")) />\u000a\u000a\u0009
\u000a\u0009\u0009<@liferay_ui["icon-menu"]\u000a\u0009\u0009\u0009direction="left-side"\u000a\u0009\u0009\u0009icon=normalizedDefaultLanguageId\u000a\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009showWhenSingleIcon=true\u000a\u0009\u0009\u0009triggerLabel=normalizedDefaultLanguageId\u000a\u0009\u0009\u0009triggerType="button"\u000a\u0009\u0009>\u000a\u0009\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009\u0009<#if !entry.isSelected() && !entry.isDisabled()>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009entryLocale = entry.getLocale()\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009displayName = entry.getLongDisplayName() + "-" + entryLocale.getDisplayCountry(entryLocale)\u000a\u0009\u0009\u0009\u0009\u0009\u0009normalizedDefaultLanguageId = stringUtil.toLowerCase(stringUtil.replace(entry.getLanguageId(), "_", "-"))\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009\u0009\u0009\u0009icon=normalizedDefaultLanguageId\u000a\u0009\u0009\u0009\u0009\u0009\u0009iconCssClass="inline-item inline-item-before"\u000a\u0009\u0009\u0009\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009\u0009\u0009\u0009message=displayName\u000a\u0009\u0009\u0009\u0009\u0009\u0009url=entry.getURL()\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009
\u000a','0','0',32270,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('b2ec237f-5362-97ba-8faa-87a7182dde44',32272,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.583000','2019-05-09 00:27:52.583000',32265,0,32202,'LANGUAGE-LONG-TEXT-FTL','1.0','Pitk\u00e4 TekstiLong Text\u957f\u6587\u672cTexto largo\u05d8\u05e7\u05e1\u05d8 \u05d0\u05e8\u05d5\u05daTexto Longo\u9577\u3044\u30c6\u30ad\u30b9\u30c8Texte LongText LlargLange tekstHossz\u00fa sz\u00f6vegLanger Text','N\u00e4ytt\u00e4\u00e4 kunkin kielen koko nimen (esim. espanja).Displays the full name of each language (e.g. Spanish).\u663e\u793a\u6bcf\u79cd\u8bed\u8a00\u7684\u5168\u540d\uff08\u4f8b\u5982\uff0cSpanish\uff09\u3002Muestra el nombre completo de cada idioma (por ejemplo, espa\u00f1ol).\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d4\u05e9\u05dd \u05d4\u05de\u05dc\u05d0 \u05e9\u05dc \u05db\u05dc \u05e9\u05e4\u05d4 (\u05dc\u05de\u05e9\u05dc \u05e1\u05e4\u05e8\u05d3\u05d9\u05ea).Exibe o nome completo de cada idioma (por exemplo, Espanhol).\u5404\u8a00\u8a9e (\u30b9\u30da\u30a4\u30f3\u8a9e\u306a\u3069) \u3092\u5b8c\u5168\u306a\u540d\u524d\u3067\u8868\u793a\u3057\u307e\u3059Affiche le nom complet de chaque langue (e.x. espagnol).Mostra el nom sencer de cada idioma (p. ex. espanyol).Geeft de volledige naam weer van elke taal (bijv. Spaans).Megjelen\u00edti az egyes nyelvek teljes nev\u00e9t (pl. Spanyol).Zeigt den vollst\u00e4ndigen Namen einer jeden Sprache (z. B. Spanisch).','display',NULL,'ftl','\u000a\u000a<#if entries?has_content>\u000a\u0009<#list entries as entry>\u000a\u0009\u0009<#if !entry.isDisabled()>\u000a\u0009\u0009\u0009<@liferay_aui["a"]\u000a\u0009\u0009\u0009\u0009cssClass="language-entry-long-text"\u000a\u0009\u0009\u0009\u0009href=entry.getURL()\u000a\u0009\u0009\u0009\u0009label=entry.getLongDisplayName()\u000a\u0009\u0009\u0009\u0009lang=entry.getW3cLanguageId()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u0009\u000a','0','0',32273,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('6069036f-baff-7742-117d-d4fe2d7b4941',32275,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.590000','2019-05-09 00:27:52.590000',32265,0,32202,'LANGUAGE-SELECT-BOX-FTL','1.0','ValintalaatikkoSelect Box\u9009\u62e9\u6846Cuadro de selecci\u00f3n\u05ea\u05d9\u05d1\u05ea \u05d1\u05d7\u05d9\u05e8\u05d4Caixa de sele\u00e7\u00e3o\u30bb\u30ec\u30af\u30c8\u30dc\u30c3\u30af\u30b9S\u00e9lectionner la caseSelecciona la casellaSelectievakJel\u00f6lje beAuswahlkasten','N\u00e4ytt\u00e4\u00e4 valittuihin kieliin liittyv\u00e4n valintalaatikon.Displays a select box with the selected languages.\u663e\u793a\u5e26\u6709\u9009\u5b9a\u8bed\u8a00\u7684\u9009\u62e9\u6846\u3002Muestra una casilla con los idiomas seleccionados.\u05de\u05e6\u05d9\u05d2 \u05ea\u05d9\u05d1\u05ea \u05d1\u05d7\u05d9\u05e8\u05d4 \u05e2\u05dd \u05d4\u05e9\u05e4\u05d5\u05ea \u05e9\u05e0\u05d1\u05d7\u05e8\u05d5.Exibe uma caixa de sele\u00e7\u00e3o com os idiomas selecionados.\u30bb\u30ec\u30af\u30c8\u30dc\u30c3\u30af\u30b9\u3067\u9078\u629e\u3055\u308c\u305f\u8a00\u8a9e\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche une bo\u00eete de s\u00e9lection contenant les langues choisies.Mostra una casella amb els idiomes seleccionats.Geeft een selectievak weer met de geselecteerde talen.Megjelen\u00edt egy v\u00e1laszt\u00f3mez\u0151t a kiv\u00e1lasztott nyelvekkel.Zeigt einen Auswahlkasten mit den ausgew\u00e4hlten Sprachen an.','display',NULL,'ftl','<#if entries?has_content>\u000a\u0009<#assign languageId = localeUtil.toLanguageId(locale) />\u000a\u000a\u0009\u000a\u000a\u0009<@liferay_aui["form"]\u000a\u0009\u0009action=formAction\u000a\u0009\u0009method="post"\u000a\u0009\u0009name=''${namespace + formName}''\u000a\u0009\u0009useNamespace=false\u000a\u0009>\u000a\u0009\u0009<@liferay_aui["select"]\u000a\u0009\u0009\u0009changesContext=true\u000a\u0009\u0009\u0009id=''${namespace + formName}''\u000a\u0009\u0009\u0009label=""\u000a\u0009\u0009\u0009name=''${name}''\u000a\u0009\u0009\u0009onChange=''${namespace + "changeLanguage();"}''\u000a\u0009\u0009\u0009title="language"\u000a\u0009\u0009>\u000a\u0009\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009\u0009<@liferay_aui["option"]\u000a\u0009\u0009\u0009\u0009\u0009cssClass="taglib-language-option taglib-language-option-${entry.getW3cLanguageId()}"\u000a\u0009\u0009\u0009\u0009\u0009disabled=entry.isDisabled()\u000a\u0009\u0009\u0009\u0009\u0009label=entry.getLongDisplayName()\u000a\u0009\u0009\u0009\u0009\u0009lang=entry.getW3cLanguageId()\u000a\u0009\u0009\u0009\u0009\u0009selected=entry.isSelected()\u000a\u0009\u0009\u0009\u0009\u0009value=entry.getLanguageId()\u000a\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u0009<@liferay_aui["script"]>\u000a\u0009\u0009function ${namespace}changeLanguage() {\u000a\u0009\u0009\u0009var languageId = AUI.$(document.${namespace + formName}.${name}).val();\u000a\u000a\u0009\u0009\u0009submitForm(document.${namespace + formName});\u000a\u0009\u0009}\u000a\u0009\u000a','0','0',32276,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('9c0469f4-333a-9745-cc42-3b13faa3679e',32278,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.596000','2019-05-09 00:27:52.596000',32265,0,32202,'LANGUAGE-SHORT-TEXT-FTL','1.0','Lyhyt TekstiShort Text\u77ed\u6587\u672cTexto corto\u05d8\u05e7\u05e1\u05d8 \u05e7\u05e6\u05e8Texto curto\u77ed\u3044\u30c6\u30ad\u30b9\u30c8Texte CourtText curtKorte tekstR\u00f6vid sz\u00f6vegKurztext','N\u00e4ytt\u00e4\u00e4 jokaisen kielen lyhenteen (esim. ES).Displays an abbreviation of each language (e.g. ES).\u663e\u793a\u6bcf\u79cd\u8bed\u8a00\u7684\u7f29\u5199\uff08\u4f8b\u5982\uff0cES\uff09\u3002Muestra una abreviatura de cada idioma (por ejemplo, ES).\u05de\u05e6\u05d9\u05d2 \u05e7\u05d9\u05e6\u05d5\u05e8 \u05e9\u05dc \u05db\u05dc \u05e9\u05e4\u05d4 (\u05dc\u05de\u05e9\u05dc ES).Exibe uma abreviatura de cada idioma (por exemplo, ES).\u5404\u8a00\u8a9e (\u4f8b\u3048\u3070 ES) \u306e\u7701\u7565\u5f62\u3067\u8868\u793a\u3057\u307e\u3059\u3002Affiche une abr\u00e9viation pour chaque langue (par ex. : ES).Mostra una abreviatura de cada idioma (p. ex. ES).Geeft een afkorting weer van elke taal (bijv. ES).Megjelen\u00edti az egyes nyelvek r\u00f6vid\u00edt\u00e9s\u00e9t (pl. ES).Zeigt eine Abk\u00fcrzung jeder Sprache an (z. B. ES).','display',NULL,'ftl','\u000a\u000a<#if entries?has_content>\u000a\u0009<#list entries as entry>\u000a\u0009\u0009<#if !entry.isDisabled()>\u000a\u0009\u0009\u0009<@liferay_aui["a"]\u000a\u0009\u0009\u0009\u0009cssClass="language-entry-short-text"\u000a\u0009\u0009\u0009\u0009href=entry.getURL()\u000a\u0009\u0009\u0009\u0009label=entry.getShortDisplayName()\u000a\u0009\u0009\u0009\u0009lang=entry.getW3cLanguageId()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u0009\u000a','0','0',32279,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('106bbbcd-ab1c-9c32-5910-36b639867292',32281,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.603000','2019-05-09 00:27:52.603000',20015,0,32202,'ASSET-PUBLISHER-GEOLOCALIZED','1.0','KarttaMap\u6620\u5c04Mapa\u05de\u05e4\u05d4Mapa\u30de\u30c3\u30d4\u30f3\u30b0CarteMapaKaartT\u00e9rk\u00e9pLandkarte','N\u00e4ytt\u00e4\u00e4 maantieteelliset sis\u00e4ll\u00f6t kartalla.Displays geolocalized assets in a map.\u663e\u793a\u5728\u5730\u56fe\u4e0a\u5b9a\u4f4d\u7684\u8d44\u6e90Muestra activos geolocalizados en un mapa.\u05de\u05e6\u05d9\u05d2 \u05e0\u05db\u05e1\u05d9\u05dd \u05d4\u05de\u05db\u05d9\u05dc\u05d9\u05dd \u05de\u05d9\u05e7\u05d5\u05dd \u05d2\u05d9\u05d0\u05d5-\u05dc\u05d5\u05e7\u05dc\u05d9 \u05e2\u05dc \u05d2\u05d1\u05d9 \u05de\u05e4\u05d4.Exibe os conte\u00fados geolocalizados em um mapa.\u5730\u56f3\u5185\u306b\u30b8\u30aa\u30ed\u30fc\u30ab\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30a2\u30bb\u30c3\u30c8\u3092\u8868\u793a\u3059\u308bAffiche les assets g\u00e9olocalis\u00e9s dans un planMostra contingut geolocalitzat en un mapa.Toon geolocale content op een kaart.Megjelen\u00edti a f\u00f6ldrajzi tartalmakat egy t\u00e9rk\u00e9pen.Stellt Assets mit geografischen Informationen in einer Karte dar.','display',NULL,'ftl','<#assign\u000a\u0009defaultLatitude = -3.6833\u000a\u0009defaultLongitude = 40.40\u000a\u000a\u0009group = themeDisplay.getScopeGroup()\u000a\u000a\u0009mapsAPIProvider = group.getLiveParentTypeSettingsProperty("mapsAPIProvider")!""\u000a\u000a\u0009companyPortletPreferences = prefsPropsUtil.getPreferences(companyId)\u000a/>\u000a\u000a<#if validator.isNull(mapsAPIProvider)>\u000a\u0009<#assign mapsAPIProvider = companyPortletPreferences.getValue("mapsAPIProvider", "Google") />\u000a\u000a\u000a<#assign featureCollectionJSONObject = jsonFactoryUtil.createJSONObject() />\u000a\u000a<@liferay.silently featureCollectionJSONObject.put("type", "FeatureCollection") />\u000a\u000a<#assign featureJSONArray = jsonFactoryUtil.createJSONArray() />\u000a\u000a<#list entries as entry>\u000a\u0009<#assign\u000a\u0009\u0009assetRenderer = entry.getAssetRenderer()\u000a\u000a\u0009\u0009ddmFormValuesReader = assetRenderer.getDDMFormValuesReader()\u000a\u000a\u0009\u0009ddmFormFieldValues = ddmFormValuesReader.getDDMFormFieldValues("ddm-geolocation")\u000a\u000a\u0009\u0009coordinatesJSONObjects = []\u000a\u0009/>\u000a\u000a\u0009<#list ddmFormFieldValues as ddmFormFieldValue>\u000a\u0009\u0009<#assign\u000a\u0009\u0009\u0009value = ddmFormFieldValue.getValue()\u000a\u000a\u0009\u0009\u0009coordinatesJSONObject = jsonFactoryUtil.createJSONObject(value.getString(locale))\u000a\u000a\u0009\u0009\u0009coordinatesJSONObjects = coordinatesJSONObjects + [coordinatesJSONObject]\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u0009<#list coordinatesJSONObjects as coordinatesJSONObject>\u000a\u0009\u0009<#assign featureJSONObject = jsonFactoryUtil.createJSONObject() />\u000a\u000a\u0009\u0009<@liferay.silently featureJSONObject.put("type", "Feature") />\u000a\u000a\u0009\u0009<#assign geometryJSONObject = jsonFactoryUtil.createJSONObject() />\u000a\u000a\u0009\u0009<@liferay.silently geometryJSONObject.put("type", "Point") />\u000a\u000a\u0009\u0009<#assign coordinatesJSONArray = [coordinatesJSONObject.getDouble("longitude"), coordinatesJSONObject.getDouble("latitude")] />\u000a\u000a\u0009\u0009<@liferay.silently geometryJSONObject.put("coordinates", coordinatesJSONArray) />\u000a\u000a\u0009\u0009<@liferay.silently featureJSONObject.put("geometry", geometryJSONObject) />\u000a\u000a\u0009\u0009<#assign propertiesJSONObject = jsonFactoryUtil.createJSONObject() />\u000a\u000a\u0009\u0009<@liferay.silently propertiesJSONObject.put("title", assetRenderer.getTitle(locale)) />\u000a\u000a\u0009\u0009<#assign entryAbstract>\u000a\u0009\u0009\u0009<@getAbstract asset=entry />\u000a\u0009\u0009\u000a\u000a\u0009\u0009<@liferay.silently propertiesJSONObject.put("abstract", entryAbstract) />\u000a\u000a\u0009\u0009<#if stringUtil.equals(mapsAPIProvider, "Google")>\u000a\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009images = {\u000a\u0009\u0009\u0009\u0009\u0009"com.liferay.document.library.kernel.model.DLFileEntry": "${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/green-dot.png",\u000a\u0009\u0009\u0009\u0009\u0009"com.liferay.portlet.dynamicdatalists.model.DDLRecord": "${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/red-dot.png",\u000a\u0009\u0009\u0009\u0009\u0009"com.liferay.journal.model.JournalArticle": "${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/blue-dot.png",\u000a\u0009\u0009\u0009\u0009\u0009"default": "${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/yellow-dot.png"\u000a\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009<#if images?keys?seq_contains(entry.getClassName())>\u000a\u0009\u0009\u0009\u0009<@liferay.silently propertiesJSONObject.put("icon", images[entry.getClassName()]) />\u000a\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009<@liferay.silently propertiesJSONObject.put("icon", images["default"]) />\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u000a\u0009\u0009<@liferay.silently featureJSONObject.put("properties", propertiesJSONObject) />\u000a\u000a\u0009\u0009<@liferay.silently featureJSONArray.put(featureJSONObject) />\u000a\u0009\u000a\u000a\u000a<@liferay.silently featureCollectionJSONObject.put("features", featureJSONArray) />\u000a\u000a\u000a\u000a<@liferay_map["map-display"]\u000a\u0009name=''Map''\u000a\u0009points="${featureCollectionJSONObject}"\u000a/>\u000a\u000a<@liferay_aui.script use="liferay-map-base">\u000a\u0009Liferay.componentReady(''<@portlet.namespace />Map'').then(\u000a\u0009\u0009function(map) {\u000a\u0009\u0009\u0009map.on(\u000a\u0009\u0009\u0009\u0009''featureClick'',\u000a\u0009\u0009\u0009\u0009function(event) {\u000a\u0009\u0009\u0009\u0009\u0009var feature = event.feature;\u000a\u000a\u0009\u0009\u0009\u0009\u0009map.openDialog(\u000a\u0009\u0009\u0009\u0009\u0009\u0009{\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009content: feature.getProperty(''abstract''),\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009marker: feature.getMarker(),\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009position: feature.getGeometry().get(''location'')\u000a\u0009\u0009\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009\u0009\u0009);\u000a\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009);\u000a\u0009\u0009}\u000a\u0009);\u000a\u000a\u000a<#macro getAbstract asset>\u000a\u0009
\u000a\u0009\u0009<#assign\u000a\u0009\u0009\u0009showEditURL = paramUtil.getBoolean(renderRequest, "showEditURL", true)\u000a\u000a\u0009\u0009\u0009assetRenderer = asset.getAssetRenderer()\u000a\u0009\u0009/>\u000a\u000a\u0009\u0009<#if showEditURL && assetRenderer.hasEditPermission(permissionChecker)>\u000a\u0009\u0009\u0009<#assign redirectURL = renderResponse.createLiferayPortletURL(themeDisplay.getPlid(), themeDisplay.getPortletDisplay().getId(), "RENDER_PHASE", false) />\u000a\u000a\u0009\u0009\u0009${redirectURL.setParameter("mvcPath", "/add_asset_redirect.jsp")}\u000a\u000a\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState("POP_UP"), redirectURL)\u000a\u000a\u0009\u0009\u0009\u0009taglibEditURL = "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()) + "''});"\u000a\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009<@liferay_ui.icon\u000a\u0009\u0009\u0009\u0009image="edit"\u000a\u0009\u0009\u0009\u0009label=true\u000a\u0009\u0009\u0009\u0009message="edit"\u000a\u0009\u0009\u0009\u0009url=taglibEditURL\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#if assetRenderer.getThumbnailPath(renderRequest)??>\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#assign assetURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, assetRenderer, asset, !stringUtil.equals(assetLinkBehavior, "showFullContent")) />\u000a\u000a\u0009\u0009
\u000a\u0009\u0009\u0009

${assetRenderer.getTitle(locale)}

\u000a\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009${assetRenderer.getSummary(renderRequest, renderResponse)}\u000a\u0009\u0009\u0009
\u000a\u0009\u0009
\u000a\u000a\u0009\u0009
\u000a\u0009\u0009\u0009${languageUtil.get(locale, "read-more")} »\u000a\u0009\u0009
\u000a\u0009
\u000a','0','0',32282,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('71517fa6-f831-5252-7fab-d506789a10c6',32284,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:52.610000','2019-05-09 00:27:52.610000',20015,0,32202,'ASSET-PUBLISHER-RICH-SUMMARY-FTL','1.0','Muotoiltu yhteenvetoRich Summary\u4e30\u5bcc\u603b\u7ed3Resumen completo\u05ea\u05e7\u05e6\u05d9\u05e8 \u05e2\u05e9\u05d9\u05e8Sum\u00e1rio Rico\u8981\u7d04\uff08\u6587\u5b57\u6570\u591a\u3081\uff09Sommaire enrichiResum enriquitRijke samenvattingB\u0151 \u00f6sszes\u00edt\u0151Rich-Text-Zusammenfassung','N\u00e4ytt\u00e4\u00e4 lyhenteet, kuvakkeet, liittyv\u00e4t sis\u00e4ll\u00f6t ja sis\u00e4lt\u00f6jen tulosta/muokkaa toiminnot. Voit ottaa mukaan my\u00f6s sis\u00e4lt\u00f6jen kirjanmerkit ja arvostelut.Displays abstracts, icons, related assets, and print/edit actions for assets. Optionally include asset bookmarks and ratings.\u663e\u793a\u6458\u8981\u3001\u56fe\u6807\u3001\u76f8\u5173\u8d44\u4ea7\u4ee5\u53ca\u8d44\u4ea7\u7684\u6253\u5370\u548c\u7f16\u8f91\u64cd\u4f5c\u3002\u53ef\u9009\u62e9\u6027\u5305\u542b\u8d44\u4ea7\u4e66\u7b7e\u548c\u8bc4\u5206\u3002Muestra abstractos, iconos, activos relacionados e imprime/edita acciones para activos. Opcionalmente incluye marcadores de activos y calificaciones.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e7\u05e6\u05d9\u05e8\u05d9\u05dd, \u05e1\u05de\u05dc\u05d9\u05dd, \u05e0\u05db\u05e1\u05d9\u05dd \u05e7\u05e9\u05d5\u05e8\u05d9\u05dd \u05d5\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea \u05d4\u05d3\u05e4\u05e1\u05d4/\u05e2\u05e8\u05d9\u05db\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05e0\u05db\u05e1\u05d9\u05dd. \u05d0\u05d5\u05e4\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9\u05ea \u05de\u05db\u05d9\u05dc \u05e1\u05d9\u05de\u05e0\u05d9\u05d5\u05ea \u05e0\u05db\u05e1\u05d9\u05dd \u05d5\u05d3\u05d9\u05e8\u05d5\u05d2\u05d9\u05dd.Exibe abstracts, \u00edcones, conte\u00fados relacionados e a\u00e7\u00f5es de imprimir/editar para os conte\u00fados. Opcionalmente, inclui marcadores e classifica\u00e7\u00f5es de conte\u00fados.\u6982\u8981\u3001\u30a2\u30a4\u30b3\u30f3\u3001\u95a2\u9023\u3059\u308b\u30a2\u30bb\u30c3\u30c8\u3001\u30a2\u30bb\u30c3\u30c8\u306e\u5370\u5237/\u7de8\u96c6\u3092\u8868\u793a\u3059\u308b\u3002\u30a2\u30bb\u30c3\u30c8\u306e\u30d6\u30c3\u30af\u30de\u30fc\u30af\u3068\u8a55\u4fa1\u3082\u8a2d\u5b9a\u3067\u304d\u307e\u3059Affiche les r\u00e9sum\u00e9s, icons, les assets relatifs, et les actions imprimer/\u00e9diter pour les assets. Facultativement inclut les signets et les notations d''assets.Mostra resums, icones, continguts relacionats i accions d''impressi\u00f3 o edici\u00f3 per continguts. Opcionalment, inclou enlla\u00e7os i valoracions.Toon samenvattingen, pictogrammen, gerelateerde content en afdruk en bewerk acties voor content. Voeg optioneel bladwijzers en beoordelingen toe.Megjelen\u00edti a kivonatokat, ikonokat, a kapcsol\u00f3d\u00f3 tartalmakat, \u00e9s a nyomtat\u00e1si/szerkeszt\u00e9si m\u0171veleteket a tarlamakhoz. Opcion\u00e1lisan tartalmazza a tartalom k\u00f6nyvjelz\u0151ket \u00e9s \u00e9rt\u00e9kel\u00e9seket.Stellt Kurzfassungen, Icons, verwandte Assets sowie Druck- und Bearbeitungsoptionen f\u00fcr Assets dar. Kann auch Bookmarks und Bewertungen enthalten.','display',NULL,'ftl','<#if !entries?has_content>\u000a\u0009<#if !themeDisplay.isSignedIn()>\u000a\u0009\u0009${renderRequest.setAttribute("PORTLET_CONFIGURATOR_VISIBILITY", true)}\u000a\u0009\u000a\u000a\u0009
\u000a\u0009\u0009<@liferay_ui["message"] key="there-are-no-results" />\u000a\u0009
\u000a\u000a\u000a<#list entries as entry>\u000a\u0009<#assign\u000a\u0009\u0009entry = entry\u000a\u000a\u0009\u0009assetRenderer = entry.getAssetRenderer()\u000a\u000a\u0009\u0009entryTitle = htmlUtil.escape(assetRenderer.getTitle(locale))\u000a\u000a\u0009\u0009viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, assetRenderer, entry, !stringUtil.equals(assetLinkBehavior, "showFullContent"))\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@getPrintIcon />\u000a\u000a\u0009\u0009\u0009<@getFlagsIcon />\u000a\u000a\u0009\u0009\u0009<@getEditIcon />\u000a\u0009\u0009
\u000a\u000a\u0009\u0009

\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009${entryTitle}\u000a\u0009\u0009\u0009\u000a\u0009\u0009

\u000a\u000a\u0009\u0009<@getMetadataField fieldName="tags" />\u000a\u000a\u0009\u0009<@getMetadataField fieldName="create-date" />\u000a\u000a\u0009\u0009<@getMetadataField fieldName="view-count" />\u000a\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@getSocialBookmarks />\u000a\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009<@getMetadataField fieldName="author" />\u000a\u000a\u0009\u0009\u0009\u0009${htmlUtil.escape(assetRenderer.getSummary(renderRequest, renderResponse))}\u000a\u000a\u0009\u0009\u0009\u0009<@liferay.language key="read-more" /><@liferay.language key="about" />${entryTitle} »\u000a\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009<@getRatings />\u000a\u000a\u0009\u0009\u0009<@getRelatedAssets />\u000a\u000a\u0009\u0009\u0009<@getDiscussion />\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u000a<#macro getDiscussion>\u000a\u0009<#if getterUtil.getBoolean(enableComments) && assetRenderer.isCommentable()>\u000a\u0009\u0009
\u000a\u000a\u0009\u0009<#assign discussionURL = renderResponse.createActionURL() />\u000a\u000a\u0009\u0009${discussionURL.setParameter("javax.portlet.action", "invokeTaglibDiscussion")}\u000a\u000a\u0009\u0009<@liferay_comment["discussion"]\u000a\u0009\u0009\u0009className=entry.getClassName()\u000a\u0009\u0009\u0009classPK=entry.getClassPK()\u000a\u0009\u0009\u0009formAction=discussionURL?string\u000a\u0009\u0009\u0009formName="fm" + entry.getClassPK()\u000a\u0009\u0009\u0009ratingsEnabled=getterUtil.getBoolean(enableCommentRatings)\u000a\u0009\u0009\u0009redirect=currentURL\u000a\u0009\u0009\u0009userId=assetRenderer.getUserId()\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getEditIcon>\u000a\u0009<#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\u000a\u0009\u0009<#assign redirectURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${redirectURL.setParameter("mvcPath", "/add_asset_redirect.jsp")}\u000a\u0009\u0009${redirectURL.setWindowState("pop_up")}\u000a\u000a\u0009\u0009<#assign editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState("pop_up"), redirectURL)!"" />\u000a\u000a\u0009\u0009<#if validator.isNotNull(editPortletURL)>\u000a\u0009\u0009\u0009<#assign title = languageUtil.format(locale, "edit-x", entryTitle, false) />\u000a\u000a\u0009\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009\u0009cssClass="icon-monospaced visible-interaction"\u000a\u0009\u0009\u0009\u0009icon="pencil"\u000a\u0009\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009\u0009message=title\u000a\u0009\u0009\u0009\u0009url="javascript:Liferay.Util.openWindow({id:''" + renderResponse.getNamespace() + "editAsset'', title: ''" + title + "'', uri:''" + htmlUtil.escapeURL(editPortletURL.toString()) + "''});"\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u000a<#macro getFlagsIcon>\u000a\u0009<#if getterUtil.getBoolean(enableFlags)>\u000a\u0009\u0009<@liferay_flags["flags"]\u000a\u0009\u0009\u0009className=entry.getClassName()\u000a\u0009\u0009\u0009classPK=entry.getClassPK()\u000a\u0009\u0009\u0009contentTitle=entry.getTitle(locale)\u000a\u0009\u0009\u0009label=false\u000a\u0009\u0009\u0009reportedUserId=entry.getUserId()\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getMetadataField\u000a\u0009fieldName\u000a>\u000a\u0009<#if stringUtil.split(metadataFields)?seq_contains(fieldName)>\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u000a<#macro getPrintIcon>\u000a\u0009<#if getterUtil.getBoolean(enablePrint)>\u000a\u0009\u0009<#assign printURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${printURL.setParameter("mvcPath", "/view_content.jsp")}\u000a\u0009\u0009${printURL.setParameter("assetEntryId", entry.getEntryId()?string)}\u000a\u0009\u0009${printURL.setParameter("viewMode", "print")}\u000a\u0009\u0009${printURL.setParameter("type", entry.getAssetRendererFactory().getType())}\u000a\u0009\u0009${printURL.setWindowState("pop_up")}\u000a\u000a\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009iconCssClass="icon-print"\u000a\u0009\u0009\u0009message="print"\u000a\u0009\u0009\u0009url="javascript:Liferay.Util.openWindow({id:''" + renderResponse.getNamespace() + "printAsset'', title: ''" + languageUtil.format(locale, "print-x-x", ["hide-accessible", entryTitle], false) + "'', uri: ''" + htmlUtil.escapeURL(printURL.toString()) + "''});"\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getRatings>\u000a\u0009<#if getterUtil.getBoolean(enableRatings) && assetRenderer.isRatable()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay_ui["ratings"]\u000a\u0009\u0009\u0009\u0009className=entry.getClassName()\u000a\u0009\u0009\u0009\u0009classPK=entry.getClassPK()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009
\u000a\u0009\u000a\u000a\u000a<#macro getRelatedAssets>\u000a\u0009<#if getterUtil.getBoolean(enableRelatedAssets)>\u000a\u0009\u0009<@liferay_asset["asset-links"]\u000a\u0009\u0009\u0009assetEntryId=entry.getEntryId()\u000a\u0009\u0009\u0009viewInContext=!stringUtil.equals(assetLinkBehavior, "showFullContent")\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getSocialBookmarks>\u000a\u0009<@liferay_social_bookmarks["bookmarks"]\u000a\u0009\u0009className=entry.getClassName()\u000a\u0009\u0009classPK=entry.getClassPK()\u000a\u0009\u0009displayStyle="${socialBookmarksDisplayStyle}"\u000a\u0009\u0009target="_blank"\u000a\u0009\u0009title=entry.getTitle(locale)\u000a\u0009\u0009url=viewURL\u000a\u0009/>\u000a','0','0',32285,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('7fb11eb4-3b8a-06cd-fa6d-b9c4af3f6a06',32506,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:56.217000','2019-05-09 00:27:56.217000',31809,32503,28301,'BASIC-WEB-CONTENT','1.0','Tavallinen web-sis\u00e4lt\u00f6Basic Web Content\u57fa\u672c Web \u5185\u5bb9Contenido web b\u00e1sico\u05ea\u05d5\u05db\u05df \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8\u05d9 \u05d1\u05e1\u05d9\u05e1\u05d9Conte\u00fado Web b\u00e1sico\u57fa\u672cWeb\u30b3\u30f3\u30c6\u30f3\u30c4Contenu web de baseContigut web b\u00e0sicBasiswebcontentAlapvet\u0151 webtartalomEinfacher Webcontent','','display','create','ftl','${content.getData()}','1','0',32507,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('c56d5b12-7ec6-7fb0-d21d-c71a4a94d70b',32701,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:56.910000','2019-05-09 00:27:56.910000',30901,0,32202,'BLOGS-BASIC-FTL','1.0','PerusBasic\u57fa\u672c\u7684B\u00e1sico\u05d1\u05e1\u05d9\u05e1\u05d9B\u00e1sico\u901a\u5e38\u306e\u691c\u7d22\u306b\u623b\u308bBasiqueB\u00e0sicBasisEgyszer\u0171Einfach','N\u00e4ytt\u00e4\u00e4 blogien otsikot, tekij\u00e4t ja lyhenteet lyhyestiDisplays titles, authors, and abstracts compactly for blog entries.\u7b80\u4ecb\u663e\u793a\u535a\u5ba2\u7684\u540d\u5b57\uff0c\u4f5c\u8005\u548c\u6458\u8981\u3002Muestra de forma compacta t\u00edtulos, autores y res\u00famenes para las entradas del blog.\u05de\u05e6\u05d9\u05d2 \u05db\u05d5\u05ea\u05e8\u05d9\u05dd, \u05de\u05d7\u05d1\u05e8\u05d9\u05dd \u05d5\u05de\u05e7\u05e6\u05e8 \u05d1\u05d0\u05d5\u05e4\u05df \u05e7\u05d5\u05de\u05e4\u05e7\u05d8\u05d9 \u05e2\u05d1\u05d5\u05e8 \u05de\u05d0\u05de\u05e8\u05d9 \u05d1\u05dc\u05d5\u05d2.Exibe t\u00edtulos, autores e resumos compactamente para posts de blog.\u30bf\u30a4\u30c8\u30eb\u3001\u4f5c\u6210\u8005\u3001\u8981\u7d04\u306f\u3001\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc\u7528\u306b\u5c0f\u3055\u304f\u307e\u3068\u3081\u3089\u308c\u307e\u3059Affiche titres, auteurs, et abstraits de mani\u00e8re compacte pour les entr\u00e9es de blog.Mostra els titles, autors i resums de forma compacta per les entrades del blog.Geeft titels, auteurs en samenvatting compact weer voor blogs.Megjelen\u00edti kompakt m\u00f3don a c\u00edmeket, szerz\u0151ket \u00e9s kivonatokat a blog bejegyz\u00e9sekhez.Kompakte Darstellung von Titel, Autoren und Kurzfassungen f\u00fcr Blogeintr\u00e4ge.','display',NULL,'ftl','
\u000a\u0009<#if entries?has_content>\u000a\u0009\u0009<#list entries as curBlogEntry>\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign viewEntryPortletURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("mvcRenderCommandName", "/blogs/view_entry")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#if validator.isNotNull(curBlogEntry.getUrlTitle())>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("urlTitle", curBlogEntry.getUrlTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("entryId", curBlogEntry.getEntryId()?string)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009

\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${blogsEntryUtil.getDisplayTitle(resourceBundle, curBlogEntry)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009

\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009

${stringUtil.shorten(htmlUtil.stripHtml(curBlogEntry.getContent()), 400)}

\u000a\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#if blogsPortletInstanceConfiguration.enableComments()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#assign viewCommentsPortletURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewCommentsPortletURL.setParameter("mvcRenderCommandName", "/blogs/view_entry")}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewCommentsPortletURL.setParameter("scroll", renderResponse.getNamespace() + "discussionContainer")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if validator.isNotNull(curBlogEntry.getUrlTitle())>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewCommentsPortletURL.setParameter("urlTitle", curBlogEntry.getUrlTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewCommentsPortletURL.setParameter("entryId", curBlogEntry.getEntryId()?string)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@clay["icon"] symbol="comments" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009 ${commentManager.getCommentsCount("com.liferay.blogs.model.BlogsEntry", curBlogEntry.getEntryId())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#if blogsPortletInstanceConfiguration.enableRatings()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_ui["ratings"]\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009className="com.liferay.blogs.model.BlogsEntry"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009classPK=curBlogEntry.getEntryId()\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#assign bookmarkURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${bookmarkURL.setWindowState(windowStateFactory.getWindowState("NORMAL"))}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${bookmarkURL.setParameter("mvcRenderCommandName", "/blogs/view_entry")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if validator.isNotNull(curBlogEntry.getUrlTitle())>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${bookmarkURL.setParameter("urlTitle", curBlogEntry.getUrlTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${bookmarkURL.setParameter("entryId", curBlogEntry.getEntryId()?string)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_social_bookmarks["bookmarks"]\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009className="com.liferay.blogs.model.BlogsEntry"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009classPK=curBlogEntry.getEntryId()\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009displayStyle="inline"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009target="_blank"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009title=blogsEntryUtil.getDisplayTitle(resourceBundle, curBlogEntry)\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009types=blogsPortletInstanceConfiguration.socialBookmarksTypes()\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009url=portalUtil.getCanonicalURL(bookmarkURL.toString(), themeDisplay, themeDisplay.getLayout())\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u000a\u0009\u000a
','0','0',32702,NULL,NULL) -INSERT INTO DDMTEMPLATE VALUES('272aa6a2-ea31-098d-b32d-02bc480f18d8',32704,20135,20099,20103,NULL,20103,NULL,'2019-05-09 00:27:56.918000','2019-05-09 00:27:56.918000',30901,0,32202,'BLOGS-CARD-FTL','1.0','KorttiCard\u5361\u7247Tarjeta\u05db\u05bc\u05b7\u05e8\u05b0\u05d8\u05b4\u05d9\u05e1Cart\u00e3o\u30ab\u30fc\u30c9CarteTargetaKaartK\u00e1rtyaKarte','N\u00e4ytt\u00f6 kattaa kuvat, otsikot, tekij\u00e4t ja abstraktit k\u00e4ytt\u00e4en kortteja blogientryille.Display cover images, titles, authors and abstracts using cards for blog entries.\u4f7f\u7528\u5361\u7247\u4e3a\u535a\u5ba2\u6761\u76ee\u663e\u793a\u5c01\u9762\u3001\u6807\u9898\u3001\u4f5c\u8005\u548c\u6458\u8981\u3002Muestra im\u00e1genes de portada, t\u00edtulos, autores y abstractos con tarjetas de entradas de blog.\u05d4\u05e6\u05d2 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e0\u05d5\u05e9\u05d0, \u05db\u05d5\u05ea\u05e8\u05d5\u05ea, \u05de\u05d7\u05d1\u05e8\u05d9\u05dd \u05d5\u05ea\u05e7\u05e6\u05d9\u05e8\u05d9\u05dd \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05e7\u05dc\u05e4\u05d9\u05dd \u05e2\u05d1\u05d5\u05e8 \u05e8\u05e9\u05d5\u05de\u05d5\u05ea \u05d4\u05d1\u05dc\u05d5\u05d2.Exibir imagens da cobertura, t\u00edtulos, autores e resumos usando cart\u00f5es para entradas do blog.\u30d6\u30ed\u30b0 \u30a8\u30f3\u30c8\u30ea\u3092\u8868\u7d19\u306e\u753b\u50cf\u3001\u30bf\u30a4\u30c8\u30eb\u3001\u8457\u8005\u3068\u8981\u7d04\u3092\u30ab\u30fc\u30c9\u5f62\u5f0f\u3067\u8868\u793a\u3057\u307e\u3059Afficher dans les entr\u00e9es de blog les images de couvertures, les titres, les auteurs et les r\u00e9sum\u00e9s en utilisant des cartes.Mostra imatges de portada, t\u00edtols, autors i resums amb targetes per a les entrades del blog.Toon cover-afbeeldingen, titels, auteurs en samenvattingen m. b. v. kaarten voor blogberichten.Bor\u00edt\u00f3k\u00e9pek, c\u00edmek, szerz\u0151k \u00e9s absztraktok megjelen\u00edt\u00e9se blogbejegyz\u00e9sek k\u00e1rty\u00e1i seg\u00edts\u00e9g\u00e9vel.Zeigen Sie Coverbilder, Titel, Autoren und Kurzfassungen mit Karten f\u00fcr Blog-Eintr\u00e4ge an.','display',NULL,'ftl','
\u000a\u0009<#if entries?has_content>\u000a\u0009\u0009<#list entries as curBlogEntry>\u000a\u0009\u0009\u0009<#if curBlogEntry.getCoverImageURL(themeDisplay)??>\u000a\u0009\u0009\u0009\u0009<#assign cardImage = true />\u000a\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009<#assign cardImage = false />\u000a\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009<#if cardImage>\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009thumbnail\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#assign viewEntryPortletURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("mvcRenderCommandName", "/blogs/view_entry")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if validator.isNotNull(curBlogEntry.getUrlTitle())>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("urlTitle", curBlogEntry.getUrlTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("entryId", curBlogEntry.getEntryId()?string)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009

\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${blogsEntryUtil.getDisplayTitle(resourceBundle, curBlogEntry)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009

\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#if cardImage>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009

${stringUtil.shorten(htmlUtil.stripHtml(curBlogEntry.getContent()), 150)}

\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009

${stringUtil.shorten(htmlUtil.stripHtml(curBlogEntry.getContent()), 400)}

\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u000a\u0009\u000a
','0','0',32705,NULL,NULL) -INSERT INTO DDMTEMPLATEVERSION VALUES(32205,20135,20099,20103,NULL,'2019-05-09 00:27:52.339000',32201,0,32203,'1.0','NuoletArrows\u7bad\u5934Flechas\u05d7\u05e6\u05d9\u05ddSetas\u77e2\u5370Fl\u00e8chesFletxesPijlenNyilakPfeile','N\u00e4ytt\u00e4\u00e4 murupolun, jossa jokainen navigointielementti n\u00e4kyy nuolena otsikkoineen ja linkkin\u00e4.Displays a breadcrumb in which every navigation element is represented by an arrow with its title and link.\u663e\u793a\u4e00\u4e2a\u9762\u5305\u5c51\u5bfc\u822a\uff0c\u5176\u4e2d\u6bcf\u4e00\u4e2a\u5bfc\u822a\u5143\u7d20\u90fd\u7531\u7bad\u5934\u53ca\u5176\u6807\u9898\u548c\u94fe\u63a5\u8868\u793a\u3002Muestra una ruta de navegaci\u00f3n donde cada elemento de navegaci\u00f3n se representa mediante una flecha con su t\u00edtulo y enlace.\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05e4\u05d9\u05e8\u05d5\u05e8\u05d9 \u05d4\u05dc\u05d7\u05dd \u05d1\u05d4\u05dd \u05db\u05dc \u05d0\u05dc\u05de\u05e0\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05d9\u05d5\u05e6\u05d2 \u05e2\u05dc-\u05d9\u05d3\u05d9 \u05d7\u05e5 \u05e2\u05dd \u05d4\u05db\u05d5\u05ea\u05e8\u05ea \u05d5\u05d4\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e9\u05dc\u05d5.Exibe um caminho de navega\u00e7\u00e3o onde cada elemento de navega\u00e7\u00e3o \u00e9 representado por uma seta com seu t\u00edtulo e link.\u3059\u3079\u3066\u306e\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u8981\u7d20\u304c\u77e2\u5370\u3068\u30bf\u30a4\u30c8\u30eb\u3001\u30ea\u30f3\u30af\u3067\u8868\u793a\u3055\u308c\u308b\u3088\u3046\u306b\u3001\u30d1\u30f3\u304f\u305a\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un fil d''Ariane dans lequel chaque \u00e9l\u00e9ment de navigation est repr\u00e9sent\u00e9 par une fl\u00e8che avec son propre titre et son propre lien.Mostra una ruta de navegaci\u00f3 en qu\u00e8 cada element de navegaci\u00f3 es representa amb una fletxa amb el seu t\u00edtol i enlla\u00e7.Geeft een broodkruimel weer waarin elk navigatie-element voorgesteld wordt door een pijl met een titel en link.Megjelen\u00edt egy \u00fark\u00f6vet\u0151t, amelyen minden navig\u00e1ci\u00f3s elemet egy ny\u00edl k\u00e9pvisel c\u00edmmel \u00e9s hivatkoz\u00e1ssal tartalmaz.Zeigt eine Breadcrumbnavigation an, bei der jedes Navigationselement durch einen Pfeil mit seinem Titel und einem Link dargestellt wird.','ftl','<#if entries?has_content>\u000a\u0009<@liferay_util["html-top"]>\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.339000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32208,20135,20099,20103,NULL,'2019-05-09 00:27:52.378000',32201,0,32206,'1.0','VaakasuuntainenHorizontal\u6c34\u5e73Horizontal\u05d0\u05d5\u05e4\u05e7\u05d9Horizontal\u6c34\u5e73\u65b9\u5411Horizontal(e)HoritzontalHorizontaalV\u00edzszintesHorizontal','N\u00e4ytt\u00e4\u00e4 murupolun vaakasuoraan.Displays a breadcrumb horizontally.\u6c34\u5e73\u663e\u793a\u9762\u5305\u5c51\u5bfc\u822a\u3002Muestra una ruta de navegaci\u00f3n horizontalmente.\u05de\u05e6\u05d9\u05d2 \u05e4\u05d9\u05e8\u05d5\u05e8\u05d9 \u05dc\u05d7\u05dd \u05d0\u05d5\u05e4\u05e7\u05d9\u05ea.Exibe um caminho de navega\u00e7\u00e3o horizontalmente.\u30d1\u30f3\u304f\u305a\u30ea\u30b9\u30c8\u3092\u3092\u6c34\u5e73\u65b9\u5411\u306b\u8868\u793a\u3057\u307e\u3059Affiche un fil d''Ariane de mani\u00e8re horizontale.Mostra una ruta de navegaci\u00f3 horitzontalment.Geeft een broodkruimel horizontaal weer.Megjelen\u00edt egy \u00fatk\u00f6vet\u0151jelet v\u00edzszintesen.Zeigt eine Breadcrumbnavigation horizontal an.','ftl','<#if entries?has_content>\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.378000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32211,20135,20099,20103,NULL,'2019-05-09 00:27:52.385000',32201,0,32209,'1.0','PystysuoraVertical\u5782\u76f4Vertical\u05d0\u05e0\u05db\u05d9Vertical\u5782\u76f4\u65b9\u5411VerticalVerticalVerticaalF\u00fcgg\u0151legesVertikal','N\u00e4ytt\u00e4\u00e4 murupolun pystysuoraan.Displays a breadcrumb vertically.\u5782\u76f4\u663e\u793a\u9762\u5305\u5c51\u5bfc\u822a\u3002Muestra una ruta de navegaci\u00f3n verticalmente.\u05de\u05e6\u05d9\u05d2 \u05e4\u05d9\u05e8\u05d5\u05e8\u05d9 \u05dc\u05d7\u05dd \u05d0\u05e0\u05db\u05d9\u05ea.Exibe um caminho de navega\u00e7\u00e3o verticalmente.\u30d1\u30f3\u304f\u305a\u30ea\u30b9\u30c8\u3092\u3092\u5782\u76f4\u65b9\u5411\u306b\u8868\u793a\u3057\u307e\u3059Affiche un fil d''Ariane vertical.Mostra una ruta de navegaci\u00f3 verticalment.Geeft een broodkruimel verticaal weer.Megjelen\u00edt egy \u00fatk\u00f6vet\u0151jelet f\u00fcgg\u0151legesen.Zeigt eine Breadcrumbnavigation vertikal an.','ftl','<#if entries?has_content>\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.385000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32214,20135,20099,20103,NULL,'2019-05-09 00:27:52.396000',28202,0,32212,'1.0','SosiaalinenSocial\u793e\u4ea4Social\u05d7\u05d1\u05e8\u05ea\u05d9Social\u30bd\u30fc\u30b7\u30e3\u30ebSocialSocialSociaalK\u00f6z\u00f6ss\u00e9giSocial','N\u00e4ytt\u00e4\u00e4 sosiaaliset kirjanmerkit ja arvostelut wikisivuilla ja niiden alisivuilla.Displays social bookmarks and ratings for wiki pages and their child pages.\u663e\u793a\u793e\u4ea4\u4e66\u7b7e\u548c\u7ef4\u57fa\u9875\u7684\u8bc4\u5206\u548c\u5b83\u4eec\u7684\u5b50\u9875\u3002Muestra los marcadores sociales y las clasificaciones para p\u00e1ginas wiki y sus p\u00e1ginas secundarias.\u05de\u05e6\u05d9\u05d2 \u05e1\u05d9\u05de\u05e0\u05d9\u05d5\u05ea \u05d7\u05d1\u05e8\u05ea\u05d9\u05d5\u05ea \u05d5\u05d3\u05d9\u05e8\u05d5\u05d2\u05d9\u05dd \u05e2\u05d1\u05d5\u05e8 \u05d3\u05e4\u05d9 \u05d5\u05d5\u05d9\u05e7\u05d9 \u05d5\u05d4\u05d3\u05e4\u05d9\u05dd \u05d4\u05d1\u05e0\u05d9\u05dd \u05e9\u05dc\u05d4\u05dd.Exibe marcadores sociais e avalia\u00e7\u00f5es para p\u00e1ginas da wiki e suas p\u00e1ginas filhas.Wiki\u30da\u30fc\u30b8\u3068\u305d\u306e\u30b5\u30d6\u30da\u30fc\u30b8\u7528\u306e\u30bd\u30fc\u30b7\u30e3\u30eb\u30d6\u30c3\u30af\u30de\u30fc\u30af\u3068\u8a55\u4fa1\u3092\u8868\u793a\u3059\u308bAffiche les signets sociaux and les notations pour page wiki et leur pages enfants.Mostra adreces d''inter\u00e8s socials i classificacions per a planes del wiki.Geeft sociale favorieten en waarderingen van wikipagina''s en onderliggende wikipagina''s weer.Megjelen\u00edti a k\u00f6z\u00f6ss\u00e9gi k\u00f6nyvjelz\u0151ket \u00e9s \u00e9rt\u00e9kel\u00e9seket a wiki oldalak \u00e9s gyermek oldalaik r\u00e9sz\u00e9re.Darstellung f\u00fcr Social Bookmarks und Bewertungen von Wikiseiten und deren Unterseiten.','ftl','<#assign\u000a\u0009wikiPageClassName = "com.liferay.wiki.model.WikiPage"\u000a\u000a\u0009assetRenderer = assetEntry.getAssetRenderer()\u000a/>\u000a\u000a
\u000a\u0009

${entry.getTitle()}

\u000a
\u000a\u000a
\u000a\u0009<@getEditIcon />\u000a\u000a\u0009<@getPageDetailsIcon />\u000a\u000a\u0009<@getPrintIcon />\u000a
\u000a\u000a
\u000a\u0009
\u000a\u0009\u0009${assetEntry.getViewCount()} <@liferay.language key="views" /> |\u000a\u000a\u0009\u0009<@liferay.language key="last-modified" /> ${dateUtil.getDate(entry.getModifiedDate(), "dd MMM yyyy - HH:mm:ss", locale)}\u000a\u000a\u0009\u0009<@liferay.language key="by" /> ${htmlUtil.escape(portalUtil.getUserName(entry.getUserId(), entry.getUserName()))}\u000a\u0009
\u000a\u000a\u0009
\u000a\u0009\u0009<@liferay_social_bookmarks["bookmarks"]\u000a\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009displayStyle="normal"\u000a\u0009\u0009\u0009target="_blank"\u000a\u0009\u0009\u0009title=entry.getTitle()\u000a\u0009\u0009\u0009url=viewURL\u000a\u0009\u0009/>\u000a\u000a\u0009\u0009${formattedContent}\u000a\u0009
\u000a\u000a\u0009
\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@getAddChildPageIcon />\u000a\u000a\u0009\u0009\u0009<@getAttatchmentsIcon />\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009
\u000a\u000a\u0009<@getRatings\u000a\u0009\u0009cssClass="page-ratings"\u000a\u0009\u0009entry=entry\u000a\u0009/>\u000a\u000a\u0009<@getRelatedAssets />\u000a
\u000a\u000a
\u000a\u0009
\u000a\u0009\u0009<#assign viewCategorizedPagesURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${viewCategorizedPagesURL.setParameter("mvcRenderCommandName", "/wiki/view_categorized_pages")}\u000a\u0009\u0009${viewCategorizedPagesURL.setParameter("nodeId", entry.getNodeId()?string)}\u000a\u000a\u0009\u0009<@liferay_ui["asset-categories-summary"]\u000a\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009portletURL=viewCategorizedPagesURL\u000a\u0009\u0009/>\u000a\u0009
\u000a\u000a\u0009
\u000a\u0009\u0009<#assign viewTaggedPagesURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${viewTaggedPagesURL.setParameter("mvcRenderCommandName", "/wiki/view_tagged_pages")}\u000a\u0009\u0009${viewTaggedPagesURL.setParameter("nodeId", entry.getNodeId()?string)}\u000a\u000a\u0009\u0009<@liferay_ui["asset-tags-summary"]\u000a\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009portletURL=viewTaggedPagesURL\u000a\u0009\u0009/>\u000a\u0009
\u000a
\u000a\u000a<#assign childPages = entry.getChildPages() />\u000a\u000a<#if (childPages?has_content)>\u000a\u0009
\u000a\u0009\u0009

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

\u000a\u000a\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009<#list childPages as childPage>\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009<#assign viewPageURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009${viewPageURL.setParameter("mvcRenderCommandName", "/wiki/view")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#assign childNode = childPage.getNode() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009${viewPageURL.setParameter("nodeName", childNode.getName())}\u000a\u0009\u0009\u0009\u0009\u0009${viewPageURL.setParameter("title", childPage.getTitle())}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009<@liferay.language key="page" />\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009<@liferay.language key="last-modified" />\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009<@liferay.language key="ratings" />\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009${childPage.getTitle()}\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009${dateUtil.getDate(childPage.getModifiedDate(),"dd MMM yyyy - HH:mm:ss", locale)} <@liferay.language key="by" /> ${htmlUtil.escape(portalUtil.getUserName(childPage.getUserId(), childPage.getUserName()))}\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009<@getRatings\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009cssClass="child-ratings"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009entry=childPage\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009
\u000a\u000a\u000a<@getDiscussion />\u000a\u000a<#macro getAddChildPageIcon>\u000a\u0009<#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\u000a\u0009\u0009<#assign addPageURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${addPageURL.setParameter("mvcRenderCommandName", "/wiki/edit_page")}\u000a\u0009\u0009${addPageURL.setParameter("redirect", currentURL)}\u000a\u0009\u0009${addPageURL.setParameter("nodeId", entry.getNodeId()?string)}\u000a\u0009\u0009${addPageURL.setParameter("title", "")}\u000a\u0009\u0009${addPageURL.setParameter("editTitle", "1")}\u000a\u0009\u0009${addPageURL.setParameter("parentTitle", entry.getTitle())}\u000a\u000a\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009iconCssClass="icon-plus"\u000a\u0009\u0009\u0009label=true\u000a\u0009\u0009\u0009message="add-child-page"\u000a\u0009\u0009\u0009url=addPageURL?string\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getAttatchmentsIcon>\u000a\u0009<#assign viewPageAttachmentsURL = renderResponse.createRenderURL() />\u000a\u000a\u0009${viewPageAttachmentsURL.setParameter("mvcRenderCommandName", "/wiki/view_page_attachments") }\u000a\u000a\u0009<@liferay_ui["icon"]\u000a\u0009\u0009iconCssClass="icon-paperclip"\u000a\u0009\u0009label=true\u000a\u0009\u0009message=''${entry.getAttachmentsFileEntriesCount() + languageUtil.get(locale, "attachments")}''\u000a\u0009\u0009url=viewPageAttachmentsURL?string\u000a\u0009/>\u000a\u000a\u000a<#macro getDiscussion>\u000a\u0009<#if validator.isNotNull(assetRenderer.getDiscussionPath()) && wikiPortletInstanceConfiguration.enableComments()>\u000a\u0009\u0009
\u000a\u000a\u0009\u0009<#assign discussionURL = renderResponse.createActionURL() />\u000a\u000a\u0009\u0009${discussionURL.setParameter("javax.portlet.action", "/wiki/" + assetRenderer.getDiscussionPath())}\u000a\u000a\u0009\u0009<@liferay_comment["discussion"]\u000a\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009formAction=discussionURL?string\u000a\u0009\u0009\u0009formName="fm2"\u000a\u0009\u0009\u0009ratingsEnabled=wikiPortletInstanceConfiguration.enableCommentRatings()\u000a\u0009\u0009\u0009redirect=currentURL\u000a\u0009\u0009\u0009subject=assetRenderer.getTitle(locale)\u000a\u0009\u0009\u0009userId=assetRenderer.getUserId()\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getEditIcon>\u000a\u0009<#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\u000a\u0009\u0009<#assign editPageURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${editPageURL.setParameter("mvcRenderCommandName", "/wiki/edit_page")}\u000a\u0009\u0009${editPageURL.setParameter("redirect", currentURL)}\u000a\u0009\u0009${editPageURL.setParameter("nodeId", entry.getNodeId()?string)}\u000a\u0009\u0009${editPageURL.setParameter("title", entry.getTitle())}\u000a\u000a\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009iconCssClass="icon-edit"\u000a\u0009\u0009\u0009message=entry.getTitle()\u000a\u0009\u0009\u0009url=editPageURL?string\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getPageDetailsIcon>\u000a\u0009<#assign viewPageDetailsURL = renderResponse.createRenderURL() />\u000a\u000a\u0009${viewPageDetailsURL.setParameter("mvcRenderCommandName", "/wiki/view_page_details")}\u000a\u0009${viewPageDetailsURL.setParameter("redirect", currentURL)}\u000a\u000a\u0009<@liferay_ui["icon"]\u000a\u0009\u0009iconCssClass="icon-file-alt"\u000a\u0009\u0009message="details"\u000a\u0009\u0009url=viewPageDetailsURL?string\u000a\u0009/>\u000a\u000a\u000a<#macro getPrintIcon>\u000a\u0009<#assign printURL = renderResponse.createRenderURL() />\u000a\u000a\u0009${printURL.setParameter("viewMode", "print")}\u000a\u0009${printURL.setWindowState("pop_up")}\u000a\u000a\u0009<#assign\u000a\u0009\u0009title = languageUtil.format(locale, "print-x-x", ["hide-accessible", htmlUtil.escape(assetRenderer.getTitle(locale))], false)\u000a\u0009\u0009taglibPrintURL = "javascript:Liferay.Util.openWindow({dialog: {width: 960}, id:''" + renderResponse.getNamespace() + "printAsset'', title: ''" + title + "'', uri: ''" + htmlUtil.escapeURL(printURL.toString()) + "''});"\u000a\u0009/>\u000a\u000a\u0009<@liferay_ui["icon"]\u000a\u0009\u0009iconCssClass="icon-print"\u000a\u0009\u0009message="print"\u000a\u0009\u0009url=taglibPrintURL\u000a\u0009/>\u000a\u000a\u000a<#macro getRatings\u000a\u0009cssClass\u000a\u0009entry\u000a>\u000a\u0009<#if wikiPortletInstanceConfiguration.enablePageRatings()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay_ui["ratings"]\u000a\u0009\u0009\u0009\u0009className=wikiPageClassName\u000a\u0009\u0009\u0009\u0009classPK=entry.getResourcePrimKey()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009
\u000a\u0009\u000a\u000a\u000a<#macro getRelatedAssets>\u000a\u0009<#if assetEntry?? && wikiPortletInstanceConfiguration.enableRelatedAssets()>\u000a\u0009\u0009<@liferay_ui["asset-links"] assetEntryId=assetEntry.getEntryId() />\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.396000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32218,20135,20099,20103,NULL,'2019-05-09 00:27:52.408000',32215,0,32216,'1.0','NavigointiNavigation\u5bfc\u822aNavegaci\u00f3n\u05e0\u05d9\u05d5\u05d5\u05d8Navega\u00e7\u00e3o\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3NavigationNavegaci\u00f3NavigatieNavig\u00e1ci\u00f3Navigation','N\u00e4ytt\u00e4\u00e4 RSS-sy\u00f6tteet navigaatiopalkissa vasemmassa paneelissa. Klikkaamalla sy\u00f6tett\u00e4 n\u00e4ytet\u00e4\u00e4n sy\u00f6tteen arvot oikeassa paneelissa.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.\u5728\u5de6\u4fa7\u9762\u677f\u4e0a\u663e\u793aRSS\u6e90\u7684\u5bfc\u822a\u680f\u3002\u5728\u53f3\u4fa7\u9762\u677f\u4e0a\u70b9\u51fbFeed\u663e\u793a\u63d0\u8981\u6761\u76ee\u7684\u5217\u8868\u3002Muestra las fuentes RSS como una barra de navegaci\u00f3n del panel izquierdo. Al hacer clic en una fuente se muestra una lista de entradas de la fuente en el panel derecho.\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d4\u05d6\u05e0\u05d5\u05ea \u05d4-RSS \u05db\u05e1\u05e8\u05d2\u05dc \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d1\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d4\u05e9\u05de\u05d0\u05dc\u05d9\u05ea. \u05dc\u05d7\u05d9\u05e6\u05d4 \u05e2\u05dc \u05d4\u05d6\u05e0\u05d4 \u05de\u05e6\u05d9\u05d2\u05d4 \u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc \u05e8\u05e9\u05d5\u05de\u05d5\u05ea \u05d4\u05d6\u05e0\u05d4 \u05d1\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d4\u05d9\u05de\u05e0\u05d9\u05ea.Exibe os feeds RSS como uma barra de navega\u00e7\u00e3o no painel esquerdo. Clicar em um feed exibe uma lista de entradas de feed no painel direito.RSS\u30d5\u30a3\u30fc\u30c9\u3092\u5de6\u306e\u30d1\u30cd\u30eb\u306b\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30d0\u30fc\u3068\u3057\u3066\u8868\u793a\u3057\u307e\u3059\u3002\u30d5\u30a3\u30fc\u30c9\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u53f3\u30d1\u30cd\u30eb\u306b\u30d5\u30a3\u30fc\u30c9\u306e\u5185\u5bb9\u304c\u30ea\u30b9\u30c8\u8868\u793a\u3055\u308c\u307e\u3059Affiche les flux RSS en tant que barre de navigation dans le panneau gauche. Cliquer sur un flux affiche une liste d''entr\u00e9es de flux sur le panneau droit.Mostra els canals RSS com una barra de navegaci\u00f3 en el tauler esquerra. Al fer un clic en un canal es mostraran la llista d''entrades en el tauler dret.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\u00edti az RSS h\u00edrcsatorn\u00e1kat navig\u00e1ci\u00f3s oszlopk\u00e9nt a bal oldalon. Egy h\u00edrcsatorn\u00e1ra kattintva megjelen\u00edti a h\u00edrcsatorna bejegyz\u00e9sek list\u00e1j\u00e1t a jobb oldalon.Stellt die RSS-Feeds als Navigationsleiste im linken Bereich dar. Nach Anklicken eines Feeds werden die entsprechenden Feedeintr\u00e4ge im rechten Bereich dargestellt.','ftl','<#assign rssPortletInstanceConfiguration = rssDisplayContext.getRSSPortletInstanceConfiguration() />\u000a\u000a\u000a\u000a<#if entries?has_content>\u000a\u0009<#assign dateFormat = "dd MMM yyyy - HH:mm:ss" />\u000a\u000a\u0009
\u000a\u0009\u0009
\u000a\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009<#list entries as curEntry>\u000a\u0009\u0009\u0009\u0009\u0009<#assign rssFeedEntries = curEntry.getRSSFeedEntries(themeDisplay) />\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if rssFeedEntries??>\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#list rssFeedEntries as rssFeedEntry>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if (rssFeedEntry_index > entriesPerFeed?number)>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#break>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#assign syndEntry = rssFeedEntry.getSyndEntry() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_aui["a"] href="${htmlUtil.escapeJSLink(rssFeedEntry.getSyndEntryLink())}">${htmlUtil.escape(syndEntry.getTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if rssPortletInstanceConfiguration.showFeedTitle() && syndEntry.getAuthor()??>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if syndEntry.getPublishedDate()??>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009iconCssClass="icon-calendar"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009label=true\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009message="${dateUtil.getDate(syndEntry.getPublishedDate(), dateFormat, locale)}"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${rssFeedEntry.getSanitizedContent()}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009
\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui["script"] use="aui-base,aui-tabview">\u000a\u0009\u0009new A.TabView(\u000a\u0009\u0009\u0009{\u000a\u0009\u0009\u0009\u0009srcNode: ''#<@portlet.namespace />feedsTab'',\u000a\u0009\u0009\u0009\u0009stacked: true,\u000a\u0009\u0009\u0009\u0009type: ''pills''\u000a\u0009\u0009\u0009}\u000a\u0009\u0009).render();\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.408000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32222,20135,20099,20103,NULL,'2019-05-09 00:27:52.427000',32219,0,32220,'1.0','KaruselliCarouselCarouselCarrusel\u05e7\u05e8\u05d5\u05e1\u05dc\u05d4Carrossel\u30ab\u30eb\u30fc\u30bb\u30ebCarrouselCarrusselCarrouselK\u00f6rhintaKarussel','N\u00e4ytt\u00e4\u00e4 kuvat karusellissa.Displays images in a carousel.\u628a\u56fe\u7247\u663e\u793a\u5728\u8f6c\u76d8\u4e2d\u3002Muestra im\u00e1genes en un carrusel.\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d4\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d1\u05e7\u05e8\u05d5\u05e1\u05dc\u05d4.Exibe imagens num carrossel.\u30ab\u30eb\u30fc\u30bb\u30eb\u5185\u306b\u753b\u50cf\u3092\u8868\u793aAffiche les images dans un carrousel.Mostra imatges en format carrusel.Geeft afbeeldingen weer in een carrousel.Megjelen\u00edti a k\u00e9peket k\u00f6rhintaszer\u0171en.Darstellung von Bildern in einem Karussell.','ftl','<#if entries?has_content>\u000a\u0009\u000a\u000a\u0009
\u000a\u0009\u0009<#assign imageMimeTypes = propsUtil.getArray("dl.file.entry.preview.image.mime.types") />\u000a\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009<#if imageMimeTypes?seq_contains(entry.getMimeType())>\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="aui-carousel">\u000a\u0009\u0009var carousel = new A.Carousel(\u000a\u0009\u0009\u0009{\u000a\u0009\u0009\u0009\u0009after: {\u000a\u0009\u0009\u0009\u0009\u0009responsive: function(event) {\u000a\u0009\u0009\u0009\u0009\u0009\u0009event.stopImmediatePropagation();\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009var boundingBox = event.currentTarget.get(''boundingBox'');\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009boundingBox.all(''.image-viewer-base-image-list, .image-viewer-base-image'').setStyles(\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009{\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009height: ''auto'',\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009maxHeight: event.height,\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009maxWidth: event.width,\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009width: ''auto''\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009\u0009\u0009\u0009);\u000a\u0009\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009\u0009},\u000a\u000a\u0009\u0009\u0009\u0009contentBox: ''#<@portlet.namespace />carousel'',\u000a\u0009\u0009\u0009\u0009height: 250,\u000a\u0009\u0009\u0009\u0009intervalTime: 2,\u000a\u0009\u0009\u0009\u0009width: 700\u000a\u0009\u0009\u0009}\u000a\u0009\u0009).render();\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.427000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32225,20135,20099,20103,NULL,'2019-05-09 00:27:52.439000',20178,0,32223,'1.0','LuettelovalikkoList Menu\u5217\u8868\u83dc\u5355Men\u00fa de lista\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e8\u05e9\u05d9\u05de\u05d5\u05eaMenu de lista\u30ea\u30b9\u30c8 \u30e1\u30cb\u30e5\u30fcMenu de ListeMen\u00fa de llistaLijstmenuLista men\u00fcListenmen\u00fc','N\u00e4ytt\u00e4\u00e4 navigointivalikon luettelolla.Displays a navigation menu with a list.\u663e\u793a\u5e26\u6709\u5217\u8868\u7684\u5bfc\u822a\u83dc\u5355\u3002Muestra un men\u00fa de navegaci\u00f3n con una lista.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e8\u05e9\u05d9\u05de\u05d4.Exibe um menu de navega\u00e7\u00e3o com uma lista.\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u30ea\u30b9\u30c8\u3067\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation avec une liste.Mostra un men\u00fa de navegaci\u00f3 amb una llista.Geeft een navigatiemenu weer met een lijst.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct egy list\u00e1val.Zeigt ein Navigationsmen\u00fc mit einer Liste.','ftl','<#include "${templatesPath}/NAVIGATION-MACRO-FTL" />\u000a\u000a<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign includeAllChildNavItems = false />\u000a\u000a\u0009<#if stringUtil.equals(includedLayouts, "all")>\u000a\u0009\u0009<#assign includeAllChildNavItems = true />\u000a\u0009\u000a\u000a\u0009
" class="list-menu">\u000a\u0009\u0009<@buildNavigation\u000a\u0009\u0009\u0009branchNavItems=branchNavItems\u000a\u0009\u0009\u0009cssClass="layouts"\u000a\u0009\u0009\u0009displayDepth=displayDepth\u000a\u0009\u0009\u0009includeAllChildNavItems=includeAllChildNavItems\u000a\u0009\u0009\u0009navItemLevel=1\u000a\u0009\u0009\u0009navItems=entries\u000a\u0009\u0009/>\u000a\u0009
\u000a',0,20103,NULL,'2019-05-09 00:27:52.439000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32228,20135,20099,20103,NULL,'2019-05-09 00:27:52.447000',20178,0,32226,'1.0','Pills VaakasuuntaPills HorizontalPills HorizontalGlobos horizontales\u05d2\u05dc\u05d5\u05dc\u05d5\u05ea \u05d0\u05d5\u05e4\u05e7\u05d9Pills Horizontal\u6c34\u5e73\u65b9\u5411\u306e\u30d4\u30eb\u5f62\u5f0fPilules horizontalesC\u00e0psules horitzontalsHorizontale pillenV\u00edzszintes tablett\u00e1kPills horizontal','N\u00e4ytt\u00e4\u00e4 navigointivalikon navigointikohteet pillerein\u00e4.Displays a navigation menu with navigation items shown as pills.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u836f\u4e38\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n que se muestran como globos.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05d2\u05dc\u05d5\u05dc\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o exibidos como pills.\u30d4\u30eb\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation dont les \u00e9l\u00e9ments sont affich\u00e9s sous la forme de pilules.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 que es mostren com a c\u00e0psules.Geeft een navigatiemenu weer met navigatie-items in de vorm van pillen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct tablett\u00e1kk\u00e9nt megjelen\u00edtett navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit Navigationselementen als Pills an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-pills navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.447000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32231,20135,20099,20103,NULL,'2019-05-09 00:27:52.461000',20178,0,32229,'1.0','Pills TasattuPills Justified\u4e24\u7aef\u5bf9\u9f50\u836f\u4e38Globos justificados\u05d2\u05dc\u05d5\u05dc\u05d5\u05ea \u05de\u05d5\u05e6\u05de\u05d3\u05d5\u05eaPills justificados\u7b49\u5e45\u30d4\u30eb\u5f62\u5f0fPilules justifi\u00e9esC\u00e0psules justificadesUitgevulde pillenSorkiz\u00e1rt tablett\u00e1kPills justiert','N\u00e4ytt\u00e4\u00e4 navigointivalikon tasatut navigointikohteet pillerein\u00e4.Displays a navigation menu with justified navigation items shown as pills.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u4e24\u7aef\u5bf9\u9f50\u7684\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u836f\u4e38\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n justificados que se muestran como globos.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05d5\u05e6\u05de\u05d3\u05d9\u05dd \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05d2\u05dc\u05d5\u05dc\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o justificados exibidos como pills.\u7b49\u5e45\u306e\u30d4\u30eb\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation dont les \u00e9l\u00e9ments justifi\u00e9s sont affich\u00e9s sous la forme de pilules.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 justificats que es mostren com a c\u00e0psules.Geeft een navigatiemenu weer met uitgevulde navigatie-items in de vorm van pillen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct tablett\u00e1kk\u00e9nt megjelen\u00edtett sorkiz\u00e1rt navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit justierten Navigationselementen als Pills an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-justified nav-pills navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.461000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32234,20135,20099,20103,NULL,'2019-05-09 00:27:52.468000',20178,0,32232,'1.0','Pills PinottuPills Stacked\u5806\u53e0\u836f\u4e38Globos apilados\u05d2\u05dc\u05d5\u05dc\u05d5\u05ea \u05de\u05d5\u05e2\u05e8\u05de\u05d5\u05eaPills empilhados\u7e26\u7a4d\u307f\u30d4\u30eb\u5f62\u5f0fPilules empil\u00e9esC\u00e0psules apiladesGestapelde pillenFeltornyozott tablett\u00e1kPills gestapelt','N\u00e4ytt\u00e4\u00e4 navigointivalikon pinoitut navigointikohteet pillerein\u00e4.Displays a navigation menu with stacked navigation items shown as pills.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u5806\u53e0\u7684\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u836f\u4e38\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n apilados que se muestran como globos.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05d5\u05e2\u05e8\u05de\u05d9\u05dd \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05d2\u05dc\u05d5\u05dc\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o empilhados exibidos como pills.\u7e26\u65b9\u5411\u306b\u4e26\u3079\u305f\u30d4\u30eb\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation dont les \u00e9l\u00e9ments empil\u00e9s sont affich\u00e9s sous la forme de pilules.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 apilats que es mostren com a c\u00e0psules.Geeft een navigatiemenu weer met gestapelde navigatie-items in de vorm van pillen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct tablett\u00e1kk\u00e9nt megjelen\u00edtett feltornyozott navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit gestapelten Navigationselementen als Pills an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-pills nav-stacked navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.468000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32237,20135,20099,20103,NULL,'2019-05-09 00:27:52.476000',20178,0,32235,'1.0','V\u00e4lilehdetTabs\u9009\u9879\u5361Pesta\u00f1as\u05dc\u05e9\u05d5\u05e0\u05d9\u05d5\u05eaGuias\u30bf\u30d6OngletsPestanyesTabbladenLapokReiter','N\u00e4ytt\u00e4\u00e4 navigointivalikon navigointikohteet v\u00e4lilehtin\u00e4.Displays a navigation menu with navigation items shown as tabs.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u9009\u9879\u5361\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n que se muestran como pesta\u00f1as.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05dc\u05e9\u05d5\u05e0\u05d9\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o exibidos como abas.\u30bf\u30d6\u5f62\u5f0f\u3067\u4e26\u3079\u305f\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u3092\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation dont les \u00e9l\u00e9ments sont affich\u00e9s sous la forme d''onglets.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 que es mostren com a pestanyes.Geeft een navigatiemenu weer met navigatie-items in de vorm van tabbladen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct f\u00fclekk\u00e9nt megjelen\u00edtett navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit Navigationselementen als Reiter an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-tabs navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.476000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32240,20135,20099,20103,NULL,'2019-05-09 00:27:52.483000',20178,0,32238,'1.0','V\u00e4lilehdet TasattuTabs Justified\u9009\u9879\u5361\u4e24\u7aef\u5bf9\u9f50Pesta\u00f1as justificadas\u05dc\u05e9\u05d5\u05e0\u05d9\u05d5\u05ea \u05de\u05d5\u05e6\u05de\u05d3\u05d5\u05eaGuias justificadas\u7b49\u5e45\u30d4\u30eb\u5f62\u5f0fOnglets justifi\u00e9sPestanyes justificadesUitgevulde tabbladenSorkiz\u00e1rt lapokReiter justiert','N\u00e4ytt\u00e4\u00e4 navigointivalikon navigointikohteet esitettyn\u00e4 v\u00e4lilehtin\u00e4.Displays a navigation menu with justified navigation items shown as tabs.\u663e\u793a\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u4e24\u7aef\u5bf9\u9f50\u7684\u5bfc\u822a\u9879\u663e\u793a\u4e3a\u9009\u9879\u5361\u3002Muestra un men\u00fa de navegaci\u00f3n con elementos de navegaci\u00f3n justificados que se muestran como pesta\u00f1as.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05d5\u05e6\u05de\u05d3\u05d9\u05dd \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05de\u05d5 \u05dc\u05e9\u05d5\u05e0\u05d9\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com itens de navega\u00e7\u00e3o justificados exibidos como guias.\u7b49\u5e45\u30bf\u30d6\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation dont les \u00e9l\u00e9ments justifi\u00e9s sont affich\u00e9s sous la forme d''onglets.Mostra un men\u00fa de navegaci\u00f3 amb elements de navegaci\u00f3 justificats que es mostren com a pestanyes.Geeft een navigatiemenu weer met uitgevulde navigatie-items in de vorm van tabbladen.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct f\u00fclekk\u00e9nt megjelen\u00edtett sorkiz\u00e1rt navig\u00e1ci\u00f3s elemekkel.Zeigt ein Navigationsmen\u00fc mit justierten Navigationselementen als Reiter an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-justified nav-tabs navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.483000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32243,20135,20099,20103,NULL,'2019-05-09 00:27:52.505000',20178,0,32241,'1.0','Palkki minimityylill\u00e4Bar minimally styled\u5bfc\u822a\u680f\u6700\u5c0f\u5316\u6837\u5f0fBarra con estilo m\u00ednimo\u05e1\u05e8\u05d2\u05dc \u05d1\u05e2\u05d9\u05e6\u05d5\u05d1 \u05de\u05d9\u05e0\u05d9\u05de\u05dc\u05d9\u05e1\u05d8\u05d9Barra minimamente estilizada\u6700\u5c0f\u30d0\u30fc\u5f62\u5f0fBarre minimalisteBarra amb estil m\u00ednimMinimalistische balkMinim\u00e1lis st\u00edlus\u00fa oszlopMinimalistische Leiste','N\u00e4ytt\u00e4\u00e4 navigointivalikon minimalistisesti tyylitellyll\u00e4 navigointipalkilla.Displays a navigation menu with a minimally styled navigation bar.\u663e\u793a\u5e26\u6709\u6700\u5c0f\u5316\u6837\u5f0f\u5bfc\u822a\u680f\u7684\u5bfc\u822a\u83dc\u5355\u3002Muestra un men\u00fa de navegaci\u00f3n con una barra de navegaci\u00f3n con un estilo m\u00ednimo.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e1\u05e8\u05d2\u05dc \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d1\u05e1\u05d2\u05e0\u05d5\u05df \u05de\u05d9\u05e0\u05d9\u05de\u05dc\u05d9\u05e1\u05d8\u05d9.Exibe um menu de navega\u00e7\u00e3o com uma barra de navega\u00e7\u00e3o minimamente estilizada.\u6700\u5c0f\u30b9\u30bf\u30a4\u30eb\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059Affiche un menu de navigation avec une barre de navigation minimaliste.Mostra un men\u00fa de navegaci\u00f3 amb una barra de navegaci\u00f3 amb un estil m\u00ednim.Geeft een navigatiemenu weer met een minimalistische navigatiebalk.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct egy minimalista st\u00edlus\u00fa navig\u00e1ci\u00f3s s\u00e1vval.Zeigt ein Navigationsmen\u00fc mit einer minimalistischen Navigationsleiste an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="navbar-blank navbar-nav navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_aui.icon\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009image="angle-down"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.505000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32246,20135,20099,20103,NULL,'2019-05-09 00:27:52.513000',20178,0,32244,'1.0','Palkki minimitasaustyylill\u00e4Bar minimally justified styled\u5bfc\u822a\u680f\u6700\u5c0f\u5316\u4e24\u7aef\u5bf9\u9f50\u6837\u5f0fBarra con estilo justificado m\u00ednimo\u05e1\u05e8\u05d2\u05dc \u05de\u05e2\u05d5\u05e6\u05d1 \u05de\u05d5\u05e6\u05de\u05d3 \u05e7\u05dc\u05d5\u05eaBarra minimamente justificada estilizada\u6700\u5c0f\u7b49\u5e45\u30d0\u30fc\u5f62\u5f0fBarre minimaliste et justifi\u00e9eBarra amb justificaci\u00f3 i estil m\u00ednimsUitgevulde minimalistische balkMinim\u00e1lisan sorkiz\u00e1rt st\u00edlus\u00fa oszlopMinimalistische justierte Leiste','N\u00e4ytt\u00e4\u00e4 navigointivalikon minimalistisesti tasatusti tyylitellyll\u00e4 navigointipalkilla.Displays a navigation menu with a minimally justified styled navigation bar.\u663e\u793a\u5e26\u6709\u6700\u5c0f\u5316\u4e24\u7aef\u5bf9\u9f50\u6837\u5f0f\u5bfc\u822a\u680f\u7684\u5bfc\u822a\u83dc\u5355\u3002Muestra un men\u00fa de navegaci\u00f3n con una barra de navegaci\u00f3n con un estilo justificado m\u00ednimamente.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e1\u05e8\u05d2\u05dc \u05e0\u05d9\u05d5\u05d5\u05d8 \u05de\u05e2\u05d5\u05e6\u05d1 \u05de\u05d5\u05e6\u05de\u05d3 \u05e7\u05dc\u05d5\u05ea.Exibe um menu de navega\u00e7\u00e3o com uma barra de navega\u00e7\u00e3o minimamente justificada estilizada.\u6700\u5c0f\u30b9\u30bf\u30a4\u30eb\u306e\u7b49\u5e45\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation avec une barre de navigation justifi\u00e9e et minimaliste.Mostra un men\u00fa de navegaci\u00f3 amb una barra de navegaci\u00f3 amb una justificaci\u00f3 i un estil m\u00ednims.Geeft een navigatiemenu weer met een uitgevulde minimalistische navigatiebalk.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct egy minim\u00e1lisan sorkiz\u00e1rt st\u00edlus\u00fa navig\u00e1ci\u00f3s s\u00e1vval.Zeigt ein Navigationsmen\u00fc mit einer minimalistischen justierten Navigationsleiste an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav nav-justified navbar-blank navbar-nav navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.513000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32249,20135,20099,20103,NULL,'2019-05-09 00:27:52.519000',20178,0,32247,'1.0','Palkki oletustyylill\u00e4Bar default styled\u5bfc\u822a\u680f\u9ed8\u8ba4\u6837\u5f0fBarra con estilo predeterminado\u05d1\u05e8 \u05d1\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dcBarra estilizada padr\u00e3o\u898f\u5b9a\u30b9\u30bf\u30a4\u30eb\u306e\u30d0\u30fcBarre par d\u00e9fautBarra amb estil per defecteStandaardbalkAlap\u00e9rtelmezett st\u00edlus\u00fa oszlopStandard-Leiste','N\u00e4ytt\u00e4\u00e4 navigointivalikon oletustyylisell\u00e4 navigointipalkilla.Displays a navigation menu with a default styled navigation bar.\u663e\u793a\u5e26\u6709\u9ed8\u8ba4\u6837\u5f0f\u5bfc\u822a\u680f\u7684\u5bfc\u822a\u83dc\u5355\u3002Muestra un men\u00fa de navegaci\u00f3n con una barra de navegaci\u00f3n con un estilo predeterminado.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e2\u05dd \u05e1\u05e8\u05d2\u05dc \u05e0\u05d9\u05d5\u05d5\u05d8 \u05d1\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc.Exibe um menu de navega\u00e7\u00e3o com uma barra de navega\u00e7\u00e3o padr\u00e3o estilizada.\u30c7\u30d5\u30a9\u30eb\u30c8\u5f62\u5f0f\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation avec une barre de navigation par d\u00e9faut.Mostra un men\u00fa de navegaci\u00f3 amb una barra de navegaci\u00f3 amb un estil predeterminat.Geeft een navigatiemenu weer met een standaard navigatiebalk.Megjelen\u00edt egy navig\u00e1ci\u00f3s men\u00fct egy alap\u00e9rtelmezett st\u00edlus\u00fa navig\u00e1ci\u00f3s s\u00e1vval.Zeigt ein Navigationsmen\u00fc mit einer Standard-Navigationsleiste an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
    " class="nav navbar-nav navbar-site" role="menubar">\u000a\u0009\u0009\u0009<#assign navItems = entries />\u000a\u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign showChildren = (displayDepth != 1) && navItem.hasBrowsableChildren() />\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isBrowsable() || showChildren>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_attr_has_popup = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_caret = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item nav-item"\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_href_link = ""\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "nav-link text-truncate"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if showChildren>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_attr_has_popup = "aria-haspopup=''true''" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_caret = '''' />\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} dropdown"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign nav_item_href_link = "href=''${navItem.getURL()}''" />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.519000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32252,20135,20099,20103,NULL,'2019-05-09 00:27:52.527000',20178,0,32250,'1.0','Navigoinnin yleiset makrotNavigation common macros\u5bfc\u822a\u5e38\u7528\u5b8fMacros comunes de navegaci\u00f3n\u05e4\u05e7\u05d5\u05d3\u05d5\u05ea \u05de\u05e7\u05e8\u05d5 \u05e0\u05e4\u05d5\u05e6\u05d5\u05ea \u05dc\u05e0\u05d9\u05d5\u05d5\u05d8Macros de navega\u00e7\u00e3o comuns\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u306e\u4e00\u822c\u7684\u306a\u30de\u30af\u30edMacros de navigation ordinairesMacros comunes de navegaci\u00f3Algemene navigatiemacro''sNavig\u00e1ci\u00f3 k\u00f6z\u00f6s makr\u00f3iNavigation h\u00e4ufige Makros','Sis\u00e4lt\u00e4\u00e4 yleiset navigointivalikkomallien makrot.Contains common macros for navigation menu templates.\u5305\u542b\u5bfc\u822a\u83dc\u5355\u6a21\u677f\u7684\u5e38\u7528\u5b8f\u3002Contiene macros comunes para plantillas del men\u00fa de navegaci\u00f3n.\u05de\u05db\u05d9\u05dc \u05e4\u05e7\u05d5\u05d3\u05d5\u05ea \u05de\u05e7\u05e8\u05d5 \u05e0\u05e4\u05d5\u05e6\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05ea\u05d1\u05e0\u05d9\u05d5\u05ea \u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e0\u05d9\u05d5\u05d5\u05d8.Cont\u00e9m macros comuns para o modelo do menu de navega\u00e7\u00e3o.\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u7528\u306e\u30de\u30af\u30ed\u3092\u542b\u307f\u307e\u3059Contient les macros ordinaires pour les mod\u00e8les de menu de navigation.Cont\u00e9 macros comunes per a les plantilles del men\u00fa de navegaci\u00f3.Bevat algemene macro''s voor navigatiemenusjablonen.A navig\u00e1ci\u00f3s men\u00fc sablonok k\u00f6z\u00f6s makr\u00f3it tartalmazza.Enth\u00e4lt h\u00e4ufige Makros f\u00fcr Navigationsmen\u00fcvorlagen.','ftl','<#macro buildNavigation\u000a\u0009branchNavItems\u000a\u0009cssClass\u000a\u0009displayDepth\u000a\u0009includeAllChildNavItems\u000a\u0009navItemLevel\u000a\u0009navItems\u000a>\u000a\u0009<#if navItems?has_content && ((displayDepth == 0) || (navItemLevel <= displayDepth))>\u000a\u0009\u0009
    \u000a\u0009\u0009\u0009<#list navItems as navItem>\u000a\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "lfr-nav-item"\u000a\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009<#if includeAllChildNavItems || navItem.isInNavigation(branchNavItems)>\u000a\u0009\u0009\u0009\u0009\u0009<#assign nav_item_css_class = "${nav_item_css_class} open" />\u000a\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009<#if navItem.isSelected()>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009nav_item_css_class = "${nav_item_css_class} selected active"\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u0009\u0009<#if navItem.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009${navItem.getName()}\u000a\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009${navItem.getName()}\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if includeAllChildNavItems || navItem.isInNavigation(branchNavItems)>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<@buildNavigation\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009branchNavItems=branchNavItems\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009cssClass=cssClass\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009displayDepth=displayDepth\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009includeAllChildNavItems=includeAllChildNavItems\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009navItemLevel=(navItemLevel + 1)\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009navItems=navItem.getChildren()\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.527000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32255,20135,20099,20103,NULL,'2019-05-09 00:27:52.534000',20178,0,32253,'1.0','Jakopainikkeen PudotusvalikotSplit Button Dropdowns\u62c6\u5206\u6309\u94ae\u4e0b\u62c9\u83dc\u5355Desplegables de bot\u00f3n de expansi\u00f3n\u05ea\u05d9\u05d1\u05d5\u05ea \u05d1\u05d7\u05d9\u05e8\u05d4 \u05e2\u05dd \u05dc\u05d7\u05e6\u05df \u05e4\u05d9\u05e6\u05d5\u05dcDividir menus suspensos de bot\u00e3o\u30b9\u30d7\u30ea\u30c3\u30c8\u30dc\u30bf\u30f3\u306e\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3Partager les boutons du menu d\u00e9roulantDesplegables de bot\u00f3 de divisi\u00f3Rolmenu met uitgesplitste knoppenOsztott gomb leg\u00f6rd\u00fcl\u0151 elemeiDropdown mit geteilten Schaltfl\u00e4chen','N\u00e4ytt\u00e4\u00e4 pudotusnavigointivalikon juurivalikon kohdat esitettyn\u00e4 painikkeina.Displays a dropdown navigation menu with root menu items shown as buttons.\u663e\u793a\u4e0b\u62c9\u5f0f\u5bfc\u822a\u83dc\u5355\uff0c\u5176\u4e2d\u6839\u83dc\u5355\u9879\u663e\u793a\u4e3a\u6309\u94ae\u3002Muestra un men\u00fa de navegaci\u00f3n desplegable con elementos de men\u00fa ra\u00edz que se muestran como botones.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8 \u05e0\u05e4\u05ea\u05d7 \u05e2\u05dd \u05e4\u05e8\u05d9\u05d8\u05d9 \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e9\u05d5\u05e8\u05e9 \u05d4\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05db\u05e4\u05ea\u05d5\u05e8\u05d9\u05dd.Exibe um menu de navega\u00e7\u00e3o suspenso com itens do menu raiz mostrados como bot\u00f5es.\u30dc\u30bf\u30f3\u5f62\u5f0f\u306e\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3\u3067\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 \u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu de navigation d\u00e9roulant dont les \u00e9l\u00e9ments sont affich\u00e9s sous la forme de boutons.Mostra un men\u00fa de navegaci\u00f3 desplegable els elements de men\u00fa arrel que es mostren com a botons.Geeft een rolmenu voor navigatie weer met rootmenu-items in de vorm van knoppen.Megjelen\u00edt egy leny\u00edl\u00f3 navig\u00e1ci\u00f3s men\u00fct, amelyben a gy\u00f6k\u00e9rszint\u0171 men\u00fcpontok gombokk\u00e9nt jelennek meg.Zeigt ein Dropdown-Navigationsmen\u00fc mit Root-Men\u00fcelementen als Schaltfl\u00e4chen an.','ftl','<#if !entries?has_content>\u000a\u0009<#if themeDisplay.isSignedIn()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay.language key="there-are-no-menu-items-to-display" />\u000a\u0009\u0009
\u000a\u0009\u000a<#else>\u000a\u0009<#assign\u000a\u0009\u0009portletDisplay = themeDisplay.getPortletDisplay()\u000a\u000a\u0009\u0009navbarId = "navbar_" + portletDisplay.getId()\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009\u000a\u0009
\u000a\u000a\u0009<@liferay_aui.script use="liferay-navigation-interaction">\u000a\u0009\u0009var navigation = A.one(''#${navbarId}'');\u000a\u000a\u0009\u0009Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = ''.navbar-site'';\u000a\u0009\u0009Liferay.Data.NAV_LIST_SELECTOR = ''.navbar-site'';\u000a\u000a\u0009\u0009if (navigation) {\u000a\u0009\u0009\u0009navigation.plug(Liferay.NavigationInteraction);\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.534000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32258,20135,20099,20103,NULL,'2019-05-09 00:27:52.542000',20013,0,32256,'1.0','Usean sarakkeen asetteluMulti Column Layout\u591a\u5217\u5e03\u5c40Dise\u00f1o con varias columnas\u05ea\u05e6\u05d5\u05e8\u05d4 \u05de\u05e8\u05d5\u05d1\u05ea \u05e2\u05de\u05d5\u05d3\u05d5\u05eaLayout em M\u00faltiplas Colunas\u8907\u6570\u30ab\u30e9\u30e0\u30ec\u30a4\u30a2\u30a6\u30c8Mise en page multi-colonnePlana multi-columnaLay-out met meerdere kolommenT\u00f6bb oszlopos elrendez\u00e9sMulti-Spalten-Layout','N\u00e4ytt\u00e4\u00e4 sarakkeen jokaiselle sanastolle. Jokainen sarake sis\u00e4lt\u00e4\u00e4 sanaston nimen, miss\u00e4 sanaston yl\u00e4tason luokitukset on listattu.Displays a column for each vocabulary. Each column includes the name of a vocabulary with the vocabulary''s top level categories listed underneath.\u663e\u793a\u4e00\u5217\u4e2d\u7684\u6bcf\u4e2a\u8bcd\u6c47\uff0c\u6bcf\u5217\u5305\u62ec\u9876\u7ea7\u7c7b\u522b\u4e4b\u4e0b\u7684\u8bcd\u6c47\u540d\u5b57\u3002Despliega una columna para cada vocabulario. Cada columna incluye el nombre de un vocabulario con las categor\u00edas de mayor nivel del vocabulario listadas debajo.\u05de\u05e6\u05d9\u05d2 \u05e2\u05de\u05d5\u05d3\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05db\u05dc \u05d0\u05d5\u05e6\u05e8 \u05de\u05d9\u05dc\u05d9\u05dd. \u05db\u05dc \u05e2\u05de\u05d5\u05d3\u05d4 \u05de\u05db\u05d9\u05dc\u05d4 \u05d0\u05ea \u05d4\u05e9\u05dd \u05e9\u05dc \u05d0\u05d5\u05e6\u05e8 \u05de\u05d9\u05dc\u05d9\u05dd \u05d5\u05de\u05ea\u05d7\u05ea\u05d9\u05d5 \u05d4\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea \u05d1\u05e8\u05de\u05ea \u05d4\u05e2\u05dc.Exibe uma coluna para cada vocabul\u00e1rio. Cada coluna inclui o nome do vocabul\u00e1rio com as categorias de n\u00edvel mais alto listadas abaixo dele.\u5404\u30dc\u30ad\u30e3\u30d6\u30e9\u30ea\u7528\u306b\u5217\u3092\u8868\u793a\u3059\u308b\u3002\u5404\u5217\u306f\u4ee5\u4e0b\u306b\u30ea\u30b9\u30c8\u306b\u306a\u3063\u3066\u3044\u308b\u3001\u6700\u4e0a\u4f4d\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u7528\u8a9e\u540d\u3092\u542b\u3093\u3067\u3044\u307e\u3059Affiche une colonne pour chaque vocabulaire. Chaque colonne inclut le nom d''un vocabulaire avec les cat\u00e9gories du niveau racine list\u00e9es en dessous.Visualitza una columna per a cada vocabulari. Cada columna inclou el nom del vocabulari amb la categoria de nivell m\u00e9s alta a sota.Toon een kolom voor ieder woordenboek. Iedere kolom bevat de naam van een woordenboek met de hoofd categorie\u00ebn eronder.Megjelen\u00edt egy oszlopot minden sz\u00f3t\u00e1r sz\u00e1m\u00e1ra. Minden oszlop tartalmazza a sz\u00f3t\u00e1r nev\u00e9t, alatta a sz\u00f3t\u00e1r fels\u0151 szint\u0171 kateg\u00f3ri\u00e1ival.Stellt eine Spalte f\u00fcr jedes Vokabular dar. Jede Spalte enth\u00e4lt den Namen eines Vokabulars mit der obersten Kategorienebene darunter.','ftl','<#if entries?has_content>\u000a\u0009<@liferay_aui.row>\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009<@liferay_aui.col width=25>\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009

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

\u000a\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009<#assign categories = entry.getCategories() />\u000a\u000a\u0009\u0009\u0009\u0009<@displayCategories categories=categories />\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u000a<#macro displayCategories\u000a\u0009categories\u000a>\u000a\u0009<#if categories?has_content>\u000a\u0009\u0009
    \u000a\u0009\u0009\u0009<#list categories as category>\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u0009\u0009<#assign categoryURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009${categoryURL.setParameter("resetCur", "true")}\u000a\u0009\u0009\u0009\u0009\u0009${categoryURL.setParameter("categoryId", category.getCategoryId()?string)}\u000a\u000a\u0009\u0009\u0009\u0009\u0009${category.getName()}\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if serviceLocator??>\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009assetCategoryService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetCategoryService")\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009childCategories = assetCategoryService.getChildCategories(category.getCategoryId())\u000a\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<@displayCategories categories=childCategories />\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.542000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32261,20135,20099,20103,NULL,'2019-05-09 00:27:52.549000',20044,0,32259,'1.0','Usean sarakkeen asetteluMulti Column Layout\u591a\u5217\u5e03\u5c40Dise\u00f1o con varias columnas\u05ea\u05e6\u05d5\u05e8\u05d4 \u05de\u05e8\u05d5\u05d1\u05ea \u05e2\u05de\u05d5\u05d3\u05d5\u05eaLayout em M\u00faltiplas Colunas\u8907\u6570\u30ab\u30e9\u30e0\u30ec\u30a4\u30a2\u30a6\u30c8Mise en page multi-colonnePlana multi-columnaLay-out met meerdere kolommenT\u00f6bb oszlopos elrendez\u00e9sMulti-Spalten-Layout','N\u00e4ytt\u00e4\u00e4 sarakkeen jokaiselle yl\u00e4tason sivulle. Jokainen sarake sis\u00e4lt\u00e4\u00e4 yl\u00e4tason sivun nimen ja sivun v\u00e4litt\u00f6m\u00e4t alasivut lueteltuna alapuolella.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.\u4e3a\u6bcf\u4e2a\u9876\u7ea7\u9875\u9762\u663e\u793a\u4e00\u5217\u3002\u6bcf\u4e00\u5217\u90fd\u5305\u542b\u9876\u7ea7\u9875\u9762\u7684\u540d\u79f0\u4ee5\u53ca\u9875\u9762\u4e0b\u6240\u5217\u7684\u76f4\u63a5\u5b50\u7ea7\u3002Muestra una columna por cada p\u00e1gina de nivel superior. En cada columna, se incluye el nombre de una p\u00e1gina de nivel superior con el elemento secundario inmediato de la p\u00e1gina en una lista de la parte inferior.\u05de\u05e6\u05d9\u05d2 \u05e2\u05de\u05d5\u05d3\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05db\u05dc \u05e2\u05de\u05d5\u05d3 \u05d1\u05e8\u05de\u05d4 \u05d4\u05e2\u05dc\u05d9\u05d5\u05e0\u05d4. \u05db\u05dc \u05e2\u05de\u05d5\u05d3\u05d4 \u05db\u05d5\u05dc\u05dc\u05ea \u05d0\u05ea \u05d4\u05e9\u05dd \u05e9\u05dc \u05d3\u05e3 \u05d1\u05e8\u05de\u05d4 \u05d4\u05e2\u05dc\u05d9\u05d5\u05e0\u05d4 \u05e2\u05dd \u05d4\u05e6\u05d0\u05e6\u05d0\u05d9\u05dd \u05d4\u05de\u05d9\u05d3\u05d9\u05d9\u05dd \u05e9\u05dc \u05d4\u05e2\u05de\u05d5\u05d3 \u05de\u05e4\u05d5\u05e8\u05d8\u05d9\u05dd \u05de\u05ea\u05d7\u05ea.Exibe uma coluna para cada p\u00e1gina de n\u00edvel superior. Cada coluna inclui o nome de uma p\u00e1gina de n\u00edvel superior com os filhos imediatos da p\u00e1gina listados abaixo.\u6700\u4e0a\u4f4d\u306e\u30da\u30fc\u30b8\u3054\u3068\u306b\u5217\u3092\u8868\u793a\u3057\u307e\u3059\u3002\u5404\u5217\u306b\u306f\u3001\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u306e\u30da\u30fc\u30b8\u306e\u540d\u524d\u3068\u3001\u76f4\u4e0b\u306e\u30b5\u30d6\u30da\u30fc\u30b8\u306e\u30da\u30fc\u30b8\u540d\u3092\u542b\u307f\u307e\u3059\u3002Affiche une colonne pour chaque page de niveau sup\u00e9rieur. Chaque colonne comprend le nom d''une page de niveau sup\u00e9rieur avec les enfants imm\u00e9diats indiqu\u00e9s en-dessous.Mostra una columna per cada p\u00e0gina de nivell superior. A cada columna, s''hi inclou el nom d''una p\u00e0gina de nivell superior amb el fill immediat de la p\u00e0gina en una llista a la part inferior.Geeft een kolom weer voor elke pagina op het hoogste niveau. Elke kolom bevat de naam van een bovenliggende pagina met alle directe onderliggende pagina''s eronder.Megjelen\u00edt egy oszlopot minden fels\u0151 szint\u0171 oldalhoz. Mindegyik oszlop tartalmazza a legfels\u0151 szint\u0171 oldal nev\u00e9t, alatta az oldal k\u00f6zvetlen ut\u00f3dj\u00e1val.Zeigt eine Spalte f\u00fcr jede Seite der obersten Ebene. Jede Spalte enth\u00e4lt den Namen einer Seite der obersten Ebene, darunter werden die direkten Unterseiten aufgelistet.','ftl','<#if entries?has_content>\u000a\u0009<@liferay_aui.row>\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009<#if layoutPermission.containsWithoutViewableGroup(permissionChecker, entry, "VIEW")>\u000a\u0009\u0009\u0009\u0009<@liferay_aui.col width=25>\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009

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

\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009<@displayPages\u000a\u0009\u0009\u0009\u0009\u0009\u0009depth=1\u000a\u0009\u0009\u0009\u0009\u0009\u0009pages=entry.getChildren(permissionChecker)\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u000a<#macro displayPages\u000a\u0009depth\u000a\u0009pages\u000a>\u000a\u0009<#if pages?has_content && ((depth < displayDepth?number) || (displayDepth?number == 0))>\u000a\u0009\u0009
    \u000a\u0009\u0009\u0009<#list pages as page>\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if pageType.isBrowsable()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009href="${portalUtil.getLayoutURL(page, themeDisplay)}"\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009>${page.getName(locale)}\u000a\u000a\u0009\u0009\u0009\u0009\u0009<@displayPages\u000a\u0009\u0009\u0009\u0009\u0009\u0009depth=depth + 1\u000a\u0009\u0009\u0009\u0009\u0009\u0009pages=page.getChildren(permissionChecker)\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u000a\u0009\u0009
\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.549000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32264,20135,20099,20103,NULL,'2019-05-09 00:27:52.559000',20017,0,32262,'1.0','V\u00e4ri suosion mukaanColor by Popularity\u53d7\u6b22\u8fce\u7684\u989c\u8272Color por popularidad\u05e6\u05d1\u05e2 \u05d1\u05d4\u05ea\u05d0\u05dd \u05dc\u05e4\u05d5\u05e4\u05d5\u05dc\u05e8\u05d9\u05d5\u05eaColorir por Popularidade\u983b\u51fa\u5ea6\u306b\u3088\u308a\u8272\u5206\u3051\u3059\u308bCouleur par popularit\u00e9Color per popularitatKleur op populariteitSz\u00edn n\u00e9pszer\u0171s\u00e9g alapj\u00e1nNach Popularit\u00e4t f\u00e4rben','N\u00e4ytt\u00e4\u00e4 sis\u00e4lt\u00f6tageja, mitk\u00e4 on v\u00e4ritetty suosion mukaan: punainen (korkea), keltainen (keskiverto) ja virhe\u00e4 (alhainen)Displays asset tags colored by popularity: red (high), yellow (medium), and green (low).\u663e\u793a\u8d44\u6e90\u6807\u7b7e\u989c\u8272\u7b49\u7ea7\uff1a \u7ea2\u8272 (\u9ad8), \u9ec4\u8272 (\u4e2d), \u7eff\u8272 (\u4f4e).Muestra las etiquetas de contenido coloreadas seg\u00fan su popularidad : rojo (alta), amarilla (media) y verde (baja).\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05ea\u05d2\u05d9 \u05d4\u05e0\u05db\u05e1\u05d9\u05dd \u05e2\u05dc \u05e4\u05d9 \u05de\u05d9\u05d3\u05ea \u05d4\u05e4\u05d5\u05e4\u05d5\u05dc\u05e8\u05d9\u05d5\u05ea \u05e9\u05dc\u05d4\u05dd: \u05d0\u05d3\u05d5\u05dd (\u05d2\u05d1\u05d5\u05d4\u05d4), \u05e6\u05d4\u05d5\u05d1 (\u05d1\u05d9\u05e0\u05d5\u05e0\u05d9\u05ea) \u05d5\u05d9\u05e8\u05d5\u05e7 (\u05e0\u05de\u05d5\u05db\u05d4).Exibe marcadores coloridos por popularidade: vermelho (alta), amarelo (m\u00e9dia) e verde (baixa).\u30a2\u30bb\u30c3\u30c8\u30bf\u30b0\u3092\u4eba\u6c17\u9806\u306b\u8868\u793a\u3059\u308b:\u8d64(\u9ad8\u3044)\u3001\u9ec4\u8272\uff08\u666e\u901a)\u3001\u7dd1\uff08\u4f4e\u3044\uff09Affiche les \u00e9tiquettes d''asset colori\u00e9es par popularit\u00e9: rouge (\u00e9lev\u00e9), jaune (moyen), et vert (bas).Mostra les etiquetes per colors segons popularitat: vermell (alta), groga (mitjana) i verda (baixa).Toon content labels volgens populariteit: rood (hoog), geel (midden) en groen (laag).Megjelen\u00edti a tartalom c\u00edmk\u00e9ket n\u00e9pszer\u0171s\u00e9g szerint sz\u00ednezve: v\u00f6r\u00f6s (magas), s\u00e1rga (k\u00f6zepes), \u00e9s z\u00f6ld (alacsony).Schlagw\u00f6rter nach Popularit\u00e4t f\u00e4rben: Rot (hoch), gelb (mittel), gr\u00fcn (niedrig).','ftl','<#if entries?has_content>\u000a\u0009
    \u000a\u0009\u0009<#assign\u000a\u0009\u0009\u0009scopeGroupId = getterUtil.getLong(scopeGroupId, themeDisplay.getScopeGroupId())\u000a\u0009\u0009\u0009classNameId = getterUtil.getLong(classNameId, 0)\u000a\u000a\u0009\u0009\u0009maxCount = 1\u000a\u0009\u0009\u0009minCount = 1\u000a\u0009\u0009/>\u000a\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009maxCount = liferay.max(maxCount, entry.getAssetCount())\u000a\u0009\u0009\u0009\u0009minCount = liferay.min(minCount, entry.getAssetCount())\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#assign multiplier = 1 />\u000a\u000a\u0009\u0009<#if maxCount != minCount>\u000a\u0009\u0009\u0009<#assign multiplier = 3 / (maxCount - minCount) />\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009
  • \u000a\u0009\u0009\u0009\u0009<#assign popularity = (maxCount - (maxCount - (entry.getAssetCount() - minCount))) * multiplier />\u000a\u000a\u0009\u0009\u0009\u0009<#if popularity < 1>\u000a\u0009\u0009\u0009\u0009\u0009<#assign color = "green" />\u000a\u0009\u0009\u0009\u0009<#elseif (popularity >= 1) && (popularity < 2)>\u000a\u0009\u0009\u0009\u0009\u0009<#assign color = "orange" />\u000a\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009<#assign color = "red" />\u000a\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009<#assign tagURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009${tagURL.setParameter("resetCur", "true")}\u000a\u0009\u0009\u0009\u0009${tagURL.setParameter("tag", entry.getName())}\u000a\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009${entry.getName()}\u000a\u000a\u0009\u0009\u0009\u0009\u0009<#if entry.getAssetCount()?? && getterUtil.getBoolean(showAssetCount)>\u000a\u0009\u0009\u0009\u0009\u0009\u0009(${entry.getAssetCount()})\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009
  • \u000a\u0009\u0009\u000a\u0009
\u000a\u000a\u0009
\u000a',0,20103,NULL,'2019-05-09 00:27:52.559000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32268,20135,20099,20103,NULL,'2019-05-09 00:27:52.569000',32265,0,32266,'1.0','KuvakeIcon\u56fe\u6807Icono\u05e1\u05de\u05dc\u00cdcone\u30a2\u30a4\u30b3\u30f3Ic\u00f4neIconaPictogramIkonSymbol','N\u00e4ytt\u00e4 kuhunkin kieleen liittyv\u00e4n lippukuvakkeen.Displays the icon of the flag associated with each language.\u663e\u793a\u4e0e\u6bcf\u79cd\u8bed\u8a00\u5173\u8054\u7684\u56fd\u65d7\u7684\u56fe\u6807\u3002Muestra el icono de la bandera asociada con cada idioma.\u05de\u05e6\u05d9\u05d2\u05d4 \u05d4\u05e1\u05de\u05dc \u05e9\u05dc \u05d4\u05d3\u05d2\u05dc \u05d4\u05de\u05e9\u05d5\u05d9\u05da \u05dc\u05db\u05dc \u05e9\u05e4\u05d4.Exibe o \u00edcone do marcador associado com cada idioma.\u5404\u8a00\u8a9e\u306b\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30d5\u30e9\u30b0\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u8868\u793a\u3057\u307e\u3059Affiche l''ic\u00f4ne de chaque option associ\u00e9 \u00e0 chaque langue.Mostra la icona de la bandera associada a cada idioma.Geeft het pictogram weer van de vlag die bij elke taal hoort.Megjelen\u00edti az egyes nyelvekhez t\u00e1rs\u00edtott z\u00e1szl\u00f3t tartalmaz\u00f3 ikont.Zeigt das Symbol der Flagge f\u00fcr jede Sprache an.','ftl','<#if entries?has_content>\u000a\u0009<#list entries as entry>\u000a\u0009\u0009<#if entry.isSelected()>\u000a\u0009\u0009\u0009<#assign cssClass = "current-language" />\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#if !entry.isDisabled()>\u000a\u0009\u0009\u0009<@liferay_aui["icon"]\u000a\u0009\u0009\u0009\u0009cssClass=cssClass\u000a\u0009\u0009\u0009\u0009image=entry.getW3cLanguageId()?lower_case\u000a\u0009\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009\u0009message=entry.getLongDisplayName()\u000a\u0009\u0009\u0009\u0009url=entry.getURL()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.569000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32271,20135,20099,20103,NULL,'2019-05-09 00:27:52.576000',32265,0,32269,'1.0','KuvakevalikkoIcon Menu\u56fe\u6807\u83dc\u5355Men\u00fa de icono\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05de\u05dc\u05d9\u05ddMenu de \u00edcones\u30a2\u30a4\u30b3\u30f3 \u30e1\u30cb\u30e5\u30fcMenu d''ic\u00f4nesMen\u00fa d''iconesPictogrammenuIkon men\u00fcSymbolmen\u00fc','N\u00e4ytt\u00e4\u00e4 valittuihin kieliin liittyv\u00e4n kuvakevalikon.Displays an icon menu with the selected languages.\u663e\u793a\u5e26\u6709\u9009\u5b9a\u8bed\u8a00\u7684\u56fe\u6807\u83dc\u5355\u3002Muestra un men\u00fa de icono con los idiomas seleccionados.\u05d4\u05e6\u05d2\u05ea \u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05de\u05dc\u05d9\u05dd \u05e2\u05dd \u05d4\u05e9\u05e4\u05d5\u05ea \u05e9\u05e0\u05d1\u05d7\u05e8\u05d5.Exibe um menu de \u00edcone com os idiomas selecionados.\u9078\u629e\u3057\u305f\u8a00\u8a9e\u306e\u30a2\u30a4\u30b3\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche un menu d''ic\u00f4nes avec les langues s\u00e9lectionn\u00e9es.Mostra una icona de men\u00fa amb els idiomes seleccionats.Geeft een pictogrammenu weer met de geselecteerde talen.Megjelen\u00edt egy ikonmen\u00fct a kiv\u00e1lasztott nyelvekkel.Zeigt ein Symbolmen\u00fc mit den ausgew\u00e4hlten Sprachen.','ftl','<#if entries?has_content>\u000a\u0009<#assign normalizedDefaultLanguageId = stringUtil.toLowerCase(stringUtil.replace(languageId, "_", "-")) />\u000a\u000a\u0009
\u000a\u0009\u0009<@liferay_ui["icon-menu"]\u000a\u0009\u0009\u0009direction="left-side"\u000a\u0009\u0009\u0009icon=normalizedDefaultLanguageId\u000a\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009showWhenSingleIcon=true\u000a\u0009\u0009\u0009triggerLabel=normalizedDefaultLanguageId\u000a\u0009\u0009\u0009triggerType="button"\u000a\u0009\u0009>\u000a\u0009\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009\u0009<#if !entry.isSelected() && !entry.isDisabled()>\u000a\u0009\u0009\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009\u0009\u0009entryLocale = entry.getLocale()\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009displayName = entry.getLongDisplayName() + "-" + entryLocale.getDisplayCountry(entryLocale)\u000a\u0009\u0009\u0009\u0009\u0009\u0009normalizedDefaultLanguageId = stringUtil.toLowerCase(stringUtil.replace(entry.getLanguageId(), "_", "-"))\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009\u0009\u0009\u0009icon=normalizedDefaultLanguageId\u000a\u0009\u0009\u0009\u0009\u0009\u0009iconCssClass="inline-item inline-item-before"\u000a\u0009\u0009\u0009\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009\u0009\u0009\u0009message=displayName\u000a\u0009\u0009\u0009\u0009\u0009\u0009url=entry.getURL()\u000a\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009
\u000a',0,20103,NULL,'2019-05-09 00:27:52.576000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32274,20135,20099,20103,NULL,'2019-05-09 00:27:52.583000',32265,0,32272,'1.0','Pitk\u00e4 TekstiLong Text\u957f\u6587\u672cTexto largo\u05d8\u05e7\u05e1\u05d8 \u05d0\u05e8\u05d5\u05daTexto Longo\u9577\u3044\u30c6\u30ad\u30b9\u30c8Texte LongText LlargLange tekstHossz\u00fa sz\u00f6vegLanger Text','N\u00e4ytt\u00e4\u00e4 kunkin kielen koko nimen (esim. espanja).Displays the full name of each language (e.g. Spanish).\u663e\u793a\u6bcf\u79cd\u8bed\u8a00\u7684\u5168\u540d\uff08\u4f8b\u5982\uff0cSpanish\uff09\u3002Muestra el nombre completo de cada idioma (por ejemplo, espa\u00f1ol).\u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d4\u05e9\u05dd \u05d4\u05de\u05dc\u05d0 \u05e9\u05dc \u05db\u05dc \u05e9\u05e4\u05d4 (\u05dc\u05de\u05e9\u05dc \u05e1\u05e4\u05e8\u05d3\u05d9\u05ea).Exibe o nome completo de cada idioma (por exemplo, Espanhol).\u5404\u8a00\u8a9e (\u30b9\u30da\u30a4\u30f3\u8a9e\u306a\u3069) \u3092\u5b8c\u5168\u306a\u540d\u524d\u3067\u8868\u793a\u3057\u307e\u3059Affiche le nom complet de chaque langue (e.x. espagnol).Mostra el nom sencer de cada idioma (p. ex. espanyol).Geeft de volledige naam weer van elke taal (bijv. Spaans).Megjelen\u00edti az egyes nyelvek teljes nev\u00e9t (pl. Spanyol).Zeigt den vollst\u00e4ndigen Namen einer jeden Sprache (z. B. Spanisch).','ftl','\u000a\u000a<#if entries?has_content>\u000a\u0009<#list entries as entry>\u000a\u0009\u0009<#if !entry.isDisabled()>\u000a\u0009\u0009\u0009<@liferay_aui["a"]\u000a\u0009\u0009\u0009\u0009cssClass="language-entry-long-text"\u000a\u0009\u0009\u0009\u0009href=entry.getURL()\u000a\u0009\u0009\u0009\u0009label=entry.getLongDisplayName()\u000a\u0009\u0009\u0009\u0009lang=entry.getW3cLanguageId()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.583000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32277,20135,20099,20103,NULL,'2019-05-09 00:27:52.590000',32265,0,32275,'1.0','ValintalaatikkoSelect Box\u9009\u62e9\u6846Cuadro de selecci\u00f3n\u05ea\u05d9\u05d1\u05ea \u05d1\u05d7\u05d9\u05e8\u05d4Caixa de sele\u00e7\u00e3o\u30bb\u30ec\u30af\u30c8\u30dc\u30c3\u30af\u30b9S\u00e9lectionner la caseSelecciona la casellaSelectievakJel\u00f6lje beAuswahlkasten','N\u00e4ytt\u00e4\u00e4 valittuihin kieliin liittyv\u00e4n valintalaatikon.Displays a select box with the selected languages.\u663e\u793a\u5e26\u6709\u9009\u5b9a\u8bed\u8a00\u7684\u9009\u62e9\u6846\u3002Muestra una casilla con los idiomas seleccionados.\u05de\u05e6\u05d9\u05d2 \u05ea\u05d9\u05d1\u05ea \u05d1\u05d7\u05d9\u05e8\u05d4 \u05e2\u05dd \u05d4\u05e9\u05e4\u05d5\u05ea \u05e9\u05e0\u05d1\u05d7\u05e8\u05d5.Exibe uma caixa de sele\u00e7\u00e3o com os idiomas selecionados.\u30bb\u30ec\u30af\u30c8\u30dc\u30c3\u30af\u30b9\u3067\u9078\u629e\u3055\u308c\u305f\u8a00\u8a9e\u3092\u8868\u793a\u3057\u307e\u3059\u3002Affiche une bo\u00eete de s\u00e9lection contenant les langues choisies.Mostra una casella amb els idiomes seleccionats.Geeft een selectievak weer met de geselecteerde talen.Megjelen\u00edt egy v\u00e1laszt\u00f3mez\u0151t a kiv\u00e1lasztott nyelvekkel.Zeigt einen Auswahlkasten mit den ausgew\u00e4hlten Sprachen an.','ftl','<#if entries?has_content>\u000a\u0009<#assign languageId = localeUtil.toLanguageId(locale) />\u000a\u000a\u0009\u000a\u000a\u0009<@liferay_aui["form"]\u000a\u0009\u0009action=formAction\u000a\u0009\u0009method="post"\u000a\u0009\u0009name=''${namespace + formName}''\u000a\u0009\u0009useNamespace=false\u000a\u0009>\u000a\u0009\u0009<@liferay_aui["select"]\u000a\u0009\u0009\u0009changesContext=true\u000a\u0009\u0009\u0009id=''${namespace + formName}''\u000a\u0009\u0009\u0009label=""\u000a\u0009\u0009\u0009name=''${name}''\u000a\u0009\u0009\u0009onChange=''${namespace + "changeLanguage();"}''\u000a\u0009\u0009\u0009title="language"\u000a\u0009\u0009>\u000a\u0009\u0009\u0009<#list entries as entry>\u000a\u0009\u0009\u0009\u0009<@liferay_aui["option"]\u000a\u0009\u0009\u0009\u0009\u0009cssClass="taglib-language-option taglib-language-option-${entry.getW3cLanguageId()}"\u000a\u0009\u0009\u0009\u0009\u0009disabled=entry.isDisabled()\u000a\u0009\u0009\u0009\u0009\u0009label=entry.getLongDisplayName()\u000a\u0009\u0009\u0009\u0009\u0009lang=entry.getW3cLanguageId()\u000a\u0009\u0009\u0009\u0009\u0009selected=entry.isSelected()\u000a\u0009\u0009\u0009\u0009\u0009value=entry.getLanguageId()\u000a\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u0009<@liferay_aui["script"]>\u000a\u0009\u0009function ${namespace}changeLanguage() {\u000a\u0009\u0009\u0009var languageId = AUI.$(document.${namespace + formName}.${name}).val();\u000a\u000a\u0009\u0009\u0009submitForm(document.${namespace + formName});\u000a\u0009\u0009}\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.590000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32280,20135,20099,20103,NULL,'2019-05-09 00:27:52.596000',32265,0,32278,'1.0','Lyhyt TekstiShort Text\u77ed\u6587\u672cTexto corto\u05d8\u05e7\u05e1\u05d8 \u05e7\u05e6\u05e8Texto curto\u77ed\u3044\u30c6\u30ad\u30b9\u30c8Texte CourtText curtKorte tekstR\u00f6vid sz\u00f6vegKurztext','N\u00e4ytt\u00e4\u00e4 jokaisen kielen lyhenteen (esim. ES).Displays an abbreviation of each language (e.g. ES).\u663e\u793a\u6bcf\u79cd\u8bed\u8a00\u7684\u7f29\u5199\uff08\u4f8b\u5982\uff0cES\uff09\u3002Muestra una abreviatura de cada idioma (por ejemplo, ES).\u05de\u05e6\u05d9\u05d2 \u05e7\u05d9\u05e6\u05d5\u05e8 \u05e9\u05dc \u05db\u05dc \u05e9\u05e4\u05d4 (\u05dc\u05de\u05e9\u05dc ES).Exibe uma abreviatura de cada idioma (por exemplo, ES).\u5404\u8a00\u8a9e (\u4f8b\u3048\u3070 ES) \u306e\u7701\u7565\u5f62\u3067\u8868\u793a\u3057\u307e\u3059\u3002Affiche une abr\u00e9viation pour chaque langue (par ex. : ES).Mostra una abreviatura de cada idioma (p. ex. ES).Geeft een afkorting weer van elke taal (bijv. ES).Megjelen\u00edti az egyes nyelvek r\u00f6vid\u00edt\u00e9s\u00e9t (pl. ES).Zeigt eine Abk\u00fcrzung jeder Sprache an (z. B. ES).','ftl','\u000a\u000a<#if entries?has_content>\u000a\u0009<#list entries as entry>\u000a\u0009\u0009<#if !entry.isDisabled()>\u000a\u0009\u0009\u0009<@liferay_aui["a"]\u000a\u0009\u0009\u0009\u0009cssClass="language-entry-short-text"\u000a\u0009\u0009\u0009\u0009href=entry.getURL()\u000a\u0009\u0009\u0009\u0009label=entry.getShortDisplayName()\u000a\u0009\u0009\u0009\u0009lang=entry.getW3cLanguageId()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u0009\u000a',0,20103,NULL,'2019-05-09 00:27:52.596000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32283,20135,20099,20103,NULL,'2019-05-09 00:27:52.603000',20015,0,32281,'1.0','KarttaMap\u6620\u5c04Mapa\u05de\u05e4\u05d4Mapa\u30de\u30c3\u30d4\u30f3\u30b0CarteMapaKaartT\u00e9rk\u00e9pLandkarte','N\u00e4ytt\u00e4\u00e4 maantieteelliset sis\u00e4ll\u00f6t kartalla.Displays geolocalized assets in a map.\u663e\u793a\u5728\u5730\u56fe\u4e0a\u5b9a\u4f4d\u7684\u8d44\u6e90Muestra activos geolocalizados en un mapa.\u05de\u05e6\u05d9\u05d2 \u05e0\u05db\u05e1\u05d9\u05dd \u05d4\u05de\u05db\u05d9\u05dc\u05d9\u05dd \u05de\u05d9\u05e7\u05d5\u05dd \u05d2\u05d9\u05d0\u05d5-\u05dc\u05d5\u05e7\u05dc\u05d9 \u05e2\u05dc \u05d2\u05d1\u05d9 \u05de\u05e4\u05d4.Exibe os conte\u00fados geolocalizados em um mapa.\u5730\u56f3\u5185\u306b\u30b8\u30aa\u30ed\u30fc\u30ab\u30e9\u30a4\u30ba\u3055\u308c\u305f\u30a2\u30bb\u30c3\u30c8\u3092\u8868\u793a\u3059\u308bAffiche les assets g\u00e9olocalis\u00e9s dans un planMostra contingut geolocalitzat en un mapa.Toon geolocale content op een kaart.Megjelen\u00edti a f\u00f6ldrajzi tartalmakat egy t\u00e9rk\u00e9pen.Stellt Assets mit geografischen Informationen in einer Karte dar.','ftl','<#assign\u000a\u0009defaultLatitude = -3.6833\u000a\u0009defaultLongitude = 40.40\u000a\u000a\u0009group = themeDisplay.getScopeGroup()\u000a\u000a\u0009mapsAPIProvider = group.getLiveParentTypeSettingsProperty("mapsAPIProvider")!""\u000a\u000a\u0009companyPortletPreferences = prefsPropsUtil.getPreferences(companyId)\u000a/>\u000a\u000a<#if validator.isNull(mapsAPIProvider)>\u000a\u0009<#assign mapsAPIProvider = companyPortletPreferences.getValue("mapsAPIProvider", "Google") />\u000a\u000a\u000a<#assign featureCollectionJSONObject = jsonFactoryUtil.createJSONObject() />\u000a\u000a<@liferay.silently featureCollectionJSONObject.put("type", "FeatureCollection") />\u000a\u000a<#assign featureJSONArray = jsonFactoryUtil.createJSONArray() />\u000a\u000a<#list entries as entry>\u000a\u0009<#assign\u000a\u0009\u0009assetRenderer = entry.getAssetRenderer()\u000a\u000a\u0009\u0009ddmFormValuesReader = assetRenderer.getDDMFormValuesReader()\u000a\u000a\u0009\u0009ddmFormFieldValues = ddmFormValuesReader.getDDMFormFieldValues("ddm-geolocation")\u000a\u000a\u0009\u0009coordinatesJSONObjects = []\u000a\u0009/>\u000a\u000a\u0009<#list ddmFormFieldValues as ddmFormFieldValue>\u000a\u0009\u0009<#assign\u000a\u0009\u0009\u0009value = ddmFormFieldValue.getValue()\u000a\u000a\u0009\u0009\u0009coordinatesJSONObject = jsonFactoryUtil.createJSONObject(value.getString(locale))\u000a\u000a\u0009\u0009\u0009coordinatesJSONObjects = coordinatesJSONObjects + [coordinatesJSONObject]\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u0009<#list coordinatesJSONObjects as coordinatesJSONObject>\u000a\u0009\u0009<#assign featureJSONObject = jsonFactoryUtil.createJSONObject() />\u000a\u000a\u0009\u0009<@liferay.silently featureJSONObject.put("type", "Feature") />\u000a\u000a\u0009\u0009<#assign geometryJSONObject = jsonFactoryUtil.createJSONObject() />\u000a\u000a\u0009\u0009<@liferay.silently geometryJSONObject.put("type", "Point") />\u000a\u000a\u0009\u0009<#assign coordinatesJSONArray = [coordinatesJSONObject.getDouble("longitude"), coordinatesJSONObject.getDouble("latitude")] />\u000a\u000a\u0009\u0009<@liferay.silently geometryJSONObject.put("coordinates", coordinatesJSONArray) />\u000a\u000a\u0009\u0009<@liferay.silently featureJSONObject.put("geometry", geometryJSONObject) />\u000a\u000a\u0009\u0009<#assign propertiesJSONObject = jsonFactoryUtil.createJSONObject() />\u000a\u000a\u0009\u0009<@liferay.silently propertiesJSONObject.put("title", assetRenderer.getTitle(locale)) />\u000a\u000a\u0009\u0009<#assign entryAbstract>\u000a\u0009\u0009\u0009<@getAbstract asset=entry />\u000a\u0009\u0009\u000a\u000a\u0009\u0009<@liferay.silently propertiesJSONObject.put("abstract", entryAbstract) />\u000a\u000a\u0009\u0009<#if stringUtil.equals(mapsAPIProvider, "Google")>\u000a\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009images = {\u000a\u0009\u0009\u0009\u0009\u0009"com.liferay.document.library.kernel.model.DLFileEntry": "${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/green-dot.png",\u000a\u0009\u0009\u0009\u0009\u0009"com.liferay.portlet.dynamicdatalists.model.DDLRecord": "${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/red-dot.png",\u000a\u0009\u0009\u0009\u0009\u0009"com.liferay.journal.model.JournalArticle": "${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/blue-dot.png",\u000a\u0009\u0009\u0009\u0009\u0009"default": "${themeDisplay.getProtocol()}://maps.google.com/mapfiles/ms/icons/yellow-dot.png"\u000a\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009<#if images?keys?seq_contains(entry.getClassName())>\u000a\u0009\u0009\u0009\u0009<@liferay.silently propertiesJSONObject.put("icon", images[entry.getClassName()]) />\u000a\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009<@liferay.silently propertiesJSONObject.put("icon", images["default"]) />\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u000a\u000a\u0009\u0009<@liferay.silently featureJSONObject.put("properties", propertiesJSONObject) />\u000a\u000a\u0009\u0009<@liferay.silently featureJSONArray.put(featureJSONObject) />\u000a\u0009\u000a\u000a\u000a<@liferay.silently featureCollectionJSONObject.put("features", featureJSONArray) />\u000a\u000a\u000a\u000a<@liferay_map["map-display"]\u000a\u0009name=''Map''\u000a\u0009points="${featureCollectionJSONObject}"\u000a/>\u000a\u000a<@liferay_aui.script use="liferay-map-base">\u000a\u0009Liferay.componentReady(''<@portlet.namespace />Map'').then(\u000a\u0009\u0009function(map) {\u000a\u0009\u0009\u0009map.on(\u000a\u0009\u0009\u0009\u0009''featureClick'',\u000a\u0009\u0009\u0009\u0009function(event) {\u000a\u0009\u0009\u0009\u0009\u0009var feature = event.feature;\u000a\u000a\u0009\u0009\u0009\u0009\u0009map.openDialog(\u000a\u0009\u0009\u0009\u0009\u0009\u0009{\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009content: feature.getProperty(''abstract''),\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009marker: feature.getMarker(),\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009position: feature.getGeometry().get(''location'')\u000a\u0009\u0009\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009\u0009\u0009);\u000a\u0009\u0009\u0009\u0009}\u000a\u0009\u0009\u0009);\u000a\u0009\u0009}\u000a\u0009);\u000a\u000a\u000a<#macro getAbstract asset>\u000a\u0009
\u000a\u0009\u0009<#assign\u000a\u0009\u0009\u0009showEditURL = paramUtil.getBoolean(renderRequest, "showEditURL", true)\u000a\u000a\u0009\u0009\u0009assetRenderer = asset.getAssetRenderer()\u000a\u0009\u0009/>\u000a\u000a\u0009\u0009<#if showEditURL && assetRenderer.hasEditPermission(permissionChecker)>\u000a\u0009\u0009\u0009<#assign redirectURL = renderResponse.createLiferayPortletURL(themeDisplay.getPlid(), themeDisplay.getPortletDisplay().getId(), "RENDER_PHASE", false) />\u000a\u000a\u0009\u0009\u0009${redirectURL.setParameter("mvcPath", "/add_asset_redirect.jsp")}\u000a\u000a\u0009\u0009\u0009<#assign\u000a\u0009\u0009\u0009\u0009editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState("POP_UP"), redirectURL)\u000a\u000a\u0009\u0009\u0009\u0009taglibEditURL = "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()) + "''});"\u000a\u0009\u0009\u0009/>\u000a\u000a\u0009\u0009\u0009<@liferay_ui.icon\u000a\u0009\u0009\u0009\u0009image="edit"\u000a\u0009\u0009\u0009\u0009label=true\u000a\u0009\u0009\u0009\u0009message="edit"\u000a\u0009\u0009\u0009\u0009url=taglibEditURL\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#if assetRenderer.getThumbnailPath(renderRequest)??>\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u000a\u000a\u0009\u0009<#assign assetURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, assetRenderer, asset, !stringUtil.equals(assetLinkBehavior, "showFullContent")) />\u000a\u000a\u0009\u0009
\u000a\u0009\u0009\u0009

${assetRenderer.getTitle(locale)}

\u000a\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009${assetRenderer.getSummary(renderRequest, renderResponse)}\u000a\u0009\u0009\u0009
\u000a\u0009\u0009
\u000a\u000a\u0009\u0009
\u000a\u0009\u0009\u0009${languageUtil.get(locale, "read-more")} »\u000a\u0009\u0009
\u000a\u0009
\u000a',0,20103,NULL,'2019-05-09 00:27:52.603000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32286,20135,20099,20103,NULL,'2019-05-09 00:27:52.610000',20015,0,32284,'1.0','Muotoiltu yhteenvetoRich Summary\u4e30\u5bcc\u603b\u7ed3Resumen completo\u05ea\u05e7\u05e6\u05d9\u05e8 \u05e2\u05e9\u05d9\u05e8Sum\u00e1rio Rico\u8981\u7d04\uff08\u6587\u5b57\u6570\u591a\u3081\uff09Sommaire enrichiResum enriquitRijke samenvattingB\u0151 \u00f6sszes\u00edt\u0151Rich-Text-Zusammenfassung','N\u00e4ytt\u00e4\u00e4 lyhenteet, kuvakkeet, liittyv\u00e4t sis\u00e4ll\u00f6t ja sis\u00e4lt\u00f6jen tulosta/muokkaa toiminnot. Voit ottaa mukaan my\u00f6s sis\u00e4lt\u00f6jen kirjanmerkit ja arvostelut.Displays abstracts, icons, related assets, and print/edit actions for assets. Optionally include asset bookmarks and ratings.\u663e\u793a\u6458\u8981\u3001\u56fe\u6807\u3001\u76f8\u5173\u8d44\u4ea7\u4ee5\u53ca\u8d44\u4ea7\u7684\u6253\u5370\u548c\u7f16\u8f91\u64cd\u4f5c\u3002\u53ef\u9009\u62e9\u6027\u5305\u542b\u8d44\u4ea7\u4e66\u7b7e\u548c\u8bc4\u5206\u3002Muestra abstractos, iconos, activos relacionados e imprime/edita acciones para activos. Opcionalmente incluye marcadores de activos y calificaciones.\u05de\u05e6\u05d9\u05d2 \u05ea\u05e7\u05e6\u05d9\u05e8\u05d9\u05dd, \u05e1\u05de\u05dc\u05d9\u05dd, \u05e0\u05db\u05e1\u05d9\u05dd \u05e7\u05e9\u05d5\u05e8\u05d9\u05dd \u05d5\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea \u05d4\u05d3\u05e4\u05e1\u05d4/\u05e2\u05e8\u05d9\u05db\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05e0\u05db\u05e1\u05d9\u05dd. \u05d0\u05d5\u05e4\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9\u05ea \u05de\u05db\u05d9\u05dc \u05e1\u05d9\u05de\u05e0\u05d9\u05d5\u05ea \u05e0\u05db\u05e1\u05d9\u05dd \u05d5\u05d3\u05d9\u05e8\u05d5\u05d2\u05d9\u05dd.Exibe abstracts, \u00edcones, conte\u00fados relacionados e a\u00e7\u00f5es de imprimir/editar para os conte\u00fados. Opcionalmente, inclui marcadores e classifica\u00e7\u00f5es de conte\u00fados.\u6982\u8981\u3001\u30a2\u30a4\u30b3\u30f3\u3001\u95a2\u9023\u3059\u308b\u30a2\u30bb\u30c3\u30c8\u3001\u30a2\u30bb\u30c3\u30c8\u306e\u5370\u5237/\u7de8\u96c6\u3092\u8868\u793a\u3059\u308b\u3002\u30a2\u30bb\u30c3\u30c8\u306e\u30d6\u30c3\u30af\u30de\u30fc\u30af\u3068\u8a55\u4fa1\u3082\u8a2d\u5b9a\u3067\u304d\u307e\u3059Affiche les r\u00e9sum\u00e9s, icons, les assets relatifs, et les actions imprimer/\u00e9diter pour les assets. Facultativement inclut les signets et les notations d''assets.Mostra resums, icones, continguts relacionats i accions d''impressi\u00f3 o edici\u00f3 per continguts. Opcionalment, inclou enlla\u00e7os i valoracions.Toon samenvattingen, pictogrammen, gerelateerde content en afdruk en bewerk acties voor content. Voeg optioneel bladwijzers en beoordelingen toe.Megjelen\u00edti a kivonatokat, ikonokat, a kapcsol\u00f3d\u00f3 tartalmakat, \u00e9s a nyomtat\u00e1si/szerkeszt\u00e9si m\u0171veleteket a tarlamakhoz. Opcion\u00e1lisan tartalmazza a tartalom k\u00f6nyvjelz\u0151ket \u00e9s \u00e9rt\u00e9kel\u00e9seket.Stellt Kurzfassungen, Icons, verwandte Assets sowie Druck- und Bearbeitungsoptionen f\u00fcr Assets dar. Kann auch Bookmarks und Bewertungen enthalten.','ftl','<#if !entries?has_content>\u000a\u0009<#if !themeDisplay.isSignedIn()>\u000a\u0009\u0009${renderRequest.setAttribute("PORTLET_CONFIGURATOR_VISIBILITY", true)}\u000a\u0009\u000a\u000a\u0009
\u000a\u0009\u0009<@liferay_ui["message"] key="there-are-no-results" />\u000a\u0009
\u000a\u000a\u000a<#list entries as entry>\u000a\u0009<#assign\u000a\u0009\u0009entry = entry\u000a\u000a\u0009\u0009assetRenderer = entry.getAssetRenderer()\u000a\u000a\u0009\u0009entryTitle = htmlUtil.escape(assetRenderer.getTitle(locale))\u000a\u000a\u0009\u0009viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, assetRenderer, entry, !stringUtil.equals(assetLinkBehavior, "showFullContent"))\u000a\u0009/>\u000a\u000a\u0009
\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@getPrintIcon />\u000a\u000a\u0009\u0009\u0009<@getFlagsIcon />\u000a\u000a\u0009\u0009\u0009<@getEditIcon />\u000a\u0009\u0009
\u000a\u000a\u0009\u0009

\u000a\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009${entryTitle}\u000a\u0009\u0009\u0009\u000a\u0009\u0009

\u000a\u000a\u0009\u0009<@getMetadataField fieldName="tags" />\u000a\u000a\u0009\u0009<@getMetadataField fieldName="create-date" />\u000a\u000a\u0009\u0009<@getMetadataField fieldName="view-count" />\u000a\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@getSocialBookmarks />\u000a\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009<@getMetadataField fieldName="author" />\u000a\u000a\u0009\u0009\u0009\u0009${htmlUtil.escape(assetRenderer.getSummary(renderRequest, renderResponse))}\u000a\u000a\u0009\u0009\u0009\u0009<@liferay.language key="read-more" /><@liferay.language key="about" />${entryTitle} »\u000a\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009<@getRatings />\u000a\u000a\u0009\u0009\u0009<@getRelatedAssets />\u000a\u000a\u0009\u0009\u0009<@getDiscussion />\u000a\u0009\u0009
\u000a\u0009
\u000a\u000a\u000a<#macro getDiscussion>\u000a\u0009<#if getterUtil.getBoolean(enableComments) && assetRenderer.isCommentable()>\u000a\u0009\u0009
\u000a\u000a\u0009\u0009<#assign discussionURL = renderResponse.createActionURL() />\u000a\u000a\u0009\u0009${discussionURL.setParameter("javax.portlet.action", "invokeTaglibDiscussion")}\u000a\u000a\u0009\u0009<@liferay_comment["discussion"]\u000a\u0009\u0009\u0009className=entry.getClassName()\u000a\u0009\u0009\u0009classPK=entry.getClassPK()\u000a\u0009\u0009\u0009formAction=discussionURL?string\u000a\u0009\u0009\u0009formName="fm" + entry.getClassPK()\u000a\u0009\u0009\u0009ratingsEnabled=getterUtil.getBoolean(enableCommentRatings)\u000a\u0009\u0009\u0009redirect=currentURL\u000a\u0009\u0009\u0009userId=assetRenderer.getUserId()\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getEditIcon>\u000a\u0009<#if assetRenderer.hasEditPermission(themeDisplay.getPermissionChecker())>\u000a\u0009\u0009<#assign redirectURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${redirectURL.setParameter("mvcPath", "/add_asset_redirect.jsp")}\u000a\u0009\u0009${redirectURL.setWindowState("pop_up")}\u000a\u000a\u0009\u0009<#assign editPortletURL = assetRenderer.getURLEdit(renderRequest, renderResponse, windowStateFactory.getWindowState("pop_up"), redirectURL)!"" />\u000a\u000a\u0009\u0009<#if validator.isNotNull(editPortletURL)>\u000a\u0009\u0009\u0009<#assign title = languageUtil.format(locale, "edit-x", entryTitle, false) />\u000a\u000a\u0009\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009\u0009cssClass="icon-monospaced visible-interaction"\u000a\u0009\u0009\u0009\u0009icon="pencil"\u000a\u0009\u0009\u0009\u0009markupView="lexicon"\u000a\u0009\u0009\u0009\u0009message=title\u000a\u0009\u0009\u0009\u0009url="javascript:Liferay.Util.openWindow({id:''" + renderResponse.getNamespace() + "editAsset'', title: ''" + title + "'', uri:''" + htmlUtil.escapeURL(editPortletURL.toString()) + "''});"\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u000a<#macro getFlagsIcon>\u000a\u0009<#if getterUtil.getBoolean(enableFlags)>\u000a\u0009\u0009<@liferay_flags["flags"]\u000a\u0009\u0009\u0009className=entry.getClassName()\u000a\u0009\u0009\u0009classPK=entry.getClassPK()\u000a\u0009\u0009\u0009contentTitle=entry.getTitle(locale)\u000a\u0009\u0009\u0009label=false\u000a\u0009\u0009\u0009reportedUserId=entry.getUserId()\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getMetadataField\u000a\u0009fieldName\u000a>\u000a\u0009<#if stringUtil.split(metadataFields)?seq_contains(fieldName)>\u000a\u0009\u0009\u000a\u0009\u000a\u000a\u000a<#macro getPrintIcon>\u000a\u0009<#if getterUtil.getBoolean(enablePrint)>\u000a\u0009\u0009<#assign printURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009${printURL.setParameter("mvcPath", "/view_content.jsp")}\u000a\u0009\u0009${printURL.setParameter("assetEntryId", entry.getEntryId()?string)}\u000a\u0009\u0009${printURL.setParameter("viewMode", "print")}\u000a\u0009\u0009${printURL.setParameter("type", entry.getAssetRendererFactory().getType())}\u000a\u0009\u0009${printURL.setWindowState("pop_up")}\u000a\u000a\u0009\u0009<@liferay_ui["icon"]\u000a\u0009\u0009\u0009iconCssClass="icon-print"\u000a\u0009\u0009\u0009message="print"\u000a\u0009\u0009\u0009url="javascript:Liferay.Util.openWindow({id:''" + renderResponse.getNamespace() + "printAsset'', title: ''" + languageUtil.format(locale, "print-x-x", ["hide-accessible", entryTitle], false) + "'', uri: ''" + htmlUtil.escapeURL(printURL.toString()) + "''});"\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getRatings>\u000a\u0009<#if getterUtil.getBoolean(enableRatings) && assetRenderer.isRatable()>\u000a\u0009\u0009
\u000a\u0009\u0009\u0009<@liferay_ui["ratings"]\u000a\u0009\u0009\u0009\u0009className=entry.getClassName()\u000a\u0009\u0009\u0009\u0009classPK=entry.getClassPK()\u000a\u0009\u0009\u0009/>\u000a\u0009\u0009
\u000a\u0009\u000a\u000a\u000a<#macro getRelatedAssets>\u000a\u0009<#if getterUtil.getBoolean(enableRelatedAssets)>\u000a\u0009\u0009<@liferay_asset["asset-links"]\u000a\u0009\u0009\u0009assetEntryId=entry.getEntryId()\u000a\u0009\u0009\u0009viewInContext=!stringUtil.equals(assetLinkBehavior, "showFullContent")\u000a\u0009\u0009/>\u000a\u0009\u000a\u000a\u000a<#macro getSocialBookmarks>\u000a\u0009<@liferay_social_bookmarks["bookmarks"]\u000a\u0009\u0009className=entry.getClassName()\u000a\u0009\u0009classPK=entry.getClassPK()\u000a\u0009\u0009displayStyle="${socialBookmarksDisplayStyle}"\u000a\u0009\u0009target="_blank"\u000a\u0009\u0009title=entry.getTitle(locale)\u000a\u0009\u0009url=viewURL\u000a\u0009/>\u000a',0,20103,NULL,'2019-05-09 00:27:52.610000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32508,20135,20099,20103,NULL,'2019-05-09 00:27:56.217000',31809,32503,32506,'1.0','Tavallinen web-sis\u00e4lt\u00f6Basic Web Content\u57fa\u672c Web \u5185\u5bb9Contenido web b\u00e1sico\u05ea\u05d5\u05db\u05df \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8\u05d9 \u05d1\u05e1\u05d9\u05e1\u05d9Conte\u00fado Web b\u00e1sico\u57fa\u672cWeb\u30b3\u30f3\u30c6\u30f3\u30c4Contenu web de baseContigut web b\u00e0sicBasiswebcontentAlapvet\u0151 webtartalomEinfacher Webcontent','','ftl','${content.getData()}',0,20103,NULL,'2019-05-09 00:27:56.217000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32703,20135,20099,20103,NULL,'2019-05-09 00:27:56.910000',30901,0,32701,'1.0','PerusBasic\u57fa\u672c\u7684B\u00e1sico\u05d1\u05e1\u05d9\u05e1\u05d9B\u00e1sico\u901a\u5e38\u306e\u691c\u7d22\u306b\u623b\u308bBasiqueB\u00e0sicBasisEgyszer\u0171Einfach','N\u00e4ytt\u00e4\u00e4 blogien otsikot, tekij\u00e4t ja lyhenteet lyhyestiDisplays titles, authors, and abstracts compactly for blog entries.\u7b80\u4ecb\u663e\u793a\u535a\u5ba2\u7684\u540d\u5b57\uff0c\u4f5c\u8005\u548c\u6458\u8981\u3002Muestra de forma compacta t\u00edtulos, autores y res\u00famenes para las entradas del blog.\u05de\u05e6\u05d9\u05d2 \u05db\u05d5\u05ea\u05e8\u05d9\u05dd, \u05de\u05d7\u05d1\u05e8\u05d9\u05dd \u05d5\u05de\u05e7\u05e6\u05e8 \u05d1\u05d0\u05d5\u05e4\u05df \u05e7\u05d5\u05de\u05e4\u05e7\u05d8\u05d9 \u05e2\u05d1\u05d5\u05e8 \u05de\u05d0\u05de\u05e8\u05d9 \u05d1\u05dc\u05d5\u05d2.Exibe t\u00edtulos, autores e resumos compactamente para posts de blog.\u30bf\u30a4\u30c8\u30eb\u3001\u4f5c\u6210\u8005\u3001\u8981\u7d04\u306f\u3001\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc\u7528\u306b\u5c0f\u3055\u304f\u307e\u3068\u3081\u3089\u308c\u307e\u3059Affiche titres, auteurs, et abstraits de mani\u00e8re compacte pour les entr\u00e9es de blog.Mostra els titles, autors i resums de forma compacta per les entrades del blog.Geeft titels, auteurs en samenvatting compact weer voor blogs.Megjelen\u00edti kompakt m\u00f3don a c\u00edmeket, szerz\u0151ket \u00e9s kivonatokat a blog bejegyz\u00e9sekhez.Kompakte Darstellung von Titel, Autoren und Kurzfassungen f\u00fcr Blogeintr\u00e4ge.','ftl','
\u000a\u0009<#if entries?has_content>\u000a\u0009\u0009<#list entries as curBlogEntry>\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#assign viewEntryPortletURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("mvcRenderCommandName", "/blogs/view_entry")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#if validator.isNotNull(curBlogEntry.getUrlTitle())>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("urlTitle", curBlogEntry.getUrlTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("entryId", curBlogEntry.getEntryId()?string)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009

\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${blogsEntryUtil.getDisplayTitle(resourceBundle, curBlogEntry)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009

\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009

${stringUtil.shorten(htmlUtil.stripHtml(curBlogEntry.getContent()), 400)}

\u000a\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#if blogsPortletInstanceConfiguration.enableComments()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#assign viewCommentsPortletURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewCommentsPortletURL.setParameter("mvcRenderCommandName", "/blogs/view_entry")}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewCommentsPortletURL.setParameter("scroll", renderResponse.getNamespace() + "discussionContainer")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if validator.isNotNull(curBlogEntry.getUrlTitle())>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewCommentsPortletURL.setParameter("urlTitle", curBlogEntry.getUrlTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewCommentsPortletURL.setParameter("entryId", curBlogEntry.getEntryId()?string)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@clay["icon"] symbol="comments" />\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009 ${commentManager.getCommentsCount("com.liferay.blogs.model.BlogsEntry", curBlogEntry.getEntryId())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#if blogsPortletInstanceConfiguration.enableRatings()>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_ui["ratings"]\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009className="com.liferay.blogs.model.BlogsEntry"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009classPK=curBlogEntry.getEntryId()\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#assign bookmarkURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${bookmarkURL.setWindowState(windowStateFactory.getWindowState("NORMAL"))}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009${bookmarkURL.setParameter("mvcRenderCommandName", "/blogs/view_entry")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if validator.isNotNull(curBlogEntry.getUrlTitle())>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${bookmarkURL.setParameter("urlTitle", curBlogEntry.getUrlTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${bookmarkURL.setParameter("entryId", curBlogEntry.getEntryId()?string)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009<@liferay_social_bookmarks["bookmarks"]\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009className="com.liferay.blogs.model.BlogsEntry"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009classPK=curBlogEntry.getEntryId()\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009displayStyle="inline"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009target="_blank"\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009title=blogsEntryUtil.getDisplayTitle(resourceBundle, curBlogEntry)\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009types=blogsPortletInstanceConfiguration.socialBookmarksTypes()\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009url=portalUtil.getCanonicalURL(bookmarkURL.toString(), themeDisplay, themeDisplay.getLayout())\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009/>\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u000a\u0009\u000a
',0,20103,NULL,'2019-05-09 00:27:56.910000') -INSERT INTO DDMTEMPLATEVERSION VALUES(32706,20135,20099,20103,NULL,'2019-05-09 00:27:56.918000',30901,0,32704,'1.0','KorttiCard\u5361\u7247Tarjeta\u05db\u05bc\u05b7\u05e8\u05b0\u05d8\u05b4\u05d9\u05e1Cart\u00e3o\u30ab\u30fc\u30c9CarteTargetaKaartK\u00e1rtyaKarte','N\u00e4ytt\u00f6 kattaa kuvat, otsikot, tekij\u00e4t ja abstraktit k\u00e4ytt\u00e4en kortteja blogientryille.Display cover images, titles, authors and abstracts using cards for blog entries.\u4f7f\u7528\u5361\u7247\u4e3a\u535a\u5ba2\u6761\u76ee\u663e\u793a\u5c01\u9762\u3001\u6807\u9898\u3001\u4f5c\u8005\u548c\u6458\u8981\u3002Muestra im\u00e1genes de portada, t\u00edtulos, autores y abstractos con tarjetas de entradas de blog.\u05d4\u05e6\u05d2 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e0\u05d5\u05e9\u05d0, \u05db\u05d5\u05ea\u05e8\u05d5\u05ea, \u05de\u05d7\u05d1\u05e8\u05d9\u05dd \u05d5\u05ea\u05e7\u05e6\u05d9\u05e8\u05d9\u05dd \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05e7\u05dc\u05e4\u05d9\u05dd \u05e2\u05d1\u05d5\u05e8 \u05e8\u05e9\u05d5\u05de\u05d5\u05ea \u05d4\u05d1\u05dc\u05d5\u05d2.Exibir imagens da cobertura, t\u00edtulos, autores e resumos usando cart\u00f5es para entradas do blog.\u30d6\u30ed\u30b0 \u30a8\u30f3\u30c8\u30ea\u3092\u8868\u7d19\u306e\u753b\u50cf\u3001\u30bf\u30a4\u30c8\u30eb\u3001\u8457\u8005\u3068\u8981\u7d04\u3092\u30ab\u30fc\u30c9\u5f62\u5f0f\u3067\u8868\u793a\u3057\u307e\u3059Afficher dans les entr\u00e9es de blog les images de couvertures, les titres, les auteurs et les r\u00e9sum\u00e9s en utilisant des cartes.Mostra imatges de portada, t\u00edtols, autors i resums amb targetes per a les entrades del blog.Toon cover-afbeeldingen, titels, auteurs en samenvattingen m. b. v. kaarten voor blogberichten.Bor\u00edt\u00f3k\u00e9pek, c\u00edmek, szerz\u0151k \u00e9s absztraktok megjelen\u00edt\u00e9se blogbejegyz\u00e9sek k\u00e1rty\u00e1i seg\u00edts\u00e9g\u00e9vel.Zeigen Sie Coverbilder, Titel, Autoren und Kurzfassungen mit Karten f\u00fcr Blog-Eintr\u00e4ge an.','ftl','
\u000a\u0009<#if entries?has_content>\u000a\u0009\u0009<#list entries as curBlogEntry>\u000a\u0009\u0009\u0009<#if curBlogEntry.getCoverImageURL(themeDisplay)??>\u000a\u0009\u0009\u0009\u0009<#assign cardImage = true />\u000a\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009<#assign cardImage = false />\u000a\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009<#if cardImage>\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009thumbnail\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#assign viewEntryPortletURL = renderResponse.createRenderURL() />\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("mvcRenderCommandName", "/blogs/view_entry")}\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#if validator.isNotNull(curBlogEntry.getUrlTitle())>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("urlTitle", curBlogEntry.getUrlTitle())}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${viewEntryPortletURL.setParameter("entryId", curBlogEntry.getEntryId()?string)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009

\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009${blogsEntryUtil.getDisplayTitle(resourceBundle, curBlogEntry)}\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009

\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#if cardImage>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009

${stringUtil.shorten(htmlUtil.stripHtml(curBlogEntry.getContent()), 150)}

\u000a\u0009\u0009\u0009\u0009\u0009\u0009<#else>\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u0009

${stringUtil.shorten(htmlUtil.stripHtml(curBlogEntry.getContent()), 400)}

\u000a\u0009\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009\u0009
\u000a\u000a\u0009\u0009\u0009\u0009\u0009\u000a\u0009\u0009\u0009\u0009
\u000a\u0009\u0009\u0009
\u000a\u0009\u0009\u000a\u0009\u000a
',0,20103,NULL,'2019-05-09 00:27:56.918000') -INSERT INTO AUDIT_AUDITEVENT VALUES(33608,20099,20139,'Test Test','2019-07-30 09:43:24.415000','UPDATE','com.liferay.portal.kernel.model.User','20139',NULL,'172.19.0.1','172.19.0.1','localhost',8082,'79D3FEA73C42D06E32D0E6B33E34B10D','{"attributes":[{"newValue":"aa","name":"reminderQueryAnswer","oldValue":""},{"newValue":"what-is-your-father''s-middle-name","name":"reminderQueryQuestion","oldValue":""}]}') diff --git a/deps/liferay/transit/.gitkeep b/deps/liferay/transit/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/docker-compose.deps.demo.yml b/docker-compose.deps.demo.yml index 6c3030ff4..98f20c214 100644 --- a/docker-compose.deps.demo.yml +++ b/docker-compose.deps.demo.yml @@ -45,18 +45,6 @@ services: volumes: - redis-data:/data - liferay: - build: - context: deps/liferay/docker - dockerfile: Dockerfile - ports: - - 8082:8080 - volumes: - - ./deps/liferay/transit:/etc/liferay/tmp # for copying files from within the container to host - # https://github.com/docker/compose/issues/3270#issuecomment-206214034 - # ./deps/liferay/out must be owned by non-root - - ./deps/liferay/sample/hypersonic:/etc/liferay/mount/files/data/hypersonic - micka: container_name: micka build: diff --git a/docker-compose.deps.yml b/docker-compose.deps.yml index 393dd5f16..10fc1c7c2 100644 --- a/docker-compose.deps.yml +++ b/docker-compose.deps.yml @@ -60,18 +60,6 @@ services: volumes: - redis-data:/data - liferay: - build: - context: deps/liferay/docker - dockerfile: Dockerfile - ports: - - 8082:8080 - volumes: - - ./deps/liferay/transit:/etc/liferay/tmp # for copying files from within the container to host - # https://github.com/docker/compose/issues/3270#issuecomment-206214034 - # ./deps/liferay/tmp must be owned by non-root - - ./deps/liferay/sample/hypersonic:/etc/liferay/mount/files/data/hypersonic - wagtail: build: context: deps/wagtail From fc547bd3a2ca25d5297baac72cf438156dbe0673 Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Tue, 9 May 2023 13:23:28 +0200 Subject: [PATCH 07/11] Document removing Liferay from dev stack --- CHANGELOG.md | 1 + doc/dependencies.md | 2 -- doc/env-settings.md | 4 ++-- doc/oauth2/auth-code.puml | 2 +- doc/oauth2/client-recommendations.md | 4 ++-- doc/oauth2/get-current-user.puml | 2 +- doc/oauth2/index.md | 31 +++++++++++++++++++++------- doc/oauth2/patch-current-user.puml | 2 +- doc/oauth2/refresh.puml | 5 +++-- doc/oauth2/rest.puml | 2 +- doc/security.md | 2 +- 11 files changed, 36 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5974c0376..b3a1bc119 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ #### Data migrations ### Changes - [#528](https://github.com/LayerManager/layman/issues/528) Endpoints [GET Layers](doc/rest.md#get-layers) and [GET Workspace Layers](doc/rest.md#get-workspace-layers) returns new key `wfs_wms_status`. +- [#765](https://github.com/LayerManager/layman/issues/765) Remove Liferay from dev stack, use [Wagtail CRX](https://docs.coderedcorp.com/wagtail-crx/) + [Django OAuth Toolkit](https://django-oauth-toolkit.readthedocs.io/en/latest/) as new OAuth2 provider (authorization server). - Upgrade Python dependencies - redis 4.5.1 -> 4.5.4 - owslib 0.27.2 -> 0.28.1 diff --git a/doc/dependencies.md b/doc/dependencies.md index ba3257768..71b5cecb3 100644 --- a/doc/dependencies.md +++ b/doc/dependencies.md @@ -9,7 +9,6 @@ | [qgis-server](https://docs.qgis.org/3.16/en/docs/server_manual/index.html) | 3.16 | GNU GPL v2 | jirikcz/qgis-server | prod-external | bin | to provide WMS endpoint | | [redis](https://redis.io/) | 4.0.11 | BSD 3-Clause | docker-library/redis | prod-external | bin | celery message broker, source of truth for server side | | [micka](https://github.com/hsrs-cz/Micka) | [v2020.014](https://github.com/hsrs-cz/Micka/releases/tag/v2020.014) | BSD 3-Clause | jirikcz/micka | prod-external | bin | to provide CSW endpoint | -| [liferay portal](https://portal.liferay.dev/) | 7.1.3 | GNU GPL v2 | liferay/portal | opt | bin | as OAuth2 provider | | [Wagtail](https://wagtail.org/) + [extensions](#wagtail-extensions) | 4.2 | BSD 3-Clause | deps/wagtail/laymanportal/requirements.txt | opt | bin | as OAuth2 provider | @@ -87,7 +86,6 @@ | [docker.osgeo.org/geoserver](https://github.com/geoserver/docker) | GNU GPL v2 | docker-compose.yml | dev | bin | | | [jirikcz/qgis-server](https://github.com/LayerManager/docker-qgis-server) | GNU GPL v3 | docker-compose.yml | dev | bin | | | [layermanager/docker-postgis](https://github.com/layermanager/docker-postgis) | MIT | docker-compose.yml | dev | bin | | -| [liferay/portal](https://github.com/docker-library/redis) | GNU GPL v2 | docker-compose.yml | opt | bin | | | [jirikcz/micka](https://github.com/LayerManager/docker-micka) | GNU GPL v3 | docker-compose.yml | prod-external | bin | | | [samtux/micka](https://github.com/samtux/docker-micka) | GNU GPL v3 | jirikcz/micka | prod-external | src | | | [docker-library/redis](https://github.com/docker-library/redis) | BSD 3-Clause | docker-compose.yml | prod | bin | | diff --git a/doc/env-settings.md b/doc/env-settings.md index cf7723293..059b6e0f3 100644 --- a/doc/env-settings.md +++ b/doc/env-settings.md @@ -82,13 +82,13 @@ URL of LTC OAuth2 callback endpoint to be called after successful OAuth2 authori URL of OAuth2 Introspection endpoint. ### OAUTH2_INTROSPECTION_SUB_KEY -Name of the key in OAuth2 introspection response whose value is OAuth2 subject (also known as "sub"). If not set or set to empty string, `sub` is used, that is suitable for Liferay. Value `username` is suitable for Wagtail. +Name of the key in OAuth2 introspection response whose value is OAuth2 subject (also known as "sub"). Value `username` is suitable for Wagtail. If not set or set to empty string, `sub` is used, that is suitable option for Liferay. ### OAUTH2_USER_PROFILE_URL URL of User Profile endpoint used to obtain user's ID, name, email, etc. ### OAUTH2_SCOPE -Comma-separated list of requested OAuth2 scopes. Value `liferay-json-web-services.everything.read.userprofile` is suitable for Liferay. Do not set this variable at all (not even to empty string) if you don't want to request scope; this is suitable option for Wagtail. +Comma-separated list of requested OAuth2 scopes. Do not set this variable at all (not even to empty string) if you don't want to request scope; this is suitable option for Wagtail. Value `liferay-json-web-services.everything.read.userprofile` is suitable for Liferay. ### GRANT_CREATE_PUBLIC_WORKSPACE List of [users](models.md#user) and [roles](models.md#role) giving them permission to create new [public workspace](models.md#public-workspace). It must be subset of (or equal to) GRANT_PUBLISH_IN_PUBLIC_WORKSPACE. diff --git a/doc/oauth2/auth-code.puml b/doc/oauth2/auth-code.puml index b7849a4f1..b128c78c1 100644 --- a/doc/oauth2/auth-code.puml +++ b/doc/oauth2/auth-code.puml @@ -7,7 +7,7 @@ box "LTC Server" participant "Redirection\nEndpoint" as ltcsredir end box -box "Liferay" +box "Authorization Server" participant "Authorization\nEndpoint" as lrauth participant "Token\nEndpoint" as lrtoken end box diff --git a/doc/oauth2/client-recommendations.md b/doc/oauth2/client-recommendations.md index ae64fd233..2b52139da 100644 --- a/doc/oauth2/client-recommendations.md +++ b/doc/oauth2/client-recommendations.md @@ -5,13 +5,13 @@ Any Layman's client (web, user-agent, mobile, or desktop) that implements [OAuth ## Appropriate Code Grant OAuth2 specifies many ways how to authorize *client* and how *client* obtains access and refresh tokens. These ways are called [authorization grants](https://tools.ietf.org/html/rfc6749#section-1.3). For LTC, the **Authorization Code** grant was chosen. For [native clients (desktop and mobile)](https://tools.ietf.org/html/draft-ietf-oauth-security-topics-13#section-3.1.1), as well as for [user agent applications](https://tools.ietf.org/html/draft-ietf-oauth-browser-based-apps-04#section-7.1), [**Authorization Code with PKCE**](https://tools.ietf.org/html/rfc7636) (RFC7636) is recommended. -Both **Authorization Code** and **Authorization Code with PKCE** grant flows between *client* and *authorization server* are described in [Liferay documentation](https://help.liferay.com/hc/en-us/articles/360018176511-Authorizing-Account-Access-with-OAuth2). +Both **Authorization Code** and **Authorization Code with PKCE** grant flows between *client* and *authorization server* are described in [Django OAuth Toolkit documentation](https://django-oauth-toolkit.readthedocs.io/en/latest/getting_started.html#authorization-code). ## Storing Tokens on a Client An important decision when implementing OAuth2 *client* is where to store access tokens and refresh tokens. The recommendations differ based on [*client profile*](https://tools.ietf.org/html/rfc6749#section-2.1). [*Web Applications*](https://tools.ietf.org/html/rfc6749#section-2.1) are able to store tokens either on server side or client side. There exists quite straightforward recommendations (see e.g. [auth0](https://auth0.com/docs/security/store-tokens#regular-web-apps), [DZone](https://dzone.com/articles/security-best-practices-for-managing-api-access-to) or [StackOverflow](https://security.stackexchange.com/a/209388)). Generally three options are available: -1. Store access tokens in browser memory. It would mean to provide new authorization request against Liferay Portal and manual end-user authorization consent on every page open or page reload. +1. Store access tokens in browser memory. It would mean to provide new authorization request against authorization server and manual end-user authorization consent on every page open or page reload. 2. Store access tokens in both secure and HTTP-only cookies. This option requires to have server side to set access tokens in cookies, and to refresh them using refresh tokens. Also refresh tokens need to be saved on server side. 3. Store access token on server side in any well-protected database. diff --git a/doc/oauth2/get-current-user.puml b/doc/oauth2/get-current-user.puml index dd31ff7c0..a3d71d101 100644 --- a/doc/oauth2/get-current-user.puml +++ b/doc/oauth2/get-current-user.puml @@ -7,7 +7,7 @@ box "LTC Server" end box participant "Layman\nREST API" as layman -box "Liferay" +box "Authorization Server" participant "Introspection\nEndpoint" as lris participant "User Profile\nEndpoint" as lruser end box diff --git a/doc/oauth2/index.md b/doc/oauth2/index.md index c4881e270..7719f8565 100644 --- a/doc/oauth2/index.md +++ b/doc/oauth2/index.md @@ -1,6 +1,6 @@ # Authentication with OAuth2 -Layman is able to authenticate against [OAuth 2.0](https://oauth.net/2/) provider. [Liferay Portal](https://help.liferay.com/hc/en-us/articles/360018176491-OAuth-2-0) is currently the only supported OAuth2 provider, however supporting [other OAuth2 providers](https://en.wikipedia.org/wiki/List_of_OAuth_providers) (e.g. Google or Facebook) should be quite straightforward in future. +Layman is able to authenticate against [OAuth 2.0](https://oauth.net/2/) provider. See [Authorization Server](#authorization-server) to get list of supported providers. ## Roles @@ -31,8 +31,12 @@ From [RFC6749](https://tools.ietf.org/html/rfc6749#section-1.1): ### Layman Layman acts as *resource server*. On every request to REST API, Layman accepts OAuth2 [access token](https://tools.ietf.org/html/rfc6749#section-1.4) from a *client* and validates access token against *authorization server* to authenticate *resource owner* (i.e. end-user). The access token is validated token against *authorization server* by OAuth2 mechanism called [Token Introspection](https://oauth.net/2/token-introspection/) (RFC 7662). Furthermore, Layman is responsible for fetching user-related metadata from *authorization server* using provider-specific endpoint. -### Liferay Portal -[Liferay Portal](https://help.liferay.com/hc/en-us/articles/360018176491-OAuth-2-0) acts as *authorization server*. +### Authorization Server +There are currently two supported *authorization servers* (OAuth2 providers): +- [Django OAuth2 Toolkit](https://django-oauth-toolkit.readthedocs.io/en/latest/) as plugin of [Wagtail CRX](https://docs.coderedcorp.com/wagtail-crx/), this is preferred option +- [Liferay Portal](https://help.liferay.com/hc/en-us/articles/360018176491-OAuth-2-0) + +Supporting [other OAuth2 providers](https://en.wikipedia.org/wiki/List_of_OAuth_providers) (e.g. Google or Facebook) should be quite straightforward in the future. ### Layman Test Client [Layman Test Client](https://github.com/LayerManager/layman-test-client) (LTC) acts as *client*. It is responsible for @@ -50,7 +54,7 @@ Although LTC is currently the only OAuth2 client for Layman, there is an intenti ## Communication ### Initial Authorization using Authorization Code -[**Authorization Code**](https://oauth.net/2/grant-types/authorization-code/) grant flow between *client* and *authorization server* is described in [Liferay documentation](https://help.liferay.com/hc/en-us/articles/360018176511-Authorizing-Account-Access-with-OAuth2#authorization-code-flow). +[**Authorization Code**](https://oauth.net/2/grant-types/authorization-code/) grant flow between *client* and *authorization server* is described in [Django OAuth Toolkit documentation](https://django-oauth-toolkit.readthedocs.io/en/latest/getting_started.html#authorization-code). Schema specific for LTC, distinguishing client side and server side of LTC: @@ -86,7 +90,7 @@ Username is reserved by [PATCH Current User](../rest.md#patch-current-user). Use ### Refresh Access Token During end-user's session, *client* keeps both access tokens and refresh token. When access token expires or it's lifetime is close, *client* should use refresh token to generate new access token at [Token Endpoint](https://tools.ietf.org/html/rfc6749#section-3.2). -Refreshing flow between *client* and *authorization server* is described in [Liferay issue](https://issues.liferay.com/browse/OAUTH2-167). In case of LTC, refreshing happens automatically on any request to Layman REST API if access token expired or it's lifetime is closer than 10 seconds. +In case of LTC, refreshing happens automatically on any request to Layman REST API if access token expired, or it's lifetime is closer than 10 seconds. Schema specific for LTC: @@ -107,6 +111,17 @@ To enable OAuth2 authentication in Layman, adjust following [environment setting Sample values for OAuth2 authentication can be found in [`layman_settings.py`](../../src/layman_settings.py). +### Django OAuth Toolkit Settings +Every *client* must be registered in Django OAuth Toolkit (Wagtail) as *application*, as described in [documentation](https://django-oauth-toolkit.readthedocs.io/en/latest/getting_started.html#oauth2-authorization-grants). For LTC, fill in following settings: +- **Redirect URIs** must contain URL of OAuth2 [Redirection Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1.2). In case of LTC, the value is the same as LTC setting OAUTH2_CALLBACK_URL. +- **Client Type**: Confidential +- **Authorization Grant Type**: Authorization Code +- **Name**: layman-test-client +- **Algorithm**: No OIDC support + +Furthermore, you need to provide endpoint `/profile` with user-related metadata. Implementation of such endpoint is available in file +[deps/wagtail/laymanportal/laymanportal/views.py](../../deps/wagtail/laymanportal/laymanportal/views.py). + ### Liferay Settings Every *client* must be registered in Liferay as *application*, as described in [Liferay documentation](https://help.liferay.com/hc/en-us/articles/360018176491-OAuth-2-0#creating-an-application). For LTC, fill in following settings: - **Website URL** should point to application's home page, e.g. `http://localhost:3000/`. @@ -132,10 +147,10 @@ After registration, add **Client ID** and **Client Secret** pair to Layman's set ### Layman Test Client Settings Check following environment variables of LTC: -- OAUTH2_CLIENT_ID: **Client ID** from Liferay -- OAUTH2_CLIENT_SECRET: **Client Secret** from Liferay +- OAUTH2_CLIENT_ID: **Client ID** from authorization server +- OAUTH2_CLIENT_SECRET: **Client Secret** from authorization server - OAUTH2_AUTH_URL: URL of [Authorization Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1), usually the same as the first URL from Layman's OAUTH2_AUTH_URLS -- OAUTH2_TOKEN_URL: URL of [Token Endpoint](https://tools.ietf.org/html/rfc6749#section-3.2). In case of liferay, it's something like `:///o/oauth2/token` +- OAUTH2_TOKEN_URL: URL of [Token Endpoint](https://tools.ietf.org/html/rfc6749#section-3.2). In case of Django OAuth Toolkit (Wagtail), it's something like `:///o/token` - OAUTH2_CALLBACK_URL: URL of [Redirection Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1.2), the value is `:///auth/oauth2-liferay/callback`. - OAUTH2_USER_PROFILE_URL: URL of Layman's [GET Current User](../rest.md#get-current-user) diff --git a/doc/oauth2/patch-current-user.puml b/doc/oauth2/patch-current-user.puml index 2b1326dcd..d5ba5b0aa 100644 --- a/doc/oauth2/patch-current-user.puml +++ b/doc/oauth2/patch-current-user.puml @@ -7,7 +7,7 @@ box "LTC Server" end box participant "Layman\nREST API" as layman -box "Liferay" +box "Authorization Server" participant "Introspection\nEndpoint" as lris end box diff --git a/doc/oauth2/refresh.puml b/doc/oauth2/refresh.puml index befcfb2d5..ae1df2d90 100644 --- a/doc/oauth2/refresh.puml +++ b/doc/oauth2/refresh.puml @@ -8,7 +8,7 @@ end box participant "Layman\nREST API" as layman -box "Liferay" +box "Authorization Server" participant "Introspection\nEndpoint" as lris participant "Token\nEndpoint" as lrtoken end box @@ -21,7 +21,8 @@ activate ltcsproxy note over ltcsproxy If access token expired or its expiration time is close, - Proxy asks Liferay to refresh the token + Proxy asks Authorization Server + to refresh the token before any other action. end note diff --git a/doc/oauth2/rest.puml b/doc/oauth2/rest.puml index 4beb176db..a5e863bc2 100644 --- a/doc/oauth2/rest.puml +++ b/doc/oauth2/rest.puml @@ -7,7 +7,7 @@ box "LTC Server" end box participant "Layman\nREST API" as layman -box "Liferay" +box "Authorization Server" participant "Introspection\nEndpoint" as lris end box diff --git a/doc/security.md b/doc/security.md index d32dd8534..22fe908d6 100644 --- a/doc/security.md +++ b/doc/security.md @@ -12,7 +12,7 @@ Authentication (**authn**) is the process of obtaining and ensuring identity of Authentication is performed by chain of zero or more authentication modules controlled by [LAYMAN_AUTHN_MODULES](env-settings.md#LAYMAN_AUTHN_MODULES) environment variable. When request comes to REST API, security system calls authentication modules one by one (one module at a time), until one module ensures user identity or until there is no module left. If no module ensured user`s identity, user is considered as **anonymous** user. Currently there is one optional authentication module: -- **OAuth2** module [`layman.authn.oauth2`](../src/layman/authn/oauth2) with Liferay as authorization server. See separate [OAuth2 documentation](oauth2/index.md). +- **OAuth2** module [`layman.authn.oauth2`](../src/layman/authn/oauth2), see separate [OAuth2 documentation](oauth2/index.md). There is also one internal authentication module: - **HTTP Header** module [`layman.authn.http_header`](../src/layman/authn/http_header). This module is required by Layman for internal purposes, so even if LAYMAN_AUTHN_MODULES does not contain `layman.authn.http_header` value, the value is appended automatically. From 5b57fabb9262db8d5cf89b230e52aa0f46562a28 Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Tue, 9 May 2023 13:24:32 +0200 Subject: [PATCH 08/11] Move Liferay Settings documentation to the bottom --- doc/oauth2/index.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/doc/oauth2/index.md b/doc/oauth2/index.md index 7719f8565..e44e61188 100644 --- a/doc/oauth2/index.md +++ b/doc/oauth2/index.md @@ -122,6 +122,15 @@ Every *client* must be registered in Django OAuth Toolkit (Wagtail) as *applicat Furthermore, you need to provide endpoint `/profile` with user-related metadata. Implementation of such endpoint is available in file [deps/wagtail/laymanportal/laymanportal/views.py](../../deps/wagtail/laymanportal/laymanportal/views.py). +### Layman Test Client Settings +Check following environment variables of LTC: +- OAUTH2_CLIENT_ID: **Client ID** from authorization server +- OAUTH2_CLIENT_SECRET: **Client Secret** from authorization server +- OAUTH2_AUTH_URL: URL of [Authorization Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1), usually the same as the first URL from Layman's OAUTH2_AUTH_URLS +- OAUTH2_TOKEN_URL: URL of [Token Endpoint](https://tools.ietf.org/html/rfc6749#section-3.2). In case of Django OAuth Toolkit (Wagtail), it's something like `:///o/token` +- OAUTH2_CALLBACK_URL: URL of [Redirection Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1.2), the value is `:///auth/oauth2-liferay/callback`. +- OAUTH2_USER_PROFILE_URL: URL of Layman's [GET Current User](../rest.md#get-current-user) + ### Liferay Settings Every *client* must be registered in Liferay as *application*, as described in [Liferay documentation](https://help.liferay.com/hc/en-us/articles/360018176491-OAuth-2-0#creating-an-application). For LTC, fill in following settings: - **Website URL** should point to application's home page, e.g. `http://localhost:3000/`. @@ -144,15 +153,3 @@ By default, only Liferay users with Administrator role have enough privileges to - to open permissions, visit *Configuration > OAuth 2 Administration*, click on three dots for desired application and select *Permissions* After registration, add **Client ID** and **Client Secret** pair to Layman's setting OAUTH2_CLIENTS. - -### Layman Test Client Settings -Check following environment variables of LTC: -- OAUTH2_CLIENT_ID: **Client ID** from authorization server -- OAUTH2_CLIENT_SECRET: **Client Secret** from authorization server -- OAUTH2_AUTH_URL: URL of [Authorization Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1), usually the same as the first URL from Layman's OAUTH2_AUTH_URLS -- OAUTH2_TOKEN_URL: URL of [Token Endpoint](https://tools.ietf.org/html/rfc6749#section-3.2). In case of Django OAuth Toolkit (Wagtail), it's something like `:///o/token` -- OAUTH2_CALLBACK_URL: URL of [Redirection Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1.2), the value is `:///auth/oauth2-liferay/callback`. -- OAUTH2_USER_PROFILE_URL: URL of Layman's [GET Current User](../rest.md#get-current-user) - - - From 82f0b0f44e83464d6f7f46cbe67b4b754da5c28f Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Tue, 9 May 2023 14:20:50 +0200 Subject: [PATCH 09/11] Rename Liferay enspoints to OAuth2 endpoints --- .env.demo | 2 +- .env.dev | 4 ++-- .env.test | 2 +- CHANGELOG.md | 3 ++- deps/wagtail/laymanportal/db.sqlite3 | Bin 1392640 -> 1392640 bytes doc/oauth2/index.md | 2 +- 6 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.env.demo b/.env.demo index abcc09ac3..66fe266ba 100644 --- a/.env.demo +++ b/.env.demo @@ -62,7 +62,7 @@ LAYMAN_CLIENT_URL=http://layman_client:3000/client/ # client LAYMAN_CLIENT_PUBLIC_URL=http://localhost/client/ -LAYMAN_CLIENT_VERSION=92d72356446c726da58753c9772a6d93afc5c717 +LAYMAN_CLIENT_VERSION=fbee452b481eb5a8a1125434d110bea5f13dc4e5 # extra hosts to be added to /etc/hosts EXTRA_HOST1=1.2.3.4:1.2.3.4 diff --git a/.env.dev b/.env.dev index 615d9a8bc..3674acf63 100644 --- a/.env.dev +++ b/.env.dev @@ -63,7 +63,7 @@ LAYMAN_CLIENT_URL=http://layman_client:3000/client/ # client LAYMAN_CLIENT_PUBLIC_URL=http://localhost:3000/client/ -LAYMAN_CLIENT_VERSION=92d72356446c726da58753c9772a6d93afc5c717 +LAYMAN_CLIENT_VERSION=fbee452b481eb5a8a1125434d110bea5f13dc4e5 ############################################################################## @@ -87,7 +87,7 @@ OAUTH2_CLIENT_SECRET=aY14rwkEKasNqBEZX8OnhpRk8lpHAfT7oKTlf4LriEK8oMZxhnGKcnt4bZ7 OAUTH2_CLIENT1_ID=test-id-for-client-with-pkce-flow OAUTH2_AUTH_URL=http://localhost:8083/o/authorize OAUTH2_TOKEN_URL=http://wagtail:8000/o/token/ -OAUTH2_CALLBACK_URL=http://localhost:3000/client/authn/oauth2-liferay/callback +OAUTH2_CALLBACK_URL=http://localhost:3000/client/authn/oauth2-provider/callback OAUTH2_INTROSPECTION_URL=http://wagtail:8000/o/introspect/ OAUTH2_INTROSPECTION_SUB_KEY=username OAUTH2_USER_PROFILE_URL=http://wagtail:8000/profile diff --git a/.env.test b/.env.test index 622271860..e79dbf4b0 100644 --- a/.env.test +++ b/.env.test @@ -63,7 +63,7 @@ LAYMAN_CLIENT_URL=http://layman_client_test:3000/client/ # client LAYMAN_CLIENT_PUBLIC_URL=http://layman_test_run_1:8000/client/ -LAYMAN_CLIENT_VERSION=92d72356446c726da58753c9772a6d93afc5c717 +LAYMAN_CLIENT_VERSION=fbee452b481eb5a8a1125434d110bea5f13dc4e5 ############################################################################## diff --git a/CHANGELOG.md b/CHANGELOG.md index b3a1bc119..08239e527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,12 @@ ### Upgrade requirements - Change environment variable [LAYMAN_CLIENT_VERSION](doc/env-settings.md#LAYMAN_CLIENT_VERSION): ``` - LAYMAN_CLIENT_VERSION=d076d4d7f8d1b32ca2b167b64790a3034690f246 + LAYMAN_CLIENT_VERSION=fbee452b481eb5a8a1125434d110bea5f13dc4e5 ``` - Rename environment variable `OAUTH2_LIFERAY_SECRET` to `OAUTH2_CLIENT_SECRET`. - Rename all environment variables `OAUTH2_LIFERAY_SECRET` to `OAUTH2_CLIENT_SECRET`. For example, variable `OAUTH2_LIFERAY_SECRET4` becomes `OAUTH2_CLIENT4_SECRET`. - Rename all other `OAUTH2_LIFERAY_` environment variables to `OAUTH2_`. For example, variable `OAUTH2_LIFERAY_AUTH_URL` becomes `OAUTH2_AUTH_URL`. +- If you are using environment variable [`OAUTH2_CALLBACK_URL`](doc/env-settings.md#oauth2_callback_url), change only its URL path from `/client/authn/oauth2-liferay/callback` to `/client/authn/oauth2-provider/callback`. Keep protocol, domain, and port unchanged. - Stop using environment variable `LAYMAN_AUTHN_OAUTH2_PROVIDERS`, it has no effect to Layman anymore. There is exactly one OAuth2 provider Python module now, no need to set it. - Stop using HTTP header `AuthorizationIssUrl` when [authenticating by OAuth](doc/oauth2/index.md). The header has no effect to Layman anymore. There is exactly one OAuth2 provider now, no need to distinguish it. Now, the only distinguished HTTP header when authenticating by OAuth2 is `Authorization` header. - If you are running Layman with development settings diff --git a/deps/wagtail/laymanportal/db.sqlite3 b/deps/wagtail/laymanportal/db.sqlite3 index f559f4ebde25648b6374487bd7277af6b0421b75..5b99bffeb665263c871338f96ac684b6368a7f6f 100644 GIT binary patch delta 1270 zcmb_cU2NM_7`->PQ`?E}mvpIA*jD;Oflat`9OrjvBc&75!0R?Bl%K-VCQ8z!Nt>lz zic}U+q)G^BTP5&QVVWiePZZ_hf`%5RX=74fsD$7FN>%!@KA=t$2x&vWO$uu!fp|gk z`K<5w9G}luzPD8BE0y|AZ^flE+n&IsPmVscQ*Z!5t!JX!$`^KKIV@Q#RJyOctLrn2 zh4R|2g}olXs)bv<-iR+8(Tpz5AM^#n)7NwKdJaFP5dl^a+<{+U9oAsA?4Dl)YyD#^ zGzbERvB_7PCZ@W9;5YacZoyA*gQ>m&ndc-dR0~gURdAz=2;?M!PvLcFBNxfZvir~o z>4^vu0xx!BDXM2;lOwULT1Xr(s6&}_B3rP%G+^qQ?o+k8A$@@^e^3wlj5uHOCafLH z*sC5%#MAl2P@#1^pFZ9`Fg5j0R;?=#){L-krfnHB*cdq4w#=_;l%JPx1BWDq;-fNl zQJW^%?qOZR9}k>6>$-c*p5-s_UkQio7_K3>#yNAXAzO_lsRXS zE!nX1kvG~o!JK|3nmm?_k7P3Wp~*loH8^4vCW?ua9!tez*+N(gW-RV~d-=eLr<1*r z;;}&TNUHy!|H(u$HX8TpK~q1R>mLul_}ufu#8*-glv+g^S{U59F$k zt;_G(@1I$zG%$z^5`)a(U~tlviqcVPmX$FCU&0jhklW-kIYIU)KPwlNF&5INDEl2U z0(WPpi81zDZ}pNrPMI;#)U?4I?j@>I+SC{u8gWx&SXB)z9wcw$W|>3~d<`GKBs>Kz zx`SjzmXq{HEOv;hMK6G#2l4~&r2YVT&fu_2J|3XH0t9gCFt zJuCyR)@?dif^T6F7T_w&_z0S-8!zgpRk>EBS{1FO9C`Tv@UFuuOI%=^evM@>*5~f4 z<@VHa_tkQH#F?d2gaH^_3~q)-hAnjIlxIgP-;GE&8$3kB>D@L!1Jm0r^OEOfaWtQs pNXHX-YyOhQe^0m7YN&XcHmQz^XRQ91s-6IWkfG`H!-}WB^e6geY+?Wa delta 569 zcma)(Pe>F|9LL|AnVlWYecw?>q7>UjC=%M8bzNDvAgsI;{kaGoDh$a8qNOg2LNTz1 zJ%w(UIc+Q++92o;1HHO9iieCY9lGTpn|1Is%Yp=@;13Gz7`zX>-{Y0WTt1|I5R;A^Yn5KB*DtuTDU3ONa_UmfG_@>BhAx#33% zgJ>h#i33E3Z1}MO$J9lU;R7DxocJY{MUmQ5LKZKH$DFbz!xucm3@)HwG$~sXvUx*T zlp$dFjV*-O#0CP&KEe$O;@E#gAvLzB_or13<^%!4Bsz&MqFV-Y*73MD&crxvKPik- zP64}KI_REXw5~<(-kHAj;O30`a?#5EJM_A`Z}se%0pGg6_tTkd-nNtJ+~~-NEuZ_= GRc9COna`F0 diff --git a/doc/oauth2/index.md b/doc/oauth2/index.md index e44e61188..6f03c3890 100644 --- a/doc/oauth2/index.md +++ b/doc/oauth2/index.md @@ -128,7 +128,7 @@ Check following environment variables of LTC: - OAUTH2_CLIENT_SECRET: **Client Secret** from authorization server - OAUTH2_AUTH_URL: URL of [Authorization Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1), usually the same as the first URL from Layman's OAUTH2_AUTH_URLS - OAUTH2_TOKEN_URL: URL of [Token Endpoint](https://tools.ietf.org/html/rfc6749#section-3.2). In case of Django OAuth Toolkit (Wagtail), it's something like `:///o/token` -- OAUTH2_CALLBACK_URL: URL of [Redirection Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1.2), the value is `:///auth/oauth2-liferay/callback`. +- OAUTH2_CALLBACK_URL: URL of [Redirection Endpoint](https://tools.ietf.org/html/rfc6749#section-3.1.2), the value is `:///auth/oauth2-provider/callback`. - OAUTH2_USER_PROFILE_URL: URL of Layman's [GET Current User](../rest.md#get-current-user) ### Liferay Settings From 31ac634ccf334344eb1d17e13fdd94d47b1acf1f Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Tue, 9 May 2023 14:32:58 +0200 Subject: [PATCH 10/11] Document provided Wagtail user & password --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cbd13c704..1d57577dc 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,7 @@ in log of `layman_dev` container: docker logs -f layman_dev ``` -Then visit [http://localhost:8000/](http://localhost:8000/). You will see simple web client that interacts with [REST API](doc/rest.md). +Then visit [http://localhost:8000/](http://localhost:8000/). You will see simple web client that interacts with [REST API](doc/rest.md). You can also log in with automatically provided Wagtail user `layman` and password `laymanpwd`. To stop running service run: ```bash From 44695155c47d4bdb3fa1c042e251e31498d034ec Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Tue, 9 May 2023 14:54:42 +0200 Subject: [PATCH 11/11] Enable to run demo with authentication --- README.md | 16 ++++++++++++++++ docker-compose.deps.demo.yml | 7 +++++++ 2 files changed, 23 insertions(+) diff --git a/README.md b/README.md index 1d57577dc..a6e1fd33a 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,22 @@ Then visit [http://localhost/](http://localhost/). You will see simple web clien To stop running service, run `make stop-demo`. +### Run demo with authentication + +By default, demo starts without [authentication provider](doc/security.md#authentication). You can publish layers and maps as anonymous user, but you can't log in nor publish any private data. + +To be able to use authentication and publish private data, follow these steps: +- Stop demo instance by `make stop-demo` +- Copy all `OAUTH_*` environment variables from `.env.dev` to `.env` file. +- In `.env` change environment variables: + ``` + LAYMAN_AUTHN_MODULES=layman.authn.oauth2,layman.authn.http_header + OAUTH2_CALLBACK_URL=http://localhost/client/authn/oauth2-provider/callback + ``` +- Start demo with `make start-demo-full-with-optional-deps` + +Then you can log in with automatically provided Wagtail user `layman` and password `laymanpwd`. + ## Configuration Layman's source code provides settings suitable for development, testing and demo purposes. Furthermore, there exists [`Makefile`](Makefile) with predefined commands for each purpose including starting all necessary services (both in background and foreground) and stoping it. diff --git a/docker-compose.deps.demo.yml b/docker-compose.deps.demo.yml index 98f20c214..29907a6f5 100644 --- a/docker-compose.deps.demo.yml +++ b/docker-compose.deps.demo.yml @@ -45,6 +45,13 @@ services: volumes: - redis-data:/data + wagtail: + build: + context: deps/wagtail + dockerfile: docker/Dockerfile + ports: + - 8083:8000 + micka: container_name: micka build: