diff --git a/test.sql b/test.sql
new file mode 100644
index 0000000..20f8073
--- /dev/null
+++ b/test.sql
@@ -0,0 +1,3536 @@
+-- MariaDB dump 10.19 Distrib 10.11.9-MariaDB, for debian-linux-gnu (x86_64)
+--
+-- Host: localhost Database: db
+-- ------------------------------------------------------
+-- Server version 10.11.9-MariaDB-ubu2204-log
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8mb4 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `backend_layout`
+--
+
+DROP TABLE IF EXISTS `backend_layout`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `backend_layout` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `sorting` int(11) NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_state` smallint(6) NOT NULL DEFAULT 0,
+ `t3ver_stage` int(11) NOT NULL DEFAULT 0,
+ `title` varchar(255) NOT NULL DEFAULT '',
+ `config` longtext DEFAULT NULL,
+ `icon` int(10) unsigned NOT NULL DEFAULT 0,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `backend_layout`
+--
+
+LOCK TABLES `backend_layout` WRITE;
+/*!40000 ALTER TABLE `backend_layout` DISABLE KEYS */;
+/*!40000 ALTER TABLE `backend_layout` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `be_dashboards`
+--
+
+DROP TABLE IF EXISTS `be_dashboards`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `be_dashboards` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `starttime` int(10) unsigned NOT NULL DEFAULT 0,
+ `endtime` int(10) unsigned NOT NULL DEFAULT 0,
+ `identifier` varchar(255) NOT NULL DEFAULT '',
+ `title` varchar(255) NOT NULL DEFAULT '',
+ `widgets` text DEFAULT NULL,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `identifier` (`identifier`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `be_dashboards`
+--
+
+LOCK TABLES `be_dashboards` WRITE;
+/*!40000 ALTER TABLE `be_dashboards` DISABLE KEYS */;
+INSERT INTO `be_dashboards` VALUES
+(1,0,1676910164,1676910164,1,0,0,0,0,'5a1e4c7c7e59315eeeaae0a9854999e6ebc202e4','My dashboard','{\"846988ee0d7e05f15834aede9c4d9eb592bd927f\":{\"identifier\":\"t3information\"},\"d31ab551656dcdb6e1f8ea139863b7ad4849910b\":{\"identifier\":\"docGettingStarted\"}}');
+/*!40000 ALTER TABLE `be_dashboards` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `be_groups`
+--
+
+DROP TABLE IF EXISTS `be_groups`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `be_groups` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `title` varchar(50) NOT NULL DEFAULT '',
+ `non_exclude_fields` longtext DEFAULT NULL,
+ `explicit_allowdeny` longtext DEFAULT NULL,
+ `allowed_languages` varchar(255) NOT NULL DEFAULT '',
+ `custom_options` longtext DEFAULT NULL,
+ `db_mountpoints` longtext DEFAULT NULL,
+ `pagetypes_select` longtext DEFAULT NULL,
+ `tables_select` longtext DEFAULT NULL,
+ `tables_modify` longtext DEFAULT NULL,
+ `groupMods` longtext DEFAULT NULL,
+ `availableWidgets` longtext DEFAULT NULL,
+ `mfa_providers` longtext DEFAULT NULL,
+ `file_mountpoints` varchar(255) DEFAULT '',
+ `file_permissions` longtext DEFAULT NULL,
+ `TSconfig` longtext DEFAULT NULL,
+ `subgroup` varchar(255) DEFAULT '',
+ `workspace_perms` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `category_perms` longtext DEFAULT NULL,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `be_groups`
+--
+
+LOCK TABLES `be_groups` WRITE;
+/*!40000 ALTER TABLE `be_groups` DISABLE KEYS */;
+/*!40000 ALTER TABLE `be_groups` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `be_sessions`
+--
+
+DROP TABLE IF EXISTS `be_sessions`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `be_sessions` (
+ `ses_id` varchar(190) NOT NULL DEFAULT '',
+ `ses_iplock` varchar(39) NOT NULL DEFAULT '',
+ `ses_userid` int(10) unsigned NOT NULL DEFAULT 0,
+ `ses_tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `ses_data` longblob DEFAULT NULL,
+ PRIMARY KEY (`ses_id`),
+ KEY `ses_tstamp` (`ses_tstamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `be_sessions`
+--
+
+LOCK TABLES `be_sessions` WRITE;
+/*!40000 ALTER TABLE `be_sessions` DISABLE KEYS */;
+INSERT INTO `be_sessions` VALUES
+('a4f9bb3509149c2c08703d42cf63b461dffe013cd0c65c5a04d3b2e6fc428101','[DISABLED]',1,1734221027,'a:1:{s:26:\"formProtectionSessionToken\";s:64:\"18498b34e66f137e9bb6cbc4422f84a7dc21fc08664e2b5ddf89c06896333b0b\";}');
+/*!40000 ALTER TABLE `be_sessions` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `be_users`
+--
+
+DROP TABLE IF EXISTS `be_users`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `be_users` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `disable` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `starttime` int(10) unsigned NOT NULL DEFAULT 0,
+ `endtime` int(10) unsigned NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `username` varchar(50) NOT NULL DEFAULT '',
+ `avatar` int(10) unsigned NOT NULL DEFAULT 0,
+ `password` varchar(255) NOT NULL DEFAULT '',
+ `admin` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `usergroup` varchar(512) DEFAULT '',
+ `lang` varchar(10) NOT NULL DEFAULT 'default',
+ `email` varchar(255) NOT NULL DEFAULT '',
+ `db_mountpoints` longtext DEFAULT NULL,
+ `options` smallint(5) unsigned NOT NULL DEFAULT 3,
+ `realName` varchar(80) NOT NULL DEFAULT '',
+ `userMods` longtext DEFAULT NULL,
+ `allowed_languages` varchar(255) NOT NULL DEFAULT '',
+ `uc` mediumblob DEFAULT NULL,
+ `file_mountpoints` varchar(255) DEFAULT '',
+ `file_permissions` longtext DEFAULT NULL,
+ `workspace_perms` smallint(5) unsigned NOT NULL DEFAULT 1,
+ `TSconfig` longtext DEFAULT NULL,
+ `lastlogin` bigint(20) NOT NULL DEFAULT 0,
+ `workspace_id` int(11) NOT NULL DEFAULT 0,
+ `mfa` mediumblob DEFAULT NULL,
+ `category_perms` longtext DEFAULT NULL,
+ `password_reset_token` varchar(100) NOT NULL DEFAULT '',
+ PRIMARY KEY (`uid`),
+ KEY `username` (`username`),
+ KEY `parent` (`pid`,`deleted`,`disable`)
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `be_users`
+--
+
+LOCK TABLES `be_users` WRITE;
+/*!40000 ALTER TABLE `be_users` DISABLE KEYS */;
+INSERT INTO `be_users` VALUES
+(1,0,1676910156,1676910156,0,0,0,0,NULL,'admin',0,'$2y$12$rt1Fgda6QerLQID4Rq/G9ezi1kio92fDLj2OIVXDEiY1tLA7z3fom',1,NULL,'default','',NULL,0,'',NULL,'','a:15:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:11:{s:28:\"dashboard/current_dashboard/\";s:40:\"5a1e4c7c7e59315eeeaae0a9854999e6ebc202e4\";s:10:\"web_layout\";a:3:{s:8:\"function\";s:1:\"1\";s:8:\"language\";s:1:\"0\";s:19:\"constant_editor_cat\";N;}s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";a:0:{}s:10:\"FormEngine\";a:2:{i:0;a:4:{s:32:\"ea5808446ef89a93a3ae0c95ac46d0d0\";a:5:{i:0;s:48:\"lena.schilling@europarl.europa.eu\r\n+43 1231 3435\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:9;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B9%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:9;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:0:\"\";}s:32:\"ca1d9f585ca31e6d709268bfa0021f7e\";a:5:{i:0;s:14:\"Lena Schilling\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:13;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B13%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:13;s:3:\"pid\";i:6;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:76:\"/typo3/module/web/layout?token=96b5caa0aa2e7e18de2c4d1db0e492b8a3793559&id=6\";}s:32:\"9c43855926e54a70d4d0a190cb54db8c\";a:5:{i:0;s:10:\"Projekt 01\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:11;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B11%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:11;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:98:\"/typo3/module/web/layout?token=96b5caa0aa2e7e18de2c4d1db0e492b8a3793559&id=1#element-tt_content-11\";}s:32:\"64c6baba0a4f86194083e16732b562eb\";a:5:{i:0;s:31:\"241121_Lena_schilling_COP-1.png\";i:1;a:5:{s:4:\"edit\";a:1:{s:17:\"sys_file_metadata\";a:1:{i:11;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:41:\"&edit%5Bsys_file_metadata%5D%5B11%5D=edit\";i:3;a:5:{s:5:\"table\";s:17:\"sys_file_metadata\";s:3:\"uid\";i:11;s:3:\"pid\";i:0;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:218:\"/typo3/record/edit?token=c70e27a875e2cb103eabbe97b661c93740fab773&edit%5Btt_content%5D%5B11%5D=edit&returnUrl=/typo3/module/web/layout%3Ftoken%3D96b5caa0aa2e7e18de2c4d1db0e492b8a3793559%26id%3D1%23element-tt_content-11\";}}i:1;s:32:\"64c6baba0a4f86194083e16732b562eb\";}s:16:\"opendocs::recent\";a:8:{s:32:\"61765c6a3de2e0ba09d6230397278147\";a:5:{i:0;s:19:\"Projekt 01 (copy 1)\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:12;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B12%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:12;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:99:\"/typo3/module/web/layout?token=96b5caa0aa2e7e18de2c4d1db0e492b8a3793559&id=1element-tt_content-12\";}s:32:\"9c43855926e54a70d4d0a190cb54db8c\";a:5:{i:0;s:10:\"Projekt 01\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:11;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B11%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:11;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:77:\"/typo3/module/web/layout?token=96b5caa0aa2e7e18de2c4d1db0e492b8a3793559&id=1&\";}s:32:\"f87337ea07fd5e46b7487a4d63a03a03\";a:5:{i:0;s:6:\"test 1\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:8;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B8%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:8;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:98:\"/typo3/module/web/layout?token=b8b0edab18dfab0be025189f7ce581f9f27d1d71&id=1element-tt_content-8\";}s:32:\"629911c017052e9e049ce359020150c0\";a:5:{i:0;s:9:\"Aktuelles\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:7;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B7%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:7;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:98:\"/typo3/module/web/layout?token=b8b0edab18dfab0be025189f7ce581f9f27d1d71&id=1element-tt_content-7\";}s:32:\"4869cf322808343c3d6ca616a691b6a3\";a:5:{i:0;s:6:\"Test 1\";i:1;a:5:{s:4:\"edit\";a:1:{s:25:\"tx_news_domain_model_news\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:48:\"&edit%5Btx_news_domain_model_news%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:25:\"tx_news_domain_model_news\";s:3:\"uid\";i:1;s:3:\"pid\";i:4;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:91:\"/typo3/module/web/list?token=9ecbd6411033de8d02cb882ff2465bba3edcca44&id=4&table=&pointer=1\";}s:32:\"494c59ed0b451cdb0042831766e2d4b1\";a:5:{i:0;s:4:\"test\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:5;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B5%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:5;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:97:\"/typo3/module/web/layout?token=b8b0edab18dfab0be025189f7ce581f9f27d1d71&id=1#element-tt_content-5\";}s:32:\"0cd5f59a7028dd92e74eccfe45077178\";a:5:{i:0;s:15:\"Test 1 (copy 9)\";i:1;a:5:{s:4:\"edit\";a:1:{s:25:\"tx_news_domain_model_news\";a:1:{i:21;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:49:\"&edit%5Btx_news_domain_model_news%5D%5B21%5D=edit\";i:3;a:5:{s:5:\"table\";s:25:\"tx_news_domain_model_news\";s:3:\"uid\";i:21;s:3:\"pid\";i:4;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:91:\"/typo3/module/web/list?token=882b08196a352290bbdcb12129fcacdd6e5b3633&id=4&table=&pointer=1\";}s:32:\"c787b8a39a84ca235a098e1c39ac2b6b\";a:5:{i:0;s:16:\"Test 1 (copy 10)\";i:1;a:5:{s:4:\"edit\";a:1:{s:25:\"tx_news_domain_model_news\";a:1:{i:22;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:49:\"&edit%5Btx_news_domain_model_news%5D%5B22%5D=edit\";i:3;a:5:{s:5:\"table\";s:25:\"tx_news_domain_model_news\";s:3:\"uid\";i:22;s:3:\"pid\";i:4;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:91:\"/typo3/module/web/list?token=882b08196a352290bbdcb12129fcacdd6e5b3633&id=4&table=&pointer=1\";}}s:6:\"web_ts\";a:4:{s:8:\"function\";s:85:\"TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateInformationModuleFunctionController\";s:8:\"language\";N;s:19:\"constant_editor_cat\";s:14:\"frontend login\";s:6:\"action\";s:25:\"web_typoscript_infomodify\";}s:25:\"web_typoscript_infomodify\";a:1:{s:23:\"selectedTemplatePerPage\";a:1:{i:1;i:-1;}}s:12:\"pagetsconfig\";a:1:{s:6:\"action\";s:21:\"pagetsconfig_includes\";}s:10:\"system_log\";a:1:{s:10:\"constraint\";s:337:\"O:39:\"TYPO3\\CMS\\Belog\\Domain\\Model\\Constraint\":11:{s:14:\"\0*\0userOrGroup\";s:1:\"0\";s:9:\"\0*\0number\";i:20;s:15:\"\0*\0workspaceUid\";i:-99;s:10:\"\0*\0channel\";s:3:\"php\";s:8:\"\0*\0level\";s:5:\"debug\";s:17:\"\0*\0startTimestamp\";i:0;s:15:\"\0*\0endTimestamp\";i:0;s:18:\"\0*\0manualDateStart\";N;s:17:\"\0*\0manualDateStop\";N;s:9:\"\0*\0pageId\";i:0;s:8:\"\0*\0depth\";i:0;}\";}s:16:\"browse_links.php\";a:1:{s:12:\"expandFolder\";s:15:\"1:/user_upload/\";}s:9:\"clipboard\";a:5:{s:5:\"tab_1\";a:0:{}s:5:\"tab_2\";a:0:{}s:5:\"tab_3\";a:0:{}s:7:\"current\";s:6:\"normal\";s:6:\"normal\";a:2:{s:2:\"el\";a:1:{s:13:\"tt_content|11\";s:1:\"1\";}s:4:\"mode\";s:4:\"copy\";}}}s:14:\"emailMeAtLogin\";i:0;s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:25:\"resizeTextareas_MaxHeight\";i:500;s:4:\"lang\";s:7:\"default\";s:19:\"firstLoginTimeStamp\";i:1676910163;s:15:\"moduleSessionID\";a:11:{s:28:\"dashboard/current_dashboard/\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:10:\"web_layout\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";s:10:\"FormEngine\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";s:16:\"opendocs::recent\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";s:6:\"web_ts\";s:40:\"9b64b57f90ddee969b84f311c149ef01a1c6fa43\";s:25:\"web_typoscript_infomodify\";s:40:\"f22097dd1e569aca50b1fbb4570632d39df85b15\";s:12:\"pagetsconfig\";s:40:\"1dd29d4e53310d98224ef10871ad6cb301b03e73\";s:10:\"system_log\";s:40:\"02d71055eefa8f3c8c4ad2624d17064f7535947c\";s:16:\"browse_links.php\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";s:9:\"clipboard\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";}s:17:\"BackendComponents\";a:1:{s:6:\"States\";a:1:{s:8:\"Pagetree\";a:1:{s:9:\"stateHash\";a:1:{s:3:\"0_0\";s:1:\"1\";}}}}s:10:\"AdminPanel\";a:18:{s:11:\"display_top\";b:0;s:12:\"tsdebug_tree\";s:1:\"0\";s:20:\"tsdebug_displayTimes\";s:1:\"0\";s:23:\"tsdebug_displayMessages\";s:1:\"0\";s:10:\"tsdebug_LR\";s:1:\"0\";s:22:\"tsdebug_displayContent\";s:1:\"0\";s:28:\"tsdebug_forceTemplateParsing\";s:1:\"0\";s:26:\"debug_log_groupByComponent\";s:1:\"0\";s:22:\"debug_log_groupByLevel\";s:1:\"0\";s:20:\"debug_log_startLevel\";s:1:\"0\";s:23:\"preview_showHiddenPages\";s:1:\"0\";s:25:\"preview_showHiddenRecords\";s:1:\"0\";s:28:\"preview_showScheduledRecords\";s:1:\"0\";s:22:\"preview_showFluidDebug\";s:1:\"0\";s:20:\"preview_clearCacheId\";s:1:\"1\";s:20:\"preview_simulateDate\";s:1:\"0\";s:25:\"preview_simulateUserGroup\";s:1:\"0\";s:13:\"cache_noCache\";s:1:\"1\";}s:17:\"systeminformation\";s:40:\"{\"system_log\":{\"lastAccess\":1734108119}}\";s:11:\"colorScheme\";s:4:\"auto\";s:10:\"inlineView\";s:400:\"{\"tt_content\":{\"NEW675a3f9c5883d239571163\":{\"sys_file_reference\":[1]},\"3\":{\"sys_file_reference\":[2,14]},\"NEW675b6c449e591577777838\":{\"sys_file_reference\":[3]},\"5\":{\"sys_file_reference\":[27]},\"6\":{\"sys_file_reference\":[28]},\"NEW675db16707a6a536093939\":{\"sys_file_reference\":[29]},\"NEW675df631cdf38674832048\":{\"sys_file_reference\":[31]}},\"tx_news_domain_model_news\":{\"1\":{\"sys_file_reference\":[5,15]}}}\";}',NULL,NULL,1,NULL,1734193234,0,NULL,NULL,''),
+(2,0,1733966320,1733966320,0,0,0,0,NULL,'_cli_',0,'$2y$12$N0w3JD2NOj4Zp8LlZNuqsuIljI9pwXjoukbxi2EwAziSdcKuMyRRO',1,'','default','',NULL,3,'',NULL,'','a:4:{s:10:\"moduleData\";a:0:{}s:14:\"emailMeAtLogin\";i:0;s:8:\"titleLen\";i:50;s:20:\"edit_docModuleUpload\";s:1:\"1\";}','',NULL,1,NULL,0,0,NULL,NULL,'');
+/*!40000 ALTER TABLE `be_users` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cache_extbase_object`
+--
+
+DROP TABLE IF EXISTS `cache_extbase_object`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cache_extbase_object` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) NOT NULL DEFAULT '',
+ `expires` int(10) unsigned NOT NULL DEFAULT 0,
+ `content` longblob DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(180),`expires`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cache_extbase_object`
+--
+
+LOCK TABLES `cache_extbase_object` WRITE;
+/*!40000 ALTER TABLE `cache_extbase_object` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cache_extbase_object` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cache_extbase_object_tags`
+--
+
+DROP TABLE IF EXISTS `cache_extbase_object_tags`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cache_extbase_object_tags` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) NOT NULL DEFAULT '',
+ `tag` varchar(250) NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(191)),
+ KEY `cache_tag` (`tag`(191))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cache_extbase_object_tags`
+--
+
+LOCK TABLES `cache_extbase_object_tags` WRITE;
+/*!40000 ALTER TABLE `cache_extbase_object_tags` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cache_extbase_object_tags` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cache_news_category`
+--
+
+DROP TABLE IF EXISTS `cache_news_category`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cache_news_category` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) NOT NULL DEFAULT '',
+ `expires` int(10) unsigned NOT NULL DEFAULT 0,
+ `content` longblob DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(180),`expires`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cache_news_category`
+--
+
+LOCK TABLES `cache_news_category` WRITE;
+/*!40000 ALTER TABLE `cache_news_category` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cache_news_category` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cache_news_category_tags`
+--
+
+DROP TABLE IF EXISTS `cache_news_category_tags`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cache_news_category_tags` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) NOT NULL DEFAULT '',
+ `tag` varchar(250) NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(191)),
+ KEY `cache_tag` (`tag`(191))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cache_news_category_tags`
+--
+
+LOCK TABLES `cache_news_category_tags` WRITE;
+/*!40000 ALTER TABLE `cache_news_category_tags` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cache_news_category_tags` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `fe_groups`
+--
+
+DROP TABLE IF EXISTS `fe_groups`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `fe_groups` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `title` varchar(50) NOT NULL DEFAULT '',
+ `subgroup` varchar(255) DEFAULT '',
+ `felogin_redirectPid` longtext DEFAULT NULL,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `fe_groups`
+--
+
+LOCK TABLES `fe_groups` WRITE;
+/*!40000 ALTER TABLE `fe_groups` DISABLE KEYS */;
+/*!40000 ALTER TABLE `fe_groups` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `fe_sessions`
+--
+
+DROP TABLE IF EXISTS `fe_sessions`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `fe_sessions` (
+ `ses_id` varchar(190) NOT NULL DEFAULT '',
+ `ses_iplock` varchar(39) NOT NULL DEFAULT '',
+ `ses_userid` int(10) unsigned NOT NULL DEFAULT 0,
+ `ses_tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `ses_data` mediumblob DEFAULT NULL,
+ `ses_permanent` smallint(5) unsigned NOT NULL DEFAULT 0,
+ PRIMARY KEY (`ses_id`),
+ KEY `ses_tstamp` (`ses_tstamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `fe_sessions`
+--
+
+LOCK TABLES `fe_sessions` WRITE;
+/*!40000 ALTER TABLE `fe_sessions` DISABLE KEYS */;
+/*!40000 ALTER TABLE `fe_sessions` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `fe_users`
+--
+
+DROP TABLE IF EXISTS `fe_users`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `fe_users` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `disable` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `starttime` int(10) unsigned NOT NULL DEFAULT 0,
+ `endtime` int(10) unsigned NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `tx_extbase_type` varchar(255) NOT NULL DEFAULT '0',
+ `username` varchar(255) NOT NULL DEFAULT '',
+ `password` varchar(255) NOT NULL DEFAULT '',
+ `usergroup` varchar(512) DEFAULT '',
+ `name` varchar(160) NOT NULL DEFAULT '',
+ `first_name` varchar(50) NOT NULL DEFAULT '',
+ `middle_name` varchar(50) NOT NULL DEFAULT '',
+ `last_name` varchar(50) NOT NULL DEFAULT '',
+ `address` longtext DEFAULT NULL,
+ `telephone` varchar(30) NOT NULL DEFAULT '',
+ `fax` varchar(30) NOT NULL DEFAULT '',
+ `email` varchar(255) NOT NULL DEFAULT '',
+ `uc` blob DEFAULT NULL,
+ `title` varchar(40) NOT NULL DEFAULT '',
+ `zip` varchar(10) NOT NULL DEFAULT '',
+ `city` varchar(50) NOT NULL DEFAULT '',
+ `country` varchar(40) NOT NULL DEFAULT '',
+ `www` varchar(80) NOT NULL DEFAULT '',
+ `company` varchar(80) NOT NULL DEFAULT '',
+ `image` int(10) unsigned NOT NULL DEFAULT 0,
+ `lastlogin` bigint(20) NOT NULL DEFAULT 0,
+ `is_online` int(10) unsigned NOT NULL DEFAULT 0,
+ `mfa` mediumblob DEFAULT NULL,
+ `felogin_redirectPid` longtext DEFAULT NULL,
+ `felogin_forgotHash` varchar(80) DEFAULT '',
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`username`(100)),
+ KEY `username` (`username`(100)),
+ KEY `is_online` (`is_online`),
+ KEY `felogin_forgotHash` (`felogin_forgotHash`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `fe_users`
+--
+
+LOCK TABLES `fe_users` WRITE;
+/*!40000 ALTER TABLE `fe_users` DISABLE KEYS */;
+/*!40000 ALTER TABLE `fe_users` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `index_config`
+--
+
+DROP TABLE IF EXISTS `index_config`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `index_config` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `starttime` int(10) unsigned NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `set_id` int(11) NOT NULL DEFAULT 0,
+ `session_data` mediumtext DEFAULT NULL,
+ `title` varchar(255) NOT NULL DEFAULT '',
+ `type` int(10) unsigned NOT NULL DEFAULT 0,
+ `depth` int(10) unsigned NOT NULL DEFAULT 0,
+ `table2index` varchar(255) NOT NULL DEFAULT '',
+ `alternative_source_pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `get_params` varchar(255) NOT NULL DEFAULT '',
+ `fieldlist` varchar(255) NOT NULL DEFAULT '',
+ `externalUrl` varchar(255) NOT NULL DEFAULT '',
+ `indexcfgs` longtext DEFAULT NULL,
+ `filepath` varchar(255) NOT NULL DEFAULT '',
+ `extensions` varchar(255) NOT NULL DEFAULT '',
+ `timer_next_indexing` bigint(20) NOT NULL DEFAULT 0,
+ `timer_frequency` int(10) unsigned NOT NULL DEFAULT 0,
+ `timer_offset` bigint(20) NOT NULL DEFAULT 0,
+ `url_deny` longtext DEFAULT NULL,
+ `recordsbatch` int(11) NOT NULL DEFAULT 0,
+ `records_indexonchange` smallint(5) unsigned NOT NULL DEFAULT 0,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`hidden`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `index_config`
+--
+
+LOCK TABLES `index_config` WRITE;
+/*!40000 ALTER TABLE `index_config` DISABLE KEYS */;
+/*!40000 ALTER TABLE `index_config` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `index_fulltext`
+--
+
+DROP TABLE IF EXISTS `index_fulltext`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `index_fulltext` (
+ `phash` varchar(32) NOT NULL,
+ `fulltextdata` mediumtext DEFAULT NULL,
+ PRIMARY KEY (`phash`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `index_fulltext`
+--
+
+LOCK TABLES `index_fulltext` WRITE;
+/*!40000 ALTER TABLE `index_fulltext` DISABLE KEYS */;
+INSERT INTO `index_fulltext` VALUES
+('3d798c3f120fdabe32985de46a5fc2fd','example.com Team Lena\n \n \n \n \n \n \n Themen\n \n \n \n \n \n \n Presse\n \n \n \n \n \n \n Transparenz\n \n \n \n \n \n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n\n \n \n Hallo, ich bin \n Lena Schilling \n \n About me \n Lorem ipsum dolor sit amet, consectetur adipis cing elit. Donec porttitor sed mi a accumsan. Vestibulum dictum congue tellus at mollis. Nunc quam quam, sagittis ac feugiat eu, venenatis seas. Sed lobortis lectus ut augue. \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n\n\n\n\n\n \n \n \n \n \n\n \n 10 was \n 20 soll \n 30 das \n 40 sein \n \n\n \n \n\n\n\n\n\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Aktuelles \n \n \n \n Alle Artikel \n \n \n \n\n \n\n\n\n \n \n\n\n\n\n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n Projekt 01 \n Yorem ipsum dolor sit amet! \n \n \n \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Viverra in malesuada id consectetur morbi placerat amet sed orci. Non mauris nisi elementum et. Nisi id erat proin leo et. Phasellus augue justo, a rutrum gravida proin duis fringilla dictum. Risus, magna orci feugiat urna condimentum vulputate sed sit dui. Tristique felis, pretium elit quisque non nec, rutrum massa. Accumsan, diam \n \n \n \n \n\n \n \n\n\n\n\n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n Projekt 01 (copy 1) \n Yorem ipsum dolor sit amet! \n \n \n \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Viverra in malesuada id consectetur morbi placerat amet sed orci. Non mauris nisi elementum et. Nisi id erat proin leo et. Phasellus augue justo, a rutrum gravida proin duis fringilla dictum. Risus, magna orci feugiat urna condimentum vulputate sed sit dui. Tristique felis, pretium elit quisque non nec, rutrum massa. Accumsan, diam \n \n \n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n \n \n \n \n \n \n \n \n \n\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit. \n\n\n \n \n\n\n\n\n \n \n \n \n \n \n\n lena.schilling@europarl.europa.eu \n +43 1231 3435 \n\n\n \n \n\n\n\n\n \n \n \n\n \n\n \n \n \n example.com \n \n © All Right Reserved '),
+('78cabd40e1e1f417b9f83789c2321f4a','Qorem ipsum dolor sit Team Lena\n \n \n \n \n \n \n Themen\n \n \n \n \n \n \n Presse\n \n \n \n \n \n \n Transparenz\n \n \n \n \n \n \n \n\n \n\n \n \n \n\n \n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n \n \n \n Qorem ipsum dolor sit \n \n \n \n \n \n \n 12/13/2024\n \n \n\n \n\n \n\n \n \n \n \n \n \n \n test \n \n \n\n \n\n \n\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n test \n \n \n\n \n\n \n \n \n \n\n \n \n \n\n \n\n \n\n \n \n \n\n \n \n\n\n\n \n \n\n\n\n\n\n\n\n\n \n\n \n \n \n \n \n \n \n \n \n\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit. \n\n\n \n \n\n\n\n\n \n \n \n \n \n \n\n lena.schilling@europarl.europa.eu \n +43 1231 3435 \n\n\n \n \n\n\n\n\n \n \n \n\n \n\n \n \n \n example.com \n \n © All Right Reserved ,test');
+/*!40000 ALTER TABLE `index_fulltext` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `index_grlist`
+--
+
+DROP TABLE IF EXISTS `index_grlist`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `index_grlist` (
+ `uniqid` int(11) NOT NULL AUTO_INCREMENT,
+ `phash` varchar(32) NOT NULL,
+ `phash_x` varchar(32) NOT NULL,
+ `hash_gr_list` varchar(32) NOT NULL,
+ `gr_list` varchar(255) NOT NULL DEFAULT '',
+ PRIMARY KEY (`uniqid`),
+ KEY `joinkey` (`phash`,`hash_gr_list`),
+ KEY `phash_grouping` (`phash_x`,`hash_gr_list`)
+) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `index_grlist`
+--
+
+LOCK TABLES `index_grlist` WRITE;
+/*!40000 ALTER TABLE `index_grlist` DISABLE KEYS */;
+INSERT INTO `index_grlist` VALUES
+(6,'78cabd40e1e1f417b9f83789c2321f4a','78cabd40e1e1f417b9f83789c2321f4a','cdc0a8f9fe7f5e206d167723a90af880','0,-1'),
+(7,'3d798c3f120fdabe32985de46a5fc2fd','3d798c3f120fdabe32985de46a5fc2fd','cdc0a8f9fe7f5e206d167723a90af880','0,-1');
+/*!40000 ALTER TABLE `index_grlist` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `index_phash`
+--
+
+DROP TABLE IF EXISTS `index_phash`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `index_phash` (
+ `phash` varchar(32) NOT NULL,
+ `phash_grouping` varchar(32) NOT NULL,
+ `static_page_arguments` blob DEFAULT NULL,
+ `data_filename` varchar(1024) NOT NULL DEFAULT '',
+ `data_page_id` int(10) unsigned NOT NULL DEFAULT 0,
+ `data_page_type` int(10) unsigned NOT NULL DEFAULT 0,
+ `data_page_mp` varchar(255) NOT NULL DEFAULT '',
+ `gr_list` varchar(255) NOT NULL DEFAULT '',
+ `item_type` varchar(5) NOT NULL DEFAULT '',
+ `item_title` varchar(255) NOT NULL DEFAULT '',
+ `item_description` varchar(255) NOT NULL DEFAULT '',
+ `item_mtime` int(11) NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `item_size` int(11) NOT NULL DEFAULT 0,
+ `contentHash` varchar(32) NOT NULL,
+ `crdate` int(11) NOT NULL DEFAULT 0,
+ `parsetime` int(11) NOT NULL DEFAULT 0,
+ `sys_language_uid` int(11) NOT NULL DEFAULT 0,
+ `item_crdate` int(11) NOT NULL DEFAULT 0,
+ `externalUrl` smallint(6) NOT NULL DEFAULT 0,
+ `recordUid` int(11) NOT NULL DEFAULT 0,
+ `freeIndexUid` int(11) NOT NULL DEFAULT 0,
+ `freeIndexSetId` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`phash`),
+ KEY `phash_grouping` (`phash_grouping`),
+ KEY `freeIndexUid` (`freeIndexUid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `index_phash`
+--
+
+LOCK TABLES `index_phash` WRITE;
+/*!40000 ALTER TABLE `index_phash` DISABLE KEYS */;
+INSERT INTO `index_phash` VALUES
+('3d798c3f120fdabe32985de46a5fc2fd','dc91fa3918f3fab9a43a16f82bb27086','[]','',1,0,'','0,-1','0','example.com','Team Lena Themen Presse Transparenz Hallo, ich bin Lena Schilling About me Lorem ipsum dolor sit amet, consectetur adipis cing elit. Donec porttitor sed mi a accumsan. Vestibulum dictum congue tellus ',1733950587,1734217985,14327,'61d3e109877bd68887b7af6597e5ea43',1734217985,12,0,1676910413,0,0,0,0),
+('78cabd40e1e1f417b9f83789c2321f4a','17e3c529abc7b537c5fcf59f12035044','[]','',3,0,'','0,-1','0','Qorem ipsum dolor sit','Team Lena Themen Presse Transparenz Qorem ipsum dolor sit 12/13/2024 test test Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit. lena.schilling',1734118658,1734217586,6322,'c7c5fb478b1caa93693a82d2e3b8c7cd',1734217586,23,0,1733951195,0,0,0,0);
+/*!40000 ALTER TABLE `index_phash` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `index_rel`
+--
+
+DROP TABLE IF EXISTS `index_rel`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `index_rel` (
+ `phash` varchar(32) NOT NULL,
+ `wid` varchar(32) NOT NULL,
+ `count` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `first` int(10) unsigned NOT NULL DEFAULT 0,
+ `freq` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `flags` smallint(5) unsigned NOT NULL DEFAULT 0,
+ PRIMARY KEY (`phash`,`wid`),
+ KEY `wid` (`wid`,`phash`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `index_rel`
+--
+
+LOCK TABLES `index_rel` WRITE;
+/*!40000 ALTER TABLE `index_rel` DISABLE KEYS */;
+INSERT INTO `index_rel` VALUES
+('3d798c3f120fdabe32985de46a5fc2fd','0490b305539f9a2d4fb47a454c3a0dda',2,120,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','09777ca5702506d4e13ccdf9749cc975',1,27,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','0b4d37b6b5a48329e90356777832837e',1,40,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','0cc175b9c0f1b6a831c399e269772661',3,25,4383,0),
+('3d798c3f120fdabe32985de46a5fc2fd','0f759dd1ea6c4c76cedc299039ca4f23',2,92,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','107536d845520d5adf1f6b9ce2de2f08',3,46,4383,0),
+('3d798c3f120fdabe32985de46a5fc2fd','115b0dc1fb0482bd99b59699f65e43a2',3,26,4383,0),
+('3d798c3f120fdabe32985de46a5fc2fd','12cba3ee81cf4a793796a51b6327c678',1,127,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','13333d82700f8335def338037c42febf',1,202,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','13b5bfe96f3e2fe411c9f66f4a582adf',2,74,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','13bf4781726ab43b58cabc2d28a0ef76',2,75,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','14b8f0494c6f1460c3720d0ce692dbca',4,83,5844,0),
+('3d798c3f120fdabe32985de46a5fc2fd','177544aa797af6f322f8caa5e80e7f24',6,23,8767,0),
+('3d798c3f120fdabe32985de46a5fc2fd','17e62166fc8586dfa4d1bc0e1742c08b',1,211,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','1b42ace0041cdb12873f18be468bfecb',2,116,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','1d7d802548253180d0d404b0f9530428',2,99,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','2365f10b67df48b5648d9f4c397e633f',2,73,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','284a9b8c61d69b70d5ac1ed03282ad46',3,28,4383,0),
+('3d798c3f120fdabe32985de46a5fc2fd','29bfe372865737fe2bfcfd3618b1da7d',1,24,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','2a6571da26602a67be14ea8c5ab82349',1,52,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','2a7daa862e461f029e6e3c170b080b80',1,33,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','31185a5a06993cb36ad520c823809478',2,115,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','34173cb38f07f89ddbebc2ac9128303f',1,51,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','387cfa57545d4814246bbcebe6bc61dc',1,29,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','38c7b2741b1d86c35f51687f1f56fd00',2,79,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','392406f077a3ab6822722d2df998ecd4',2,101,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','39ad9cca8cb13896b27cbfd8bc7a5be4',1,206,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','3b7ca54ce3a9df85300372275fa8bfd8',4,98,5844,0),
+('3d798c3f120fdabe32985de46a5fc2fd','3cf49b0960fb2ef0ea03d0b991819630',1,6,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','3e2e1f3fbb6a4df1974726639d1c12a6',1,9,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','41868eeb2fe509f484b6fbff817109fd',4,85,5844,0),
+('3d798c3f120fdabe32985de46a5fc2fd','461580541e92155766bee9d9e8f672ea',2,105,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','46b3931b9959c927df4fc65fdee94b07',1,10,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','4829322d03d1606fb09ae9af59a271d3',1,39,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','4a7e2220586348ebbda89da7f33b07a4',2,44,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','4b77a01c9178cf8fcc13fea642393955',6,20,8767,0),
+('3d798c3f120fdabe32985de46a5fc2fd','4c480b2170d066b2af6f98af80902ce0',6,17,8767,0),
+('3d798c3f120fdabe32985de46a5fc2fd','4c5f59e5cf419bf89144035fdcd88396',2,104,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','4cdec908de5ca1dcf6c910b685bc6469',2,58,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','4de1b7a4dc53e4a84c25ffb7cdb580ee',4,87,5844,0),
+('3d798c3f120fdabe32985de46a5fc2fd','5593a9e1c77d4f919f3137578dcbe9f3',2,109,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','589ab45c0d07c144000a09b2b27e5fcf',1,22,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','598d4c200461b81522a3328565c25f7c',1,5,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','5ababd603b22780302dd8d83498e5172',2,0,2922,128),
+('3d798c3f120fdabe32985de46a5fc2fd','5b970a1d9be0fd100063fd6cd688b73e',1,213,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','5d12b75cf29cfd720f323167e0bddad3',1,56,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','618ed7216d6b6389b5054401ff8d73c3',4,82,5844,0),
+('3d798c3f120fdabe32985de46a5fc2fd','628e93f38039e0d664779477c11f2f6f',2,102,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','66c64cd3d8cafc59b39bc1a5583f3786',2,96,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','6c14da109e294d1e8155be8aa4b1ce8e',1,212,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','6cf444e98d01f65319755c6f3b3da28a',2,122,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','6f6eed92e0f00d675938b9def1ed0b7d',1,2,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','75bf68b7982d399df2c2ec675ffcd030',2,84,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','7a8dc91f944d115c7488f24ea53e9543',1,208,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','7c4f29407893c334a6cb7a87bf045c0d',1,216,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','7d0db380a5b95a8ba1da0bca241abda1',2,31,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','7ef8a9b929c5eca8383aa47de36061f5',1,210,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','7f005c3fa691e77c52d3297cc2699072',1,217,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','7f9a983a540e00931a69382161bdd265',8,16,11689,0),
+('3d798c3f120fdabe32985de46a5fc2fd','852d3eaa21dbc9d314ec815fdb4632f6',1,41,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','855b1fd6af108e5f418efaa817b07f30',1,203,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','85d51a1f417de0d0b880a1fa16d0acbd',2,118,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','8744b593e102071b1ade5fe7be69afc2',1,55,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','87b8c5208a039fd475b1e960e814634e',1,36,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','87d4eeb7dec7686410748d174c0e0a11',8,15,11689,0),
+('3d798c3f120fdabe32985de46a5fc2fd','8979aaee439f3e99f77b0b9351539b30',1,57,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','8ba087bc7bba3706a7920fac8a5b8524',1,209,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','8dbc672497bdc46f88e864bb1121232c',2,1,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','954837c257ba043cc028f3989985cc98',1,19,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','96a3be3cf272e017046d1b2674a52bd3',2,59,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','972890943b6cbe30175f19ee122669db',2,113,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','98f13708210194c475687be6106a3b84',1,49,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','99177f49aaab7e72df45608043b34181',1,4,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','a128caa7863de96de226cea34839215c',1,21,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','a181a603769c1f98ad927e7367c7aa51',1,215,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','a20e24cf828ddf451bdfb0f0d9b86a18',1,32,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','a77b3598941cb803eac0fcdafe44fac9',1,48,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','a81ba73d43118ec091f856197a2d0e8d',2,34,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','a98931d104a7fb8f30450547d97e7ca5',6,14,8767,0),
+('3d798c3f120fdabe32985de46a5fc2fd','ab79957d125e68dd2e06625f0ebb78d0',2,108,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','ab86a1e1ef70dff97959067b723c5c24',1,11,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','ad18a418da4e3cbf4e3e5a70710f2d85',2,124,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','ad6761e347dfcfbe0513619f06fa03b1',2,60,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','ae1a11e90a45f0a32c2677af47378c6c',1,30,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','af1f8d9839dd6ffefedebab89761ee7e',1,54,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','afac73ac1714d827bf56734b02948fe8',1,50,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','b1187eeb4f084994d447cc8ff66074f5',1,3,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','b1310d53db71792f537efc29d477cc39',1,204,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','b1a5d251fa4fe598cb947ffc42b9cbed',1,45,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','b80bb7740288fda1f201890375a60c8f',4,76,5844,0),
+('3d798c3f120fdabe32985de46a5fc2fd','b9bcfe8f89ef61629ec387f6916e2741',1,43,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','bd12a2f7c146e4c5191b12fc9a2739f5',3,38,4383,0),
+('3d798c3f120fdabe32985de46a5fc2fd','c1111bd512b29e821b120b86446026b8',1,7,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','c4ca4238a0b923820dcc509a6f75849b',1,128,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','c94cb6e815f22f3e59e16bd7a49dfd2d',2,90,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','d2e16e6ef52a45b7468f1da56bba1953',4,12,5844,0),
+('3d798c3f120fdabe32985de46a5fc2fd','d3d9446802a44259755d38e6d163e820',1,47,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','d540f9a8003e11e009342a40200192ea',3,71,4383,0),
+('3d798c3f120fdabe32985de46a5fc2fd','d645920e395fedad7bbbed0eca3fe2e0',1,53,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','d7ab6199103be6f3447aa1c4648484c1',1,18,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','dcff11e31126935448d655e7da84c1b5',2,78,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','de0e693e975be13327a6b7f313ea304f',4,91,5844,0),
+('3d798c3f120fdabe32985de46a5fc2fd','e2075474294983e013ee4dd2201c7a73',1,37,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','e496a293dada26f0f0f3d32c78e0acb5',2,114,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','e78f5438b48b39bcbdea61b73679449d',6,13,8767,0),
+('3d798c3f120fdabe32985de46a5fc2fd','eda12856b9ad2ccabe62d448756f0991',2,86,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','f34dc8b7a1f55ddd649e41e5707bfa65',2,94,2922,0),
+('3d798c3f120fdabe32985de46a5fc2fd','f894427cc1c571f79da49605ef8b112f',1,0,1461,0),
+('3d798c3f120fdabe32985de46a5fc2fd','fb2b038ea78e99cb4ca370639f399ce3',2,110,2922,0),
+('78cabd40e1e1f417b9f83789c2321f4a','098f6bcd4621d373cade4e832627b4f6',3,0,23414,0),
+('78cabd40e1e1f417b9f83789c2321f4a','13333d82700f8335def338037c42febf',1,20,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','17e62166fc8586dfa4d1bc0e1742c08b',1,29,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','39ad9cca8cb13896b27cbfd8bc7a5be4',1,24,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','4a7e2220586348ebbda89da7f33b07a4',1,23,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','4b77a01c9178cf8fcc13fea642393955',1,19,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','4c480b2170d066b2af6f98af80902ce0',1,17,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','5ababd603b22780302dd8d83498e5172',1,32,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','5b970a1d9be0fd100063fd6cd688b73e',1,31,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','65cf48f44869f384e73030683bcfcbc0',2,0,15609,128),
+('78cabd40e1e1f417b9f83789c2321f4a','6c14da109e294d1e8155be8aa4b1ce8e',1,30,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','6f6eed92e0f00d675938b9def1ed0b7d',1,2,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','7a8dc91f944d115c7488f24ea53e9543',1,26,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','7c4f29407893c334a6cb7a87bf045c0d',1,34,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','7d0db380a5b95a8ba1da0bca241abda1',1,25,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','7ef8a9b929c5eca8383aa47de36061f5',1,28,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','7f005c3fa691e77c52d3297cc2699072',1,35,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','7f9a983a540e00931a69382161bdd265',1,16,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','855b1fd6af108e5f418efaa817b07f30',1,21,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','87d4eeb7dec7686410748d174c0e0a11',3,0,23414,128),
+('78cabd40e1e1f417b9f83789c2321f4a','8ba087bc7bba3706a7920fac8a5b8524',1,27,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','8dbc672497bdc46f88e864bb1121232c',1,1,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','99177f49aaab7e72df45608043b34181',1,4,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','a181a603769c1f98ad927e7367c7aa51',1,33,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','a98931d104a7fb8f30450547d97e7ca5',3,0,23414,128),
+('78cabd40e1e1f417b9f83789c2321f4a','b1187eeb4f084994d447cc8ff66074f5',1,3,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','b1310d53db71792f537efc29d477cc39',1,22,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','d2e16e6ef52a45b7468f1da56bba1953',1,12,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','d540f9a8003e11e009342a40200192ea',1,18,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','e78f5438b48b39bcbdea61b73679449d',3,0,23414,128),
+('78cabd40e1e1f417b9f83789c2321f4a','f894427cc1c571f79da49605ef8b112f',1,0,7804,0),
+('78cabd40e1e1f417b9f83789c2321f4a','fd72a614e3d762dda6bc76bfefae8c5d',1,9,7804,0);
+/*!40000 ALTER TABLE `index_rel` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `index_section`
+--
+
+DROP TABLE IF EXISTS `index_section`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `index_section` (
+ `uniqid` int(11) NOT NULL AUTO_INCREMENT,
+ `phash` varchar(32) NOT NULL,
+ `phash_t3` varchar(32) NOT NULL,
+ `rl0` int(10) unsigned NOT NULL DEFAULT 0,
+ `rl1` int(10) unsigned NOT NULL DEFAULT 0,
+ `rl2` int(10) unsigned NOT NULL DEFAULT 0,
+ `page_id` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`uniqid`),
+ KEY `joinkey` (`phash`,`rl0`),
+ KEY `page_id` (`page_id`),
+ KEY `rl0` (`rl0`,`rl1`,`phash`),
+ KEY `rl0_2` (`rl0`,`phash`)
+) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `index_section`
+--
+
+LOCK TABLES `index_section` WRITE;
+/*!40000 ALTER TABLE `index_section` DISABLE KEYS */;
+INSERT INTO `index_section` VALUES
+(6,'78cabd40e1e1f417b9f83789c2321f4a','78cabd40e1e1f417b9f83789c2321f4a',1,3,0,3),
+(7,'3d798c3f120fdabe32985de46a5fc2fd','3d798c3f120fdabe32985de46a5fc2fd',1,0,0,1);
+/*!40000 ALTER TABLE `index_section` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `index_stat_word`
+--
+
+DROP TABLE IF EXISTS `index_stat_word`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `index_stat_word` (
+ `uid` int(11) NOT NULL AUTO_INCREMENT,
+ `word` varchar(50) NOT NULL DEFAULT '',
+ `tstamp` int(11) NOT NULL DEFAULT 0,
+ `pageid` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`uid`),
+ KEY `tstamp` (`tstamp`,`word`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `index_stat_word`
+--
+
+LOCK TABLES `index_stat_word` WRITE;
+/*!40000 ALTER TABLE `index_stat_word` DISABLE KEYS */;
+/*!40000 ALTER TABLE `index_stat_word` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `index_words`
+--
+
+DROP TABLE IF EXISTS `index_words`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `index_words` (
+ `wid` varchar(32) NOT NULL,
+ `baseword` varchar(60) NOT NULL DEFAULT '',
+ `is_stopword` smallint(6) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`wid`),
+ KEY `baseword` (`baseword`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `index_words`
+--
+
+LOCK TABLES `index_words` WRITE;
+/*!40000 ALTER TABLE `index_words` DISABLE KEYS */;
+INSERT INTO `index_words` VALUES
+('0490b305539f9a2d4fb47a454c3a0dda','nec',0),
+('07811dc6c422334ce36a09ff5cd6fe71','2024',0),
+('09777ca5702506d4e13ccdf9749cc975','vestibulum',0),
+('098f6bcd4621d373cade4e832627b4f6','test',0),
+('0b4d37b6b5a48329e90356777832837e','venenatis',0),
+('0cc175b9c0f1b6a831c399e269772661','a',0),
+('0f759dd1ea6c4c76cedc299039ca4f23','leo',0),
+('107536d845520d5adf1f6b9ce2de2f08','augue',0),
+('115b0dc1fb0482bd99b59699f65e43a2','accumsan',0),
+('12cba3ee81cf4a793796a51b6327c678','copy',0),
+('13333d82700f8335def338037c42febf','cras',0),
+('13b5bfe96f3e2fe411c9f66f4a582adf','in',0),
+('13bf4781726ab43b58cabc2d28a0ef76','malesuada',0),
+('14b8f0494c6f1460c3720d0ce692dbca','non',0),
+('177544aa797af6f322f8caa5e80e7f24','sed',0),
+('17e62166fc8586dfa4d1bc0e1742c08b','43',0),
+('1b42ace0041cdb12873f18be468bfecb','pretium',0),
+('1d7d802548253180d0d404b0f9530428','gravida',0),
+('2365f10b67df48b5648d9f4c397e633f','viverra',0),
+('284a9b8c61d69b70d5ac1ed03282ad46','dictum',0),
+('29bfe372865737fe2bfcfd3618b1da7d','mi',0),
+('2a6571da26602a67be14ea8c5ab82349','das',0),
+('2a7daa862e461f029e6e3c170b080b80','nunc',0),
+('31185a5a06993cb36ad520c823809478','felis',0),
+('34173cb38f07f89ddbebc2ac9128303f','30',0),
+('387cfa57545d4814246bbcebe6bc61dc','congue',0),
+('38c7b2741b1d86c35f51687f1f56fd00','placerat',0),
+('392406f077a3ab6822722d2df998ecd4','duis',0),
+('39ad9cca8cb13896b27cbfd8bc7a5be4','praesent',0),
+('3b7ca54ce3a9df85300372275fa8bfd8','rutrum',0),
+('3cf49b0960fb2ef0ea03d0b991819630','ich',0),
+('3e2e1f3fbb6a4df1974726639d1c12a6','schilling',0),
+('41868eeb2fe509f484b6fbff817109fd','nisi',0),
+('461580541e92155766bee9d9e8f672ea','magna',0),
+('46b3931b9959c927df4fc65fdee94b07','about',0),
+('4829322d03d1606fb09ae9af59a271d3','eu',0),
+('4a7e2220586348ebbda89da7f33b07a4','lectus',0),
+('4b77a01c9178cf8fcc13fea642393955','elit',0),
+('4c480b2170d066b2af6f98af80902ce0','consectetur',0),
+('4c5f59e5cf419bf89144035fdcd88396','risus',0),
+('4cdec908de5ca1dcf6c910b685bc6469','projekt',0),
+('4de1b7a4dc53e4a84c25ffb7cdb580ee','et',0),
+('5593a9e1c77d4f919f3137578dcbe9f3','condimentum',0),
+('589ab45c0d07c144000a09b2b27e5fcf','porttitor',0),
+('598d4c200461b81522a3328565c25f7c','hallo',0),
+('5ababd603b22780302dd8d83498e5172','example.com',0),
+('5b970a1d9be0fd100063fd6cd688b73e','3435',0),
+('5d12b75cf29cfd720f323167e0bddad3','alle',0),
+('618ed7216d6b6389b5054401ff8d73c3','orci',0),
+('6211a5112c35bdc646328c4ce88a30fd','tiktok',0),
+('628e93f38039e0d664779477c11f2f6f','fringilla',0),
+('62cc0b4ebb0b57b40778179234246c38','your',0),
+('65cf48f44869f384e73030683bcfcbc0','qorem',0),
+('66c64cd3d8cafc59b39bc1a5583f3786','justo',0),
+('6c14da109e294d1e8155be8aa4b1ce8e','1231',0),
+('6cf444e98d01f65319755c6f3b3da28a','massa',0),
+('6f6eed92e0f00d675938b9def1ed0b7d','themen',0),
+('75bf68b7982d399df2c2ec675ffcd030','mauris',0),
+('7a8dc91f944d115c7488f24ea53e9543','hendrerit',0),
+('7c4f29407893c334a6cb7a87bf045c0d','right',0),
+('7d0db380a5b95a8ba1da0bca241abda1','at',0),
+('7ef8a9b929c5eca8383aa47de36061f5','europarl.europa.eu',0),
+('7f005c3fa691e77c52d3297cc2699072','reserved',0),
+('7f9a983a540e00931a69382161bdd265','amet',0),
+('852d3eaa21dbc9d314ec815fdb4632f6','seas',0),
+('855b1fd6af108e5f418efaa817b07f30','vitae',0),
+('85d51a1f417de0d0b880a1fa16d0acbd','quisque',0),
+('8744b593e102071b1ade5fe7be69afc2','aktuelles',0),
+('87b8c5208a039fd475b1e960e814634e','sagittis',0),
+('87d4eeb7dec7686410748d174c0e0a11','sit',0),
+('8979aaee439f3e99f77b0b9351539b30','artikel',0),
+('8ba087bc7bba3706a7920fac8a5b8524','lena.schilling',0),
+('8c4d3a946a1fcde2ded7e17651fd0ed7','brand',0),
+('8dbc672497bdc46f88e864bb1121232c','lena',0),
+('93c731f1c3a84ef05cd54d044c379eaa','company',0),
+('954837c257ba043cc028f3989985cc98','cing',0),
+('96a3be3cf272e017046d1b2674a52bd3','01',0),
+('96d6f2e7e1f705ab5e59c84a6dc009b2','logo',0),
+('972890943b6cbe30175f19ee122669db','dui',0),
+('98f13708210194c475687be6106a3b84','20',0),
+('99177f49aaab7e72df45608043b34181','transparenz',0),
+('9dd4e461268c8034f5c8564e155c67a6','x',0),
+('a128caa7863de96de226cea34839215c','donec',0),
+('a181a603769c1f98ad927e7367c7aa51','all',0),
+('a20e24cf828ddf451bdfb0f0d9b86a18','mollis',0),
+('a77b3598941cb803eac0fcdafe44fac9','was',0),
+('a81ba73d43118ec091f856197a2d0e8d','quam',0),
+('a98931d104a7fb8f30450547d97e7ca5','dolor',0),
+('ab79957d125e68dd2e06625f0ebb78d0','urna',0),
+('ab86a1e1ef70dff97959067b723c5c24','me',0),
+('ad0234829205b9033196ba818f7a872b','test2',0),
+('ad18a418da4e3cbf4e3e5a70710f2d85','diam',0),
+('ad6761e347dfcfbe0513619f06fa03b1','yorem',0),
+('ae1a11e90a45f0a32c2677af47378c6c','tellus',0),
+('af1f8d9839dd6ffefedebab89761ee7e','sein',0),
+('afac73ac1714d827bf56734b02948fe8','soll',0),
+('b1187eeb4f084994d447cc8ff66074f5','presse',0),
+('b1310d53db71792f537efc29d477cc39','blandit',0),
+('b1a5d251fa4fe598cb947ffc42b9cbed','ut',0),
+('b80bb7740288fda1f201890375a60c8f','id',0),
+('b9bcfe8f89ef61629ec387f6916e2741','lobortis',0),
+('bd12a2f7c146e4c5191b12fc9a2739f5','feugiat',0),
+('c1111bd512b29e821b120b86446026b8','bin',0),
+('c4ca4238a0b923820dcc509a6f75849b','1',0),
+('c81e728d9d4c2f636f067f89cc14862c','2',0),
+('c94cb6e815f22f3e59e16bd7a49dfd2d','erat',0),
+('d2e16e6ef52a45b7468f1da56bba1953','lorem',0),
+('d3d9446802a44259755d38e6d163e820','10',0),
+('d540f9a8003e11e009342a40200192ea','adipiscing',0),
+('d645920e395fedad7bbbed0eca3fe2e0','40',0),
+('d7ab6199103be6f3447aa1c4648484c1','adipis',0),
+('dcff11e31126935448d655e7da84c1b5','morbi',0),
+('de0e693e975be13327a6b7f313ea304f','proin',0),
+('e2075474294983e013ee4dd2201c7a73','ac',0),
+('e496a293dada26f0f0f3d32c78e0acb5','tristique',0),
+('e78f5438b48b39bcbdea61b73679449d','ipsum',0),
+('eda12856b9ad2ccabe62d448756f0991','elementum',0),
+('f34dc8b7a1f55ddd649e41e5707bfa65','phasellus',0),
+('f894427cc1c571f79da49605ef8b112f','team',0),
+('fb2b038ea78e99cb4ca370639f399ce3','vulputate',0),
+('fd72a614e3d762dda6bc76bfefae8c5d','12/13/2024',0),
+('ffe8560492ef96f860b965341d0c9698','instagram',0);
+/*!40000 ALTER TABLE `index_words` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `pages`
+--
+
+DROP TABLE IF EXISTS `pages`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `pages` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `starttime` int(10) unsigned NOT NULL DEFAULT 0,
+ `endtime` int(10) unsigned NOT NULL DEFAULT 0,
+ `fe_group` varchar(255) NOT NULL DEFAULT '0',
+ `sorting` int(11) NOT NULL DEFAULT 0,
+ `rowDescription` text DEFAULT NULL,
+ `editlock` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `sys_language_uid` int(11) NOT NULL DEFAULT 0,
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
+ `l10n_source` int(10) unsigned NOT NULL DEFAULT 0,
+ `l10n_state` text DEFAULT NULL,
+ `l10n_diffsource` mediumblob DEFAULT NULL,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_state` smallint(6) NOT NULL DEFAULT 0,
+ `t3ver_stage` int(11) NOT NULL DEFAULT 0,
+ `perms_userid` int(10) unsigned NOT NULL DEFAULT 0,
+ `perms_groupid` int(10) unsigned NOT NULL DEFAULT 0,
+ `perms_user` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `perms_group` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `perms_everybody` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `title` varchar(255) NOT NULL DEFAULT '',
+ `slug` text DEFAULT NULL,
+ `doktype` int(10) unsigned NOT NULL DEFAULT 0,
+ `TSconfig` longtext DEFAULT NULL,
+ `is_siteroot` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `php_tree_stop` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `url` varchar(255) NOT NULL DEFAULT '',
+ `shortcut` int(10) unsigned NOT NULL DEFAULT 0,
+ `shortcut_mode` int(10) unsigned NOT NULL DEFAULT 0,
+ `subtitle` varchar(255) NOT NULL DEFAULT '',
+ `layout` int(10) unsigned NOT NULL DEFAULT 0,
+ `target` varchar(80) NOT NULL DEFAULT '',
+ `media` int(10) unsigned NOT NULL DEFAULT 0,
+ `lastUpdated` bigint(20) NOT NULL DEFAULT 0,
+ `keywords` longtext DEFAULT NULL,
+ `cache_timeout` int(10) unsigned NOT NULL DEFAULT 0,
+ `cache_tags` varchar(255) NOT NULL DEFAULT '',
+ `newUntil` bigint(20) NOT NULL DEFAULT 0,
+ `description` longtext DEFAULT NULL,
+ `no_search` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `SYS_LASTCHANGED` int(10) unsigned NOT NULL DEFAULT 0,
+ `abstract` longtext DEFAULT NULL,
+ `module` varchar(255) NOT NULL DEFAULT '',
+ `extendToSubpages` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `author` varchar(255) NOT NULL DEFAULT '',
+ `author_email` varchar(255) NOT NULL DEFAULT '',
+ `nav_title` varchar(255) NOT NULL DEFAULT '',
+ `nav_hide` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `content_from_pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `mount_pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `mount_pid_ol` smallint(6) NOT NULL DEFAULT 0,
+ `l18n_cfg` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `backend_layout` varchar(64) NOT NULL DEFAULT '',
+ `backend_layout_next_level` varchar(64) NOT NULL DEFAULT '',
+ `tsconfig_includes` longtext DEFAULT NULL,
+ `categories` int(10) unsigned NOT NULL DEFAULT 0,
+ `seo_title` varchar(255) NOT NULL DEFAULT '',
+ `no_index` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `no_follow` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `og_title` varchar(255) NOT NULL DEFAULT '',
+ `og_description` longtext DEFAULT NULL,
+ `og_image` int(10) unsigned NOT NULL DEFAULT 0,
+ `twitter_title` varchar(255) NOT NULL DEFAULT '',
+ `twitter_description` longtext DEFAULT NULL,
+ `twitter_image` int(10) unsigned NOT NULL DEFAULT 0,
+ `twitter_card` varchar(255) NOT NULL DEFAULT '',
+ `canonical_link` text NOT NULL DEFAULT '',
+ `sitemap_priority` decimal(2,1) NOT NULL DEFAULT 0.5,
+ `sitemap_changefreq` varchar(10) NOT NULL DEFAULT '',
+ PRIMARY KEY (`uid`),
+ KEY `determineSiteRoot` (`is_siteroot`),
+ KEY `language_identifier` (`l10n_parent`,`sys_language_uid`),
+ KEY `slug` (`slug`(127)),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `translation_source` (`l10n_source`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `pages`
+--
+
+LOCK TABLES `pages` WRITE;
+/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
+INSERT INTO `pages` VALUES
+(1,0,1733950587,1676910413,0,0,0,0,'',256,NULL,0,0,0,0,NULL,'{\"doktype\":\"\",\"title\":\"\",\"slug\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"seo_title\":\"\",\"description\":\"\",\"no_index\":\"\",\"no_follow\":\"\",\"canonical_link\":\"\",\"sitemap_changefreq\":\"\",\"sitemap_priority\":\"\",\"og_title\":\"\",\"og_description\":\"\",\"og_image\":\"\",\"twitter_title\":\"\",\"twitter_description\":\"\",\"twitter_image\":\"\",\"twitter_card\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"author\":\"\",\"author_email\":\"\",\"lastUpdated\":\"\",\"layout\":\"\",\"newUntil\":\"\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"content_from_pid\":\"\",\"target\":\"\",\"cache_timeout\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"\",\"php_tree_stop\":\"\",\"module\":\"\",\"media\":\"\",\"tsconfig_includes\":\"\",\"TSconfig\":\"\",\"l18n_cfg\":\"\",\"hidden\":\"\",\"nav_hide\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"extendToSubpages\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"categories\":\"\",\"rowDescription\":\"\",\"no_search\":\"\",\"tx_kesearch_tags\":\"\",\"tx_kesearch_abstract\":\"\",\"tx_kesearch_resultimage\":\"\"}',0,0,0,0,1,1,31,31,0,'example.com','/',1,NULL,1,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1733950587,NULL,'',0,'','','',0,0,0,0,0,'pagets__default','pagets__default',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'summary','',0.5,''),
+(2,1,1734118669,1733951190,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,'{\"title\":\"\"}',0,0,0,0,1,0,31,27,0,'Transparenz','/test',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1734118669,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
+(3,1,1734118658,1733951195,0,0,0,0,'0',128,NULL,0,0,0,0,NULL,'{\"title\":\"\"}',0,0,0,0,1,0,31,27,0,'Themen','/test2',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1734118658,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
+(4,1,1734118692,1734046332,0,0,0,0,'0',48,NULL,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,1,0,31,27,0,'News','/news',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
+(5,1,1734118696,1734118677,0,0,0,0,'0',192,NULL,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,1,0,31,27,0,'Presse','/presse',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1734118696,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
+(6,1,1734118694,1734118684,0,0,0,0,'0',96,NULL,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,1,0,31,27,0,'Team Lena','/team-lena',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1734118694,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,'');
+/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_be_shortcuts`
+--
+
+DROP TABLE IF EXISTS `sys_be_shortcuts`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_be_shortcuts` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `userid` int(10) unsigned NOT NULL DEFAULT 0,
+ `route` varchar(255) NOT NULL DEFAULT '',
+ `arguments` text DEFAULT NULL,
+ `description` varchar(255) NOT NULL DEFAULT '',
+ `sorting` int(11) NOT NULL DEFAULT 0,
+ `sc_group` smallint(6) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`uid`),
+ KEY `event` (`userid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_be_shortcuts`
+--
+
+LOCK TABLES `sys_be_shortcuts` WRITE;
+/*!40000 ALTER TABLE `sys_be_shortcuts` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_be_shortcuts` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_category`
+--
+
+DROP TABLE IF EXISTS `sys_category`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_category` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `starttime` int(10) unsigned NOT NULL DEFAULT 0,
+ `endtime` int(10) unsigned NOT NULL DEFAULT 0,
+ `sorting` int(11) NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `sys_language_uid` int(11) NOT NULL DEFAULT 0,
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
+ `l10n_state` text DEFAULT NULL,
+ `l10n_diffsource` mediumblob DEFAULT NULL,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_state` smallint(6) NOT NULL DEFAULT 0,
+ `t3ver_stage` int(11) NOT NULL DEFAULT 0,
+ `title` varchar(255) NOT NULL DEFAULT '',
+ `items` int(11) NOT NULL DEFAULT 0,
+ `parent` int(10) unsigned NOT NULL DEFAULT 0,
+ `images` int(10) unsigned DEFAULT 0,
+ `single_pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `shortcut` int(11) NOT NULL DEFAULT 0,
+ `import_id` varchar(100) NOT NULL DEFAULT '',
+ `import_source` varchar(100) NOT NULL DEFAULT '',
+ `seo_title` varchar(255) NOT NULL DEFAULT '',
+ `seo_description` text DEFAULT NULL,
+ `seo_headline` varchar(255) NOT NULL DEFAULT '',
+ `seo_text` text DEFAULT NULL,
+ `slug` varchar(2048) DEFAULT NULL,
+ PRIMARY KEY (`uid`),
+ KEY `category_parent` (`parent`),
+ KEY `category_list` (`pid`,`deleted`,`sys_language_uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`),
+ KEY `import` (`import_id`,`import_source`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_category`
+--
+
+LOCK TABLES `sys_category` WRITE;
+/*!40000 ALTER TABLE `sys_category` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_category` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_category_record_mm`
+--
+
+DROP TABLE IF EXISTS `sys_category_record_mm`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_category_record_mm` (
+ `uid_local` int(10) unsigned NOT NULL DEFAULT 0,
+ `uid_foreign` int(10) unsigned NOT NULL DEFAULT 0,
+ `sorting` int(10) unsigned NOT NULL DEFAULT 0,
+ `sorting_foreign` int(10) unsigned NOT NULL DEFAULT 0,
+ `tablenames` varchar(64) NOT NULL DEFAULT '',
+ `fieldname` varchar(64) NOT NULL DEFAULT '',
+ PRIMARY KEY (`uid_local`,`uid_foreign`,`tablenames`,`fieldname`),
+ KEY `uid_local` (`uid_local`),
+ KEY `uid_foreign` (`uid_foreign`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_category_record_mm`
+--
+
+LOCK TABLES `sys_category_record_mm` WRITE;
+/*!40000 ALTER TABLE `sys_category_record_mm` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_category_record_mm` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_csp_resolution`
+--
+
+DROP TABLE IF EXISTS `sys_csp_resolution`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_csp_resolution` (
+ `summary` varchar(40) NOT NULL,
+ `created` int(10) unsigned NOT NULL,
+ `scope` varchar(264) NOT NULL,
+ `mutation_identifier` text DEFAULT NULL,
+ `mutation_collection` mediumtext DEFAULT NULL,
+ `meta` mediumtext DEFAULT NULL,
+ PRIMARY KEY (`summary`),
+ KEY `created` (`created`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_csp_resolution`
+--
+
+LOCK TABLES `sys_csp_resolution` WRITE;
+/*!40000 ALTER TABLE `sys_csp_resolution` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_csp_resolution` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_file`
+--
+
+DROP TABLE IF EXISTS `sys_file`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_file` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `last_indexed` int(11) NOT NULL DEFAULT 0,
+ `missing` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `storage` int(10) unsigned NOT NULL DEFAULT 0,
+ `type` int(10) unsigned NOT NULL DEFAULT 0,
+ `metadata` int(10) unsigned NOT NULL DEFAULT 0,
+ `identifier` text DEFAULT NULL,
+ `identifier_hash` varchar(40) NOT NULL DEFAULT '',
+ `folder_hash` varchar(40) NOT NULL DEFAULT '',
+ `extension` varchar(255) NOT NULL DEFAULT '',
+ `mime_type` varchar(255) NOT NULL DEFAULT '',
+ `name` tinytext DEFAULT NULL,
+ `sha1` varchar(40) NOT NULL DEFAULT '',
+ `size` int(11) NOT NULL DEFAULT 0,
+ `creation_date` int(11) NOT NULL DEFAULT 0,
+ `modification_date` int(11) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`uid`),
+ KEY `sel01` (`storage`,`identifier_hash`),
+ KEY `folder` (`storage`,`folder_hash`),
+ KEY `tstamp` (`tstamp`),
+ KEY `lastindex` (`last_indexed`),
+ KEY `sha1` (`sha1`),
+ KEY `parent` (`pid`)
+) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_file`
+--
+
+LOCK TABLES `sys_file` WRITE;
+/*!40000 ALTER TABLE `sys_file` DISABLE KEYS */;
+INSERT INTO `sys_file` VALUES
+(1,0,1676911371,0,0,0,2,0,'/typo3conf/ext/bootstrap_package/Resources/Public/Images/BootstrapPackage.svg','53b7aaf32363271515e80e6c7b25293292185218','27aadec2782a38a84423e8476091a41d1dbdbc06','svg','image/svg+xml','BootstrapPackage.svg','a6fb0cc7b50579d6255f16171147695a55b93c27',3843,1676910050,1670944995),
+(2,0,1676911371,0,0,0,2,0,'/typo3conf/ext/bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg','5b24af7f7f2c99d8a6188015bc8298396b952ab7','27aadec2782a38a84423e8476091a41d1dbdbc06','svg','image/svg+xml','BootstrapPackageInverted.svg','493f5cd69ede03cf7d436e92481422145674b907',3784,1676910050,1670944995),
+(3,0,1733654881,1733654881,0,0,2,0,'/_assets/9b80d86a98af3ecc38aabe297d2c3695/Images/BootstrapPackage.svg','760d1af8a806b3df149ba4826a7f15c966215a7c','5e8c86041e2022a51f63bbaf56b3ae90109db902','svg','image/svg+xml','BootstrapPackage.svg','a6fb0cc7b50579d6255f16171147695a55b93c27',3843,1733654845,1728925893),
+(4,0,1733654881,1733654881,0,0,2,0,'/_assets/9b80d86a98af3ecc38aabe297d2c3695/Images/BootstrapPackageInverted.svg','f4a6353e4d97d78f98f9d3ab740020169d2f33db','5e8c86041e2022a51f63bbaf56b3ae90109db902','svg','image/svg+xml','BootstrapPackageInverted.svg','493f5cd69ede03cf7d436e92481422145674b907',3784,1733654845,1728925893),
+(5,0,1733929202,1733929202,0,0,2,0,'/_assets/eefdfe17fdb4097c1f2a6261613e182b/Images/logo.png','585090df9f5adae4f728788d5bd69a553e2ecd08','27f7c684ca1890952ba3e74c0bcdac22d3affb7e','png','image/png','logo.png','77ce90992ebc4987066329ad3fa3c82e2fb2ed55',7076,1733926916,1733926891),
+(6,0,1733967785,1733967785,0,1,2,0,'/user_upload/1024-1536.jpg','702cf3b61b1a56554a1bba4dee475d94122cc4eb','19669f1e02c2f16705ec7587044c66443be70725','jpg','image/jpeg','1024-1536.jpg','ba179e44ccd546a9801bbb632aa9498ffafade3c',243413,1733967785,1733967785),
+(7,0,1734044751,1734044751,0,1,5,0,'/user_upload/index.html','c25533f303185517ca3e1e24b215d53aa74076d2','19669f1e02c2f16705ec7587044c66443be70725','html','application/x-empty','index.html','da39a3ee5e6b4b0d3255bfef95601890afd80709',0,1733654847,1733654847),
+(8,0,1734106168,1734106168,0,0,2,0,'/_assets/4af58cb76f71502508b6639ab1e54a78/Images/background.png','1acf1307b71314947f58205598a5f8d4c3ce91a0','8fa5a774947767091f06654f56b9b8728154eeab','png','image/png','background.png','a73569634984ede65ff20d248364b9f4bf6738b6',879355,1734104728,1734104678),
+(9,0,1734111517,1734111517,0,1,2,0,'/user_upload/bild-lena.png','a51e8b57b42057eaf71fabacbe0a9fe13bf2c1eb','19669f1e02c2f16705ec7587044c66443be70725','png','image/png','bild-lena.png','0f492895b5bb13f1937605de497d413a8a6fa5ea',414429,1734111517,1734111517),
+(10,0,1734113111,1734113111,0,0,2,0,'/_assets/4af58cb76f71502508b6639ab1e54a78/Images/logo.png','b039e97d5adc583855d3d8ad72bda906fa9facb0','8fa5a774947767091f06654f56b9b8728154eeab','png','image/png','logo.png','77ce90992ebc4987066329ad3fa3c82e2fb2ed55',7076,1734113040,1734113004),
+(11,0,1734118797,1734118797,0,1,2,0,'/user_upload/241121_Lena_schilling_COP-1.png','29ed43ef22ffc4d7e5f02b57ef892190dbb9f269','19669f1e02c2f16705ec7587044c66443be70725','png','image/png','241121_Lena_schilling_COP-1.png','bcfc616890f9337dd92f4698b7b19d8e95545c5e',560704,1734118797,1734118797);
+/*!40000 ALTER TABLE `sys_file` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_file_collection`
+--
+
+DROP TABLE IF EXISTS `sys_file_collection`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_file_collection` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `starttime` int(10) unsigned NOT NULL DEFAULT 0,
+ `endtime` int(10) unsigned NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `sys_language_uid` int(11) NOT NULL DEFAULT 0,
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
+ `l10n_state` text DEFAULT NULL,
+ `l10n_diffsource` mediumblob DEFAULT NULL,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_state` smallint(6) NOT NULL DEFAULT 0,
+ `t3ver_stage` int(11) NOT NULL DEFAULT 0,
+ `title` tinytext DEFAULT NULL,
+ `type` varchar(30) NOT NULL DEFAULT 'static',
+ `files` int(10) unsigned NOT NULL DEFAULT 0,
+ `recursive` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `category` int(10) unsigned NOT NULL DEFAULT 0,
+ `folder_identifier` longtext DEFAULT NULL,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_file_collection`
+--
+
+LOCK TABLES `sys_file_collection` WRITE;
+/*!40000 ALTER TABLE `sys_file_collection` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_file_collection` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_file_metadata`
+--
+
+DROP TABLE IF EXISTS `sys_file_metadata`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_file_metadata` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `sys_language_uid` int(11) NOT NULL DEFAULT 0,
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
+ `l10n_state` text DEFAULT NULL,
+ `l10n_diffsource` mediumblob DEFAULT NULL,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_state` smallint(6) NOT NULL DEFAULT 0,
+ `t3ver_stage` int(11) NOT NULL DEFAULT 0,
+ `file` int(10) unsigned NOT NULL DEFAULT 0,
+ `title` tinytext DEFAULT NULL,
+ `width` int(11) NOT NULL DEFAULT 0,
+ `height` int(11) NOT NULL DEFAULT 0,
+ `description` longtext DEFAULT NULL,
+ `alternative` text DEFAULT NULL,
+ `categories` int(10) unsigned NOT NULL DEFAULT 0,
+ `visible` smallint(5) unsigned NOT NULL DEFAULT 1,
+ `status` varchar(24) DEFAULT '',
+ `keywords` longtext DEFAULT NULL,
+ `caption` longtext DEFAULT NULL,
+ `creator_tool` varchar(255) NOT NULL DEFAULT '',
+ `download_name` varchar(255) NOT NULL DEFAULT '',
+ `creator` varchar(255) NOT NULL DEFAULT '',
+ `publisher` varchar(120) NOT NULL DEFAULT '',
+ `source` varchar(255) NOT NULL DEFAULT '',
+ `copyright` longtext DEFAULT NULL,
+ `location_country` varchar(45) NOT NULL DEFAULT '',
+ `location_region` varchar(45) NOT NULL DEFAULT '',
+ `location_city` varchar(45) NOT NULL DEFAULT '',
+ `latitude` decimal(24,14) DEFAULT 0.00000000000000,
+ `longitude` decimal(24,14) DEFAULT 0.00000000000000,
+ `ranking` int(10) unsigned NOT NULL DEFAULT 0,
+ `content_creation_date` bigint(20) NOT NULL DEFAULT 0,
+ `content_modification_date` bigint(20) NOT NULL DEFAULT 0,
+ `note` longtext DEFAULT NULL,
+ `unit` varchar(3) NOT NULL DEFAULT '',
+ `duration` int(11) NOT NULL DEFAULT 0,
+ `color_space` varchar(4) NOT NULL DEFAULT '',
+ `pages` int(10) unsigned DEFAULT 0,
+ `language` varchar(45) NOT NULL DEFAULT '',
+ `fe_groups` longtext DEFAULT NULL,
+ PRIMARY KEY (`uid`),
+ KEY `file` (`file`),
+ KEY `fal_filelist` (`l10n_parent`,`sys_language_uid`),
+ KEY `parent` (`pid`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_file_metadata`
+--
+
+LOCK TABLES `sys_file_metadata` WRITE;
+/*!40000 ALTER TABLE `sys_file_metadata` DISABLE KEYS */;
+INSERT INTO `sys_file_metadata` VALUES
+(1,0,1676911371,1676911371,0,0,NULL,'',0,0,0,0,1,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(2,0,1676911371,1676911371,0,0,NULL,'',0,0,0,0,2,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(3,0,1733654881,1733654881,0,0,NULL,'',0,0,0,0,3,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(4,0,1733654881,1733654881,0,0,NULL,'',0,0,0,0,4,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(5,0,1733929202,1733929202,0,0,NULL,'',0,0,0,0,5,NULL,139,80,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(6,0,1733967785,1733967785,0,0,NULL,'',0,0,0,0,6,NULL,1024,1536,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(7,0,1734044751,1734044751,0,0,NULL,'',0,0,0,0,7,NULL,0,0,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(8,0,1734106168,1734106168,0,0,NULL,'',0,0,0,0,8,NULL,1440,729,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(9,0,1734111517,1734111517,0,0,NULL,'',0,0,0,0,9,NULL,603,608,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(10,0,1734113111,1734113111,0,0,NULL,'',0,0,0,0,10,NULL,139,80,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
+(11,0,1734218228,1734118797,0,0,NULL,'{\"title\":\"\",\"description\":\"\",\"ranking\":\"\",\"keywords\":\"\",\"alternative\":\"\",\"caption\":\"\",\"download_name\":\"\",\"sys_language_uid\":\"\",\"creator\":\"\",\"creator_tool\":\"\",\"publisher\":\"\",\"source\":\"\",\"copyright\":\"\",\"language\":\"\",\"location_country\":\"\",\"location_region\":\"\",\"location_city\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"content_creation_date\":\"\",\"content_modification_date\":\"\",\"visible\":\"\",\"status\":\"\",\"fe_groups\":\"\",\"categories\":\"\"}',0,0,0,0,11,NULL,816,492,NULL,'A cool image',0,1,'1',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL);
+/*!40000 ALTER TABLE `sys_file_metadata` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_file_processedfile`
+--
+
+DROP TABLE IF EXISTS `sys_file_processedfile`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_file_processedfile` (
+ `uid` int(11) NOT NULL AUTO_INCREMENT,
+ `tstamp` int(11) NOT NULL DEFAULT 0,
+ `crdate` int(11) NOT NULL DEFAULT 0,
+ `storage` int(11) NOT NULL DEFAULT 0,
+ `original` int(11) NOT NULL DEFAULT 0,
+ `identifier` varchar(512) NOT NULL DEFAULT '',
+ `name` tinytext DEFAULT NULL,
+ `processing_url` text DEFAULT NULL,
+ `configuration` blob DEFAULT NULL,
+ `configurationsha1` varchar(40) NOT NULL DEFAULT '',
+ `originalfilesha1` varchar(40) NOT NULL DEFAULT '',
+ `task_type` varchar(200) NOT NULL DEFAULT '',
+ `checksum` varchar(32) NOT NULL DEFAULT '',
+ `width` int(11) DEFAULT 0,
+ `height` int(11) DEFAULT 0,
+ PRIMARY KEY (`uid`),
+ KEY `combined_1` (`original`,`task_type`(100),`configurationsha1`),
+ KEY `identifier` (`storage`,`identifier`(180))
+) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_file_processedfile`
+--
+
+LOCK TABLES `sys_file_processedfile` WRITE;
+/*!40000 ALTER TABLE `sys_file_processedfile` DISABLE KEYS */;
+INSERT INTO `sys_file_processedfile` VALUES
+(1,1676911371,1676911371,0,1,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','a6fb0cc7b50579d6255f16171147695a55b93c27','Image.CropScaleMask','1250535e51',244,68),
+(2,1676911371,1676911371,0,2,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','493f5cd69ede03cf7d436e92481422145674b907','Image.CropScaleMask','a4049a3f3f',244,68),
+(3,1733654881,1733654881,0,3,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','a6fb0cc7b50579d6255f16171147695a55b93c27','Image.CropScaleMask','6c17aae52c',244,68),
+(4,1733654881,1733654881,0,4,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','493f5cd69ede03cf7d436e92481422145674b907','Image.CropScaleMask','4211b32654',244,68),
+(5,1733929202,1733929202,0,5,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','77ce90992ebc4987066329ad3fa3c82e2fb2ed55','Image.CropScaleMask','3d0b92428f',0,0),
+(6,1733967837,1733967785,1,6,'/_processed_/d/4/preview_1024-1536_b89610d18e.jpg','preview_1024-1536_b89610d18e.jpg','','a:2:{s:5:\"width\";i:64;s:6:\"height\";i:64;}','551dfa8957f1a04693c61acf34bc959a1ca971c4','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.Preview','b89610d18e',64,64),
+(7,1733967785,1733967785,1,6,'/_processed_/d/4/csm_1024-1536_7ad5a7c77a.jpg','csm_1024-1536_7ad5a7c77a.jpg','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";i:150;s:4:\"crop\";N;}','cfe93cbb07d0cfbe7800b799777ad2e70305dbab','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','7ad5a7c77a',100,150),
+(8,1733967785,1733967785,1,6,'/_processed_/d/4/csm_1024-1536_372c3cf157.jpg','csm_1024-1536_372c3cf157.jpg','','a:3:{s:8:\"maxWidth\";i:145;s:9:\"maxHeight\";i:45;s:6:\"height\";s:3:\"45m\";}','99641ee1e111db8018e526d3105ad5631f8f88a4','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','372c3cf157',30,45),
+(9,1733968143,1733968143,1,6,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','1a933ba5cf',0,0),
+(10,1734211136,1734044751,1,6,'/_processed_/d/4/csm_1024-1536_50d82c01f5.jpg','csm_1024-1536_50d82c01f5.jpg','','a:2:{s:5:\"width\";s:3:\"32c\";s:6:\"height\";s:3:\"32c\";}','48ec22f851d7822181aeed9649f97929e5f0c410','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','50d82c01f5',32,32),
+(11,1734044751,1734044751,1,6,'/_processed_/d/4/csm_1024-1536_a7bce6e8a8.jpg','csm_1024-1536_a7bce6e8a8.jpg','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:166;s:9:\"maxHeight\";i:115;s:4:\"crop\";N;}','42bbd46565440d020e85026168e5aeb9653d29fa','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','a7bce6e8a8',77,115),
+(12,1734106168,1734106168,0,8,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','a73569634984ede65ff20d248364b9f4bf6738b6','Image.CropScaleMask','6c80338a4b',0,0),
+(13,1734111518,1734111517,1,9,'/_processed_/1/5/preview_bild-lena_2d1e64852b.png','preview_bild-lena_2d1e64852b.png','','a:2:{s:5:\"width\";i:64;s:6:\"height\";i:64;}','551dfa8957f1a04693c61acf34bc959a1ca971c4','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.Preview','2d1e64852b',63,64),
+(14,1734111518,1734111518,1,9,'/_processed_/1/5/csm_bild-lena_9e29307e2d.png','csm_bild-lena_9e29307e2d.png','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";i:150;s:4:\"crop\";N;}','cfe93cbb07d0cfbe7800b799777ad2e70305dbab','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','9e29307e2d',149,150),
+(15,1734111518,1734111518,1,9,'/_processed_/1/5/csm_bild-lena_6252e1ae06.png','csm_bild-lena_6252e1ae06.png','','a:3:{s:8:\"maxWidth\";i:145;s:9:\"maxHeight\";i:45;s:6:\"height\";s:3:\"45m\";}','99641ee1e111db8018e526d3105ad5631f8f88a4','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','6252e1ae06',45,45),
+(16,1734111522,1734111522,1,9,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','8ebaf01a6f',0,0),
+(17,1734113111,1734113111,0,10,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','77ce90992ebc4987066329ad3fa3c82e2fb2ed55','Image.CropScaleMask','b10865786d',0,0),
+(18,1734193624,1734118797,1,11,'/_processed_/9/9/preview_241121_Lena_schilling_COP-1_ccc6924b90.png','preview_241121_Lena_schilling_COP-1_ccc6924b90.png','','a:2:{s:5:\"width\";i:64;s:6:\"height\";i:64;}','551dfa8957f1a04693c61acf34bc959a1ca971c4','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.Preview','ccc6924b90',64,64),
+(19,1734118798,1734118798,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_1cf89eb5e7.png','csm_241121_Lena_schilling_COP-1_1cf89eb5e7.png','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";i:150;s:4:\"crop\";N;}','cfe93cbb07d0cfbe7800b799777ad2e70305dbab','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','1cf89eb5e7',249,150),
+(20,1734118798,1734118798,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_e28f22655f.png','csm_241121_Lena_schilling_COP-1_e28f22655f.png','','a:3:{s:8:\"maxWidth\";i:145;s:9:\"maxHeight\";i:45;s:6:\"height\";s:3:\"45m\";}','99641ee1e111db8018e526d3105ad5631f8f88a4','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','e28f22655f',75,45),
+(21,1734118886,1734118886,1,11,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','4dbae9df0c',0,0),
+(22,1734211136,1734120283,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_4b708a0d0f.png','csm_241121_Lena_schilling_COP-1_4b708a0d0f.png','','a:2:{s:5:\"width\";s:3:\"32c\";s:6:\"height\";s:3:\"32c\";}','48ec22f851d7822181aeed9649f97929e5f0c410','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','4b708a0d0f',32,32),
+(23,1734120283,1734120283,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_c5ecdd5c26.png','csm_241121_Lena_schilling_COP-1_c5ecdd5c26.png','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:166;s:9:\"maxHeight\";i:115;s:4:\"crop\";N;}','42bbd46565440d020e85026168e5aeb9653d29fa','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','c5ecdd5c26',166,100),
+(24,1734211136,1734120283,1,9,'/_processed_/1/5/csm_bild-lena_17708d82bf.png','csm_bild-lena_17708d82bf.png','','a:2:{s:5:\"width\";s:3:\"32c\";s:6:\"height\";s:3:\"32c\";}','48ec22f851d7822181aeed9649f97929e5f0c410','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','17708d82bf',32,32),
+(25,1734120283,1734120283,1,9,'/_processed_/1/5/csm_bild-lena_a9c2f3accb.png','csm_bild-lena_a9c2f3accb.png','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:166;s:9:\"maxHeight\";i:115;s:4:\"crop\";N;}','42bbd46565440d020e85026168e5aeb9653d29fa','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','a9c2f3accb',114,115),
+(26,1734134520,1734134520,1,11,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:1200;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','1495e2df9df1b6ca7f74752327ebb626a23b3676','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','8e771a7e26',0,0),
+(27,1734134520,1734134520,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_d1ed10eb91.png','csm_241121_Lena_schilling_COP-1_d1ed10eb91.png',NULL,'a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:282;s:9:\"maxHeight\";s:0:\"\";s:4:\"crop\";N;}','46a68eaf10fc51ac2a48086b40820bff1e0b1126','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','d1ed10eb91',282,170),
+(28,1734139495,1734139495,1,9,'/_processed_/1/5/csm_bild-lena_cf92e34fb3.png','csm_bild-lena_cf92e34fb3.png',NULL,'a:7:{s:5:\"width\";s:4:\"320c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','2e508fcff7c6399252b8ddc8812dff4f0cb45cef','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','cf92e34fb3',320,323),
+(29,1734139495,1734139495,1,9,'/_processed_/1/5/csm_bild-lena_6d68ee4c50.png','csm_bild-lena_6d68ee4c50.png',NULL,'a:7:{s:5:\"width\";s:4:\"768c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','73c50bfdd0f47bb2bee481ec0162837e0a1396d1','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','6d68ee4c50',768,774),
+(30,1734139495,1734139495,1,9,'/_processed_/1/5/csm_bild-lena_5ad5a6ca3e.png','csm_bild-lena_5ad5a6ca3e.png',NULL,'a:7:{s:5:\"width\";s:5:\"1024c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','6b53cb4a4855d773f37568a4028e88f0d0f8e68a','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','5ad5a6ca3e',1024,1032),
+(31,1734139495,1734139495,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_fc96ced070.png','csm_241121_Lena_schilling_COP-1_fc96ced070.png',NULL,'a:7:{s:5:\"width\";s:4:\"320c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','2e508fcff7c6399252b8ddc8812dff4f0cb45cef','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','fc96ced070',320,193),
+(32,1734139495,1734139495,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_5a00a78456.png','csm_241121_Lena_schilling_COP-1_5a00a78456.png',NULL,'a:7:{s:5:\"width\";s:4:\"768c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','73c50bfdd0f47bb2bee481ec0162837e0a1396d1','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','5a00a78456',768,463),
+(33,1734139495,1734139495,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_699c25b112.png','csm_241121_Lena_schilling_COP-1_699c25b112.png',NULL,'a:7:{s:5:\"width\";s:5:\"1024c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','6b53cb4a4855d773f37568a4028e88f0d0f8e68a','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','699c25b112',1024,617),
+(34,1734139862,1734139862,1,9,'/_processed_/1/5/csm_bild-lena_5c429f0784.png','csm_bild-lena_5c429f0784.png',NULL,'a:3:{s:5:\"width\";s:5:\"1024c\";s:6:\"height\";i:0;s:4:\"crop\";N;}','6e5595438acb37078301cf14a5dc79d85a59d167','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','5c429f0784',1024,1032),
+(35,1734139862,1734139862,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_1541a6ec0a.png','csm_241121_Lena_schilling_COP-1_1541a6ec0a.png',NULL,'a:3:{s:5:\"width\";s:5:\"1024c\";s:6:\"height\";i:0;s:4:\"crop\";N;}','6e5595438acb37078301cf14a5dc79d85a59d167','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','1541a6ec0a',1024,617),
+(36,1734174347,1734174347,1,9,'/_processed_/1/5/csm_bild-lena_6e3b392e47.png','csm_bild-lena_6e3b392e47.png',NULL,'a:7:{s:5:\"width\";s:4:\"384c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','cca86486cfbe85de07d4c69267ce07de0acf0c7e','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','6e3b392e47',384,387),
+(37,1734174347,1734174347,1,9,'/_processed_/1/5/csm_bild-lena_d81fd8870e.png','csm_bild-lena_d81fd8870e.png',NULL,'a:7:{s:5:\"width\";s:4:\"600c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','8fad3e7e67bcd8377b7288bb939cad73a2f202e7','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','d81fd8870e',600,605),
+(38,1734174347,1734174347,1,9,'/_processed_/1/5/csm_bild-lena_7b19df6e5c.png','csm_bild-lena_7b19df6e5c.png',NULL,'a:7:{s:5:\"width\";s:4:\"430c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','6330646aab86d49cc21c61f4a18c6eb620f5a765','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','7b19df6e5c',430,434),
+(39,1734193548,1734193548,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_c383449a97.png','csm_241121_Lena_schilling_COP-1_c383449a97.png',NULL,'a:3:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"crop\";N;}','c64d0674edd7b8cc2e73865f5331aa550bb3adc4','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','c383449a97',300,180),
+(40,1734218217,1734218216,1,11,'/_processed_/9/9/preview_241121_Lena_schilling_COP-1_11e9f87e70.png','preview_241121_Lena_schilling_COP-1_11e9f87e70.png','','a:2:{s:5:\"width\";i:150;s:6:\"height\";i:150;}','55d97d4e532f03dbc8a5053eac06a25a43ca2e20','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.Preview','11e9f87e70',150,150);
+/*!40000 ALTER TABLE `sys_file_processedfile` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_file_reference`
+--
+
+DROP TABLE IF EXISTS `sys_file_reference`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_file_reference` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `sys_language_uid` int(11) NOT NULL DEFAULT 0,
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
+ `l10n_state` text DEFAULT NULL,
+ `l10n_diffsource` mediumblob DEFAULT NULL,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
+ `t3ver_state` smallint(6) NOT NULL DEFAULT 0,
+ `t3ver_stage` int(11) NOT NULL DEFAULT 0,
+ `uid_local` int(11) NOT NULL DEFAULT 0,
+ `uid_foreign` int(11) NOT NULL DEFAULT 0,
+ `tablenames` varchar(64) NOT NULL DEFAULT '',
+ `fieldname` varchar(64) NOT NULL DEFAULT '',
+ `sorting_foreign` int(11) NOT NULL DEFAULT 0,
+ `title` tinytext DEFAULT NULL,
+ `description` longtext DEFAULT NULL,
+ `alternative` text DEFAULT NULL,
+ `link` text NOT NULL DEFAULT '',
+ `crop` longtext DEFAULT NULL,
+ `autoplay` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `showinpreview` smallint(6) NOT NULL DEFAULT 0,
+ PRIMARY KEY (`uid`),
+ KEY `tablenames_fieldname` (`tablenames`(32),`fieldname`(12)),
+ KEY `deleted` (`deleted`),
+ KEY `uid_local` (`uid_local`),
+ KEY `uid_foreign` (`uid_foreign`),
+ KEY `combined_1` (`l10n_parent`,`t3ver_oid`,`t3ver_wsid`,`t3ver_state`,`deleted`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_file_reference`
+--
+
+LOCK TABLES `sys_file_reference` WRITE;
+/*!40000 ALTER TABLE `sys_file_reference` DISABLE KEYS */;
+INSERT INTO `sys_file_reference` VALUES
+(1,1,1733967793,1733967793,0,0,0,0,NULL,'',0,0,0,0,6,3,'tt_content','cloonar_hero_image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(2,1,1734111519,1733967845,1,0,0,0,NULL,'',0,0,0,0,6,3,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(3,1,1734120286,1734044772,1,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,6,5,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(4,1,1734120296,1734045432,1,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,6,6,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(5,4,1734118803,1734046430,1,0,0,0,NULL,'',0,0,0,0,6,1,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(6,4,1734118806,1734046445,1,0,0,0,NULL,'',0,0,0,0,6,5,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(7,4,1734118808,1734046447,1,0,0,0,NULL,'',0,0,0,0,6,6,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(8,4,1734118814,1734046449,1,0,0,0,NULL,'',0,0,0,0,6,7,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(9,4,1734118814,1734046451,1,0,0,0,NULL,'',0,0,0,0,6,8,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(10,4,1734118814,1734050640,1,0,0,0,NULL,'',0,0,0,0,6,9,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(11,4,1734118814,1734050642,1,0,0,0,NULL,'',0,0,0,0,6,10,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(12,4,1734118814,1734050644,1,0,0,0,NULL,'',0,0,0,0,6,11,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(13,4,1734118814,1734050646,1,0,0,0,NULL,'',0,0,0,0,6,12,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(14,1,1734116617,1734111519,0,0,0,0,NULL,'{\"alternative\":\"\",\"description\":\"\",\"link\":\"\",\"title\":\"\",\"crop\":\"\",\"uid_local\":\"\",\"hidden\":\"\",\"sys_language_uid\":\"\"}',0,0,0,0,9,3,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(15,4,1734118969,1734118803,0,0,0,0,NULL,'{\"showinpreview\":\"\",\"alternative\":\"\",\"description\":\"\",\"link\":\"\",\"title\":\"\",\"crop\":\"\",\"uid_local\":\"\",\"hidden\":\"\",\"sys_language_uid\":\"\"}',0,0,0,0,11,1,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(16,4,1734118974,1734118826,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,13,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(17,4,1734118828,1734118828,0,0,0,0,NULL,'',0,0,0,0,11,14,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(18,4,1734118830,1734118830,0,0,0,0,NULL,'',0,0,0,0,11,15,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(19,4,1734118832,1734118832,0,0,0,0,NULL,'',0,0,0,0,11,16,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(20,4,1734118834,1734118834,0,0,0,0,NULL,'',0,0,0,0,11,17,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(21,4,1734118837,1734118837,0,0,0,0,NULL,'',0,0,0,0,11,18,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(22,4,1734118839,1734118839,0,0,0,0,NULL,'',0,0,0,0,11,19,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(23,4,1734118841,1734118841,0,0,0,0,NULL,'',0,0,0,0,11,20,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(24,4,1734118993,1734118843,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,21,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(25,4,1734118987,1734118845,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,22,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(26,4,1734118981,1734118847,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,23,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(27,1,1734193266,1734120286,1,0,0,0,NULL,'',0,0,0,0,11,5,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(28,1,1734193266,1734120296,1,0,0,0,NULL,'',0,0,0,0,11,6,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(29,1,1734211098,1734193546,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,11,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(30,1,1734211105,1734194797,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,12,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
+(31,6,1734211140,1734211140,0,0,0,0,NULL,'',0,0,0,0,9,13,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0);
+/*!40000 ALTER TABLE `sys_file_reference` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_file_storage`
+--
+
+DROP TABLE IF EXISTS `sys_file_storage`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_file_storage` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(10) unsigned NOT NULL DEFAULT 0,
+ `tstamp` int(10) unsigned NOT NULL DEFAULT 0,
+ `crdate` int(10) unsigned NOT NULL DEFAULT 0,
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `description` text DEFAULT NULL,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `driver` varchar(255) NOT NULL DEFAULT '',
+ `configuration` longtext DEFAULT NULL,
+ `is_default` smallint(5) unsigned NOT NULL DEFAULT 0,
+ `is_browsable` smallint(5) unsigned NOT NULL DEFAULT 1,
+ `is_public` smallint(6) NOT NULL DEFAULT 0,
+ `is_writable` smallint(5) unsigned NOT NULL DEFAULT 1,
+ `is_online` smallint(5) unsigned NOT NULL DEFAULT 1,
+ `auto_extract_metadata` smallint(5) unsigned NOT NULL DEFAULT 1,
+ `processingfolder` tinytext DEFAULT NULL,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_file_storage`
+--
+
+LOCK TABLES `sys_file_storage` WRITE;
+/*!40000 ALTER TABLE `sys_file_storage` DISABLE KEYS */;
+INSERT INTO `sys_file_storage` VALUES
+(1,0,1676910451,1676910451,0,'This is the local fileadmin/ directory. This storage mount has been created automatically by TYPO3.','fileadmin','Local','\n
30k<\\/span> 30k<\\/span> 30k<\\/span> 30k<\\/span> test<\\/p>\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1733950701,\"t3ver_stage\":0,\"tstamp\":1733950701,\"uid\":2}',0,'0400$1793061c3dee1577a9e2c2c933c25610:01dbc21fdb1263685b9147b3b1596ea8'),
+(17,1733951120,4,'BE',1,0,1,'sys_template',NULL,0,'0400$22508dda615b31b89d0b1f9fee336542:35af6288617af54964e77af08c30949a'),
+(18,1733951190,1,'BE',1,0,2,'pages','{\"doktype\":\"1\",\"slug\":\"\\/test\",\"categories\":\"0\",\"layout\":\"0\",\"lastUpdated\":0,\"newUntil\":0,\"cache_timeout\":\"0\",\"shortcut\":0,\"shortcut_mode\":\"0\",\"content_from_pid\":0,\"mount_pid\":0,\"module\":\"\",\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"sitemap_priority\":\"0.5\",\"twitter_card\":\"\",\"pid\":1,\"sorting\":256,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"Test\",\"sys_language_uid\":0,\"crdate\":1733951190,\"t3ver_stage\":0,\"tstamp\":1733951190,\"uid\":2}',0,'0400$e0fe50ad259c9176e2e9e34111c27f72:f11830df10b4b0bca2db34810c2241b3'),
+(19,1733951195,1,'BE',1,0,3,'pages','{\"doktype\":\"1\",\"slug\":\"\\/test2\",\"categories\":\"0\",\"layout\":\"0\",\"lastUpdated\":0,\"newUntil\":0,\"cache_timeout\":\"0\",\"shortcut\":0,\"shortcut_mode\":\"0\",\"content_from_pid\":0,\"mount_pid\":0,\"module\":\"\",\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"sitemap_priority\":\"0.5\",\"twitter_card\":\"\",\"pid\":1,\"sorting\":128,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"Test2\",\"sys_language_uid\":0,\"crdate\":1733951195,\"t3ver_stage\":0,\"tstamp\":1733951195,\"uid\":3}',0,'0400$a67dcaf582e8b4430239cc7b0fdcec95:fe15eeb7d49e64e2cea91ab53fcf0db1'),
+(20,1733951197,2,'BE',1,0,3,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$d78eccbdae059f751f60c9c4688040ee:fe15eeb7d49e64e2cea91ab53fcf0db1'),
+(21,1733951201,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$d72746cf827ff16c26e52f5a85100202:f11830df10b4b0bca2db34810c2241b3'),
+(22,1733967793,1,'BE',1,0,3,'tt_content','{\"CType\":\"cloonar_hero\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imageorient\":\"26\",\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":512,\"header\":\"test\",\"bodytext\":\" test<\\/p>\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1733967793,\"t3ver_stage\":0,\"tstamp\":1733967793,\"uid\":3}',0,'0400$e56f3f0503c7448c045de7cd74bb45dd:b92300cfb5d1d3645c9cb212a7f56c1f'),
+(23,1733967793,1,'BE',1,0,1,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"6\",\"sys_language_uid\":0,\"crdate\":1733967793,\"t3ver_stage\":0,\"tstamp\":1733967793,\"uid\":1}',0,'0400$e56f3f0503c7448c045de7cd74bb45dd:4cf496f597e7b095ce8b755e6cec3c0c'),
+(24,1733967845,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$3de12ea40550bae77021fc37d9455544:b92300cfb5d1d3645c9cb212a7f56c1f'),
+(25,1733967845,1,'BE',1,0,2,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"6\",\"sys_language_uid\":0,\"crdate\":1733967845,\"t3ver_stage\":0,\"tstamp\":1733967845,\"uid\":2}',0,'0400$3de12ea40550bae77021fc37d9455544:814fc0f720dfab882655a795e23a5b66'),
+(26,1733967845,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$3de12ea40550bae77021fc37d9455544:b92300cfb5d1d3645c9cb212a7f56c1f'),
+(27,1733968469,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"hidden\":0,\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"1\",\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$a3b6b66995a6afa0f7fc19ebe23d4c71:b92300cfb5d1d3645c9cb212a7f56c1f'),
+(28,1733968496,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"hidden\":1},\"newRecord\":{\"hidden\":\"0\"}}',0,'0400$ddc94c577d9a28f28946bfc537e926c2:b92300cfb5d1d3645c9cb212a7f56c1f'),
+(29,1734038755,1,'BE',1,0,4,'tt_content','{\"CType\":\"cloonar_stats\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imageorient\":\"0\",\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":768,\"cloonar_stats_number1\":\"10\",\"cloonar_stats_label1\":\"was\",\"cloonar_stats_number2\":\"20\",\"cloonar_stats_label2\":\"weis\",\"cloonar_stats_number3\":\"30\",\"cloonar_stats_label3\":\"ich\",\"cloonar_stats_number4\":\"40\",\"cloonar_stats_label4\":\"denn\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734038755,\"t3ver_stage\":0,\"tstamp\":1734038755,\"uid\":4}',0,'0400$6dbebd091086b67d24891b4f5bc38361:4d391f5ef79b8d5d10dffa8a07ca167d'),
+(30,1734039669,2,'BE',1,0,4,'tt_content','{\"oldRecord\":{\"bodytext\":null,\"l18n_diffsource\":\"\"},\"newRecord\":{\"bodytext\":\" 10 20 30 40 test<\\/p>\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734044772,\"t3ver_stage\":0,\"tstamp\":1734044772,\"uid\":5}',0,'0400$60dba9d1304e6d3d41ae4981dfd62ecb:c7626fc9bcba6f70beb6ebc085a400db'),
+(32,1734044772,1,'BE',1,0,3,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"6\",\"sys_language_uid\":0,\"crdate\":1734044772,\"t3ver_stage\":0,\"tstamp\":1734044772,\"uid\":3}',0,'0400$60dba9d1304e6d3d41ae4981dfd62ecb:d2c609347a4764200256b39b9425159a'),
+(33,1734045075,2,'BE',1,0,5,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$93511a1fd191285e4bfb71bb9c2c480a:c7626fc9bcba6f70beb6ebc085a400db'),
+(34,1734045075,2,'BE',1,0,3,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$93511a1fd191285e4bfb71bb9c2c480a:d2c609347a4764200256b39b9425159a'),
+(35,1734045409,2,'BE',1,0,5,'tt_content','{\"oldRecord\":{\"imageorient\":26},\"newRecord\":{\"imageorient\":\"25\"}}',0,'0400$42f86931955429e77089c0a5054276f5:c7626fc9bcba6f70beb6ebc085a400db'),
+(36,1734045432,1,'BE',1,0,4,'sys_file_reference','{\"pid\":1,\"tstamp\":1734045432,\"crdate\":1734045432,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":5,\"tablenames\":\"tt_content\",\"fieldname\":\"image\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":4}',0,'0400$bb7f3a025d5ab51590afb95de6aa7618:cea5fcd7b97871880cfe3717d6b52ef4'),
+(37,1734045432,1,'BE',1,0,6,'tt_content','{\"CType\":\"cloonar_textimage\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":1280,\"rowDescription\":\"\",\"tstamp\":1734045432,\"crdate\":1734045432,\"fe_group\":\"\",\"editlock\":0,\"sys_language_uid\":0,\"l10n_source\":0,\"l10n_state\":null,\"header\":\"test (copy 1)\",\"bodytext\":\" test<\\/p>\",\"imageorient\":\"25\",\"imageborder\":0,\"records\":\"\",\"pages\":\"\",\"subheader\":\"\",\"header_link\":\"\",\"image_zoom\":0,\"linkToTop\":0,\"file_collections\":\"\",\"filelink_size\":0,\"filelink_sorting\":\"\",\"filelink_sorting_direction\":\"\",\"pi_flexform\":null,\"category_field\":\"\",\"table_caption\":null,\"selected_categories\":0,\"tx_news_related_news\":0,\"t3ver_stage\":0,\"uid\":6}',0,'0400$8da97c775c38415292077250906f3244:c0db6803ab1ec5f70c36e2a72187867b'),
+(38,1734045432,2,'BE',1,0,6,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"colPos\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\"}\"}}',0,'0400$2a2e651f323f96e86842c8fbbe7ac290:c0db6803ab1ec5f70c36e2a72187867b'),
+(39,1734045435,2,'BE',1,0,6,'tt_content','{\"oldRecord\":{\"hidden\":1,\"l18n_diffsource\":\"{\\\"colPos\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$47601ee4c086523efe20c5452d0422c2:c0db6803ab1ec5f70c36e2a72187867b'),
+(40,1734045441,2,'BE',1,0,6,'tt_content','{\"oldRecord\":{\"imageorient\":25,\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"imageorient\":\"26\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$03690bfb5a86202f0ca923d70ce69274:c0db6803ab1ec5f70c36e2a72187867b'),
+(41,1734046332,1,'BE',1,0,4,'pages','{\"doktype\":\"254\",\"slug\":\"\\/news\",\"categories\":\"0\",\"layout\":\"0\",\"lastUpdated\":0,\"newUntil\":0,\"cache_timeout\":\"0\",\"shortcut\":0,\"shortcut_mode\":\"0\",\"content_from_pid\":0,\"mount_pid\":0,\"module\":\"\",\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"sitemap_priority\":\"0.5\",\"twitter_card\":\"\",\"pid\":1,\"sorting\":64,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"News\",\"sys_language_uid\":0,\"crdate\":1734046332,\"t3ver_stage\":0,\"tstamp\":1734046332,\"uid\":4}',0,'0400$2b6e71d4307f25e9a433b165da4fd2a4:412add0b3eb6ec8f1cb6710aea92e21e'),
+(42,1734046335,2,'BE',1,0,4,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$7a657cdee0370eacf17b4e36d5238b98:412add0b3eb6ec8f1cb6710aea92e21e'),
+(43,1734046403,1,'BE',1,0,1,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"hidden\":\"0\",\"istopnews\":\"0\",\"editlock\":\"0\",\"path_segment\":\"test-1\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"type\":\"0\",\"title\":\"Test 1\",\"teaser\":\"test\",\"datetime\":1734046393,\"archive\":0,\"bodytext\":\" test<\\/p>\",\"categories\":\"0\",\"related\":\"0\",\"tags\":\"0\",\"author\":\"\",\"author_email\":\"\",\"keywords\":\"\",\"description\":\"\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"sys_language_uid\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"crdate\":1734046403,\"t3ver_stage\":0,\"tstamp\":1734046403,\"uid\":1}',0,'0400$4c8c0146bd1d8cfb747c503e03cf3260:fccd16ea3664ec003726b2a72ea38f4b'),
+(44,1734046411,1,'BE',1,0,2,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-1\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046411,\"crdate\":1734046411,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 1)\",\"teaser\":\"test\",\"bodytext\":\" test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":2}',0,'0400$840e852e91d9c8f4a4ce698e0f406509:640f28e5c1a5ec2efb19c26699b464a5'),
+(45,1734046413,1,'BE',1,0,3,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-2\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046413,\"crdate\":1734046413,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 2)\",\"teaser\":\"test\",\"bodytext\":\" test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":3}',0,'0400$cb384489ea1e4ac70fca790b47207d4c:1152fda277b2623b0152b5765fcb6b28'),
+(46,1734046415,1,'BE',1,0,4,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-3\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046415,\"crdate\":1734046415,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 3)\",\"teaser\":\"test\",\"bodytext\":\" test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":4}',0,'0400$a5656bb4fc92e7743bea5757b86f569c:f3f39c24ca39d00c02ecd29ec2ad4225'),
+(47,1734046420,4,'BE',1,0,4,'tx_news_domain_model_news',NULL,0,'0400$240f9e5a5e7c8f0506e9c85d1803d844:f3f39c24ca39d00c02ecd29ec2ad4225'),
+(48,1734046421,4,'BE',1,0,3,'tx_news_domain_model_news',NULL,0,'0400$0b37a417a799001719925b31c82a17e3:1152fda277b2623b0152b5765fcb6b28'),
+(49,1734046422,4,'BE',1,0,2,'tx_news_domain_model_news',NULL,0,'0400$7df87fba6e3268b9bfd800eaa003d87a:640f28e5c1a5ec2efb19c26699b464a5'),
+(50,1734046430,2,'BE',1,0,1,'tx_news_domain_model_news','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"}}',0,'0400$8c0134c5590a0805cd4bd9e105f18d5e:fccd16ea3664ec003726b2a72ea38f4b'),
+(51,1734046430,1,'BE',1,0,5,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":4,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"6\",\"sys_language_uid\":0,\"crdate\":1734046430,\"t3ver_stage\":0,\"tstamp\":1734046430,\"uid\":5}',0,'0400$8c0134c5590a0805cd4bd9e105f18d5e:5f15a1453f67b933ed3314381f5d67e4'),
+(52,1734046430,2,'BE',1,0,1,'tx_news_domain_model_news','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"}}',0,'0400$8c0134c5590a0805cd4bd9e105f18d5e:fccd16ea3664ec003726b2a72ea38f4b'),
+(53,1734046445,1,'BE',1,0,6,'sys_file_reference','{\"pid\":4,\"tstamp\":1734046445,\"crdate\":1734046445,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":6}',0,'0400$1d62482b61a3df8f4f78e0b10a290516:768f9cd4e98812f969df7ebe17f11b50'),
+(54,1734046445,1,'BE',1,0,5,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-1\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046445,\"crdate\":1734046445,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 1)\",\"teaser\":\"test\",\"bodytext\":\" test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":5}',0,'0400$f80bc5bed9ca973ee425a587e11341be:bc83755a03cca2ca5c8daa03e9d6e32e'),
+(55,1734046447,1,'BE',1,0,7,'sys_file_reference','{\"pid\":4,\"tstamp\":1734046447,\"crdate\":1734046447,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":7}',0,'0400$f624ffaef84b6a2491e84df252dc9558:117c97010b9af15cb554d115dba4e316'),
+(56,1734046447,1,'BE',1,0,6,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-2\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046447,\"crdate\":1734046447,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 2)\",\"teaser\":\"test\",\"bodytext\":\" test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":6}',0,'0400$53950f86af3fdd3a76558c8ebb7b0a3c:7e4fc5d3ec5edd1f76b0a3820eb3fb47'),
+(57,1734046449,1,'BE',1,0,8,'sys_file_reference','{\"pid\":4,\"tstamp\":1734046449,\"crdate\":1734046449,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":8}',0,'0400$d37991247ccf532515d677628d4789d4:5ff44a4f59fb3bfbe13a2c3ed1d0bd8b'),
+(58,1734046449,1,'BE',1,0,7,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-3\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046449,\"crdate\":1734046449,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 3)\",\"teaser\":\"test\",\"bodytext\":\" test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":7}',0,'0400$818d869aeaa55e8dd584693c58b9116f:31860b4bf14b13d2dc895987af663784'),
+(59,1734046451,1,'BE',1,0,9,'sys_file_reference','{\"pid\":4,\"tstamp\":1734046451,\"crdate\":1734046451,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":9}',0,'0400$26088521cb927670d5843e8fe26df380:729356755eb8ee035abf6b9b02e20c8f'),
+(60,1734046451,1,'BE',1,0,8,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-4\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046451,\"crdate\":1734046451,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 4)\",\"teaser\":\"test\",\"bodytext\":\" test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":8}',0,'0400$f84a1adee6aa5db1fdd26b61b764b2f2:ff635a07b31923a6d7cd863a31313787'),
+(61,1734046452,2,'BE',1,0,5,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$6cca660c7687cd4ad554071901e13071:bc83755a03cca2ca5c8daa03e9d6e32e'),
+(62,1734046453,2,'BE',1,0,6,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$de93d948bbee5b3899baef753897263a:7e4fc5d3ec5edd1f76b0a3820eb3fb47'),
+(63,1734046454,2,'BE',1,0,7,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$67126d74e5b0bfb828a1080b5dfde14f:31860b4bf14b13d2dc895987af663784'),
+(64,1734046454,2,'BE',1,0,8,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$a0fb5e5e8e793e2e43ab45ebeb0d9ac7:ff635a07b31923a6d7cd863a31313787'),
+(65,1734046495,1,'BE',1,0,7,'tt_content','{\"CType\":\"news_newsliststicky\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":896,\"header\":\"Aktuelles\",\"header_link\":\"\",\"subheader\":\"\",\"pi_flexform\":\"\\n test 1<\\/p>\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734048317,\"t3ver_stage\":0,\"tstamp\":1734048317,\"uid\":8}',0,'0400$7792dfd1bc6137fd77b8cebde438783e:2097d84972a039cb6bfe093b17089287'),
+(68,1734048328,1,'BE',1,0,9,'tt_content','{\"CType\":\"text\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"91\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":128,\"header\":\"\",\"header_link\":\"\",\"subheader\":\"\",\"bodytext\":\" test 2<\\/p>\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734048328,\"t3ver_stage\":0,\"tstamp\":1734048328,\"uid\":9}',0,'0400$3aa5d3e83fe230ff0a806563c0e7f2fd:367f4f227870d8e2a11496a182574aa3'),
+(69,1734050591,1,'BE',1,0,10,'tt_content','{\"CType\":\"news_pi1\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":3,\"sorting\":256,\"header\":\"\",\"header_link\":\"\",\"subheader\":\"\",\"pi_flexform\":\"\\n
Test<\\/p>\\r\\n
Test<\\/p>\\r\\n
Test<\\/p>\\r\\n
Test<\\/p>\",\"bullets_type\":0,\"uploads_description\":0,\"uploads_type\":0,\"assets\":0,\"image\":0,\"imagewidth\":0,\"imageorient\":0,\"imagecols\":1,\"imageborder\":0,\"media\":0,\"layout\":0,\"frame_class\":\"default\",\"cols\":0,\"space_before_class\":\"\",\"space_after_class\":\"\",\"records\":null,\"pages\":null,\"colPos\":0,\"subheader\":\"\",\"header_link\":\"\",\"image_zoom\":0,\"header_layout\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"linkToTop\":0,\"file_collections\":null,\"filelink_size\":0,\"filelink_sorting\":\"\",\"filelink_sorting_direction\":\"\",\"target\":\"\",\"date\":0,\"recursive\":0,\"imageheight\":0,\"pi_flexform\":null,\"accessibility_title\":\"\",\"accessibility_bypass\":0,\"accessibility_bypass_text\":\"\",\"category_field\":\"\",\"table_class\":\"\",\"table_caption\":null,\"table_delimiter\":124,\"table_enclosure\":0,\"table_header_position\":0,\"table_tfoot\":0,\"categories\":0,\"selected_categories\":null,\"tx_news_related_news\":0,\"teaser\":null,\"aspect_ratio\":\"1.3333333333333\",\"items_per_page\":10,\"readmore_label\":\"\",\"quote_source\":\"\",\"quote_link\":\"\",\"panel_class\":\"default\",\"file_folder\":null,\"icon\":\"\",\"icon_set\":\"\",\"icon_file\":0,\"icon_position\":\"\",\"icon_size\":\"default\",\"icon_type\":\"default\",\"icon_color\":\"#FFFFFF\",\"icon_background\":\"#333333\",\"external_media_source\":\"\",\"external_media_ratio\":\"\",\"tx_bootstrappackage_card_group_item\":0,\"tx_bootstrappackage_carousel_item\":0,\"tx_bootstrappackage_accordion_item\":0,\"tx_bootstrappackage_icon_group_item\":0,\"tx_bootstrappackage_tab_item\":0,\"tx_bootstrappackage_timeline_item\":0,\"frame_layout\":\"default\",\"background_color_class\":\"none\",\"background_image\":0,\"background_image_options\":\"\\n
was<\\/p>\\r\\n
soll<\\/p>\\r\\n
das<\\/p>\\r\\n
sein<\\/p>\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$b1105a55b542ffae36446a33abdf3c99:4d391f5ef79b8d5d10dffa8a07ca167d'),
+(31,1734044772,1,'BE',1,0,5,'tt_content','{\"CType\":\"cloonar_textimage\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imageorient\":\"26\",\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":1024,\"header\":\"test\",\"bodytext\":\"